From ffc8e7a2da1d1211e77f6afecbbd14442312fdab Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Fri, 13 Oct 2017 18:16:04 +0800 Subject: [PATCH 01/18] First added files --- Testing/.cproject | 200 + Testing/.mxproject | 14 + Testing/.project | 27 + Testing/.settings/language.settings.xml | 27 + Testing/Debug/.gitignore | 4 + Testing/Debug/RTOS_IOT.bin | Bin 0 -> 17340 bytes Testing/Debug/RTOS_IOT.elf | Bin 0 -> 1019280 bytes Testing/Debug/makefile | 60 + Testing/Debug/objects.list | 35 + Testing/Debug/objects.mk | 8 + Testing/Debug/output.map | 5851 +++++++++++++ Testing/Debug/sources.mk | 25 + .../Device/ST/STM32L0xx/Include/stm32l053xx.h | 7508 +++++++++++++++++ .../Device/ST/STM32L0xx/Include/stm32l0xx.h | 243 + .../ST/STM32L0xx/Include/system_stm32l0xx.h | 127 + .../Drivers/CMSIS/Include/arm_common_tables.h | 136 + .../Drivers/CMSIS/Include/arm_const_structs.h | 79 + Testing/Drivers/CMSIS/Include/arm_math.h | 7154 ++++++++++++++++ Testing/Drivers/CMSIS/Include/cmsis_armcc.h | 734 ++ .../Drivers/CMSIS/Include/cmsis_armcc_V6.h | 1800 ++++ Testing/Drivers/CMSIS/Include/cmsis_gcc.h | 1373 +++ Testing/Drivers/CMSIS/Include/core_cm0.h | 798 ++ Testing/Drivers/CMSIS/Include/core_cm0plus.h | 914 ++ Testing/Drivers/CMSIS/Include/core_cm3.h | 1763 ++++ Testing/Drivers/CMSIS/Include/core_cm4.h | 1937 +++++ Testing/Drivers/CMSIS/Include/core_cm7.h | 2512 ++++++ Testing/Drivers/CMSIS/Include/core_cmFunc.h | 87 + Testing/Drivers/CMSIS/Include/core_cmInstr.h | 87 + Testing/Drivers/CMSIS/Include/core_cmSimd.h | 96 + Testing/Drivers/CMSIS/Include/core_sc000.h | 926 ++ Testing/Drivers/CMSIS/Include/core_sc300.h | 1745 ++++ .../Inc/Legacy/stm32_hal_legacy.h | 3149 +++++++ .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h | 442 + .../Inc/stm32l0xx_hal_cortex.h | 418 + .../Inc/stm32l0xx_hal_def.h | 208 + .../Inc/stm32l0xx_hal_dma.h | 696 ++ .../Inc/stm32l0xx_hal_flash.h | 388 + .../Inc/stm32l0xx_hal_flash_ex.h | 829 ++ .../Inc/stm32l0xx_hal_flash_ramfunc.h | 126 + .../Inc/stm32l0xx_hal_gpio.h | 344 + .../Inc/stm32l0xx_hal_gpio_ex.h | 2284 +++++ .../Inc/stm32l0xx_hal_i2c.h | 710 ++ .../Inc/stm32l0xx_hal_i2c_ex.h | 181 + .../Inc/stm32l0xx_hal_irda.h | 845 ++ .../Inc/stm32l0xx_hal_irda_ex.h | 211 + .../Inc/stm32l0xx_hal_pwr.h | 465 + .../Inc/stm32l0xx_hal_pwr_ex.h | 117 + .../Inc/stm32l0xx_hal_rcc.h | 1756 ++++ .../Inc/stm32l0xx_hal_rcc_ex.h | 2013 +++++ .../Inc/stm32l0xx_hal_rtc.h | 906 ++ .../Inc/stm32l0xx_hal_rtc_ex.h | 1461 ++++ .../Inc/stm32l0xx_hal_tim.h | 1501 ++++ .../Inc/stm32l0xx_hal_tim_ex.h | 287 + .../Inc/stm32l0xx_hal_uart.h | 1470 ++++ .../Inc/stm32l0xx_hal_uart_ex.h | 439 + .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c | 562 ++ .../Src/stm32l0xx_hal_cortex.c | 398 + .../Src/stm32l0xx_hal_dma.c | 815 ++ .../Src/stm32l0xx_hal_flash.c | 753 ++ .../Src/stm32l0xx_hal_flash_ex.c | 1272 +++ .../Src/stm32l0xx_hal_flash_ramfunc.c | 539 ++ .../Src/stm32l0xx_hal_gpio.c | 547 ++ .../Src/stm32l0xx_hal_i2c.c | 4867 +++++++++++ .../Src/stm32l0xx_hal_i2c_ex.c | 351 + .../Src/stm32l0xx_hal_irda.c | 2359 ++++++ .../Src/stm32l0xx_hal_pwr.c | 710 ++ .../Src/stm32l0xx_hal_pwr_ex.c | 202 + .../Src/stm32l0xx_hal_rcc.c | 1490 ++++ .../Src/stm32l0xx_hal_rcc_ex.c | 1167 +++ .../Src/stm32l0xx_hal_rtc.c | 1531 ++++ .../Src/stm32l0xx_hal_rtc_ex.c | 1964 +++++ .../Src/stm32l0xx_hal_tim.c | 5112 +++++++++++ .../Src/stm32l0xx_hal_tim_ex.c | 466 + .../Src/stm32l0xx_hal_uart.c | 2876 +++++++ .../Src/stm32l0xx_hal_uart_ex.c | 522 ++ Testing/Inc/FreeRTOSConfig.h | 171 + Testing/Inc/main.h | 85 + Testing/Inc/stm32l0xx_hal_conf.h | 311 + Testing/Inc/stm32l0xx_it.h | 56 + .../FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c | 1773 ++++ .../FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h | 1071 +++ .../Third_Party/FreeRTOS/Source/croutine.c | 395 + .../FreeRTOS/Source/event_groups.c | 752 ++ .../FreeRTOS/Source/include/FreeRTOS.h | 1063 +++ .../Source/include/FreeRTOSConfig_template.h | 173 + .../FreeRTOS/Source/include/StackMacros.h | 171 + .../FreeRTOS/Source/include/croutine.h | 762 ++ .../Source/include/deprecated_definitions.h | 321 + .../FreeRTOS/Source/include/event_groups.h | 797 ++ .../FreeRTOS/Source/include/list.h | 453 + .../FreeRTOS/Source/include/mpu_prototypes.h | 177 + .../FreeRTOS/Source/include/mpu_wrappers.h | 201 + .../FreeRTOS/Source/include/portable.h | 207 + .../FreeRTOS/Source/include/projdefs.h | 161 + .../FreeRTOS/Source/include/queue.h | 1798 ++++ .../FreeRTOS/Source/include/semphr.h | 1171 +++ .../FreeRTOS/Source/include/task.h | 2267 +++++ .../FreeRTOS/Source/include/timers.h | 1314 +++ .../Third_Party/FreeRTOS/Source/list.c | 240 + .../Source/portable/GCC/ARM_CM0/port.c | 573 ++ .../Source/portable/GCC/ARM_CM0/portmacro.h | 165 + .../FreeRTOS/Source/portable/MemMang/heap_4.c | 478 ++ .../Third_Party/FreeRTOS/Source/queue.c | 2566 ++++++ .../Third_Party/FreeRTOS/Source/tasks.c | 4807 +++++++++++ .../Third_Party/FreeRTOS/Source/timers.c | 1092 +++ Testing/NUCLEO-L053R8.xml | 19 + Testing/RTOS_IOT.ioc | 170 + Testing/STM32L053R8Tx_FLASH.ld | 188 + Testing/Src/freertos.c | 70 + Testing/Src/main.c | 621 ++ Testing/Src/stm32l0xx_hal_msp.c | 284 + Testing/Src/stm32l0xx_it.c | 76 + Testing/Src/system_stm32l0xx.c | 287 + Testing/Testing Debug.cfg | 28 + Testing/startup/startup_stm32l053xx.s | 295 + 115 files changed, 113628 insertions(+) create mode 100644 Testing/.cproject create mode 100644 Testing/.mxproject create mode 100644 Testing/.project create mode 100644 Testing/.settings/language.settings.xml create mode 100644 Testing/Debug/.gitignore create mode 100644 Testing/Debug/RTOS_IOT.bin create mode 100644 Testing/Debug/RTOS_IOT.elf create mode 100644 Testing/Debug/makefile create mode 100644 Testing/Debug/objects.list create mode 100644 Testing/Debug/objects.mk create mode 100644 Testing/Debug/output.map create mode 100644 Testing/Debug/sources.mk create mode 100644 Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h create mode 100644 Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h create mode 100644 Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h create mode 100644 Testing/Drivers/CMSIS/Include/arm_common_tables.h create mode 100644 Testing/Drivers/CMSIS/Include/arm_const_structs.h create mode 100644 Testing/Drivers/CMSIS/Include/arm_math.h create mode 100644 Testing/Drivers/CMSIS/Include/cmsis_armcc.h create mode 100644 Testing/Drivers/CMSIS/Include/cmsis_armcc_V6.h create mode 100644 Testing/Drivers/CMSIS/Include/cmsis_gcc.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cm0.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cm0plus.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cm3.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cm4.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cm7.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cmFunc.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cmInstr.h create mode 100644 Testing/Drivers/CMSIS/Include/core_cmSimd.h create mode 100644 Testing/Drivers/CMSIS/Include/core_sc000.h create mode 100644 Testing/Drivers/CMSIS/Include/core_sc300.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c create mode 100644 Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c create mode 100644 Testing/Inc/FreeRTOSConfig.h create mode 100644 Testing/Inc/main.h create mode 100644 Testing/Inc/stm32l0xx_hal_conf.h create mode 100644 Testing/Inc/stm32l0xx_it.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/croutine.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/list.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/task.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/list.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/queue.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/tasks.c create mode 100644 Testing/Middlewares/Third_Party/FreeRTOS/Source/timers.c create mode 100644 Testing/NUCLEO-L053R8.xml create mode 100644 Testing/RTOS_IOT.ioc create mode 100644 Testing/STM32L053R8Tx_FLASH.ld create mode 100644 Testing/Src/freertos.c create mode 100644 Testing/Src/main.c create mode 100644 Testing/Src/stm32l0xx_hal_msp.c create mode 100644 Testing/Src/stm32l0xx_it.c create mode 100644 Testing/Src/system_stm32l0xx.c create mode 100644 Testing/Testing Debug.cfg create mode 100644 Testing/startup/startup_stm32l053xx.s diff --git a/Testing/.cproject b/Testing/.cproject new file mode 100644 index 0000000..15d9efd --- /dev/null +++ b/Testing/.cproject @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Testing/.mxproject b/Testing/.mxproject new file mode 100644 index 0000000..5a5111e --- /dev/null +++ b/Testing/.mxproject @@ -0,0 +1,14 @@ +[PreviousGenFiles] +HeaderPath=C:/Users/pt/Documents/FreeRTOS/Testing/Inc +HeaderFiles=FreeRTOSConfig.h;stm32l0xx_it.h;stm32l0xx_hal_conf.h;main.h; +SourcePath=C:/Users/pt/Documents/FreeRTOS/Testing/Src +SourceFiles=FreeRTOSConfig.h;stm32l0xx_it.h;stm32l0xx_hal_conf.h;main.h;freertos.c;stm32l0xx_it.c;stm32l0xx_hal_msp.c;main.c; + +[PreviousLibFiles] +LibFiles=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_rtc.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.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.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h;Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.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_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_dma_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_cortex.h;Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h;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_rtc.c;Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_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_hal_irda.c;Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c;Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c;Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.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_flash_ramfunc.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_gpio.c;Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.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_cortex.c;Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c;Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c;Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h;Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h;Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h;Drivers/CMSIS/Device/ST/STM32L0xx/Source/Templates/system_stm32l0xx.c;Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h;Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h;Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h;Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h;Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h;Middlewares/Third_Party/FreeRTOS/Source/include/list.h;Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h;Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h;Middlewares/Third_Party/FreeRTOS/Source/include/portable.h;Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h;Middlewares/Third_Party/FreeRTOS/Source/include/queue.h;Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h;Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h;Middlewares/Third_Party/FreeRTOS/Source/include/task.h;Middlewares/Third_Party/FreeRTOS/Source/include/timers.h;Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h;Middlewares/Third_Party/FreeRTOS/Source/croutine.c;Middlewares/Third_Party/FreeRTOS/Source/event_groups.c;Middlewares/Third_Party/FreeRTOS/Source/list.c;Middlewares/Third_Party/FreeRTOS/Source/queue.c;Middlewares/Third_Party/FreeRTOS/Source/tasks.c;Middlewares/Third_Party/FreeRTOS/Source/timers.c;Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c;Drivers/CMSIS/Include/arm_common_tables.h;Drivers/CMSIS/Include/arm_const_structs.h;Drivers/CMSIS/Include/arm_math.h;Drivers/CMSIS/Include/cmsis_armcc.h;Drivers/CMSIS/Include/cmsis_armcc_V6.h;Drivers/CMSIS/Include/cmsis_gcc.h;Drivers/CMSIS/Include/core_cm0.h;Drivers/CMSIS/Include/core_cm0plus.h;Drivers/CMSIS/Include/core_cm3.h;Drivers/CMSIS/Include/core_cm4.h;Drivers/CMSIS/Include/core_cm7.h;Drivers/CMSIS/Include/core_cmFunc.h;Drivers/CMSIS/Include/core_cmInstr.h;Drivers/CMSIS/Include/core_cmSimd.h;Drivers/CMSIS/Include/core_sc000.h;Drivers/CMSIS/Include/core_sc300.h; + +[PreviousUsedSW4STM32Files] +SourceFiles=../Src/main.c;../Src/freertos.c;../Src/stm32l0xx_it.c;../Src/stm32l0xx_hal_msp.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_rtc.c;../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_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_hal_irda.c;../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c;../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c;../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.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_flash_ramfunc.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_gpio.c;../Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.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_cortex.c;../Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c;../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c;../Middlewares/Third_Party/FreeRTOS/Source/croutine.c;../Middlewares/Third_Party/FreeRTOS/Source/event_groups.c;../Middlewares/Third_Party/FreeRTOS/Source/list.c;../Middlewares/Third_Party/FreeRTOS/Source/queue.c;../Middlewares/Third_Party/FreeRTOS/Source/tasks.c;../Middlewares/Third_Party/FreeRTOS/Source/timers.c;../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c;../Drivers/CMSIS/Device/ST/STM32L0xx/Source/Templates/system_stm32l0xx.c;../Drivers/CMSIS/Device/ST/STM32L0xx/Source/Templates/gcc/startup_stm32l053xx.s;../Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c;../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c;../Middlewares/Third_Party/FreeRTOS/Source/croutine.c;../Middlewares/Third_Party/FreeRTOS/Source/event_groups.c;../Middlewares/Third_Party/FreeRTOS/Source/list.c;../Middlewares/Third_Party/FreeRTOS/Source/queue.c;../Middlewares/Third_Party/FreeRTOS/Source/tasks.c;../Middlewares/Third_Party/FreeRTOS/Source/timers.c;../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c; +HeaderPath=..\Drivers\STM32L0xx_HAL_Driver\Inc;..\Drivers\STM32L0xx_HAL_Driver\Inc\Legacy;..\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM0;..\Drivers\CMSIS\Device\ST\STM32L0xx\Include;..\Middlewares\Third_Party\FreeRTOS\Source\include;..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS;..\Drivers\CMSIS\Include; +CDefines=__weak=__attribute__((weak));__packed=__attribute__((__packed__)); + diff --git a/Testing/.project b/Testing/.project new file mode 100644 index 0000000..835b292 --- /dev/null +++ b/Testing/.project @@ -0,0 +1,27 @@ + + + RTOS_IOT + + + + + + org.eclipse.cdt.managedbuilder.core.genmakebuilder + clean,full,incremental, + + + + + org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder + full,incremental, + + + + + + org.eclipse.cdt.core.cnature + org.eclipse.cdt.managedbuilder.core.managedBuildNature + org.eclipse.cdt.managedbuilder.core.ScannerConfigNature + fr.ac6.mcu.ide.core.MCUProjectNature + + diff --git a/Testing/.settings/language.settings.xml b/Testing/.settings/language.settings.xml new file mode 100644 index 0000000..9c993b9 --- /dev/null +++ b/Testing/.settings/language.settings.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Testing/Debug/.gitignore b/Testing/Debug/.gitignore new file mode 100644 index 0000000..cd3490d --- /dev/null +++ b/Testing/Debug/.gitignore @@ -0,0 +1,4 @@ +/Drivers/ +/Middlewares/ +/Src/ +/startup/ diff --git a/Testing/Debug/RTOS_IOT.bin b/Testing/Debug/RTOS_IOT.bin new file mode 100644 index 0000000000000000000000000000000000000000..46fe30f89f35753c38d85fb8ddc44e747c9f2761 GIT binary patch literal 17340 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 DP(y|E literal 0 HcmV?d00001 diff --git a/Testing/Debug/RTOS_IOT.elf b/Testing/Debug/RTOS_IOT.elf new file mode 100644 index 0000000000000000000000000000000000000000..e5d1da6d628664d7f7ae4d0cd2a1461d838b832b GIT binary patch literal 1019280 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

w6^k>d1(3Pls=W#mr>0T?77^G0od-}` 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

XG()RRpEgfiUEyA6Y+lizNfu>lB&zm&Savly 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


D66Hoc1h3uW5+o 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 OV$pnqvn5~1hvi?gL=yY} literal 0 HcmV?d00001 diff --git a/Testing/Debug/makefile b/Testing/Debug/makefile new file mode 100644 index 0000000..5d828eb --- /dev/null +++ b/Testing/Debug/makefile @@ -0,0 +1,60 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include startup/subdir.mk +-include Src/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/subdir.mk +-include Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk +-include subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: RTOS_IOT.elf + +# Tool invocations +RTOS_IOT.elf: $(OBJS) $(USER_OBJS) ../STM32L053R8Tx_FLASH.ld + @echo 'Building target: $@' + @echo 'Invoking: MCU GCC Linker' + arm-none-eabi-gcc -mcpu=cortex-m0plus -mthumb -mfloat-abi=soft -specs=nosys.specs -specs=nano.specs -T"../STM32L053R8Tx_FLASH.ld" -Wl,-Map=output.map -Wl,--gc-sections -o "RTOS_IOT.elf" @"objects.list" $(USER_OBJS) $(LIBS) -lm + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) * + -@echo ' ' + +post-build: + -@echo 'Generating binary and Printing size information:' + arm-none-eabi-objcopy -O binary "RTOS_IOT.elf" "RTOS_IOT.bin" + arm-none-eabi-size "RTOS_IOT.elf" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/Testing/Debug/objects.list b/Testing/Debug/objects.list new file mode 100644 index 0000000..4073bb9 --- /dev/null +++ b/Testing/Debug/objects.list @@ -0,0 +1,35 @@ +"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_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_irda.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_rtc.o" +"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_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_hal_uart.o" +"Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o" +"Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o" +"Middlewares/Third_Party/FreeRTOS/Source/croutine.o" +"Middlewares/Third_Party/FreeRTOS/Source/event_groups.o" +"Middlewares/Third_Party/FreeRTOS/Source/list.o" +"Middlewares/Third_Party/FreeRTOS/Source/queue.o" +"Middlewares/Third_Party/FreeRTOS/Source/tasks.o" +"Middlewares/Third_Party/FreeRTOS/Source/timers.o" +"Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o" +"Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o" +"Src/freertos.o" +"Src/main.o" +"Src/stm32l0xx_hal_msp.o" +"Src/stm32l0xx_it.o" +"Src/system_stm32l0xx.o" +"startup/startup_stm32l053xx.o" diff --git a/Testing/Debug/objects.mk b/Testing/Debug/objects.mk new file mode 100644 index 0000000..742c2da --- /dev/null +++ b/Testing/Debug/objects.mk @@ -0,0 +1,8 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := + diff --git a/Testing/Debug/output.map b/Testing/Debug/output.map new file mode 100644 index 0000000..ec7fe1e --- /dev/null +++ b/Testing/Debug/output.map @@ -0,0 +1,5851 @@ +Archive member included to satisfy reference by file (symbol) + +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o (__aeabi_uidiv) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) (__aeabi_idiv0) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o (__aeabi_uldivmod) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) (__clzdi2) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) (__clzsi2) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (exit) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) (_global_impure_ptr) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (__libc_init_array) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + Middlewares/Third_Party/FreeRTOS/Source/queue.o (memcpy) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (memset) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) (_exit) + +Allocating common symbols +Common symbol size file + +hirda1 0x3c Src/main.o +Task_ErrorCheck 0x4 Src/main.o +Task_UartSend 0x4 Src/main.o +Queue_number 0x4 Src/main.o +hi2c1 0x4c Src/main.o +uwTick 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o +xQueueRegistry 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o +pFlash 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o +Queue_SendTo_Uart 0x4 Src/main.o +Queue_SendTo_TaskNVM + 0x4 Src/main.o +thread1_counter 0x4 Src/main.o +NVM_QueueSet 0x4 Src/main.o +hrtc 0x24 Src/main.o +huart2 0x70 Src/main.o +Task_SensorRead 0x4 Src/main.o +Task_NVM_ReadWrite 0x4 Src/main.o +Task_HearBeatLED 0x4 Src/main.o + +Discarded input sections + + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + .data 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .text 0x00000000 0x78 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o + .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o + .ARM.exidx 0x00000000 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o + .ARM.attributes + 0x00000000 0x1b c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_MspInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_MspDeInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DeInit + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_Delay + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SuspendTick + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_ResumeTick + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_GetHalVersion + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_GetREVID + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_GetDEVID + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_EnableDBGSleepMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DisableDBGSleepMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_EnableDBGStopMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DisableDBGStopMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_EnableDBGStandbyMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DisableDBGStandbyMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DBG_EnableLowPowerConfig + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DBG_DisableLowPowerConfig + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_GetBootMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_VREFINT_OutputSelect + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_Enable_Lock_VREFINT + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_Disable_Lock_VREFINT + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_EnableIRQ + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_DisableIRQ + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_SystemReset + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_GetPriority + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_SetPendingIRQ + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_GetPendingIRQ + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_ClearPendingIRQ + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_SYSTICK_Callback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_SYSTICK_IRQHandler + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_MPU_ConfigRegion + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.DMA_SetConfig + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Init + 0x00000000 0x14c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_DeInit + 0x00000000 0x234 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Start + 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Start_IT + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Abort + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Abort_IT + 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_PollForTransfer + 0x00000000 0x274 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_IRQHandler + 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_GetState + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_info 0x00000000 0x69f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_abbrev 0x00000000 0x1e1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_loc 0x00000000 0x550 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_aranges + 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_ranges 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x322 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_line 0x00000000 0xc6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_str 0x00000000 0x7a400 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_frame 0x00000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.FLASH_SetErrorCode + 0x00000000 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Program_IT + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_EndOfOperationCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OperationErrorCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_IRQHandler + 0x00000000 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Unlock + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Lock + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OB_Unlock + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OB_Lock + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_GetError + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.FLASH_WaitForLastOperation + 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Program + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OB_Launch + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_info 0x00000000 0x4ee Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_abbrev 0x00000000 0x1f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_loc 0x00000000 0x223 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_aranges + 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_ranges 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x31d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_line 0x00000000 0x9a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_str 0x00000000 0x7a317 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_frame 0x00000000 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + COMMON 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetUser + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetRDP + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetBOR + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetBOOTBit1 + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetWRP + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_ProtectedSectorsConfig + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_RDPConfig + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_UserConfig + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_BORConfig + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_BOOTBit1Config + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OBProgram + 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OBGetConfig + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_AdvOBProgram + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_AdvOBGetConfig + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OB_SelectPCROP + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OB_DeSelectPCROP + 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_Unlock + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_Lock + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_Erase + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_Program + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_PageErase + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_Erase + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_Erase_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_info 0x00000000 0xb5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_abbrev 0x00000000 0x220 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_loc 0x00000000 0xa12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_aranges + 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_line 0x00000000 0xab7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_str 0x00000000 0x7a5f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_frame 0x00000000 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .RamFunc 0x00000000 0x1dc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_info 0x00000000 0x37f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_abbrev 0x00000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_loc 0x00000000 0x139 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_aranges + 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_ranges 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_line 0x00000000 0x88b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_str 0x00000000 0x7a285 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_frame 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_DeInit + 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_ReadPin + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_LockPin + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_EXTI_Callback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_EXTI_IRQHandler + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMASlaveTransmitCplt + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMASlaveReceiveCplt + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Enable_IRQ + 0x00000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Disable_IRQ + 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnRXNEFlagUntilTimeout + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAMasterTransmitCplt + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAMasterReceiveCplt + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MspInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MspDeInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_DeInit + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Transmit + 0x00000000 0x180 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Receive + 0x00000000 0x180 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Transmit + 0x00000000 0x1a4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Receive + 0x00000000 0x18c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Transmit_IT + 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Receive_IT + 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Transmit_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Receive_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Transmit_DMA + 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Receive_DMA + 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Transmit_DMA + 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Receive_DMA + 0x00000000 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Write_IT + 0x00000000 0xf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Read_IT + 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Write_DMA + 0x00000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Read_DMA + 0x00000000 0x13c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_IsDeviceReady + 0x00000000 0x158 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Sequential_Transmit_IT + 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Sequential_Receive_IT + 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Sequential_Transmit_IT + 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Sequential_Receive_IT + 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_EnableListen_IT + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_DisableListen_IT + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Abort_IT + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_EV_IRQHandler + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MasterTxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MasterRxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITMasterSequentialCplt + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_SlaveTxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_SlaveRxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITSlaveSequentialCplt + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_AddrCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITAddrCplt + 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_ListenCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITListenCplt + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MemTxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MemRxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_ErrorCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_AbortCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITError + 0x00000000 0xf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITSlaveCplt + 0x00000000 0x118 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Slave_ISR_IT + 0x00000000 0x140 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Slave_ISR_DMA + 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITMasterCplt + 0x00000000 0xd4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Master_ISR_IT + 0x00000000 0x164 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Master_ISR_DMA + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAError + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_ER_IRQHandler + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAAbort + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_GetState + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_GetMode + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_EnableWakeUp + 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_DisableWakeUp + 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_EnableFastModePlus + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_DisableFastModePlus + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_EndTxTransfer + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_EndRxTransfer + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_Transmit_IT + 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_MspInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_MspDeInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DeInit + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Transmit + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Receive + 0x00000000 0x118 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Transmit_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Receive_IT + 0x00000000 0xc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Transmit_DMA + 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Receive_DMA + 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DMAPause + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DMAResume + 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DMAStop + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Abort + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortTransmit + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortReceive + 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_TxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATransmitCplt + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_EndTransmit_IT + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_TxHalfCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATransmitHalfCplt + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_RxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAReceiveCplt + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_Receive_IT + 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_RxHalfCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAReceiveHalfCplt + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_ErrorCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAError + 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_IRQHandler + 0x00000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAAbortOnError + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Abort_IT + 0x00000000 0xd8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMARxAbortCallback + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATxAbortCallback + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortTransmitCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortTransmit_IT + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATxOnlyAbortCallback + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortReceiveCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortReceive_IT + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMARxOnlyAbortCallback + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_GetState + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DeInit + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableBkUpAccess + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableBkUpAccess + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_ConfigPVD + 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnablePVD + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisablePVD + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableWakeUpPin + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableWakeUpPin + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnterSLEEPMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnterSTOPMode + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnterSTANDBYMode + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableSleepOnExit + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableSleepOnExit + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableSEVOnPend + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableSEVOnPend + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_PVDCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_PVD_IRQHandler + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_info 0x00000000 0x5ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_abbrev 0x00000000 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_loc 0x00000000 0xf6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_aranges + 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_ranges 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x334 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_line 0x00000000 0x96c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_str 0x00000000 0x7a3df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_frame 0x00000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_GetVoltageRange + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_EnableFastWakeUp + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_DisableFastWakeUp + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_EnableUltraLowPower + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_DisableUltraLowPower + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_EnableLowPowerRunMode + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_DisableLowPowerRunMode + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_info 0x00000000 0x1b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_abbrev 0x00000000 0xf9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_loc 0x00000000 0x2a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_aranges + 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_ranges 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x322 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_line 0x00000000 0x884 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_str 0x00000000 0x7a1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_frame 0x00000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_DeInit + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_MCOConfig + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_EnableCSS + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_GetOscConfig + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_GetClockConfig + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_CSSCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_NMI_IRQHandler + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_GetPeriphCLKConfig + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_EnableLSECSS + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_DisableLSECSS + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_EnableLSECSS_IT + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_LSECSS_Callback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_LSECSS_IRQHandler + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_EnableHSI48_VREFINT + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_DisableHSI48_VREFINT + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSConfig + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSGetSynchronizationInfo + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSWaitSynchronization + 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_SyncOkCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_SyncWarnCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_ExpectedSyncCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_ErrorCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_IRQHandler + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_MspInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_MspDeInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_DeactivateAlarm + 0x00000000 0xe8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_AlarmAEventCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_AlarmIRQHandler + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_PollForAlarmAEvent + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_GetState + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_DeInit + 0x00000000 0xf0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_SetAlarm + 0x00000000 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_SetAlarm_IT + 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.RTC_Bcd2ToByte + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_GetTime + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_GetDate + 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_GetAlarm + 0x00000000 0xc4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTimeStamp + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTimeStamp_IT + 0x00000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateTimeStamp + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_GetTimeStamp + 0x00000000 0xc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTamper + 0x00000000 0xc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTamper_IT + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateTamper + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_TimeStampEventCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_Tamper1EventCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_Tamper2EventCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_TamperTimeStampIRQHandler + 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForTimeStampEvent + 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForTamper1Event + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForTamper2Event + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetWakeUpTimer + 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetWakeUpTimer_IT + 0x00000000 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateWakeUpTimer + 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_GetWakeUpTimer + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_WakeUpTimerEventCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_WakeUpTimerIRQHandler + 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForWakeUpTimerEvent + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetSmoothCalib + 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetSynchroShift + 0x00000000 0xbc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetCalibrationOutPut + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateCalibrationOutPut + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetRefClock + 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateRefClock + 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_EnableBypassShadow + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DisableBypassShadow + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_AlarmBEventCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForAlarmBEvent + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_info 0x00000000 0x7d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_abbrev 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_aranges + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x31d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_line 0x00000000 0x7f3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_str 0x00000000 0x7a03d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_info 0x00000000 0x7d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_abbrev 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_aranges + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_line 0x00000000 0x7f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_str 0x00000000 0x7a040 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_EndTxTransfer + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_EndRxTransfer + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_Transmit_IT + 0x00000000 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_MspInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_MspDeInit + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DeInit + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Transmit_IT + 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Receive_IT + 0x00000000 0xd4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Transmit_DMA + 0x00000000 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Receive_DMA + 0x00000000 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DMAPause + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DMAResume + 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DMAStop + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Abort + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortTransmit + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortReceive + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_TxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATransmitCplt + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_EndTransmit_IT + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_TxHalfCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATxHalfCplt + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_RxCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMAReceiveCplt + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_Receive_IT + 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_RxHalfCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMARxHalfCplt + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_ErrorCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMAError + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_IRQHandler + 0x00000000 0x140 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMAAbortOnError + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Abort_IT + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMARxAbortCallback + 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATxAbortCallback + 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortTransmitCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortTransmit_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATxOnlyAbortCallback + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortReceiveCpltCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortReceive_IT + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMARxOnlyAbortCallback + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_EnterMuteMode + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_HalfDuplex_EnableTransmitter + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_HalfDuplex_EnableReceiver + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_LIN_SendBreak + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_GetState + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Receive + 0x00000000 0x134 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_HalfDuplex_Init + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_LIN_Init + 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_Init + 0x00000000 0x98 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_EnableMuteMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_DisableMuteMode + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.UARTEx_Wakeup_AddressConfig + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_RS485Ex_Init + 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_MultiProcessorEx_AddressLength_Set + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_StopModeWakeUpSourceConfig + 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_EnableStopMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_DisableStopMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_EnableClockStopMode + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_DisableClockStopMode + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_WakeupCallback + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_info 0x00000000 0x8ea Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_abbrev 0x00000000 0x1e9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_loc 0x00000000 0x35c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_aranges + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_ranges 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_line 0x00000000 0x97b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_str 0x00000000 0x7a707 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_frame 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.makeCmsisPriority + 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osKernelRunning + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadGetId + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadTerminate + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadYield + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadSetPriority + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadGetPriority + 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerCreate + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerStart + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerStop + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerDelete + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSignalSet + 0x00000000 0x60 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSignalWait + 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMutexCreate + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMutexWait + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMutexRelease + 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMutexDelete + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreCreate + 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreWait + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreRelease + 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreDelete + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolCreate + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolAlloc + 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolCAlloc + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolFree + 0x00000000 0x50 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageCreate + 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessagePut + 0x00000000 0x64 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageGet + 0x00000000 0x98 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailCreate + 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailAlloc + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailCAlloc + 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailPut + 0x00000000 0x64 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailGet + 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailFree + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadSuspend + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadResume + 0x00000000 0x30 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadSuspendAll + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadResumeAll + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osAbortDelay + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadList + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessagePeek + 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageWaiting + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageAvailableSpace + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageDelete + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osRecursiveMutexCreate + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osRecursiveMutexRelease + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osRecursiveMutexWait + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreGetCount + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x26 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_info 0x00000000 0x7d Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_abbrev 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_aranges + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xf3 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x87 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x44 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_line 0x00000000 0x472 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_str 0x00000000 0x6f9f Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .ARM.attributes + 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.prvTestWaitCondition + 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupCreate + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupWaitBits + 0x00000000 0xe8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupClearBits + 0x00000000 0x2c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupGetBitsFromISR + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupSetBits + 0x00000000 0x7c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupSync + 0x00000000 0xb4 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.vEventGroupDelete + 0x00000000 0x34 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.vEventGroupSetBitsCallback + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.vEventGroupClearBitsCallback + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.uxEventGroupGetNumber + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_info 0x00000000 0x920 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_abbrev 0x00000000 0x18f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_loc 0x00000000 0x8c6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_aranges + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_ranges 0x00000000 0x78 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x1e6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_line 0x00000000 0x6e9 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_str 0x00000000 0x9ecb Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_frame 0x00000000 0x12c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .ARM.attributes + 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvInitialiseMutex + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueCreateMutex + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueGenericSendFromISR + 0x00000000 0xdc Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueGiveFromISR + 0x00000000 0xbc Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueReceiveFromISR + 0x00000000 0x98 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueuePeekFromISR + 0x00000000 0x5c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueMessagesWaiting + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueSpacesAvailable + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueGetQueueNumber + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueSetQueueNumber + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.ucQueueGetQueueType + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueIsQueueFullFromISR + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueAddToRegistry + 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.pcQueueGetName + 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueUnregisterQueue + 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueDelete + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueCreateSet + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueAddToSet + 0x00000000 0x2c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueRemoveFromSet + 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueSelectFromSet + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueSelectFromSetFromISR + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/queue.o + COMMON 0x00000000 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvTaskIsTaskSuspended + 0x00000000 0x44 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvTaskCheckFreeStackSpace + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskDelete + 0x00000000 0x88 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.eTaskGetState + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskPriorityGet + 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskPriorityGetFromISR + 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskPrioritySet + 0x00000000 0xc4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskResume + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskResumeFromISR + 0x00000000 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskEndScheduler + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskGetNumberOfTasks + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.pcTaskGetName + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskSuspend + 0x00000000 0x90 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskPlaceOnUnorderedEventList + 0x00000000 0x3c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskRemoveFromUnorderedEventList + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskGetTaskNumber + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskSetTaskNumber + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskGetInfo + 0x00000000 0x7c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvListTasksWithinSingleList + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskGetSystemState + 0x00000000 0xb0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskGetCurrentTaskHandle + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskResetEventItemValue + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.ulTaskNotifyTake + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskNotifyWait + 0x00000000 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskGenericNotify + 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskGenericNotifyFromISR + 0x00000000 0xec Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskNotifyGiveFromISR + 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskNotifyStateClear + 0x00000000 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_info 0x00000000 0x7d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_abbrev 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_aranges + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1c2 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_line 0x00000000 0x504 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_str 0x00000000 0xa114 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/timers.o + .ARM.attributes + 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .text.vPortEndScheduler + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x87 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.xPortGetFreeHeapSize + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.vPortInitialiseBlocks + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .text 0x00000000 0x0 Src/freertos.o + .data 0x00000000 0x0 Src/freertos.o + .bss 0x00000000 0x0 Src/freertos.o + .debug_info 0x00000000 0x7d Src/freertos.o + .debug_abbrev 0x00000000 0x29 Src/freertos.o + .debug_aranges + 0x00000000 0x18 Src/freertos.o + .debug_macro 0x00000000 0xe0 Src/freertos.o + .debug_macro 0x00000000 0x832 Src/freertos.o + .debug_macro 0x00000000 0x174 Src/freertos.o + .debug_macro 0x00000000 0x22 Src/freertos.o + .debug_macro 0x00000000 0x87 Src/freertos.o + .debug_macro 0x00000000 0x44 Src/freertos.o + .debug_macro 0x00000000 0xfd Src/freertos.o + .debug_macro 0x00000000 0x5e Src/freertos.o + .debug_macro 0x00000000 0x1df Src/freertos.o + .debug_macro 0x00000000 0x52 Src/freertos.o + .debug_macro 0x00000000 0xd2 Src/freertos.o + .debug_macro 0x00000000 0x168 Src/freertos.o + .debug_macro 0x00000000 0xb6 Src/freertos.o + .debug_macro 0x00000000 0x10 Src/freertos.o + .debug_macro 0x00000000 0x1f Src/freertos.o + .debug_macro 0x00000000 0x416 Src/freertos.o + .debug_macro 0x00000000 0xc0 Src/freertos.o + .debug_macro 0x00000000 0x8c Src/freertos.o + .debug_line 0x00000000 0x440 Src/freertos.o + .debug_str 0x00000000 0x6996 Src/freertos.o + .comment 0x00000000 0x6f Src/freertos.o + .ARM.attributes + 0x00000000 0x32 Src/freertos.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .text 0x00000000 0x0 Src/main.o + .data 0x00000000 0x0 Src/main.o + .bss 0x00000000 0x0 Src/main.o + .text.vApplicationTickHook + 0x00000000 0x4 Src/main.o + .debug_macro 0x00000000 0x832 Src/main.o + .debug_macro 0x00000000 0x52 Src/main.o + .debug_macro 0x00000000 0xa3 Src/main.o + .debug_macro 0x00000000 0x2e Src/main.o + .debug_macro 0x00000000 0x28 Src/main.o + .debug_macro 0x00000000 0x22 Src/main.o + .debug_macro 0x00000000 0x87 Src/main.o + .debug_macro 0x00000000 0x44 Src/main.o + .debug_macro 0x00000000 0xfd Src/main.o + .debug_macro 0x00000000 0x5e Src/main.o + .debug_macro 0x00000000 0x1df Src/main.o + .debug_macro 0x00000000 0x34 Src/main.o + .debug_macro 0x00000000 0x26 Src/main.o + .debug_macro 0x00000000 0x44f Src/main.o + .debug_macro 0x00000000 0x9cc0 Src/main.o + .debug_macro 0x00000000 0x3c Src/main.o + .debug_macro 0x00000000 0x34a2 Src/main.o + .debug_macro 0x00000000 0x52 Src/main.o + .debug_macro 0x00000000 0x35 Src/main.o + .debug_macro 0x00000000 0x9c Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x97 Src/main.o + .debug_macro 0x00000000 0x30d Src/main.o + .debug_macro 0x00000000 0xfd Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x52 Src/main.o + .debug_macro 0x00000000 0x1f Src/main.o + .debug_macro 0x00000000 0x43 Src/main.o + .debug_macro 0x00000000 0x20 Src/main.o + .debug_macro 0x00000000 0x187 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x1c Src/main.o + .debug_macro 0x00000000 0x52 Src/main.o + .debug_macro 0x00000000 0x40 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x40 Src/main.o + .debug_macro 0x00000000 0xd7 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x18b Src/main.o + .debug_macro 0x00000000 0x50 Src/main.o + .debug_macro 0x00000000 0x8e0 Src/main.o + .debug_macro 0x00000000 0x9d4 Src/main.o + .debug_macro 0x00000000 0x14d Src/main.o + .debug_macro 0x00000000 0x184 Src/main.o + .debug_macro 0x00000000 0x279 Src/main.o + .debug_macro 0x00000000 0x1ef Src/main.o + .debug_macro 0x00000000 0x12a Src/main.o + .debug_macro 0x00000000 0x2b6 Src/main.o + .debug_macro 0x00000000 0x202 Src/main.o + .debug_macro 0x00000000 0x5b Src/main.o + .debug_macro 0x00000000 0x90 Src/main.o + .debug_macro 0x00000000 0x189 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x30c Src/main.o + .debug_macro 0x00000000 0x3f1 Src/main.o + .debug_macro 0x00000000 0xdd Src/main.o + .debug_macro 0x00000000 0x54a Src/main.o + .debug_macro 0x00000000 0x44 Src/main.o + .debug_macro 0x00000000 0x280 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x165 Src/main.o + .debug_macro 0x00000000 0x168 Src/main.o + .debug_macro 0x00000000 0xb6 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x1f Src/main.o + .debug_macro 0x00000000 0x416 Src/main.o + .debug_macro 0x00000000 0xc0 Src/main.o + .debug_macro 0x00000000 0x8c Src/main.o + .debug_macro 0x00000000 0x91 Src/main.o + .debug_macro 0x00000000 0x94 Src/main.o + .debug_macro 0x00000000 0x63 Src/main.o + .debug_macro 0x00000000 0xcf Src/main.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .text 0x00000000 0x0 Src/stm32l0xx_hal_msp.o + .data 0x00000000 0x0 Src/stm32l0xx_hal_msp.o + .bss 0x00000000 0x0 Src/stm32l0xx_hal_msp.o + .text.HAL_I2C_MspDeInit + 0x00000000 0x30 Src/stm32l0xx_hal_msp.o + .text.HAL_RTC_MspDeInit + 0x00000000 0x20 Src/stm32l0xx_hal_msp.o + .text.HAL_IRDA_MspDeInit + 0x00000000 0x30 Src/stm32l0xx_hal_msp.o + .text.HAL_UART_MspDeInit + 0x00000000 0x2c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x832 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xa3 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x2e Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x28 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x22 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x87 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x44 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xfd Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x5e Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1df Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x34 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x26 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x44f Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x3c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x9c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x97 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x30d Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xfd Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x43 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x20 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x187 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xd7 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x18b Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x50 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x8e0 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x9d4 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x14d Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x184 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x279 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1ef Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x12a Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x2b6 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x202 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x5b Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x90 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x189 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x30c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x3f1 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xdd Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x54a Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x44 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x280 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x165 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .text 0x00000000 0x0 Src/stm32l0xx_it.o + .data 0x00000000 0x0 Src/stm32l0xx_it.o + .bss 0x00000000 0x0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x832 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xa3 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x2e Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x28 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x22 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x87 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x44 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xfd Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x5e Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1df Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x34 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x26 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x44f Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x3c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x9c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x97 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x30d Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xfd Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x43 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x20 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x187 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xd7 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x18b Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x50 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x8e0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x9d4 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x14d Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x184 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x279 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1ef Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x12a Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x2b6 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x202 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x5b Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x90 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x189 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x30c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x3f1 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xdd Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x54a Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x44 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x280 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x165 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xd8 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x168 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xb6 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x416 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xc0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x8c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x91 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x94 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x63 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xcf Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .text 0x00000000 0x0 Src/system_stm32l0xx.o + .bss 0x00000000 0x0 Src/system_stm32l0xx.o + .text.SystemCoreClockUpdate + 0x00000000 0xcc Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x832 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x2e Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x28 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x22 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x87 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x44 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xfd Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x5e Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1df Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x34 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x26 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x44f Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x9cc0 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x3c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xa3 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x34a2 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x35 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x9c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x97 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x30d Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xfd Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1f Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x43 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x20 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x187 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x40 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x40 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xd7 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x18b Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x50 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x8e0 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x9d4 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x14d Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x184 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x279 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1ef Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x12a Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x2b6 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x202 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x5b Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x90 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x189 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x30c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x3f1 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xdd Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x54a Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x44 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x280 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x165 Src/system_stm32l0xx.o + .text 0x00000000 0x14 startup/startup_stm32l053xx.o + .data 0x00000000 0x0 startup/startup_stm32l053xx.o + .bss 0x00000000 0x0 startup/startup_stm32l053xx.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) + .text.exit 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) + .debug_frame 0x00000000 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) + .ARM.attributes + 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + .data.impure_data + 0x00000000 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + .data._impure_ptr + 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + .rodata._global_impure_ptr + 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + .ARM.attributes + 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) + .text._exit 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) + .debug_frame 0x00000000 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) + .ARM.attributes + 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o + .eh_frame 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o + .jcr 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o + .ARM.attributes + 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + +Memory Configuration + +Name Origin Length Attributes +RAM 0x20000000 0x00002000 xrw +FLASH 0x08000000 0x00010000 xr +*default* 0x00000000 0xffffffff + +Linker script and memory map + +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.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_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_irda.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_rtc.o +LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_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_hal_uart.o +LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/croutine.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/event_groups.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/list.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/queue.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/tasks.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/timers.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o +LOAD Src/freertos.o +LOAD Src/main.o +LOAD Src/stm32l0xx_hal_msp.o +LOAD Src/stm32l0xx_it.o +LOAD Src/system_stm32l0xx.o +LOAD startup/startup_stm32l053xx.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libm.a +START GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a +END GROUP +START GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a +END GROUP +START GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a +END GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x20002000 _estack = 0x20002000 + 0x00000200 _Min_Heap_Size = 0x200 + 0x00000400 _Min_Stack_Size = 0x400 + +.isr_vector 0x08000000 0xc0 + 0x08000000 . = ALIGN (0x4) + *(.isr_vector) + .isr_vector 0x08000000 0xc0 startup/startup_stm32l053xx.o + 0x08000000 g_pfnVectors + 0x080000c0 . = ALIGN (0x4) + +.text 0x080000c0 0x41c4 + 0x080000c0 . = ALIGN (0x4) + *(.text) + .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .text 0x08000120 0x114 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + 0x08000120 __aeabi_uidiv + 0x08000120 __udivsi3 + 0x0800022c __aeabi_uidivmod + .text 0x08000234 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + 0x08000234 __aeabi_idiv0 + 0x08000234 __aeabi_ldiv0 + .text 0x08000238 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + 0x08000238 __aeabi_uldivmod + .text 0x08000278 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x08000278 __udivmoddi4 + .text 0x080003f8 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x080003f8 __clzdi2 + .text 0x08000410 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x08000410 __clzsi2 + *(.text*) + .text.HAL_InitTick + 0x0800044c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x0800044c HAL_InitTick + .text.HAL_Init + 0x08000474 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08000474 HAL_Init + .text.HAL_IncTick + 0x08000494 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08000494 HAL_IncTick + .text.HAL_GetTick + 0x080004a4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x080004a4 HAL_GetTick + .text.HAL_NVIC_SetPriority + 0x080004b0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x080004b0 HAL_NVIC_SetPriority + .text.HAL_SYSTICK_Config + 0x08000514 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08000514 HAL_SYSTICK_Config + .text.HAL_SYSTICK_CLKSourceConfig + 0x0800054c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x0800054c HAL_SYSTICK_CLKSourceConfig + .text.HAL_GPIO_Init + 0x0800056c 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800056c HAL_GPIO_Init + .text.HAL_GPIO_WritePin + 0x08000700 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08000700 HAL_GPIO_WritePin + .text.HAL_GPIO_TogglePin + 0x0800070c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800070c HAL_GPIO_TogglePin + .text.I2C_Flush_TXDR + 0x08000714 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_TransferConfig + 0x08000734 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_IsAcknowledgeFailed + 0x08000758 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnTXISFlagUntilTimeout + 0x080007d0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnFlagUntilTimeout + 0x08000824 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_RequestMemoryWrite + 0x08000870 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_RequestMemoryRead + 0x080008f4 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnSTOPFlagUntilTimeout + 0x08000978 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Init + 0x080009c8 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080009c8 HAL_I2C_Init + .text.HAL_I2C_Mem_Write + 0x08000a90 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08000a90 HAL_I2C_Mem_Write + .text.HAL_I2C_Mem_Read + 0x08000c58 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08000c58 HAL_I2C_Mem_Read + .text.HAL_I2CEx_ConfigAnalogFilter + 0x08000e28 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08000e28 HAL_I2CEx_ConfigAnalogFilter + .text.HAL_I2CEx_ConfigDigitalFilter + 0x08000e80 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08000e80 HAL_I2CEx_ConfigDigitalFilter + .text.IRDA_SetConfig + 0x08000ed4 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_WaitOnFlagUntilTimeout + 0x08001068 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_CheckIdleState + 0x080010d4 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Init + 0x08001144 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08001144 HAL_IRDA_Init + .text.RCC_SetFlashLatencyFromMSIRange + 0x080011b0 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_OscConfig + 0x08001238 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08001238 HAL_RCC_OscConfig + .text.HAL_RCC_GetSysClockFreq + 0x080017f0 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080017f0 HAL_RCC_GetSysClockFreq + .text.HAL_RCC_ClockConfig + 0x08001884 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08001884 HAL_RCC_ClockConfig + .text.HAL_RCC_GetHCLKFreq + 0x08001a38 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08001a38 HAL_RCC_GetHCLKFreq + .text.HAL_RCC_GetPCLK1Freq + 0x08001a44 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08001a44 HAL_RCC_GetPCLK1Freq + .text.HAL_RCC_GetPCLK2Freq + 0x08001a64 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08001a64 HAL_RCC_GetPCLK2Freq + .text.HAL_RCCEx_PeriphCLKConfig + 0x08001a84 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x08001a84 HAL_RCCEx_PeriphCLKConfig + .text.HAL_RCCEx_GetPeriphCLKFreq + 0x08001c70 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x08001c70 HAL_RCCEx_GetPeriphCLKFreq + .text.HAL_RTC_WaitForSynchro + 0x08001ee8 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08001ee8 HAL_RTC_WaitForSynchro + .text.RTC_EnterInitMode + 0x08001f1c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08001f1c RTC_EnterInitMode + .text.HAL_RTC_Init + 0x08001f58 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08001f58 HAL_RTC_Init + .text.RTC_ByteToBcd2 + 0x08002004 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08002004 RTC_ByteToBcd2 + .text.HAL_RTC_SetTime + 0x0800201c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x0800201c HAL_RTC_SetTime + .text.HAL_RTC_SetDate + 0x08002128 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08002128 HAL_RTC_SetDate + .text.HAL_RTCEx_BKUPWrite + 0x08002214 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08002214 HAL_RTCEx_BKUPWrite + .text.HAL_RTCEx_BKUPRead + 0x08002220 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08002220 HAL_RTCEx_BKUPRead + .text.UART_SetConfig + 0x0800222c 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800222c UART_SetConfig + .text.UART_AdvFeatureConfig + 0x0800256c 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800256c UART_AdvFeatureConfig + .text.UART_WaitOnFlagUntilTimeout + 0x0800264c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800264c UART_WaitOnFlagUntilTimeout + .text.HAL_UART_Transmit + 0x080026b8 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080026b8 HAL_UART_Transmit + .text.UART_CheckIdleState + 0x0800279c 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800279c UART_CheckIdleState + .text.HAL_UART_Init + 0x0800280c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800280c HAL_UART_Init + .text.makeFreeRtosPriority + 0x08002878 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.inHandlerMode + 0x08002884 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osKernelStart + 0x08002890 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08002890 osKernelStart + .text.osKernelSysTick + 0x0800289c 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800289c osKernelSysTick + .text.osThreadCreate + 0x080028b4 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080028b4 osThreadCreate + .text.osDelay 0x080028e8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080028e8 osDelay + .text.osSystickHandler + 0x080028f8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080028f8 osSystickHandler + .text.osDelayUntil + 0x08002908 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08002908 osDelayUntil + .text.vListInitialise + 0x08002918 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08002918 vListInitialise + .text.vListInitialiseItem + 0x08002930 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08002930 vListInitialiseItem + .text.vListInsertEnd + 0x08002938 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08002938 vListInsertEnd + .text.vListInsert + 0x08002950 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08002950 vListInsert + .text.uxListRemove + 0x08002980 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08002980 uxListRemove + .text.prvIsQueueFull + 0x080029a4 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvIsQueueEmpty + 0x080029c4 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvCopyDataToQueue + 0x080029e0 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvNotifyQueueSetContainer + 0x08002a64 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvCopyDataFromQueue + 0x08002ac8 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvUnlockQueue + 0x08002aec 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueGenericReset + 0x08002b74 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08002b74 xQueueGenericReset + .text.prvInitialiseNewQueue + 0x08002be0 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueGenericCreate + 0x08002c08 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08002c08 xQueueGenericCreate + .text.xQueueGenericSend + 0x08002c48 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08002c48 xQueueGenericSend + .text.xQueueGenericReceive + 0x08002da8 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08002da8 xQueueGenericReceive + .text.prvResetNextTaskUnblockTime + 0x08002f28 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvDeleteTCB + 0x08002f58 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvInitialiseNewTask + 0x08002f6c 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvInitialiseTaskLists + 0x08003008 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvAddNewTaskToReadyList + 0x08003060 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvAddCurrentTaskToDelayedList + 0x080030f4 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskCreate + 0x08003160 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003160 xTaskCreate + .text.vTaskStartScheduler + 0x080031c0 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080031c0 vTaskStartScheduler + .text.vTaskSuspendAll + 0x08003214 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003214 vTaskSuspendAll + .text.xTaskGetTickCount + 0x08003224 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003224 xTaskGetTickCount + .text.xTaskGetTickCountFromISR + 0x08003230 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003230 xTaskGetTickCountFromISR + .text.xTaskIncrementTick + 0x0800323c 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800323c xTaskIncrementTick + .text.xTaskResumeAll + 0x08003340 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003340 xTaskResumeAll + .text.vTaskDelayUntil + 0x08003414 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003414 vTaskDelayUntil + .text.vTaskDelay + 0x0800348c 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800348c vTaskDelay + .text.prvCheckTasksWaitingTermination + 0x080034c0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvIdleTask + 0x08003510 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskSwitchContext + 0x08003528 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003528 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x080035ac 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080035ac vTaskPlaceOnEventList + .text.xTaskRemoveFromEventList + 0x080035d0 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080035d0 xTaskRemoveFromEventList + .text.vTaskSetTimeOutState + 0x08003648 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003648 vTaskSetTimeOutState + .text.xTaskCheckForTimeOut + 0x08003660 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003660 xTaskCheckForTimeOut + .text.vTaskMissedYield + 0x080036c4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080036c4 vTaskMissedYield + .text.xTaskGetSchedulerState + 0x080036d0 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080036d0 xTaskGetSchedulerState + .text.vTaskPriorityInherit + 0x080036f0 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080036f0 vTaskPriorityInherit + .text.xTaskPriorityDisinherit + 0x08003770 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08003770 xTaskPriorityDisinherit + .text.pvTaskIncrementMutexHeldCount + 0x080037e4 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080037e4 pvTaskIncrementMutexHeldCount + .text.prvTaskExitError + 0x08003800 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x08003814 0xc + .text.vPortStartFirstTask + 0x08003820 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .text.pxPortInitialiseStack + 0x08003854 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08003854 pxPortInitialiseStack + .text.SVC_Handler + 0x08003874 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08003874 SVC_Handler + .text.vPortYield + 0x08003878 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08003878 vPortYield + .text.vPortEnterCritical + 0x08003890 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08003890 vPortEnterCritical + .text.vPortExitCritical + 0x080038a8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080038a8 vPortExitCritical + .text.ulSetInterruptMaskFromISR + 0x080038c8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080038c8 ulSetInterruptMaskFromISR + .text.vClearInterruptMaskFromISR + 0x080038d4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080038d4 vClearInterruptMaskFromISR + *fill* 0x080038dc 0x4 + .text.PendSV_Handler + 0x080038e0 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080038e0 PendSV_Handler + .text.xPortSysTickHandler + 0x08003924 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08003924 xPortSysTickHandler + .text.vPortSetupTimerInterrupt + 0x08003948 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08003948 vPortSetupTimerInterrupt + .text.xPortStartScheduler + 0x08003970 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08003970 xPortStartScheduler + .text.prvHeapInit + 0x080039a4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.prvInsertBlockIntoFreeList + 0x080039f4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.pvPortMalloc + 0x08003a44 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08003a44 pvPortMalloc + .text.vPortFree + 0x08003b08 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08003b08 vPortFree + .text.MX_GPIO_Init + 0x08003b60 0x8c Src/main.o + .text.func_NVM_Manager + 0x08003bec 0x44 Src/main.o + 0x08003bec func_NVM_Manager + .text.func_LEDBlink + 0x08003c30 0x34 Src/main.o + 0x08003c30 func_LEDBlink + .text.func_UartPrint + 0x08003c64 0x48 Src/main.o + 0x08003c64 func_UartPrint + .text.func_SensorRead + 0x08003cac 0x98 Src/main.o + 0x08003cac func_SensorRead + .text.Error_Handler + 0x08003d44 0x4 Src/main.o + 0x08003d44 Error_Handler + .text.MX_RTC_Init + 0x08003d48 0x90 Src/main.o + .text.MX_USART2_UART_Init + 0x08003dd8 0x38 Src/main.o + .text.MX_USART1_IRDA_Init + 0x08003e10 0x38 Src/main.o + .text.MX_I2C1_Init + 0x08003e48 0x58 Src/main.o + .text.SystemClock_Config + 0x08003ea0 0xa4 Src/main.o + 0x08003ea0 SystemClock_Config + .text.main 0x08003f44 0xc8 Src/main.o + 0x08003f44 main + .text.HAL_MspInit + 0x0800400c 0x40 Src/stm32l0xx_hal_msp.o + 0x0800400c HAL_MspInit + .text.HAL_I2C_MspInit + 0x0800404c 0x48 Src/stm32l0xx_hal_msp.o + 0x0800404c HAL_I2C_MspInit + .text.HAL_RTC_MspInit + 0x08004094 0x20 Src/stm32l0xx_hal_msp.o + 0x08004094 HAL_RTC_MspInit + .text.HAL_IRDA_MspInit + 0x080040b4 0x44 Src/stm32l0xx_hal_msp.o + 0x080040b4 HAL_IRDA_MspInit + .text.HAL_UART_MspInit + 0x080040f8 0x44 Src/stm32l0xx_hal_msp.o + 0x080040f8 HAL_UART_MspInit + .text.SysTick_Handler + 0x0800413c 0xc Src/stm32l0xx_it.o + 0x0800413c SysTick_Handler + .text.RTC_IRQHandler + 0x08004148 0x4 Src/stm32l0xx_it.o + 0x08004148 RTC_IRQHandler + .text.SystemInit + 0x0800414c 0x5c Src/system_stm32l0xx.o + 0x0800414c SystemInit + .text.Reset_Handler + 0x080041a8 0x50 startup/startup_stm32l053xx.o + 0x080041a8 Reset_Handler + .text.Default_Handler + 0x080041f8 0x2 startup/startup_stm32l053xx.o + 0x080041f8 TSC_IRQHandler + 0x080041f8 HardFault_Handler + 0x080041f8 ADC1_COMP_IRQHandler + 0x080041f8 PVD_IRQHandler + 0x080041f8 NMI_Handler + 0x080041f8 I2C1_IRQHandler + 0x080041f8 RCC_CRS_IRQHandler + 0x080041f8 SPI1_IRQHandler + 0x080041f8 TIM6_DAC_IRQHandler + 0x080041f8 EXTI2_3_IRQHandler + 0x080041f8 I2C2_IRQHandler + 0x080041f8 LCD_IRQHandler + 0x080041f8 DMA1_Channel4_5_6_7_IRQHandler + 0x080041f8 EXTI4_15_IRQHandler + 0x080041f8 DMA1_Channel1_IRQHandler + 0x080041f8 Default_Handler + 0x080041f8 TIM22_IRQHandler + 0x080041f8 EXTI0_1_IRQHandler + 0x080041f8 USB_IRQHandler + 0x080041f8 SPI2_IRQHandler + 0x080041f8 TIM21_IRQHandler + 0x080041f8 WWDG_IRQHandler + 0x080041f8 TIM2_IRQHandler + 0x080041f8 DMA1_Channel2_3_IRQHandler + 0x080041f8 USART2_IRQHandler + 0x080041f8 FLASH_IRQHandler + 0x080041f8 USART1_IRQHandler + 0x080041f8 RNG_LPUART1_IRQHandler + 0x080041f8 LPTIM1_IRQHandler + *fill* 0x080041fa 0x2 + .text.__libc_init_array + 0x080041fc 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x080041fc __libc_init_array + .text.memcpy 0x08004248 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x08004248 memcpy + .text.memset 0x0800425a 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x0800425a memset + *(.glue_7) + .glue_7 0x0800426a 0x0 linker stubs + *(.glue_7t) + .glue_7t 0x0800426a 0x0 linker stubs + *(.eh_frame) + *fill* 0x0800426a 0x2 + .eh_frame 0x0800426c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + *(.init) + .init 0x0800426c 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x0800426c _init + .init 0x08004270 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + *(.fini) + .fini 0x08004278 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08004278 _fini + .fini 0x0800427c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x08004284 . = ALIGN (0x4) + 0x08004284 _etext = . + +.vfp11_veneer 0x08004284 0x0 + .vfp11_veneer 0x08004284 0x0 linker stubs + +.v4_bx 0x08004284 0x0 + .v4_bx 0x08004284 0x0 linker stubs + +.iplt 0x08004284 0x0 + .iplt 0x08004284 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + +.rodata 0x08004284 0x120 + 0x08004284 . = ALIGN (0x4) + *(.rodata) + .rodata 0x08004284 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x080042a8 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x080042f0 0x50 Src/main.o + .rodata 0x08004340 0x24 Src/system_stm32l0xx.o + 0x08004340 PLLMulTable + 0x0800434c AHBPrescTable + 0x0800435c APBPrescTable + *(.rodata*) + .rodata.str1.4 + 0x08004364 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x08004369 0x3 + .rodata.str1.4 + 0x0800436c 0x38 Src/main.o + 0x36 (size before relaxing) + 0x080043a4 . = ALIGN (0x4) + +.ARM.extab + *(.ARM.extab* .gnu.linkonce.armextab.*) + +.ARM 0x080043a4 0x8 + 0x080043a4 __exidx_start = . + *(.ARM.exidx*) + .ARM.exidx 0x080043a4 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x080043ac __exidx_end = . + +.rel.dyn 0x080043ac 0x0 + .rel.iplt 0x080043ac 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + +.preinit_array 0x080043ac 0x0 + 0x080043ac PROVIDE (__preinit_array_start, .) + *(.preinit_array*) + 0x080043ac PROVIDE (__preinit_array_end, .) + +.init_array 0x080043ac 0x4 + 0x080043ac PROVIDE (__init_array_start, .) + *(SORT(.init_array.*)) + *(.init_array*) + .init_array 0x080043ac 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x080043b0 PROVIDE (__init_array_end, .) + +.fini_array 0x080043b0 0x4 + [!provide] PROVIDE (__fini_array_start, .) + *(SORT(.fini_array.*)) + *(.fini_array*) + .fini_array 0x080043b0 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + [!provide] PROVIDE (__fini_array_end, .) + 0x080043b4 _sidata = LOADADDR (.data) + +.data 0x20000000 0x8 load address 0x080043b4 + 0x20000000 . = ALIGN (0x4) + 0x20000000 _sdata = . + *(.data) + .data 0x20000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .data 0x20000004 0x4 Src/system_stm32l0xx.o + 0x20000004 SystemCoreClock + *(.data*) + 0x20000008 . = ALIGN (0x4) + 0x20000008 _edata = . + +.jcr 0x20000008 0x0 load address 0x080043bc + .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + +.igot.plt 0x20000008 0x0 load address 0x080043bc + .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x20000008 . = ALIGN (0x4) + +.bss 0x20000008 0xea8 load address 0x080043bc + 0x20000008 _sbss = . + 0x20000008 __bss_start__ = _sbss + *(.bss) + .bss 0x20000008 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .bss 0x20000024 0x12c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x20000124 pxCurrentTCB + .bss 0x20000150 0xc18 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + *(.bss*) + *(COMMON) + COMMON 0x20000d68 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x20000d68 uwTick + COMMON 0x20000d6c 0x144 Src/main.o + 0x20000d6c hirda1 + 0x20000da8 Task_ErrorCheck + 0x20000dac Task_UartSend + 0x20000db0 Queue_number + 0x20000db4 hi2c1 + 0x20000e00 Queue_SendTo_Uart + 0x20000e04 Queue_SendTo_TaskNVM + 0x20000e08 thread1_counter + 0x20000e0c NVM_QueueSet + 0x20000e10 hrtc + 0x20000e34 huart2 + 0x20000ea4 Task_SensorRead + 0x20000ea8 Task_NVM_ReadWrite + 0x20000eac Task_HearBeatLED + 0x20000eb0 . = ALIGN (0x4) + 0x20000eb0 _ebss = . + 0x20000eb0 __bss_end__ = _ebss + +._user_heap_stack + 0x20000eb0 0x600 load address 0x080043bc + 0x20000eb0 . = ALIGN (0x8) + [!provide] PROVIDE (end, .) + [!provide] PROVIDE (_end, .) + 0x200010b0 . = (. + _Min_Heap_Size) + *fill* 0x20000eb0 0x200 + 0x200014b0 . = (. + _Min_Stack_Size) + *fill* 0x200010b0 0x400 + 0x200014b0 . = ALIGN (0x8) + +/DISCARD/ + libc.a(*) + libm.a(*) + libgcc.a(*) + +.ARM.attributes + 0x00000000 0x28 + *(.ARM.attributes) + .ARM.attributes + 0x00000000 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + .ARM.attributes + 0x0000001e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .ARM.attributes + 0x0000004a 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .ARM.attributes + 0x0000007c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .ARM.attributes + 0x000000ae 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .ARM.attributes + 0x000000e0 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .ARM.attributes + 0x00000112 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .ARM.attributes + 0x00000144 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .ARM.attributes + 0x00000176 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .ARM.attributes + 0x000001a8 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .ARM.attributes + 0x000001da 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .ARM.attributes + 0x0000020c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .ARM.attributes + 0x0000023e 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .ARM.attributes + 0x00000270 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .ARM.attributes + 0x000002a2 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o + .ARM.attributes + 0x000002d4 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .ARM.attributes + 0x00000306 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .ARM.attributes + 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .ARM.attributes + 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .ARM.attributes + 0x0000039c 0x32 Src/main.o + .ARM.attributes + 0x000003ce 0x32 Src/stm32l0xx_hal_msp.o + .ARM.attributes + 0x00000400 0x32 Src/stm32l0xx_it.o + .ARM.attributes + 0x00000432 0x32 Src/system_stm32l0xx.o + .ARM.attributes + 0x00000464 0x22 startup/startup_stm32l053xx.o + .ARM.attributes + 0x00000486 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .ARM.attributes + 0x000004a4 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x000004c2 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x000004e0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000050c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + .ARM.attributes + 0x0000052a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + .ARM.attributes + 0x00000548 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .ARM.attributes + 0x00000574 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .ARM.attributes + 0x000005a0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .ARM.attributes + 0x000005cc 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o +OUTPUT(RTOS_IOT.elf elf32-littlearm) + +.debug_info 0x00000000 0x13ee1 + .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_info 0x00000fea 0x647 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_info 0x00001631 0x310e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_info 0x0000473f 0x83e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_info 0x00004f7d 0x150c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_info 0x00006489 0xb74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_info 0x00006ffd 0x8cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_info 0x000078c8 0xd08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_info 0x000085d0 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_info 0x000094ef 0x1990 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_info 0x0000ae7f 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_info 0x0000c98e 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_info 0x0000cc33 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_info 0x0000e300 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_info 0x00010497 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_info 0x00010747 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_info 0x00010aac 0x1df8 Src/main.o + .debug_info 0x000128a4 0x117a Src/stm32l0xx_hal_msp.o + .debug_info 0x00013a1e 0xd6 Src/stm32l0xx_it.o + .debug_info 0x00013af4 0x37b Src/system_stm32l0xx.o + .debug_info 0x00013e6f 0x72 startup/startup_stm32l053xx.o + +.debug_abbrev 0x00000000 0x26e1 + .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_abbrev 0x0000046d 0x1cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_abbrev 0x00000638 0x213 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_abbrev 0x0000084b 0x192 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_abbrev 0x000009dd 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_abbrev 0x00000c05 0x242 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_abbrev 0x00000e47 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_abbrev 0x00001033 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_abbrev 0x000011cf 0x1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_abbrev 0x0000137a 0x24a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_abbrev 0x000015c4 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_abbrev 0x00001899 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_abbrev 0x00001978 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_abbrev 0x00001b7a 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_abbrev 0x00001dea 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_abbrev 0x00001fb9 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_abbrev 0x00002176 0x25e Src/main.o + .debug_abbrev 0x000023d4 0x18d Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x00002561 0x7b Src/stm32l0xx_it.o + .debug_abbrev 0x000025dc 0xf3 Src/system_stm32l0xx.o + .debug_abbrev 0x000026cf 0x12 startup/startup_stm32l053xx.o + +.debug_loc 0x00000000 0xd777 + .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_loc 0x00000447 0x284 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_loc 0x000006cb 0x331a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_loc 0x000039e5 0x245 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_loc 0x00003c2a 0x10fc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_loc 0x00004d26 0x6a7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_loc 0x000053cd 0x9a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_loc 0x00005d6f 0xc10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_loc 0x0000697f 0xf1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_loc 0x0000789b 0x176e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_loc 0x00009009 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_loc 0x0000a01b 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_loc 0x0000a080 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_loc 0x0000b8a8 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_loc 0x0000d19d 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_loc 0x0000d243 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_loc 0x0000d487 0xc5 Src/main.o + .debug_loc 0x0000d54c 0xc6 Src/stm32l0xx_hal_msp.o + .debug_loc 0x0000d612 0x165 Src/system_stm32l0xx.o + +.debug_aranges 0x00000000 0x1230 + .debug_aranges + 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_aranges + 0x000000e0 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_aranges + 0x00000160 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_aranges + 0x000001b8 0x260 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_aranges + 0x00000418 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_aranges + 0x00000460 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_aranges + 0x000005f8 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_aranges + 0x00000680 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_aranges + 0x00000730 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_aranges + 0x000007e8 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_aranges + 0x00000908 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_aranges + 0x00000af0 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_aranges + 0x00000cc8 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_aranges + 0x00000d08 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_aranges + 0x00000e30 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_aranges + 0x00001000 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_aranges + 0x00001088 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_aranges + 0x000010d8 0x80 Src/main.o + .debug_aranges + 0x00001158 0x60 Src/stm32l0xx_hal_msp.o + .debug_aranges + 0x000011b8 0x28 Src/stm32l0xx_it.o + .debug_aranges + 0x000011e0 0x28 Src/system_stm32l0xx.o + .debug_aranges + 0x00001208 0x28 startup/startup_stm32l053xx.o + +.debug_ranges 0x00000000 0x11a8 + .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_ranges 0x000000d0 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_ranges 0x00000140 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_ranges 0x00000188 0x250 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_ranges 0x000003d8 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_ranges 0x00000410 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_ranges 0x00000598 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_ranges 0x00000628 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_ranges 0x000006e0 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_ranges 0x00000788 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_ranges 0x00000898 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_ranges 0x00000a70 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_ranges 0x00000c38 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_ranges 0x00000c68 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_ranges 0x00000de0 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_ranges 0x00000fe0 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_ranges 0x00001058 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_ranges 0x00001098 0x70 Src/main.o + .debug_ranges 0x00001108 0x50 Src/stm32l0xx_hal_msp.o + .debug_ranges 0x00001158 0x18 Src/stm32l0xx_it.o + .debug_ranges 0x00001170 0x18 Src/system_stm32l0xx.o + .debug_ranges 0x00001188 0x20 startup/startup_stm32l053xx.o + +.debug_macro 0x00000000 0x16f33 + .debug_macro 0x00000000 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000340 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000b72 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000bc4 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000c67 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000c95 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000cbd 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000cdf 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000d66 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000daa 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000ea7 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000f05 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000010e4 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001118 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000113e 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000158d 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000b24d 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000b289 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000e72b 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000e77d 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000e7b2 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000e84e 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000e864 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000e8fb 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ec08 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ed05 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ed15 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ed67 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ed86 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000edc9 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ede9 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ef70 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ef80 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000ef9c 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000efee 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f02e 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f03e 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f07e 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f155 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f16b 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f2f6 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f346 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000fc26 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000105fa 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010747 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000108cb 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010b44 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010d33 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010e5d 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011113 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011315 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011370 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011400 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011589 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001159f 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000118ab 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011c9c 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011d79 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000122c3 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012307 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012587 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012597 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000126fc 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00012a18 0x355 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00012d6d 0x3e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00013155 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00013471 0x32b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x0001379c 0x36a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00013b06 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00013e34 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00014150 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x0001446c 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x0001479a 0x1f5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001498f 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000149db 0x8d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014a68 0x174 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014bdc 0x4a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014c26 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014c36 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014c6b 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014d3d 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014ea5 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014f5b 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014f6b 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014f8a 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000153a0 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015460 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000154ec 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001557d 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015611 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015674 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015743 0x18b Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x000158ce 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00015ad5 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00015aeb 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00015d5c 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00015d6d 0x14c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00015eb9 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x0001606b 0x3d6 Src/main.o + .debug_macro 0x00016441 0xd8 Src/main.o + .debug_macro 0x00016519 0x31c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00016835 0x3dc Src/stm32l0xx_it.o + .debug_macro 0x00016c11 0x322 Src/system_stm32l0xx.o + +.debug_line 0x00000000 0xed85 + .debug_line 0x00000000 0x9c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_line 0x000009c1 0x976 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_line 0x00001337 0x93b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_line 0x00001c72 0x1874 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_line 0x000034e6 0x93c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_line 0x00003e22 0x1015 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_line 0x00004e37 0xaf4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_line 0x0000592b 0xaf3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_line 0x0000641e 0xb87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_line 0x00006fa5 0xe6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_line 0x00007e11 0x1297 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_line 0x000090a8 0xb77 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_line 0x00009c1f 0x561 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x0000a180 0xab1 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000ac31 0xf1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000bb50 0x59d Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_line 0x0000c0ed 0x610 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_line 0x0000c6fd 0xb6a Src/main.o + .debug_line 0x0000d267 0x89a Src/stm32l0xx_hal_msp.o + .debug_line 0x0000db01 0x9ed Src/stm32l0xx_it.o + .debug_line 0x0000e4ee 0x814 Src/system_stm32l0xx.o + .debug_line 0x0000ed02 0x83 startup/startup_stm32l053xx.o + +.debug_str 0x00000000 0x85c9b + .debug_str 0x00000000 0x7a349 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x7a762 (size before relaxing) + .debug_str 0x0007a349 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x7a574 (size before relaxing) + .debug_str 0x0007a5d8 0x2c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x7a407 (size before relaxing) + .debug_str 0x0007a899 0x11a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x7b2cd (size before relaxing) + .debug_str 0x0007ba3b 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x7a6d4 (size before relaxing) + .debug_str 0x0007baf3 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x7ab15 (size before relaxing) + .debug_str 0x0007c268 0x4ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x7a77f (size before relaxing) + .debug_str 0x0007c757 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x7a6c8 (size before relaxing) + .debug_str 0x0007cc00 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x7a55d (size before relaxing) + .debug_str 0x0007d039 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x7a882 (size before relaxing) + .debug_str 0x0007d553 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x7ae3c (size before relaxing) + .debug_str 0x0007de77 0x5993 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0xb8b0 (size before relaxing) + .debug_str 0x0008380a 0x22a Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x8cbe (size before relaxing) + .debug_str 0x00083a34 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0xa3fe (size before relaxing) + .debug_str 0x000841f4 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0xaef6 (size before relaxing) + .debug_str 0x0008528c 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x6ed4 (size before relaxing) + .debug_str 0x0008566d 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x93cb (size before relaxing) + .debug_str 0x000858b0 0x325 Src/main.o + 0x80462 (size before relaxing) + .debug_str 0x00085bd5 0x1b Src/stm32l0xx_hal_msp.o + 0x7ad4f (size before relaxing) + .debug_str 0x00085bf0 0x47 Src/stm32l0xx_it.o + 0x7ef0d (size before relaxing) + .debug_str 0x00085c37 0x64 Src/system_stm32l0xx.o + 0x7a19c (size before relaxing) + +.comment 0x00000000 0x6e + .comment 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x6f (size before relaxing) + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/list.o + .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/queue.o + .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .comment 0x0000006e 0x6f Src/main.o + .comment 0x0000006e 0x6f Src/stm32l0xx_hal_msp.o + .comment 0x0000006e 0x6f Src/stm32l0xx_it.o + .comment 0x0000006e 0x6f Src/system_stm32l0xx.o + +.debug_frame 0x00000000 0x30f4 + .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_frame 0x000002c0 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_frame 0x00000388 0x784 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_frame 0x00000b0c 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_frame 0x00000bb4 0x444 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_frame 0x00000ff8 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_frame 0x00001148 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_frame 0x000012b8 0x204 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_frame 0x000014bc 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_frame 0x0000181c 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_frame 0x00001d5c 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_frame 0x0000229c 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_frame 0x00002308 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_frame 0x00002660 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_frame 0x00002bd0 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_frame 0x00002ce0 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_frame 0x00002d88 0x154 Src/main.o + .debug_frame 0x00002edc 0xd8 Src/stm32l0xx_hal_msp.o + .debug_frame 0x00002fb4 0x38 Src/stm32l0xx_it.o + .debug_frame 0x00002fec 0x38 Src/system_stm32l0xx.o + .debug_frame 0x00003024 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .debug_frame 0x00003044 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x00003080 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x000030ac 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x000030d4 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) diff --git a/Testing/Debug/sources.mk b/Testing/Debug/sources.mk new file mode 100644 index 0000000..8233832 --- /dev/null +++ b/Testing/Debug/sources.mk @@ -0,0 +1,25 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +OBJ_SRCS := +S_SRCS := +ASM_SRCS := +C_SRCS := +S_UPPER_SRCS := +O_SRCS := +EXECUTABLES := +OBJS := +S_UPPER_DEPS := +C_DEPS := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +Drivers/STM32L0xx_HAL_Driver/Src \ +Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS \ +Middlewares/Third_Party/FreeRTOS/Source \ +Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0 \ +Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang \ +Src \ +startup \ + diff --git a/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h b/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h new file mode 100644 index 0000000..a6d8eac --- /dev/null +++ b/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h @@ -0,0 +1,7508 @@ +/** + ****************************************************************************** + * @file stm32l053xx.h + * @author MCD Application Team + * @version V1.7.1 + * @date 25-November-2016 + * @brief CMSIS Cortex-M0+ Device Peripheral Access Layer Header File. + * This file contains all the peripheral register's definitions, bits + * definitions and memory mapping for stm32l053xx devices. + * + * This file contains: + * - Data structures and the address mapping for all peripherals + * - Peripheral's registers declarations and bits definition + * - Macros to access peripheral's registers hardware + * + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/** @addtogroup CMSIS + * @{ + */ + +/** @addtogroup stm32l053xx + * @{ + */ + +#ifndef __STM32L053xx_H +#define __STM32L053xx_H + +#ifdef __cplusplus + extern "C" { +#endif + + +/** @addtogroup Configuration_section_for_CMSIS + * @{ + */ +/** + * @brief Configuration of the Cortex-M0+ Processor and Core Peripherals + */ +#define __CM0PLUS_REV 0 /*!< Core Revision r0p0 */ +#define __MPU_PRESENT 1 /*!< STM32L0xx provides an MPU */ +#define __VTOR_PRESENT 1 /*!< Vector Table Register supported */ +#define __NVIC_PRIO_BITS 2 /*!< STM32L0xx uses 2 Bits for the Priority Levels */ +#define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */ + +/** + * @} + */ + +/** @addtogroup Peripheral_interrupt_number_definition + * @{ + */ + +/** + * @brief stm32l053xx Interrupt Number Definition, according to the selected device + * in @ref Library_configuration_section + */ + +/*!< Interrupt Number Definition */ +typedef enum +{ +/****** Cortex-M0 Processor Exceptions Numbers ******************************************************/ + NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */ + HardFault_IRQn = -13, /*!< 3 Cortex-M0+ Hard Fault Interrupt */ + SVC_IRQn = -5, /*!< 11 Cortex-M0+ SV Call Interrupt */ + PendSV_IRQn = -2, /*!< 14 Cortex-M0+ Pend SV Interrupt */ + SysTick_IRQn = -1, /*!< 15 Cortex-M0+ System Tick Interrupt */ + +/****** STM32L-0 specific Interrupt Numbers *********************************************************/ + WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */ + PVD_IRQn = 1, /*!< PVD through EXTI Line detect Interrupt */ + RTC_IRQn = 2, /*!< RTC through EXTI Line Interrupt */ + FLASH_IRQn = 3, /*!< FLASH Interrupt */ + RCC_CRS_IRQn = 4, /*!< RCC and CRS Interrupts */ + EXTI0_1_IRQn = 5, /*!< EXTI Line 0 and 1 Interrupts */ + EXTI2_3_IRQn = 6, /*!< EXTI Line 2 and 3 Interrupts */ + EXTI4_15_IRQn = 7, /*!< EXTI Line 4 to 15 Interrupts */ + TSC_IRQn = 8, /*!< TSC Interrupt */ + DMA1_Channel1_IRQn = 9, /*!< DMA1 Channel 1 Interrupt */ + DMA1_Channel2_3_IRQn = 10, /*!< DMA1 Channel 2 and Channel 3 Interrupts */ + DMA1_Channel4_5_6_7_IRQn = 11, /*!< DMA1 Channel 4, Channel 5, Channel 6 and Channel 7 Interrupts */ + ADC1_COMP_IRQn = 12, /*!< ADC1, COMP1 and COMP2 Interrupts */ + LPTIM1_IRQn = 13, /*!< LPTIM1 Interrupt */ + TIM2_IRQn = 15, /*!< TIM2 Interrupt */ + TIM6_DAC_IRQn = 17, /*!< TIM6 and DAC Interrupts */ + TIM21_IRQn = 20, /*!< TIM21 Interrupt */ + TIM22_IRQn = 22, /*!< TIM22 Interrupt */ + I2C1_IRQn = 23, /*!< I2C1 Interrupt */ + I2C2_IRQn = 24, /*!< I2C2 Interrupt */ + SPI1_IRQn = 25, /*!< SPI1 Interrupt */ + SPI2_IRQn = 26, /*!< SPI2 Interrupt */ + USART1_IRQn = 27, /*!< USART1 Interrupt */ + USART2_IRQn = 28, /*!< USART2 Interrupt */ + RNG_LPUART1_IRQn = 29, /*!< RNG and LPUART1 Interrupts */ + LCD_IRQn = 30, /*!< LCD Interrupt */ + USB_IRQn = 31, /*!< USB global Interrupt */ +} IRQn_Type; + +/** + * @} + */ + +#include "core_cm0plus.h" +#include "system_stm32l0xx.h" +#include + +/** @addtogroup Peripheral_registers_structures + * @{ + */ + +/** + * @brief Analog to Digital Converter + */ + +typedef struct +{ + __IO uint32_t ISR; /*!< ADC Interrupt and Status register, Address offset:0x00 */ + __IO uint32_t IER; /*!< ADC Interrupt Enable register, Address offset:0x04 */ + __IO uint32_t CR; /*!< ADC Control register, Address offset:0x08 */ + __IO uint32_t CFGR1; /*!< ADC Configuration register 1, Address offset:0x0C */ + __IO uint32_t CFGR2; /*!< ADC Configuration register 2, Address offset:0x10 */ + __IO uint32_t SMPR; /*!< ADC Sampling time register, Address offset:0x14 */ + uint32_t RESERVED1; /*!< Reserved, 0x18 */ + uint32_t RESERVED2; /*!< Reserved, 0x1C */ + __IO uint32_t TR; /*!< ADC watchdog threshold register, Address offset:0x20 */ + uint32_t RESERVED3; /*!< Reserved, 0x24 */ + __IO uint32_t CHSELR; /*!< ADC channel selection register, Address offset:0x28 */ + uint32_t RESERVED4[5]; /*!< Reserved, 0x2C */ + __IO uint32_t DR; /*!< ADC data register, Address offset:0x40 */ + uint32_t RESERVED5[28]; /*!< Reserved, 0x44 - 0xB0 */ + __IO uint32_t CALFACT; /*!< ADC data register, Address offset:0xB4 */ +} ADC_TypeDef; + +typedef struct +{ + __IO uint32_t CCR; +} ADC_Common_TypeDef; + + +/** + * @brief Comparator + */ + +typedef struct +{ + __IO uint32_t CSR; /*!< COMP comparator control and status register, Address offset: 0x18 */ +} COMP_TypeDef; + +typedef struct +{ + __IO uint32_t CSR; /*!< COMP control and status register, used for bits common to several COMP instances, Address offset: 0x00 */ +} COMP_Common_TypeDef; + + +/** +* @brief CRC calculation unit +*/ + +typedef struct +{ +__IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */ +__IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */ +uint8_t RESERVED0; /*!< Reserved, 0x05 */ +uint16_t RESERVED1; /*!< Reserved, 0x06 */ +__IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */ +uint32_t RESERVED2; /*!< Reserved, 0x0C */ +__IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */ +__IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */ +} CRC_TypeDef; + +/** + * @brief Clock Recovery System + */ + +typedef struct +{ +__IO uint32_t CR; /*!< CRS ccontrol register, Address offset: 0x00 */ +__IO uint32_t CFGR; /*!< CRS configuration register, Address offset: 0x04 */ +__IO uint32_t ISR; /*!< CRS interrupt and status register, Address offset: 0x08 */ +__IO uint32_t ICR; /*!< CRS interrupt flag clear register, Address offset: 0x0C */ +} CRS_TypeDef; + +/** + * @brief Digital to Analog Converter + */ + +typedef struct +{ + __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */ + __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */ + __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */ + __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */ + __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */ + uint32_t RESERVED0[6]; /*!< 0x14-0x28 */ + __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */ + uint32_t RESERVED1; /*!< 0x30 */ + __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */ +} DAC_TypeDef; + +/** + * @brief Debug MCU + */ + +typedef struct +{ + __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */ + __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */ + __IO uint32_t APB1FZ; /*!< Debug MCU APB1 freeze register, Address offset: 0x08 */ + __IO uint32_t APB2FZ; /*!< Debug MCU APB2 freeze register, Address offset: 0x0C */ +}DBGMCU_TypeDef; + +/** + * @brief DMA Controller + */ + +typedef struct +{ + __IO uint32_t CCR; /*!< DMA channel x configuration register */ + __IO uint32_t CNDTR; /*!< DMA channel x number of data register */ + __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */ + __IO uint32_t CMAR; /*!< DMA channel x memory address register */ +} DMA_Channel_TypeDef; + +typedef struct +{ + __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */ + __IO uint32_t IFCR; /*!< DMA interrupt flag clear register, Address offset: 0x04 */ +} DMA_TypeDef; + +typedef struct +{ + __IO uint32_t CSELR; /*!< DMA channel selection register, Address offset: 0xA8 */ +} DMA_Request_TypeDef; + +/** + * @brief External Interrupt/Event Controller + */ + +typedef struct +{ + __IO uint32_t IMR; /*!
© COPYRIGHT(c) 2016 STMicroelectronics
+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/** @addtogroup CMSIS + * @{ + */ + +/** @addtogroup stm32l0xx + * @{ + */ + +#ifndef __STM32L0xx_H +#define __STM32L0xx_H + +#ifdef __cplusplus + extern "C" { +#endif /* __cplusplus */ + +/** @addtogroup Library_configuration_section + * @{ + */ + +/** + * @brief STM32 Family + */ +#if !defined (STM32L0) +#define STM32L0 +#endif /* STM32L0 */ + +/* Uncomment the line below according to the target STM32 device used in your + application + */ + +#if !defined (STM32L011xx) && !defined (STM32L021xx) && \ + !defined (STM32L031xx) && !defined (STM32L041xx) && \ + !defined (STM32L051xx) && !defined (STM32L052xx) && !defined (STM32L053xx) && \ + !defined (STM32L061xx) && !defined (STM32L062xx) && !defined (STM32L063xx) && \ + !defined (STM32L071xx) && !defined (STM32L072xx) && !defined (STM32L073xx) && \ + !defined (STM32L081xx) && !defined (STM32L082xx) && !defined (STM32L083xx) \ + /* #define STM32L011xx */ + /* #define STM32L021xx */ + /* #define STM32L031xx */ /*!< STM32L031C6, STM32L031E6, STM32L031F6, STM32L031G6, STM32L031K6 Devices */ + /* #define STM32L041xx */ /*!< STM32L041C6, STM32L041E6, STM32L041F6, STM32L041G6, STM32L041K6 Devices */ + /* #define STM32L051xx */ /*!< STM32L051K8, STM32L051C6, STM32L051C8, STM32L051R6, STM32L051R8 Devices */ + /* #define STM32L052xx */ /*!< STM32L052K6, STM32L052K8, STM32L052C6, STM32L052C8, STM32L052R6, STM32L052R8 Devices */ + /* #define STM32L053xx */ /*!< STM32L053C6, STM32L053C8, STM32L053R6, STM32L053R8 Devices */ + /* #define STM32L061xx */ /*!< */ + /* #define STM32L062xx */ /*!< STM32L062K8 */ + /* #define STM32L063xx */ /*!< STM32L063C8, STM32L063R8 */ + /* #define STM32L071xx */ /*!< */ + /* #define STM32L072xx */ /*!< */ + /* #define STM32L073xx */ /*!< STM32L073V8, STM32L073VB, STM32L073RB, STM32L073VZ, STM32L073RZ Devices */ + /* #define STM32L081xx */ /*!< */ + /* #define STM32L082xx */ /*!< */ + /* #define STM32L083xx */ /*!< */ +#endif + +/* Tip: To avoid modifying this file each time you need to switch between these + devices, you can define the device in your toolchain compiler preprocessor. + */ +#if !defined (USE_HAL_DRIVER) +/** + * @brief Comment the line below if you will not use the peripherals drivers. + In this case, these drivers will not be included and the application code will + be based on direct access to peripherals registers + */ + /*#define USE_HAL_DRIVER */ +#endif /* USE_HAL_DRIVER */ + +/** + * @brief CMSIS Device version number V1.7.1 + */ +#define __STM32L0xx_CMSIS_VERSION_MAIN (0x01) /*!< [31:24] main version */ +#define __STM32L0xx_CMSIS_VERSION_SUB1 (0x07) /*!< [23:16] sub1 version */ +#define __STM32L0xx_CMSIS_VERSION_SUB2 (0x01) /*!< [15:8] sub2 version */ +#define __STM32L0xx_CMSIS_VERSION_RC (0x00) /*!< [7:0] release candidate */ +#define __STM32L0xx_CMSIS_VERSION ((__STM32L0xx_CMSIS_VERSION_MAIN << 24)\ + |(__STM32L0xx_CMSIS_VERSION_SUB1 << 16)\ + |(__STM32L0xx_CMSIS_VERSION_SUB2 << 8 )\ + |(__STM32L0xx_CMSIS_VERSION_RC)) + +/** + * @} + */ + +/** @addtogroup Device_Included + * @{ + */ +#if defined(STM32L011xx) + #include "stm32l011xx.h" +#elif defined(STM32L021xx) + #include "stm32l021xx.h" +#elif defined(STM32L031xx) + #include "stm32l031xx.h" +#elif defined(STM32L041xx) + #include "stm32l041xx.h" +#elif defined(STM32L051xx) + #include "stm32l051xx.h" +#elif defined(STM32L052xx) + #include "stm32l052xx.h" +#elif defined(STM32L053xx) + #include "stm32l053xx.h" +#elif defined(STM32L062xx) + #include "stm32l062xx.h" +#elif defined(STM32L063xx) + #include "stm32l063xx.h" +#elif defined(STM32L061xx) + #include "stm32l061xx.h" +#elif defined(STM32L071xx) + #include "stm32l071xx.h" +#elif defined(STM32L072xx) + #include "stm32l072xx.h" +#elif defined(STM32L073xx) + #include "stm32l073xx.h" +#elif defined(STM32L082xx) + #include "stm32l082xx.h" +#elif defined(STM32L083xx) + #include "stm32l083xx.h" +#elif defined(STM32L081xx) + #include "stm32l081xx.h" +#else + #error "Please select first the target STM32L0xx device used in your application (in stm32l0xx.h file)" +#endif + +/** + * @} + */ + +/** @addtogroup Exported_types + * @{ + */ +typedef enum +{ + RESET = 0, + SET = !RESET +} FlagStatus, ITStatus; + +typedef enum +{ + DISABLE = 0, + ENABLE = !DISABLE +} FunctionalState; +#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE)) + +typedef enum +{ + ERROR = 0, + SUCCESS = !ERROR +} ErrorStatus; + +/** + * @} + */ + + +/** @addtogroup Exported_macro + * @{ + */ +#define SET_BIT(REG, BIT) ((REG) |= (BIT)) + +#define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) + +#define READ_BIT(REG, BIT) ((REG) & (BIT)) + +#define CLEAR_REG(REG) ((REG) = (0x0)) + +#define WRITE_REG(REG, VAL) ((REG) = (VAL)) + +#define READ_REG(REG) ((REG)) + +#define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK))) + +/** + * @} + */ + +#if defined (USE_HAL_DRIVER) + #include "stm32l0xx_hal.h" +#endif /* USE_HAL_DRIVER */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __STM32L0xx_H */ +/** + * @} + */ + +/** + * @} + */ + + + + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h b/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h new file mode 100644 index 0000000..fa835b5 --- /dev/null +++ b/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h @@ -0,0 +1,127 @@ +/** + ****************************************************************************** + * @file system_stm32l0xx.h + * @author MCD Application Team + * @version V1.7.1 + * @date 25-November-2016 + * @brief CMSIS Cortex-M0+ Device Peripheral Access Layer System Header File. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/** @addtogroup CMSIS + * @{ + */ + +/** @addtogroup stm32l0xx_system + * @{ + */ + +/** + * @brief Define to prevent recursive inclusion + */ +#ifndef __SYSTEM_STM32L0XX_H +#define __SYSTEM_STM32L0XX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/** @addtogroup STM32L0xx_System_Includes + * @{ + */ + +/** + * @} + */ + + +/** @addtogroup STM32L0xx_System_Exported_types + * @{ + */ + /* This variable is updated in three ways: + 1) by calling CMSIS function SystemCoreClockUpdate() + 2) by calling HAL API function HAL_RCC_GetSysClockFreq() + 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency + Note: If you use this function to configure the system clock; then there + is no need to call the 2 first functions listed above, since SystemCoreClock + variable is updated automatically. + */ +extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ +/* +*/ +extern const uint8_t AHBPrescTable[16]; /*!< AHB prescalers table values */ +extern const uint8_t APBPrescTable[8]; /*!< APB prescalers table values */ +extern const uint8_t PLLMulTable[9]; /*!< PLL multipiers table values */ + + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Exported_Constants + * @{ + */ + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Exported_Macros + * @{ + */ + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Exported_Functions + * @{ + */ + +extern void SystemInit(void); +extern void SystemCoreClockUpdate(void); +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /*__SYSTEM_STM32L0XX_H */ + +/** + * @} + */ + +/** + * @} + */ +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/CMSIS/Include/arm_common_tables.h b/Testing/Drivers/CMSIS/Include/arm_common_tables.h new file mode 100644 index 0000000..8742a56 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/arm_common_tables.h @@ -0,0 +1,136 @@ +/* ---------------------------------------------------------------------- +* Copyright (C) 2010-2014 ARM Limited. All rights reserved. +* +* $Date: 19. October 2015 +* $Revision: V.1.4.5 a +* +* Project: CMSIS DSP Library +* Title: arm_common_tables.h +* +* Description: This file has extern declaration for common tables like Bitreverse, reciprocal etc which are used across different functions +* +* Target Processor: Cortex-M4/Cortex-M3 +* +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that the following conditions +* are met: +* - Redistributions of source code must retain the above copyright +* notice, this list of conditions and the following disclaimer. +* - Redistributions in binary form must reproduce the above copyright +* notice, this list of conditions and the following disclaimer in +* the documentation and/or other materials provided with the +* distribution. +* - Neither the name of ARM LIMITED nor the names of its contributors +* may be used to endorse or promote products derived from this +* software without specific prior written permission. +* +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +* POSSIBILITY OF SUCH DAMAGE. +* -------------------------------------------------------------------- */ + +#ifndef _ARM_COMMON_TABLES_H +#define _ARM_COMMON_TABLES_H + +#include "arm_math.h" + +extern const uint16_t armBitRevTable[1024]; +extern const q15_t armRecipTableQ15[64]; +extern const q31_t armRecipTableQ31[64]; +/* extern const q31_t realCoefAQ31[1024]; */ +/* extern const q31_t realCoefBQ31[1024]; */ +extern const float32_t twiddleCoef_16[32]; +extern const float32_t twiddleCoef_32[64]; +extern const float32_t twiddleCoef_64[128]; +extern const float32_t twiddleCoef_128[256]; +extern const float32_t twiddleCoef_256[512]; +extern const float32_t twiddleCoef_512[1024]; +extern const float32_t twiddleCoef_1024[2048]; +extern const float32_t twiddleCoef_2048[4096]; +extern const float32_t twiddleCoef_4096[8192]; +#define twiddleCoef twiddleCoef_4096 +extern const q31_t twiddleCoef_16_q31[24]; +extern const q31_t twiddleCoef_32_q31[48]; +extern const q31_t twiddleCoef_64_q31[96]; +extern const q31_t twiddleCoef_128_q31[192]; +extern const q31_t twiddleCoef_256_q31[384]; +extern const q31_t twiddleCoef_512_q31[768]; +extern const q31_t twiddleCoef_1024_q31[1536]; +extern const q31_t twiddleCoef_2048_q31[3072]; +extern const q31_t twiddleCoef_4096_q31[6144]; +extern const q15_t twiddleCoef_16_q15[24]; +extern const q15_t twiddleCoef_32_q15[48]; +extern const q15_t twiddleCoef_64_q15[96]; +extern const q15_t twiddleCoef_128_q15[192]; +extern const q15_t twiddleCoef_256_q15[384]; +extern const q15_t twiddleCoef_512_q15[768]; +extern const q15_t twiddleCoef_1024_q15[1536]; +extern const q15_t twiddleCoef_2048_q15[3072]; +extern const q15_t twiddleCoef_4096_q15[6144]; +extern const float32_t twiddleCoef_rfft_32[32]; +extern const float32_t twiddleCoef_rfft_64[64]; +extern const float32_t twiddleCoef_rfft_128[128]; +extern const float32_t twiddleCoef_rfft_256[256]; +extern const float32_t twiddleCoef_rfft_512[512]; +extern const float32_t twiddleCoef_rfft_1024[1024]; +extern const float32_t twiddleCoef_rfft_2048[2048]; +extern const float32_t twiddleCoef_rfft_4096[4096]; + + +/* floating-point bit reversal tables */ +#define ARMBITREVINDEXTABLE__16_TABLE_LENGTH ((uint16_t)20 ) +#define ARMBITREVINDEXTABLE__32_TABLE_LENGTH ((uint16_t)48 ) +#define ARMBITREVINDEXTABLE__64_TABLE_LENGTH ((uint16_t)56 ) +#define ARMBITREVINDEXTABLE_128_TABLE_LENGTH ((uint16_t)208 ) +#define ARMBITREVINDEXTABLE_256_TABLE_LENGTH ((uint16_t)440 ) +#define ARMBITREVINDEXTABLE_512_TABLE_LENGTH ((uint16_t)448 ) +#define ARMBITREVINDEXTABLE1024_TABLE_LENGTH ((uint16_t)1800) +#define ARMBITREVINDEXTABLE2048_TABLE_LENGTH ((uint16_t)3808) +#define ARMBITREVINDEXTABLE4096_TABLE_LENGTH ((uint16_t)4032) + +extern const uint16_t armBitRevIndexTable16[ARMBITREVINDEXTABLE__16_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable32[ARMBITREVINDEXTABLE__32_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable64[ARMBITREVINDEXTABLE__64_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable128[ARMBITREVINDEXTABLE_128_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable256[ARMBITREVINDEXTABLE_256_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable512[ARMBITREVINDEXTABLE_512_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable1024[ARMBITREVINDEXTABLE1024_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable2048[ARMBITREVINDEXTABLE2048_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable4096[ARMBITREVINDEXTABLE4096_TABLE_LENGTH]; + +/* fixed-point bit reversal tables */ +#define ARMBITREVINDEXTABLE_FIXED___16_TABLE_LENGTH ((uint16_t)12 ) +#define ARMBITREVINDEXTABLE_FIXED___32_TABLE_LENGTH ((uint16_t)24 ) +#define ARMBITREVINDEXTABLE_FIXED___64_TABLE_LENGTH ((uint16_t)56 ) +#define ARMBITREVINDEXTABLE_FIXED__128_TABLE_LENGTH ((uint16_t)112 ) +#define ARMBITREVINDEXTABLE_FIXED__256_TABLE_LENGTH ((uint16_t)240 ) +#define ARMBITREVINDEXTABLE_FIXED__512_TABLE_LENGTH ((uint16_t)480 ) +#define ARMBITREVINDEXTABLE_FIXED_1024_TABLE_LENGTH ((uint16_t)992 ) +#define ARMBITREVINDEXTABLE_FIXED_2048_TABLE_LENGTH ((uint16_t)1984) +#define ARMBITREVINDEXTABLE_FIXED_4096_TABLE_LENGTH ((uint16_t)4032) + +extern const uint16_t armBitRevIndexTable_fixed_16[ARMBITREVINDEXTABLE_FIXED___16_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_32[ARMBITREVINDEXTABLE_FIXED___32_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_64[ARMBITREVINDEXTABLE_FIXED___64_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_128[ARMBITREVINDEXTABLE_FIXED__128_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_256[ARMBITREVINDEXTABLE_FIXED__256_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_512[ARMBITREVINDEXTABLE_FIXED__512_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_1024[ARMBITREVINDEXTABLE_FIXED_1024_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_2048[ARMBITREVINDEXTABLE_FIXED_2048_TABLE_LENGTH]; +extern const uint16_t armBitRevIndexTable_fixed_4096[ARMBITREVINDEXTABLE_FIXED_4096_TABLE_LENGTH]; + +/* Tables for Fast Math Sine and Cosine */ +extern const float32_t sinTable_f32[FAST_MATH_TABLE_SIZE + 1]; +extern const q31_t sinTable_q31[FAST_MATH_TABLE_SIZE + 1]; +extern const q15_t sinTable_q15[FAST_MATH_TABLE_SIZE + 1]; + +#endif /* ARM_COMMON_TABLES_H */ diff --git a/Testing/Drivers/CMSIS/Include/arm_const_structs.h b/Testing/Drivers/CMSIS/Include/arm_const_structs.h new file mode 100644 index 0000000..726d06e --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/arm_const_structs.h @@ -0,0 +1,79 @@ +/* ---------------------------------------------------------------------- +* Copyright (C) 2010-2014 ARM Limited. All rights reserved. +* +* $Date: 19. March 2015 +* $Revision: V.1.4.5 +* +* Project: CMSIS DSP Library +* Title: arm_const_structs.h +* +* Description: This file has constant structs that are initialized for +* user convenience. For example, some can be given as +* arguments to the arm_cfft_f32() function. +* +* Target Processor: Cortex-M4/Cortex-M3 +* +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that the following conditions +* are met: +* - Redistributions of source code must retain the above copyright +* notice, this list of conditions and the following disclaimer. +* - Redistributions in binary form must reproduce the above copyright +* notice, this list of conditions and the following disclaimer in +* the documentation and/or other materials provided with the +* distribution. +* - Neither the name of ARM LIMITED nor the names of its contributors +* may be used to endorse or promote products derived from this +* software without specific prior written permission. +* +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +* POSSIBILITY OF SUCH DAMAGE. +* -------------------------------------------------------------------- */ + +#ifndef _ARM_CONST_STRUCTS_H +#define _ARM_CONST_STRUCTS_H + +#include "arm_math.h" +#include "arm_common_tables.h" + + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len16; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len32; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len64; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len128; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len256; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len512; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len1024; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len2048; + extern const arm_cfft_instance_f32 arm_cfft_sR_f32_len4096; + + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len16; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len32; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len64; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len128; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len256; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len512; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len1024; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len2048; + extern const arm_cfft_instance_q31 arm_cfft_sR_q31_len4096; + + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len16; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len32; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len64; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len128; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len256; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len512; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len1024; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len2048; + extern const arm_cfft_instance_q15 arm_cfft_sR_q15_len4096; + +#endif diff --git a/Testing/Drivers/CMSIS/Include/arm_math.h b/Testing/Drivers/CMSIS/Include/arm_math.h new file mode 100644 index 0000000..d33f8a9 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/arm_math.h @@ -0,0 +1,7154 @@ +/* ---------------------------------------------------------------------- +* Copyright (C) 2010-2015 ARM Limited. All rights reserved. +* +* $Date: 20. October 2015 +* $Revision: V1.4.5 b +* +* Project: CMSIS DSP Library +* Title: arm_math.h +* +* Description: Public header file for CMSIS DSP Library +* +* Target Processor: Cortex-M7/Cortex-M4/Cortex-M3/Cortex-M0 +* +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that the following conditions +* are met: +* - Redistributions of source code must retain the above copyright +* notice, this list of conditions and the following disclaimer. +* - Redistributions in binary form must reproduce the above copyright +* notice, this list of conditions and the following disclaimer in +* the documentation and/or other materials provided with the +* distribution. +* - Neither the name of ARM LIMITED nor the names of its contributors +* may be used to endorse or promote products derived from this +* software without specific prior written permission. +* +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +* POSSIBILITY OF SUCH DAMAGE. + * -------------------------------------------------------------------- */ + +/** + \mainpage CMSIS DSP Software Library + * + * Introduction + * ------------ + * + * This user manual describes the CMSIS DSP software library, + * a suite of common signal processing functions for use on Cortex-M processor based devices. + * + * The library is divided into a number of functions each covering a specific category: + * - Basic math functions + * - Fast math functions + * - Complex math functions + * - Filters + * - Matrix functions + * - Transforms + * - Motor control functions + * - Statistical functions + * - Support functions + * - Interpolation functions + * + * The library has separate functions for operating on 8-bit integers, 16-bit integers, + * 32-bit integer and 32-bit floating-point values. + * + * Using the Library + * ------------ + * + * The library installer contains prebuilt versions of the libraries in the Lib folder. + * - arm_cortexM7lfdp_math.lib (Little endian and Double Precision Floating Point Unit on Cortex-M7) + * - arm_cortexM7bfdp_math.lib (Big endian and Double Precision Floating Point Unit on Cortex-M7) + * - arm_cortexM7lfsp_math.lib (Little endian and Single Precision Floating Point Unit on Cortex-M7) + * - arm_cortexM7bfsp_math.lib (Big endian and Single Precision Floating Point Unit on Cortex-M7) + * - arm_cortexM7l_math.lib (Little endian on Cortex-M7) + * - arm_cortexM7b_math.lib (Big endian on Cortex-M7) + * - arm_cortexM4lf_math.lib (Little endian and Floating Point Unit on Cortex-M4) + * - arm_cortexM4bf_math.lib (Big endian and Floating Point Unit on Cortex-M4) + * - arm_cortexM4l_math.lib (Little endian on Cortex-M4) + * - arm_cortexM4b_math.lib (Big endian on Cortex-M4) + * - arm_cortexM3l_math.lib (Little endian on Cortex-M3) + * - arm_cortexM3b_math.lib (Big endian on Cortex-M3) + * - arm_cortexM0l_math.lib (Little endian on Cortex-M0 / CortexM0+) + * - arm_cortexM0b_math.lib (Big endian on Cortex-M0 / CortexM0+) + * + * The library functions are declared in the public file arm_math.h which is placed in the Include folder. + * Simply include this file and link the appropriate library in the application and begin calling the library functions. The Library supports single + * public header file arm_math.h for Cortex-M7/M4/M3/M0/M0+ with little endian and big endian. Same header file will be used for floating point unit(FPU) variants. + * Define the appropriate pre processor MACRO ARM_MATH_CM7 or ARM_MATH_CM4 or ARM_MATH_CM3 or + * ARM_MATH_CM0 or ARM_MATH_CM0PLUS depending on the target processor in the application. + * + * Examples + * -------- + * + * The library ships with a number of examples which demonstrate how to use the library functions. + * + * Toolchain Support + * ------------ + * + * The library has been developed and tested with MDK-ARM version 5.14.0.0 + * The library is being tested in GCC and IAR toolchains and updates on this activity will be made available shortly. + * + * Building the Library + * ------------ + * + * The library installer contains a project file to re build libraries on MDK-ARM Tool chain in the CMSIS\\DSP_Lib\\Source\\ARM folder. + * - arm_cortexM_math.uvprojx + * + * + * The libraries can be built by opening the arm_cortexM_math.uvprojx project in MDK-ARM, selecting a specific target, and defining the optional pre processor MACROs detailed above. + * + * Pre-processor Macros + * ------------ + * + * Each library project have differant pre-processor macros. + * + * - UNALIGNED_SUPPORT_DISABLE: + * + * Define macro UNALIGNED_SUPPORT_DISABLE, If the silicon does not support unaligned memory access + * + * - ARM_MATH_BIG_ENDIAN: + * + * Define macro ARM_MATH_BIG_ENDIAN to build the library for big endian targets. By default library builds for little endian targets. + * + * - ARM_MATH_MATRIX_CHECK: + * + * Define macro ARM_MATH_MATRIX_CHECK for checking on the input and output sizes of matrices + * + * - ARM_MATH_ROUNDING: + * + * Define macro ARM_MATH_ROUNDING for rounding on support functions + * + * - ARM_MATH_CMx: + * + * Define macro ARM_MATH_CM4 for building the library on Cortex-M4 target, ARM_MATH_CM3 for building library on Cortex-M3 target + * and ARM_MATH_CM0 for building library on Cortex-M0 target, ARM_MATH_CM0PLUS for building library on Cortex-M0+ target, and + * ARM_MATH_CM7 for building the library on cortex-M7. + * + * - __FPU_PRESENT: + * + * Initialize macro __FPU_PRESENT = 1 when building on FPU supported Targets. Enable this macro for M4bf and M4lf libraries + * + *
+ * CMSIS-DSP in ARM::CMSIS Pack + * ----------------------------- + * + * The following files relevant to CMSIS-DSP are present in the ARM::CMSIS Pack directories: + * |File/Folder |Content | + * |------------------------------|------------------------------------------------------------------------| + * |\b CMSIS\\Documentation\\DSP | This documentation | + * |\b CMSIS\\DSP_Lib | Software license agreement (license.txt) | + * |\b CMSIS\\DSP_Lib\\Examples | Example projects demonstrating the usage of the library functions | + * |\b CMSIS\\DSP_Lib\\Source | Source files for rebuilding the library | + * + *
+ * Revision History of CMSIS-DSP + * ------------ + * Please refer to \ref ChangeLog_pg. + * + * Copyright Notice + * ------------ + * + * Copyright (C) 2010-2015 ARM Limited. All rights reserved. + */ + + +/** + * @defgroup groupMath Basic Math Functions + */ + +/** + * @defgroup groupFastMath Fast Math Functions + * This set of functions provides a fast approximation to sine, cosine, and square root. + * As compared to most of the other functions in the CMSIS math library, the fast math functions + * operate on individual values and not arrays. + * There are separate functions for Q15, Q31, and floating-point data. + * + */ + +/** + * @defgroup groupCmplxMath Complex Math Functions + * This set of functions operates on complex data vectors. + * The data in the complex arrays is stored in an interleaved fashion + * (real, imag, real, imag, ...). + * In the API functions, the number of samples in a complex array refers + * to the number of complex values; the array contains twice this number of + * real values. + */ + +/** + * @defgroup groupFilters Filtering Functions + */ + +/** + * @defgroup groupMatrix Matrix Functions + * + * This set of functions provides basic matrix math operations. + * The functions operate on matrix data structures. For example, + * the type + * definition for the floating-point matrix structure is shown + * below: + *
+ *     typedef struct
+ *     {
+ *       uint16_t numRows;     // number of rows of the matrix.
+ *       uint16_t numCols;     // number of columns of the matrix.
+ *       float32_t *pData;     // points to the data of the matrix.
+ *     } arm_matrix_instance_f32;
+ * 
+ * There are similar definitions for Q15 and Q31 data types. + * + * The structure specifies the size of the matrix and then points to + * an array of data. The array is of size numRows X numCols + * and the values are arranged in row order. That is, the + * matrix element (i, j) is stored at: + *
+ *     pData[i*numCols + j]
+ * 
+ * + * \par Init Functions + * There is an associated initialization function for each type of matrix + * data structure. + * The initialization function sets the values of the internal structure fields. + * Refer to the function arm_mat_init_f32(), arm_mat_init_q31() + * and arm_mat_init_q15() for floating-point, Q31 and Q15 types, respectively. + * + * \par + * Use of the initialization function is optional. However, if initialization function is used + * then the instance structure cannot be placed into a const data section. + * To place the instance structure in a const data + * section, manually initialize the data structure. For example: + *
+ * arm_matrix_instance_f32 S = {nRows, nColumns, pData};
+ * arm_matrix_instance_q31 S = {nRows, nColumns, pData};
+ * arm_matrix_instance_q15 S = {nRows, nColumns, pData};
+ * 
+ * where nRows specifies the number of rows, nColumns + * specifies the number of columns, and pData points to the + * data array. + * + * \par Size Checking + * By default all of the matrix functions perform size checking on the input and + * output matrices. For example, the matrix addition function verifies that the + * two input matrices and the output matrix all have the same number of rows and + * columns. If the size check fails the functions return: + *
+ *     ARM_MATH_SIZE_MISMATCH
+ * 
+ * Otherwise the functions return + *
+ *     ARM_MATH_SUCCESS
+ * 
+ * There is some overhead associated with this matrix size checking. + * The matrix size checking is enabled via the \#define + *
+ *     ARM_MATH_MATRIX_CHECK
+ * 
+ * within the library project settings. By default this macro is defined + * and size checking is enabled. By changing the project settings and + * undefining this macro size checking is eliminated and the functions + * run a bit faster. With size checking disabled the functions always + * return ARM_MATH_SUCCESS. + */ + +/** + * @defgroup groupTransforms Transform Functions + */ + +/** + * @defgroup groupController Controller Functions + */ + +/** + * @defgroup groupStats Statistics Functions + */ +/** + * @defgroup groupSupport Support Functions + */ + +/** + * @defgroup groupInterpolation Interpolation Functions + * These functions perform 1- and 2-dimensional interpolation of data. + * Linear interpolation is used for 1-dimensional data and + * bilinear interpolation is used for 2-dimensional data. + */ + +/** + * @defgroup groupExamples Examples + */ +#ifndef _ARM_MATH_H +#define _ARM_MATH_H + +/* ignore some GCC warnings */ +#if defined ( __GNUC__ ) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wsign-conversion" +#pragma GCC diagnostic ignored "-Wconversion" +#pragma GCC diagnostic ignored "-Wunused-parameter" +#endif + +#define __CMSIS_GENERIC /* disable NVIC and Systick functions */ + +#if defined(ARM_MATH_CM7) + #include "core_cm7.h" +#elif defined (ARM_MATH_CM4) + #include "core_cm4.h" +#elif defined (ARM_MATH_CM3) + #include "core_cm3.h" +#elif defined (ARM_MATH_CM0) + #include "core_cm0.h" + #define ARM_MATH_CM0_FAMILY +#elif defined (ARM_MATH_CM0PLUS) + #include "core_cm0plus.h" + #define ARM_MATH_CM0_FAMILY +#else + #error "Define according the used Cortex core ARM_MATH_CM7, ARM_MATH_CM4, ARM_MATH_CM3, ARM_MATH_CM0PLUS or ARM_MATH_CM0" +#endif + +#undef __CMSIS_GENERIC /* enable NVIC and Systick functions */ +#include "string.h" +#include "math.h" +#ifdef __cplusplus +extern "C" +{ +#endif + + + /** + * @brief Macros required for reciprocal calculation in Normalized LMS + */ + +#define DELTA_Q31 (0x100) +#define DELTA_Q15 0x5 +#define INDEX_MASK 0x0000003F +#ifndef PI +#define PI 3.14159265358979f +#endif + + /** + * @brief Macros required for SINE and COSINE Fast math approximations + */ + +#define FAST_MATH_TABLE_SIZE 512 +#define FAST_MATH_Q31_SHIFT (32 - 10) +#define FAST_MATH_Q15_SHIFT (16 - 10) +#define CONTROLLER_Q31_SHIFT (32 - 9) +#define TABLE_SIZE 256 +#define TABLE_SPACING_Q31 0x400000 +#define TABLE_SPACING_Q15 0x80 + + /** + * @brief Macros required for SINE and COSINE Controller functions + */ + /* 1.31(q31) Fixed value of 2/360 */ + /* -1 to +1 is divided into 360 values so total spacing is (2/360) */ +#define INPUT_SPACING 0xB60B61 + + /** + * @brief Macro for Unaligned Support + */ +#ifndef UNALIGNED_SUPPORT_DISABLE + #define ALIGN4 +#else + #if defined (__GNUC__) + #define ALIGN4 __attribute__((aligned(4))) + #else + #define ALIGN4 __align(4) + #endif +#endif /* #ifndef UNALIGNED_SUPPORT_DISABLE */ + + /** + * @brief Error status returned by some functions in the library. + */ + + typedef enum + { + ARM_MATH_SUCCESS = 0, /**< No error */ + ARM_MATH_ARGUMENT_ERROR = -1, /**< One or more arguments are incorrect */ + ARM_MATH_LENGTH_ERROR = -2, /**< Length of data buffer is incorrect */ + ARM_MATH_SIZE_MISMATCH = -3, /**< Size of matrices is not compatible with the operation. */ + ARM_MATH_NANINF = -4, /**< Not-a-number (NaN) or infinity is generated */ + ARM_MATH_SINGULAR = -5, /**< Generated by matrix inversion if the input matrix is singular and cannot be inverted. */ + ARM_MATH_TEST_FAILURE = -6 /**< Test Failed */ + } arm_status; + + /** + * @brief 8-bit fractional data type in 1.7 format. + */ + typedef int8_t q7_t; + + /** + * @brief 16-bit fractional data type in 1.15 format. + */ + typedef int16_t q15_t; + + /** + * @brief 32-bit fractional data type in 1.31 format. + */ + typedef int32_t q31_t; + + /** + * @brief 64-bit fractional data type in 1.63 format. + */ + typedef int64_t q63_t; + + /** + * @brief 32-bit floating-point type definition. + */ + typedef float float32_t; + + /** + * @brief 64-bit floating-point type definition. + */ + typedef double float64_t; + + /** + * @brief definition to read/write two 16 bit values. + */ +#if defined __CC_ARM + #define __SIMD32_TYPE int32_t __packed + #define CMSIS_UNUSED __attribute__((unused)) + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __SIMD32_TYPE int32_t + #define CMSIS_UNUSED __attribute__((unused)) + +#elif defined __GNUC__ + #define __SIMD32_TYPE int32_t + #define CMSIS_UNUSED __attribute__((unused)) + +#elif defined __ICCARM__ + #define __SIMD32_TYPE int32_t __packed + #define CMSIS_UNUSED + +#elif defined __CSMC__ + #define __SIMD32_TYPE int32_t + #define CMSIS_UNUSED + +#elif defined __TASKING__ + #define __SIMD32_TYPE __unaligned int32_t + #define CMSIS_UNUSED + +#else + #error Unknown compiler +#endif + +#define __SIMD32(addr) (*(__SIMD32_TYPE **) & (addr)) +#define __SIMD32_CONST(addr) ((__SIMD32_TYPE *)(addr)) +#define _SIMD32_OFFSET(addr) (*(__SIMD32_TYPE *) (addr)) +#define __SIMD64(addr) (*(int64_t **) & (addr)) + +#if defined (ARM_MATH_CM3) || defined (ARM_MATH_CM0_FAMILY) + /** + * @brief definition to pack two 16 bit values. + */ +#define __PKHBT(ARG1, ARG2, ARG3) ( (((int32_t)(ARG1) << 0) & (int32_t)0x0000FFFF) | \ + (((int32_t)(ARG2) << ARG3) & (int32_t)0xFFFF0000) ) +#define __PKHTB(ARG1, ARG2, ARG3) ( (((int32_t)(ARG1) << 0) & (int32_t)0xFFFF0000) | \ + (((int32_t)(ARG2) >> ARG3) & (int32_t)0x0000FFFF) ) + +#endif + + + /** + * @brief definition to pack four 8 bit values. + */ +#ifndef ARM_MATH_BIG_ENDIAN + +#define __PACKq7(v0,v1,v2,v3) ( (((int32_t)(v0) << 0) & (int32_t)0x000000FF) | \ + (((int32_t)(v1) << 8) & (int32_t)0x0000FF00) | \ + (((int32_t)(v2) << 16) & (int32_t)0x00FF0000) | \ + (((int32_t)(v3) << 24) & (int32_t)0xFF000000) ) +#else + +#define __PACKq7(v0,v1,v2,v3) ( (((int32_t)(v3) << 0) & (int32_t)0x000000FF) | \ + (((int32_t)(v2) << 8) & (int32_t)0x0000FF00) | \ + (((int32_t)(v1) << 16) & (int32_t)0x00FF0000) | \ + (((int32_t)(v0) << 24) & (int32_t)0xFF000000) ) + +#endif + + + /** + * @brief Clips Q63 to Q31 values. + */ + static __INLINE q31_t clip_q63_to_q31( + q63_t x) + { + return ((q31_t) (x >> 32) != ((q31_t) x >> 31)) ? + ((0x7FFFFFFF ^ ((q31_t) (x >> 63)))) : (q31_t) x; + } + + /** + * @brief Clips Q63 to Q15 values. + */ + static __INLINE q15_t clip_q63_to_q15( + q63_t x) + { + return ((q31_t) (x >> 32) != ((q31_t) x >> 31)) ? + ((0x7FFF ^ ((q15_t) (x >> 63)))) : (q15_t) (x >> 15); + } + + /** + * @brief Clips Q31 to Q7 values. + */ + static __INLINE q7_t clip_q31_to_q7( + q31_t x) + { + return ((q31_t) (x >> 24) != ((q31_t) x >> 23)) ? + ((0x7F ^ ((q7_t) (x >> 31)))) : (q7_t) x; + } + + /** + * @brief Clips Q31 to Q15 values. + */ + static __INLINE q15_t clip_q31_to_q15( + q31_t x) + { + return ((q31_t) (x >> 16) != ((q31_t) x >> 15)) ? + ((0x7FFF ^ ((q15_t) (x >> 31)))) : (q15_t) x; + } + + /** + * @brief Multiplies 32 X 64 and returns 32 bit result in 2.30 format. + */ + + static __INLINE q63_t mult32x64( + q63_t x, + q31_t y) + { + return ((((q63_t) (x & 0x00000000FFFFFFFF) * y) >> 32) + + (((q63_t) (x >> 32) * y))); + } + +/* + #if defined (ARM_MATH_CM0_FAMILY) && defined ( __CC_ARM ) + #define __CLZ __clz + #endif + */ +/* note: function can be removed when all toolchain support __CLZ for Cortex-M0 */ +#if defined (ARM_MATH_CM0_FAMILY) && ((defined (__ICCARM__)) ) + static __INLINE uint32_t __CLZ( + q31_t data); + + static __INLINE uint32_t __CLZ( + q31_t data) + { + uint32_t count = 0; + uint32_t mask = 0x80000000; + + while((data & mask) == 0) + { + count += 1u; + mask = mask >> 1u; + } + + return (count); + } +#endif + + /** + * @brief Function to Calculates 1/in (reciprocal) value of Q31 Data type. + */ + + static __INLINE uint32_t arm_recip_q31( + q31_t in, + q31_t * dst, + q31_t * pRecipTable) + { + q31_t out; + uint32_t tempVal; + uint32_t index, i; + uint32_t signBits; + + if(in > 0) + { + signBits = ((uint32_t) (__CLZ( in) - 1)); + } + else + { + signBits = ((uint32_t) (__CLZ(-in) - 1)); + } + + /* Convert input sample to 1.31 format */ + in = (in << signBits); + + /* calculation of index for initial approximated Val */ + index = (uint32_t)(in >> 24); + index = (index & INDEX_MASK); + + /* 1.31 with exp 1 */ + out = pRecipTable[index]; + + /* calculation of reciprocal value */ + /* running approximation for two iterations */ + for (i = 0u; i < 2u; i++) + { + tempVal = (uint32_t) (((q63_t) in * out) >> 31); + tempVal = 0x7FFFFFFFu - tempVal; + /* 1.31 with exp 1 */ + /* out = (q31_t) (((q63_t) out * tempVal) >> 30); */ + out = clip_q63_to_q31(((q63_t) out * tempVal) >> 30); + } + + /* write output */ + *dst = out; + + /* return num of signbits of out = 1/in value */ + return (signBits + 1u); + } + + + /** + * @brief Function to Calculates 1/in (reciprocal) value of Q15 Data type. + */ + static __INLINE uint32_t arm_recip_q15( + q15_t in, + q15_t * dst, + q15_t * pRecipTable) + { + q15_t out = 0; + uint32_t tempVal = 0; + uint32_t index = 0, i = 0; + uint32_t signBits = 0; + + if(in > 0) + { + signBits = ((uint32_t)(__CLZ( in) - 17)); + } + else + { + signBits = ((uint32_t)(__CLZ(-in) - 17)); + } + + /* Convert input sample to 1.15 format */ + in = (in << signBits); + + /* calculation of index for initial approximated Val */ + index = (uint32_t)(in >> 8); + index = (index & INDEX_MASK); + + /* 1.15 with exp 1 */ + out = pRecipTable[index]; + + /* calculation of reciprocal value */ + /* running approximation for two iterations */ + for (i = 0u; i < 2u; i++) + { + tempVal = (uint32_t) (((q31_t) in * out) >> 15); + tempVal = 0x7FFFu - tempVal; + /* 1.15 with exp 1 */ + out = (q15_t) (((q31_t) out * tempVal) >> 14); + /* out = clip_q31_to_q15(((q31_t) out * tempVal) >> 14); */ + } + + /* write output */ + *dst = out; + + /* return num of signbits of out = 1/in value */ + return (signBits + 1); + } + + + /* + * @brief C custom defined intrinisic function for only M0 processors + */ +#if defined(ARM_MATH_CM0_FAMILY) + static __INLINE q31_t __SSAT( + q31_t x, + uint32_t y) + { + int32_t posMax, negMin; + uint32_t i; + + posMax = 1; + for (i = 0; i < (y - 1); i++) + { + posMax = posMax * 2; + } + + if(x > 0) + { + posMax = (posMax - 1); + + if(x > posMax) + { + x = posMax; + } + } + else + { + negMin = -posMax; + + if(x < negMin) + { + x = negMin; + } + } + return (x); + } +#endif /* end of ARM_MATH_CM0_FAMILY */ + + + /* + * @brief C custom defined intrinsic function for M3 and M0 processors + */ +#if defined (ARM_MATH_CM3) || defined (ARM_MATH_CM0_FAMILY) + + /* + * @brief C custom defined QADD8 for M3 and M0 processors + */ + static __INLINE uint32_t __QADD8( + uint32_t x, + uint32_t y) + { + q31_t r, s, t, u; + + r = __SSAT(((((q31_t)x << 24) >> 24) + (((q31_t)y << 24) >> 24)), 8) & (int32_t)0x000000FF; + s = __SSAT(((((q31_t)x << 16) >> 24) + (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; + t = __SSAT(((((q31_t)x << 8) >> 24) + (((q31_t)y << 8) >> 24)), 8) & (int32_t)0x000000FF; + u = __SSAT(((((q31_t)x ) >> 24) + (((q31_t)y ) >> 24)), 8) & (int32_t)0x000000FF; + + return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); + } + + + /* + * @brief C custom defined QSUB8 for M3 and M0 processors + */ + static __INLINE uint32_t __QSUB8( + uint32_t x, + uint32_t y) + { + q31_t r, s, t, u; + + r = __SSAT(((((q31_t)x << 24) >> 24) - (((q31_t)y << 24) >> 24)), 8) & (int32_t)0x000000FF; + s = __SSAT(((((q31_t)x << 16) >> 24) - (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; + t = __SSAT(((((q31_t)x << 8) >> 24) - (((q31_t)y << 8) >> 24)), 8) & (int32_t)0x000000FF; + u = __SSAT(((((q31_t)x ) >> 24) - (((q31_t)y ) >> 24)), 8) & (int32_t)0x000000FF; + + return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); + } + + + /* + * @brief C custom defined QADD16 for M3 and M0 processors + */ + static __INLINE uint32_t __QADD16( + uint32_t x, + uint32_t y) + { +/* q31_t r, s; without initialisation 'arm_offset_q15 test' fails but 'intrinsic' tests pass! for armCC */ + q31_t r = 0, s = 0; + + r = __SSAT(((((q31_t)x << 16) >> 16) + (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; + s = __SSAT(((((q31_t)x ) >> 16) + (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined SHADD16 for M3 and M0 processors + */ + static __INLINE uint32_t __SHADD16( + uint32_t x, + uint32_t y) + { + q31_t r, s; + + r = (((((q31_t)x << 16) >> 16) + (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; + s = (((((q31_t)x ) >> 16) + (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined QSUB16 for M3 and M0 processors + */ + static __INLINE uint32_t __QSUB16( + uint32_t x, + uint32_t y) + { + q31_t r, s; + + r = __SSAT(((((q31_t)x << 16) >> 16) - (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; + s = __SSAT(((((q31_t)x ) >> 16) - (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined SHSUB16 for M3 and M0 processors + */ + static __INLINE uint32_t __SHSUB16( + uint32_t x, + uint32_t y) + { + q31_t r, s; + + r = (((((q31_t)x << 16) >> 16) - (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; + s = (((((q31_t)x ) >> 16) - (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined QASX for M3 and M0 processors + */ + static __INLINE uint32_t __QASX( + uint32_t x, + uint32_t y) + { + q31_t r, s; + + r = __SSAT(((((q31_t)x << 16) >> 16) - (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; + s = __SSAT(((((q31_t)x ) >> 16) + (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined SHASX for M3 and M0 processors + */ + static __INLINE uint32_t __SHASX( + uint32_t x, + uint32_t y) + { + q31_t r, s; + + r = (((((q31_t)x << 16) >> 16) - (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; + s = (((((q31_t)x ) >> 16) + (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined QSAX for M3 and M0 processors + */ + static __INLINE uint32_t __QSAX( + uint32_t x, + uint32_t y) + { + q31_t r, s; + + r = __SSAT(((((q31_t)x << 16) >> 16) + (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; + s = __SSAT(((((q31_t)x ) >> 16) - (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined SHSAX for M3 and M0 processors + */ + static __INLINE uint32_t __SHSAX( + uint32_t x, + uint32_t y) + { + q31_t r, s; + + r = (((((q31_t)x << 16) >> 16) + (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; + s = (((((q31_t)x ) >> 16) - (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; + + return ((uint32_t)((s << 16) | (r ))); + } + + + /* + * @brief C custom defined SMUSDX for M3 and M0 processors + */ + static __INLINE uint32_t __SMUSDX( + uint32_t x, + uint32_t y) + { + return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) - + ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) )); + } + + /* + * @brief C custom defined SMUADX for M3 and M0 processors + */ + static __INLINE uint32_t __SMUADX( + uint32_t x, + uint32_t y) + { + return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) + + ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) )); + } + + + /* + * @brief C custom defined QADD for M3 and M0 processors + */ + static __INLINE int32_t __QADD( + int32_t x, + int32_t y) + { + return ((int32_t)(clip_q63_to_q31((q63_t)x + (q31_t)y))); + } + + + /* + * @brief C custom defined QSUB for M3 and M0 processors + */ + static __INLINE int32_t __QSUB( + int32_t x, + int32_t y) + { + return ((int32_t)(clip_q63_to_q31((q63_t)x - (q31_t)y))); + } + + + /* + * @brief C custom defined SMLAD for M3 and M0 processors + */ + static __INLINE uint32_t __SMLAD( + uint32_t x, + uint32_t y, + uint32_t sum) + { + return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) + + ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) + + ( ((q31_t)sum ) ) )); + } + + + /* + * @brief C custom defined SMLADX for M3 and M0 processors + */ + static __INLINE uint32_t __SMLADX( + uint32_t x, + uint32_t y, + uint32_t sum) + { + return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) + + ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) + + ( ((q31_t)sum ) ) )); + } + + + /* + * @brief C custom defined SMLSDX for M3 and M0 processors + */ + static __INLINE uint32_t __SMLSDX( + uint32_t x, + uint32_t y, + uint32_t sum) + { + return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) - + ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) + + ( ((q31_t)sum ) ) )); + } + + + /* + * @brief C custom defined SMLALD for M3 and M0 processors + */ + static __INLINE uint64_t __SMLALD( + uint32_t x, + uint32_t y, + uint64_t sum) + { +/* return (sum + ((q15_t) (x >> 16) * (q15_t) (y >> 16)) + ((q15_t) x * (q15_t) y)); */ + return ((uint64_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) + + ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) + + ( ((q63_t)sum ) ) )); + } + + + /* + * @brief C custom defined SMLALDX for M3 and M0 processors + */ + static __INLINE uint64_t __SMLALDX( + uint32_t x, + uint32_t y, + uint64_t sum) + { +/* return (sum + ((q15_t) (x >> 16) * (q15_t) y)) + ((q15_t) x * (q15_t) (y >> 16)); */ + return ((uint64_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) + + ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) + + ( ((q63_t)sum ) ) )); + } + + + /* + * @brief C custom defined SMUAD for M3 and M0 processors + */ + static __INLINE uint32_t __SMUAD( + uint32_t x, + uint32_t y) + { + return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) + + ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) )); + } + + + /* + * @brief C custom defined SMUSD for M3 and M0 processors + */ + static __INLINE uint32_t __SMUSD( + uint32_t x, + uint32_t y) + { + return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) - + ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) )); + } + + + /* + * @brief C custom defined SXTB16 for M3 and M0 processors + */ + static __INLINE uint32_t __SXTB16( + uint32_t x) + { + return ((uint32_t)(((((q31_t)x << 24) >> 24) & (q31_t)0x0000FFFF) | + ((((q31_t)x << 8) >> 8) & (q31_t)0xFFFF0000) )); + } + +#endif /* defined (ARM_MATH_CM3) || defined (ARM_MATH_CM0_FAMILY) */ + + + /** + * @brief Instance structure for the Q7 FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of filter coefficients in the filter. */ + q7_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + q7_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + } arm_fir_instance_q7; + + /** + * @brief Instance structure for the Q15 FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of filter coefficients in the filter. */ + q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + } arm_fir_instance_q15; + + /** + * @brief Instance structure for the Q31 FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of filter coefficients in the filter. */ + q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + } arm_fir_instance_q31; + + /** + * @brief Instance structure for the floating-point FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of filter coefficients in the filter. */ + float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + } arm_fir_instance_f32; + + + /** + * @brief Processing function for the Q7 FIR filter. + * @param[in] S points to an instance of the Q7 FIR filter structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_fir_q7( + const arm_fir_instance_q7 * S, + q7_t * pSrc, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q7 FIR filter. + * @param[in,out] S points to an instance of the Q7 FIR structure. + * @param[in] numTaps Number of filter coefficients in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of samples that are processed. + */ + void arm_fir_init_q7( + arm_fir_instance_q7 * S, + uint16_t numTaps, + q7_t * pCoeffs, + q7_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q15 FIR filter. + * @param[in] S points to an instance of the Q15 FIR structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_fir_q15( + const arm_fir_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Processing function for the fast Q15 FIR filter for Cortex-M3 and Cortex-M4. + * @param[in] S points to an instance of the Q15 FIR filter structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_fir_fast_q15( + const arm_fir_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q15 FIR filter. + * @param[in,out] S points to an instance of the Q15 FIR filter structure. + * @param[in] numTaps Number of filter coefficients in the filter. Must be even and greater than or equal to 4. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of samples that are processed at a time. + * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_ARGUMENT_ERROR if + * numTaps is not a supported value. + */ + arm_status arm_fir_init_q15( + arm_fir_instance_q15 * S, + uint16_t numTaps, + q15_t * pCoeffs, + q15_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q31 FIR filter. + * @param[in] S points to an instance of the Q31 FIR filter structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_fir_q31( + const arm_fir_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Processing function for the fast Q31 FIR filter for Cortex-M3 and Cortex-M4. + * @param[in] S points to an instance of the Q31 FIR structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_fir_fast_q31( + const arm_fir_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q31 FIR filter. + * @param[in,out] S points to an instance of the Q31 FIR structure. + * @param[in] numTaps Number of filter coefficients in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of samples that are processed at a time. + */ + void arm_fir_init_q31( + arm_fir_instance_q31 * S, + uint16_t numTaps, + q31_t * pCoeffs, + q31_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the floating-point FIR filter. + * @param[in] S points to an instance of the floating-point FIR structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_fir_f32( + const arm_fir_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the floating-point FIR filter. + * @param[in,out] S points to an instance of the floating-point FIR filter structure. + * @param[in] numTaps Number of filter coefficients in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of samples that are processed at a time. + */ + void arm_fir_init_f32( + arm_fir_instance_f32 * S, + uint16_t numTaps, + float32_t * pCoeffs, + float32_t * pState, + uint32_t blockSize); + + + /** + * @brief Instance structure for the Q15 Biquad cascade filter. + */ + typedef struct + { + int8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ + q15_t *pState; /**< Points to the array of state coefficients. The array is of length 4*numStages. */ + q15_t *pCoeffs; /**< Points to the array of coefficients. The array is of length 5*numStages. */ + int8_t postShift; /**< Additional shift, in bits, applied to each output sample. */ + } arm_biquad_casd_df1_inst_q15; + + /** + * @brief Instance structure for the Q31 Biquad cascade filter. + */ + typedef struct + { + uint32_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ + q31_t *pState; /**< Points to the array of state coefficients. The array is of length 4*numStages. */ + q31_t *pCoeffs; /**< Points to the array of coefficients. The array is of length 5*numStages. */ + uint8_t postShift; /**< Additional shift, in bits, applied to each output sample. */ + } arm_biquad_casd_df1_inst_q31; + + /** + * @brief Instance structure for the floating-point Biquad cascade filter. + */ + typedef struct + { + uint32_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ + float32_t *pState; /**< Points to the array of state coefficients. The array is of length 4*numStages. */ + float32_t *pCoeffs; /**< Points to the array of coefficients. The array is of length 5*numStages. */ + } arm_biquad_casd_df1_inst_f32; + + + /** + * @brief Processing function for the Q15 Biquad cascade filter. + * @param[in] S points to an instance of the Q15 Biquad cascade structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_df1_q15( + const arm_biquad_casd_df1_inst_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q15 Biquad cascade filter. + * @param[in,out] S points to an instance of the Q15 Biquad cascade structure. + * @param[in] numStages number of 2nd order stages in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] postShift Shift to be applied to the output. Varies according to the coefficients format + */ + void arm_biquad_cascade_df1_init_q15( + arm_biquad_casd_df1_inst_q15 * S, + uint8_t numStages, + q15_t * pCoeffs, + q15_t * pState, + int8_t postShift); + + + /** + * @brief Fast but less precise processing function for the Q15 Biquad cascade filter for Cortex-M3 and Cortex-M4. + * @param[in] S points to an instance of the Q15 Biquad cascade structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_df1_fast_q15( + const arm_biquad_casd_df1_inst_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q31 Biquad cascade filter + * @param[in] S points to an instance of the Q31 Biquad cascade structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_df1_q31( + const arm_biquad_casd_df1_inst_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Fast but less precise processing function for the Q31 Biquad cascade filter for Cortex-M3 and Cortex-M4. + * @param[in] S points to an instance of the Q31 Biquad cascade structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_df1_fast_q31( + const arm_biquad_casd_df1_inst_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q31 Biquad cascade filter. + * @param[in,out] S points to an instance of the Q31 Biquad cascade structure. + * @param[in] numStages number of 2nd order stages in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] postShift Shift to be applied to the output. Varies according to the coefficients format + */ + void arm_biquad_cascade_df1_init_q31( + arm_biquad_casd_df1_inst_q31 * S, + uint8_t numStages, + q31_t * pCoeffs, + q31_t * pState, + int8_t postShift); + + + /** + * @brief Processing function for the floating-point Biquad cascade filter. + * @param[in] S points to an instance of the floating-point Biquad cascade structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_df1_f32( + const arm_biquad_casd_df1_inst_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the floating-point Biquad cascade filter. + * @param[in,out] S points to an instance of the floating-point Biquad cascade structure. + * @param[in] numStages number of 2nd order stages in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + */ + void arm_biquad_cascade_df1_init_f32( + arm_biquad_casd_df1_inst_f32 * S, + uint8_t numStages, + float32_t * pCoeffs, + float32_t * pState); + + + /** + * @brief Instance structure for the floating-point matrix structure. + */ + typedef struct + { + uint16_t numRows; /**< number of rows of the matrix. */ + uint16_t numCols; /**< number of columns of the matrix. */ + float32_t *pData; /**< points to the data of the matrix. */ + } arm_matrix_instance_f32; + + + /** + * @brief Instance structure for the floating-point matrix structure. + */ + typedef struct + { + uint16_t numRows; /**< number of rows of the matrix. */ + uint16_t numCols; /**< number of columns of the matrix. */ + float64_t *pData; /**< points to the data of the matrix. */ + } arm_matrix_instance_f64; + + /** + * @brief Instance structure for the Q15 matrix structure. + */ + typedef struct + { + uint16_t numRows; /**< number of rows of the matrix. */ + uint16_t numCols; /**< number of columns of the matrix. */ + q15_t *pData; /**< points to the data of the matrix. */ + } arm_matrix_instance_q15; + + /** + * @brief Instance structure for the Q31 matrix structure. + */ + typedef struct + { + uint16_t numRows; /**< number of rows of the matrix. */ + uint16_t numCols; /**< number of columns of the matrix. */ + q31_t *pData; /**< points to the data of the matrix. */ + } arm_matrix_instance_q31; + + + /** + * @brief Floating-point matrix addition. + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_add_f32( + const arm_matrix_instance_f32 * pSrcA, + const arm_matrix_instance_f32 * pSrcB, + arm_matrix_instance_f32 * pDst); + + + /** + * @brief Q15 matrix addition. + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_add_q15( + const arm_matrix_instance_q15 * pSrcA, + const arm_matrix_instance_q15 * pSrcB, + arm_matrix_instance_q15 * pDst); + + + /** + * @brief Q31 matrix addition. + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_add_q31( + const arm_matrix_instance_q31 * pSrcA, + const arm_matrix_instance_q31 * pSrcB, + arm_matrix_instance_q31 * pDst); + + + /** + * @brief Floating-point, complex, matrix multiplication. + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_cmplx_mult_f32( + const arm_matrix_instance_f32 * pSrcA, + const arm_matrix_instance_f32 * pSrcB, + arm_matrix_instance_f32 * pDst); + + + /** + * @brief Q15, complex, matrix multiplication. + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_cmplx_mult_q15( + const arm_matrix_instance_q15 * pSrcA, + const arm_matrix_instance_q15 * pSrcB, + arm_matrix_instance_q15 * pDst, + q15_t * pScratch); + + + /** + * @brief Q31, complex, matrix multiplication. + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_cmplx_mult_q31( + const arm_matrix_instance_q31 * pSrcA, + const arm_matrix_instance_q31 * pSrcB, + arm_matrix_instance_q31 * pDst); + + + /** + * @brief Floating-point matrix transpose. + * @param[in] pSrc points to the input matrix + * @param[out] pDst points to the output matrix + * @return The function returns either ARM_MATH_SIZE_MISMATCH + * or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_trans_f32( + const arm_matrix_instance_f32 * pSrc, + arm_matrix_instance_f32 * pDst); + + + /** + * @brief Q15 matrix transpose. + * @param[in] pSrc points to the input matrix + * @param[out] pDst points to the output matrix + * @return The function returns either ARM_MATH_SIZE_MISMATCH + * or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_trans_q15( + const arm_matrix_instance_q15 * pSrc, + arm_matrix_instance_q15 * pDst); + + + /** + * @brief Q31 matrix transpose. + * @param[in] pSrc points to the input matrix + * @param[out] pDst points to the output matrix + * @return The function returns either ARM_MATH_SIZE_MISMATCH + * or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_trans_q31( + const arm_matrix_instance_q31 * pSrc, + arm_matrix_instance_q31 * pDst); + + + /** + * @brief Floating-point matrix multiplication + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_mult_f32( + const arm_matrix_instance_f32 * pSrcA, + const arm_matrix_instance_f32 * pSrcB, + arm_matrix_instance_f32 * pDst); + + + /** + * @brief Q15 matrix multiplication + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @param[in] pState points to the array for storing intermediate results + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_mult_q15( + const arm_matrix_instance_q15 * pSrcA, + const arm_matrix_instance_q15 * pSrcB, + arm_matrix_instance_q15 * pDst, + q15_t * pState); + + + /** + * @brief Q15 matrix multiplication (fast variant) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @param[in] pState points to the array for storing intermediate results + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_mult_fast_q15( + const arm_matrix_instance_q15 * pSrcA, + const arm_matrix_instance_q15 * pSrcB, + arm_matrix_instance_q15 * pDst, + q15_t * pState); + + + /** + * @brief Q31 matrix multiplication + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_mult_q31( + const arm_matrix_instance_q31 * pSrcA, + const arm_matrix_instance_q31 * pSrcB, + arm_matrix_instance_q31 * pDst); + + + /** + * @brief Q31 matrix multiplication (fast variant) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_mult_fast_q31( + const arm_matrix_instance_q31 * pSrcA, + const arm_matrix_instance_q31 * pSrcB, + arm_matrix_instance_q31 * pDst); + + + /** + * @brief Floating-point matrix subtraction + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_sub_f32( + const arm_matrix_instance_f32 * pSrcA, + const arm_matrix_instance_f32 * pSrcB, + arm_matrix_instance_f32 * pDst); + + + /** + * @brief Q15 matrix subtraction + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_sub_q15( + const arm_matrix_instance_q15 * pSrcA, + const arm_matrix_instance_q15 * pSrcB, + arm_matrix_instance_q15 * pDst); + + + /** + * @brief Q31 matrix subtraction + * @param[in] pSrcA points to the first input matrix structure + * @param[in] pSrcB points to the second input matrix structure + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_sub_q31( + const arm_matrix_instance_q31 * pSrcA, + const arm_matrix_instance_q31 * pSrcB, + arm_matrix_instance_q31 * pDst); + + + /** + * @brief Floating-point matrix scaling. + * @param[in] pSrc points to the input matrix + * @param[in] scale scale factor + * @param[out] pDst points to the output matrix + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_scale_f32( + const arm_matrix_instance_f32 * pSrc, + float32_t scale, + arm_matrix_instance_f32 * pDst); + + + /** + * @brief Q15 matrix scaling. + * @param[in] pSrc points to input matrix + * @param[in] scaleFract fractional portion of the scale factor + * @param[in] shift number of bits to shift the result by + * @param[out] pDst points to output matrix + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_scale_q15( + const arm_matrix_instance_q15 * pSrc, + q15_t scaleFract, + int32_t shift, + arm_matrix_instance_q15 * pDst); + + + /** + * @brief Q31 matrix scaling. + * @param[in] pSrc points to input matrix + * @param[in] scaleFract fractional portion of the scale factor + * @param[in] shift number of bits to shift the result by + * @param[out] pDst points to output matrix structure + * @return The function returns either + * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. + */ + arm_status arm_mat_scale_q31( + const arm_matrix_instance_q31 * pSrc, + q31_t scaleFract, + int32_t shift, + arm_matrix_instance_q31 * pDst); + + + /** + * @brief Q31 matrix initialization. + * @param[in,out] S points to an instance of the floating-point matrix structure. + * @param[in] nRows number of rows in the matrix. + * @param[in] nColumns number of columns in the matrix. + * @param[in] pData points to the matrix data array. + */ + void arm_mat_init_q31( + arm_matrix_instance_q31 * S, + uint16_t nRows, + uint16_t nColumns, + q31_t * pData); + + + /** + * @brief Q15 matrix initialization. + * @param[in,out] S points to an instance of the floating-point matrix structure. + * @param[in] nRows number of rows in the matrix. + * @param[in] nColumns number of columns in the matrix. + * @param[in] pData points to the matrix data array. + */ + void arm_mat_init_q15( + arm_matrix_instance_q15 * S, + uint16_t nRows, + uint16_t nColumns, + q15_t * pData); + + + /** + * @brief Floating-point matrix initialization. + * @param[in,out] S points to an instance of the floating-point matrix structure. + * @param[in] nRows number of rows in the matrix. + * @param[in] nColumns number of columns in the matrix. + * @param[in] pData points to the matrix data array. + */ + void arm_mat_init_f32( + arm_matrix_instance_f32 * S, + uint16_t nRows, + uint16_t nColumns, + float32_t * pData); + + + + /** + * @brief Instance structure for the Q15 PID Control. + */ + typedef struct + { + q15_t A0; /**< The derived gain, A0 = Kp + Ki + Kd . */ +#ifdef ARM_MATH_CM0_FAMILY + q15_t A1; + q15_t A2; +#else + q31_t A1; /**< The derived gain A1 = -Kp - 2Kd | Kd.*/ +#endif + q15_t state[3]; /**< The state array of length 3. */ + q15_t Kp; /**< The proportional gain. */ + q15_t Ki; /**< The integral gain. */ + q15_t Kd; /**< The derivative gain. */ + } arm_pid_instance_q15; + + /** + * @brief Instance structure for the Q31 PID Control. + */ + typedef struct + { + q31_t A0; /**< The derived gain, A0 = Kp + Ki + Kd . */ + q31_t A1; /**< The derived gain, A1 = -Kp - 2Kd. */ + q31_t A2; /**< The derived gain, A2 = Kd . */ + q31_t state[3]; /**< The state array of length 3. */ + q31_t Kp; /**< The proportional gain. */ + q31_t Ki; /**< The integral gain. */ + q31_t Kd; /**< The derivative gain. */ + } arm_pid_instance_q31; + + /** + * @brief Instance structure for the floating-point PID Control. + */ + typedef struct + { + float32_t A0; /**< The derived gain, A0 = Kp + Ki + Kd . */ + float32_t A1; /**< The derived gain, A1 = -Kp - 2Kd. */ + float32_t A2; /**< The derived gain, A2 = Kd . */ + float32_t state[3]; /**< The state array of length 3. */ + float32_t Kp; /**< The proportional gain. */ + float32_t Ki; /**< The integral gain. */ + float32_t Kd; /**< The derivative gain. */ + } arm_pid_instance_f32; + + + + /** + * @brief Initialization function for the floating-point PID Control. + * @param[in,out] S points to an instance of the PID structure. + * @param[in] resetStateFlag flag to reset the state. 0 = no change in state 1 = reset the state. + */ + void arm_pid_init_f32( + arm_pid_instance_f32 * S, + int32_t resetStateFlag); + + + /** + * @brief Reset function for the floating-point PID Control. + * @param[in,out] S is an instance of the floating-point PID Control structure + */ + void arm_pid_reset_f32( + arm_pid_instance_f32 * S); + + + /** + * @brief Initialization function for the Q31 PID Control. + * @param[in,out] S points to an instance of the Q15 PID structure. + * @param[in] resetStateFlag flag to reset the state. 0 = no change in state 1 = reset the state. + */ + void arm_pid_init_q31( + arm_pid_instance_q31 * S, + int32_t resetStateFlag); + + + /** + * @brief Reset function for the Q31 PID Control. + * @param[in,out] S points to an instance of the Q31 PID Control structure + */ + + void arm_pid_reset_q31( + arm_pid_instance_q31 * S); + + + /** + * @brief Initialization function for the Q15 PID Control. + * @param[in,out] S points to an instance of the Q15 PID structure. + * @param[in] resetStateFlag flag to reset the state. 0 = no change in state 1 = reset the state. + */ + void arm_pid_init_q15( + arm_pid_instance_q15 * S, + int32_t resetStateFlag); + + + /** + * @brief Reset function for the Q15 PID Control. + * @param[in,out] S points to an instance of the q15 PID Control structure + */ + void arm_pid_reset_q15( + arm_pid_instance_q15 * S); + + + /** + * @brief Instance structure for the floating-point Linear Interpolate function. + */ + typedef struct + { + uint32_t nValues; /**< nValues */ + float32_t x1; /**< x1 */ + float32_t xSpacing; /**< xSpacing */ + float32_t *pYData; /**< pointer to the table of Y values */ + } arm_linear_interp_instance_f32; + + /** + * @brief Instance structure for the floating-point bilinear interpolation function. + */ + typedef struct + { + uint16_t numRows; /**< number of rows in the data table. */ + uint16_t numCols; /**< number of columns in the data table. */ + float32_t *pData; /**< points to the data table. */ + } arm_bilinear_interp_instance_f32; + + /** + * @brief Instance structure for the Q31 bilinear interpolation function. + */ + typedef struct + { + uint16_t numRows; /**< number of rows in the data table. */ + uint16_t numCols; /**< number of columns in the data table. */ + q31_t *pData; /**< points to the data table. */ + } arm_bilinear_interp_instance_q31; + + /** + * @brief Instance structure for the Q15 bilinear interpolation function. + */ + typedef struct + { + uint16_t numRows; /**< number of rows in the data table. */ + uint16_t numCols; /**< number of columns in the data table. */ + q15_t *pData; /**< points to the data table. */ + } arm_bilinear_interp_instance_q15; + + /** + * @brief Instance structure for the Q15 bilinear interpolation function. + */ + typedef struct + { + uint16_t numRows; /**< number of rows in the data table. */ + uint16_t numCols; /**< number of columns in the data table. */ + q7_t *pData; /**< points to the data table. */ + } arm_bilinear_interp_instance_q7; + + + /** + * @brief Q7 vector multiplication. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_mult_q7( + q7_t * pSrcA, + q7_t * pSrcB, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q15 vector multiplication. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_mult_q15( + q15_t * pSrcA, + q15_t * pSrcB, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q31 vector multiplication. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_mult_q31( + q31_t * pSrcA, + q31_t * pSrcB, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Floating-point vector multiplication. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_mult_f32( + float32_t * pSrcA, + float32_t * pSrcB, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Instance structure for the Q15 CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ + uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ + q15_t *pTwiddle; /**< points to the Sin twiddle factor table. */ + uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ + } arm_cfft_radix2_instance_q15; + +/* Deprecated */ + arm_status arm_cfft_radix2_init_q15( + arm_cfft_radix2_instance_q15 * S, + uint16_t fftLen, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + +/* Deprecated */ + void arm_cfft_radix2_q15( + const arm_cfft_radix2_instance_q15 * S, + q15_t * pSrc); + + + /** + * @brief Instance structure for the Q15 CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ + uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ + q15_t *pTwiddle; /**< points to the twiddle factor table. */ + uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ + } arm_cfft_radix4_instance_q15; + +/* Deprecated */ + arm_status arm_cfft_radix4_init_q15( + arm_cfft_radix4_instance_q15 * S, + uint16_t fftLen, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + +/* Deprecated */ + void arm_cfft_radix4_q15( + const arm_cfft_radix4_instance_q15 * S, + q15_t * pSrc); + + /** + * @brief Instance structure for the Radix-2 Q31 CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ + uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ + q31_t *pTwiddle; /**< points to the Twiddle factor table. */ + uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ + } arm_cfft_radix2_instance_q31; + +/* Deprecated */ + arm_status arm_cfft_radix2_init_q31( + arm_cfft_radix2_instance_q31 * S, + uint16_t fftLen, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + +/* Deprecated */ + void arm_cfft_radix2_q31( + const arm_cfft_radix2_instance_q31 * S, + q31_t * pSrc); + + /** + * @brief Instance structure for the Q31 CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ + uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ + q31_t *pTwiddle; /**< points to the twiddle factor table. */ + uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ + } arm_cfft_radix4_instance_q31; + +/* Deprecated */ + void arm_cfft_radix4_q31( + const arm_cfft_radix4_instance_q31 * S, + q31_t * pSrc); + +/* Deprecated */ + arm_status arm_cfft_radix4_init_q31( + arm_cfft_radix4_instance_q31 * S, + uint16_t fftLen, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + + /** + * @brief Instance structure for the floating-point CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ + uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ + float32_t *pTwiddle; /**< points to the Twiddle factor table. */ + uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ + float32_t onebyfftLen; /**< value of 1/fftLen. */ + } arm_cfft_radix2_instance_f32; + +/* Deprecated */ + arm_status arm_cfft_radix2_init_f32( + arm_cfft_radix2_instance_f32 * S, + uint16_t fftLen, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + +/* Deprecated */ + void arm_cfft_radix2_f32( + const arm_cfft_radix2_instance_f32 * S, + float32_t * pSrc); + + /** + * @brief Instance structure for the floating-point CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ + uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ + float32_t *pTwiddle; /**< points to the Twiddle factor table. */ + uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ + float32_t onebyfftLen; /**< value of 1/fftLen. */ + } arm_cfft_radix4_instance_f32; + +/* Deprecated */ + arm_status arm_cfft_radix4_init_f32( + arm_cfft_radix4_instance_f32 * S, + uint16_t fftLen, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + +/* Deprecated */ + void arm_cfft_radix4_f32( + const arm_cfft_radix4_instance_f32 * S, + float32_t * pSrc); + + /** + * @brief Instance structure for the fixed-point CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + const q15_t *pTwiddle; /**< points to the Twiddle factor table. */ + const uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t bitRevLength; /**< bit reversal table length. */ + } arm_cfft_instance_q15; + +void arm_cfft_q15( + const arm_cfft_instance_q15 * S, + q15_t * p1, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + + /** + * @brief Instance structure for the fixed-point CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + const q31_t *pTwiddle; /**< points to the Twiddle factor table. */ + const uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t bitRevLength; /**< bit reversal table length. */ + } arm_cfft_instance_q31; + +void arm_cfft_q31( + const arm_cfft_instance_q31 * S, + q31_t * p1, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + + /** + * @brief Instance structure for the floating-point CFFT/CIFFT function. + */ + typedef struct + { + uint16_t fftLen; /**< length of the FFT. */ + const float32_t *pTwiddle; /**< points to the Twiddle factor table. */ + const uint16_t *pBitRevTable; /**< points to the bit reversal table. */ + uint16_t bitRevLength; /**< bit reversal table length. */ + } arm_cfft_instance_f32; + + void arm_cfft_f32( + const arm_cfft_instance_f32 * S, + float32_t * p1, + uint8_t ifftFlag, + uint8_t bitReverseFlag); + + /** + * @brief Instance structure for the Q15 RFFT/RIFFT function. + */ + typedef struct + { + uint32_t fftLenReal; /**< length of the real FFT. */ + uint8_t ifftFlagR; /**< flag that selects forward (ifftFlagR=0) or inverse (ifftFlagR=1) transform. */ + uint8_t bitReverseFlagR; /**< flag that enables (bitReverseFlagR=1) or disables (bitReverseFlagR=0) bit reversal of output. */ + uint32_t twidCoefRModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + q15_t *pTwiddleAReal; /**< points to the real twiddle factor table. */ + q15_t *pTwiddleBReal; /**< points to the imag twiddle factor table. */ + const arm_cfft_instance_q15 *pCfft; /**< points to the complex FFT instance. */ + } arm_rfft_instance_q15; + + arm_status arm_rfft_init_q15( + arm_rfft_instance_q15 * S, + uint32_t fftLenReal, + uint32_t ifftFlagR, + uint32_t bitReverseFlag); + + void arm_rfft_q15( + const arm_rfft_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst); + + /** + * @brief Instance structure for the Q31 RFFT/RIFFT function. + */ + typedef struct + { + uint32_t fftLenReal; /**< length of the real FFT. */ + uint8_t ifftFlagR; /**< flag that selects forward (ifftFlagR=0) or inverse (ifftFlagR=1) transform. */ + uint8_t bitReverseFlagR; /**< flag that enables (bitReverseFlagR=1) or disables (bitReverseFlagR=0) bit reversal of output. */ + uint32_t twidCoefRModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + q31_t *pTwiddleAReal; /**< points to the real twiddle factor table. */ + q31_t *pTwiddleBReal; /**< points to the imag twiddle factor table. */ + const arm_cfft_instance_q31 *pCfft; /**< points to the complex FFT instance. */ + } arm_rfft_instance_q31; + + arm_status arm_rfft_init_q31( + arm_rfft_instance_q31 * S, + uint32_t fftLenReal, + uint32_t ifftFlagR, + uint32_t bitReverseFlag); + + void arm_rfft_q31( + const arm_rfft_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst); + + /** + * @brief Instance structure for the floating-point RFFT/RIFFT function. + */ + typedef struct + { + uint32_t fftLenReal; /**< length of the real FFT. */ + uint16_t fftLenBy2; /**< length of the complex FFT. */ + uint8_t ifftFlagR; /**< flag that selects forward (ifftFlagR=0) or inverse (ifftFlagR=1) transform. */ + uint8_t bitReverseFlagR; /**< flag that enables (bitReverseFlagR=1) or disables (bitReverseFlagR=0) bit reversal of output. */ + uint32_t twidCoefRModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ + float32_t *pTwiddleAReal; /**< points to the real twiddle factor table. */ + float32_t *pTwiddleBReal; /**< points to the imag twiddle factor table. */ + arm_cfft_radix4_instance_f32 *pCfft; /**< points to the complex FFT instance. */ + } arm_rfft_instance_f32; + + arm_status arm_rfft_init_f32( + arm_rfft_instance_f32 * S, + arm_cfft_radix4_instance_f32 * S_CFFT, + uint32_t fftLenReal, + uint32_t ifftFlagR, + uint32_t bitReverseFlag); + + void arm_rfft_f32( + const arm_rfft_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst); + + /** + * @brief Instance structure for the floating-point RFFT/RIFFT function. + */ +typedef struct + { + arm_cfft_instance_f32 Sint; /**< Internal CFFT structure. */ + uint16_t fftLenRFFT; /**< length of the real sequence */ + float32_t * pTwiddleRFFT; /**< Twiddle factors real stage */ + } arm_rfft_fast_instance_f32 ; + +arm_status arm_rfft_fast_init_f32 ( + arm_rfft_fast_instance_f32 * S, + uint16_t fftLen); + +void arm_rfft_fast_f32( + arm_rfft_fast_instance_f32 * S, + float32_t * p, float32_t * pOut, + uint8_t ifftFlag); + + /** + * @brief Instance structure for the floating-point DCT4/IDCT4 function. + */ + typedef struct + { + uint16_t N; /**< length of the DCT4. */ + uint16_t Nby2; /**< half of the length of the DCT4. */ + float32_t normalize; /**< normalizing factor. */ + float32_t *pTwiddle; /**< points to the twiddle factor table. */ + float32_t *pCosFactor; /**< points to the cosFactor table. */ + arm_rfft_instance_f32 *pRfft; /**< points to the real FFT instance. */ + arm_cfft_radix4_instance_f32 *pCfft; /**< points to the complex FFT instance. */ + } arm_dct4_instance_f32; + + + /** + * @brief Initialization function for the floating-point DCT4/IDCT4. + * @param[in,out] S points to an instance of floating-point DCT4/IDCT4 structure. + * @param[in] S_RFFT points to an instance of floating-point RFFT/RIFFT structure. + * @param[in] S_CFFT points to an instance of floating-point CFFT/CIFFT structure. + * @param[in] N length of the DCT4. + * @param[in] Nby2 half of the length of the DCT4. + * @param[in] normalize normalizing factor. + * @return arm_status function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_ARGUMENT_ERROR if fftLenReal is not a supported transform length. + */ + arm_status arm_dct4_init_f32( + arm_dct4_instance_f32 * S, + arm_rfft_instance_f32 * S_RFFT, + arm_cfft_radix4_instance_f32 * S_CFFT, + uint16_t N, + uint16_t Nby2, + float32_t normalize); + + + /** + * @brief Processing function for the floating-point DCT4/IDCT4. + * @param[in] S points to an instance of the floating-point DCT4/IDCT4 structure. + * @param[in] pState points to state buffer. + * @param[in,out] pInlineBuffer points to the in-place input and output buffer. + */ + void arm_dct4_f32( + const arm_dct4_instance_f32 * S, + float32_t * pState, + float32_t * pInlineBuffer); + + + /** + * @brief Instance structure for the Q31 DCT4/IDCT4 function. + */ + typedef struct + { + uint16_t N; /**< length of the DCT4. */ + uint16_t Nby2; /**< half of the length of the DCT4. */ + q31_t normalize; /**< normalizing factor. */ + q31_t *pTwiddle; /**< points to the twiddle factor table. */ + q31_t *pCosFactor; /**< points to the cosFactor table. */ + arm_rfft_instance_q31 *pRfft; /**< points to the real FFT instance. */ + arm_cfft_radix4_instance_q31 *pCfft; /**< points to the complex FFT instance. */ + } arm_dct4_instance_q31; + + + /** + * @brief Initialization function for the Q31 DCT4/IDCT4. + * @param[in,out] S points to an instance of Q31 DCT4/IDCT4 structure. + * @param[in] S_RFFT points to an instance of Q31 RFFT/RIFFT structure + * @param[in] S_CFFT points to an instance of Q31 CFFT/CIFFT structure + * @param[in] N length of the DCT4. + * @param[in] Nby2 half of the length of the DCT4. + * @param[in] normalize normalizing factor. + * @return arm_status function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_ARGUMENT_ERROR if N is not a supported transform length. + */ + arm_status arm_dct4_init_q31( + arm_dct4_instance_q31 * S, + arm_rfft_instance_q31 * S_RFFT, + arm_cfft_radix4_instance_q31 * S_CFFT, + uint16_t N, + uint16_t Nby2, + q31_t normalize); + + + /** + * @brief Processing function for the Q31 DCT4/IDCT4. + * @param[in] S points to an instance of the Q31 DCT4 structure. + * @param[in] pState points to state buffer. + * @param[in,out] pInlineBuffer points to the in-place input and output buffer. + */ + void arm_dct4_q31( + const arm_dct4_instance_q31 * S, + q31_t * pState, + q31_t * pInlineBuffer); + + + /** + * @brief Instance structure for the Q15 DCT4/IDCT4 function. + */ + typedef struct + { + uint16_t N; /**< length of the DCT4. */ + uint16_t Nby2; /**< half of the length of the DCT4. */ + q15_t normalize; /**< normalizing factor. */ + q15_t *pTwiddle; /**< points to the twiddle factor table. */ + q15_t *pCosFactor; /**< points to the cosFactor table. */ + arm_rfft_instance_q15 *pRfft; /**< points to the real FFT instance. */ + arm_cfft_radix4_instance_q15 *pCfft; /**< points to the complex FFT instance. */ + } arm_dct4_instance_q15; + + + /** + * @brief Initialization function for the Q15 DCT4/IDCT4. + * @param[in,out] S points to an instance of Q15 DCT4/IDCT4 structure. + * @param[in] S_RFFT points to an instance of Q15 RFFT/RIFFT structure. + * @param[in] S_CFFT points to an instance of Q15 CFFT/CIFFT structure. + * @param[in] N length of the DCT4. + * @param[in] Nby2 half of the length of the DCT4. + * @param[in] normalize normalizing factor. + * @return arm_status function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_ARGUMENT_ERROR if N is not a supported transform length. + */ + arm_status arm_dct4_init_q15( + arm_dct4_instance_q15 * S, + arm_rfft_instance_q15 * S_RFFT, + arm_cfft_radix4_instance_q15 * S_CFFT, + uint16_t N, + uint16_t Nby2, + q15_t normalize); + + + /** + * @brief Processing function for the Q15 DCT4/IDCT4. + * @param[in] S points to an instance of the Q15 DCT4 structure. + * @param[in] pState points to state buffer. + * @param[in,out] pInlineBuffer points to the in-place input and output buffer. + */ + void arm_dct4_q15( + const arm_dct4_instance_q15 * S, + q15_t * pState, + q15_t * pInlineBuffer); + + + /** + * @brief Floating-point vector addition. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_add_f32( + float32_t * pSrcA, + float32_t * pSrcB, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q7 vector addition. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_add_q7( + q7_t * pSrcA, + q7_t * pSrcB, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q15 vector addition. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_add_q15( + q15_t * pSrcA, + q15_t * pSrcB, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q31 vector addition. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_add_q31( + q31_t * pSrcA, + q31_t * pSrcB, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Floating-point vector subtraction. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_sub_f32( + float32_t * pSrcA, + float32_t * pSrcB, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q7 vector subtraction. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_sub_q7( + q7_t * pSrcA, + q7_t * pSrcB, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q15 vector subtraction. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_sub_q15( + q15_t * pSrcA, + q15_t * pSrcB, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q31 vector subtraction. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in each vector + */ + void arm_sub_q31( + q31_t * pSrcA, + q31_t * pSrcB, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Multiplies a floating-point vector by a scalar. + * @param[in] pSrc points to the input vector + * @param[in] scale scale factor to be applied + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_scale_f32( + float32_t * pSrc, + float32_t scale, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Multiplies a Q7 vector by a scalar. + * @param[in] pSrc points to the input vector + * @param[in] scaleFract fractional portion of the scale value + * @param[in] shift number of bits to shift the result by + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_scale_q7( + q7_t * pSrc, + q7_t scaleFract, + int8_t shift, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Multiplies a Q15 vector by a scalar. + * @param[in] pSrc points to the input vector + * @param[in] scaleFract fractional portion of the scale value + * @param[in] shift number of bits to shift the result by + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_scale_q15( + q15_t * pSrc, + q15_t scaleFract, + int8_t shift, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Multiplies a Q31 vector by a scalar. + * @param[in] pSrc points to the input vector + * @param[in] scaleFract fractional portion of the scale value + * @param[in] shift number of bits to shift the result by + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_scale_q31( + q31_t * pSrc, + q31_t scaleFract, + int8_t shift, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q7 vector absolute value. + * @param[in] pSrc points to the input buffer + * @param[out] pDst points to the output buffer + * @param[in] blockSize number of samples in each vector + */ + void arm_abs_q7( + q7_t * pSrc, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Floating-point vector absolute value. + * @param[in] pSrc points to the input buffer + * @param[out] pDst points to the output buffer + * @param[in] blockSize number of samples in each vector + */ + void arm_abs_f32( + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q15 vector absolute value. + * @param[in] pSrc points to the input buffer + * @param[out] pDst points to the output buffer + * @param[in] blockSize number of samples in each vector + */ + void arm_abs_q15( + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Q31 vector absolute value. + * @param[in] pSrc points to the input buffer + * @param[out] pDst points to the output buffer + * @param[in] blockSize number of samples in each vector + */ + void arm_abs_q31( + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Dot product of floating-point vectors. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[in] blockSize number of samples in each vector + * @param[out] result output result returned here + */ + void arm_dot_prod_f32( + float32_t * pSrcA, + float32_t * pSrcB, + uint32_t blockSize, + float32_t * result); + + + /** + * @brief Dot product of Q7 vectors. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[in] blockSize number of samples in each vector + * @param[out] result output result returned here + */ + void arm_dot_prod_q7( + q7_t * pSrcA, + q7_t * pSrcB, + uint32_t blockSize, + q31_t * result); + + + /** + * @brief Dot product of Q15 vectors. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[in] blockSize number of samples in each vector + * @param[out] result output result returned here + */ + void arm_dot_prod_q15( + q15_t * pSrcA, + q15_t * pSrcB, + uint32_t blockSize, + q63_t * result); + + + /** + * @brief Dot product of Q31 vectors. + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[in] blockSize number of samples in each vector + * @param[out] result output result returned here + */ + void arm_dot_prod_q31( + q31_t * pSrcA, + q31_t * pSrcB, + uint32_t blockSize, + q63_t * result); + + + /** + * @brief Shifts the elements of a Q7 vector a specified number of bits. + * @param[in] pSrc points to the input vector + * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_shift_q7( + q7_t * pSrc, + int8_t shiftBits, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Shifts the elements of a Q15 vector a specified number of bits. + * @param[in] pSrc points to the input vector + * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_shift_q15( + q15_t * pSrc, + int8_t shiftBits, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Shifts the elements of a Q31 vector a specified number of bits. + * @param[in] pSrc points to the input vector + * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_shift_q31( + q31_t * pSrc, + int8_t shiftBits, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Adds a constant offset to a floating-point vector. + * @param[in] pSrc points to the input vector + * @param[in] offset is the offset to be added + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_offset_f32( + float32_t * pSrc, + float32_t offset, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Adds a constant offset to a Q7 vector. + * @param[in] pSrc points to the input vector + * @param[in] offset is the offset to be added + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_offset_q7( + q7_t * pSrc, + q7_t offset, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Adds a constant offset to a Q15 vector. + * @param[in] pSrc points to the input vector + * @param[in] offset is the offset to be added + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_offset_q15( + q15_t * pSrc, + q15_t offset, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Adds a constant offset to a Q31 vector. + * @param[in] pSrc points to the input vector + * @param[in] offset is the offset to be added + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_offset_q31( + q31_t * pSrc, + q31_t offset, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Negates the elements of a floating-point vector. + * @param[in] pSrc points to the input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_negate_f32( + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Negates the elements of a Q7 vector. + * @param[in] pSrc points to the input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_negate_q7( + q7_t * pSrc, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Negates the elements of a Q15 vector. + * @param[in] pSrc points to the input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_negate_q15( + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Negates the elements of a Q31 vector. + * @param[in] pSrc points to the input vector + * @param[out] pDst points to the output vector + * @param[in] blockSize number of samples in the vector + */ + void arm_negate_q31( + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Copies the elements of a floating-point vector. + * @param[in] pSrc input pointer + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_copy_f32( + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Copies the elements of a Q7 vector. + * @param[in] pSrc input pointer + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_copy_q7( + q7_t * pSrc, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Copies the elements of a Q15 vector. + * @param[in] pSrc input pointer + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_copy_q15( + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Copies the elements of a Q31 vector. + * @param[in] pSrc input pointer + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_copy_q31( + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Fills a constant value into a floating-point vector. + * @param[in] value input value to be filled + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_fill_f32( + float32_t value, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Fills a constant value into a Q7 vector. + * @param[in] value input value to be filled + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_fill_q7( + q7_t value, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Fills a constant value into a Q15 vector. + * @param[in] value input value to be filled + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_fill_q15( + q15_t value, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Fills a constant value into a Q31 vector. + * @param[in] value input value to be filled + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_fill_q31( + q31_t value, + q31_t * pDst, + uint32_t blockSize); + + +/** + * @brief Convolution of floating-point sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the location where the output result is written. Length srcALen+srcBLen-1. + */ + void arm_conv_f32( + float32_t * pSrcA, + uint32_t srcALen, + float32_t * pSrcB, + uint32_t srcBLen, + float32_t * pDst); + + + /** + * @brief Convolution of Q15 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. + * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). + */ + void arm_conv_opt_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + q15_t * pScratch1, + q15_t * pScratch2); + + +/** + * @brief Convolution of Q15 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the location where the output result is written. Length srcALen+srcBLen-1. + */ + void arm_conv_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst); + + + /** + * @brief Convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. + */ + void arm_conv_fast_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst); + + + /** + * @brief Convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. + * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). + */ + void arm_conv_fast_opt_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + q15_t * pScratch1, + q15_t * pScratch2); + + + /** + * @brief Convolution of Q31 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. + */ + void arm_conv_q31( + q31_t * pSrcA, + uint32_t srcALen, + q31_t * pSrcB, + uint32_t srcBLen, + q31_t * pDst); + + + /** + * @brief Convolution of Q31 sequences (fast version) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. + */ + void arm_conv_fast_q31( + q31_t * pSrcA, + uint32_t srcALen, + q31_t * pSrcB, + uint32_t srcBLen, + q31_t * pDst); + + + /** + * @brief Convolution of Q7 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. + * @param[in] pScratch1 points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + * @param[in] pScratch2 points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). + */ + void arm_conv_opt_q7( + q7_t * pSrcA, + uint32_t srcALen, + q7_t * pSrcB, + uint32_t srcBLen, + q7_t * pDst, + q15_t * pScratch1, + q15_t * pScratch2); + + + /** + * @brief Convolution of Q7 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. + */ + void arm_conv_q7( + q7_t * pSrcA, + uint32_t srcALen, + q7_t * pSrcB, + uint32_t srcBLen, + q7_t * pDst); + + + /** + * @brief Partial convolution of floating-point sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_f32( + float32_t * pSrcA, + uint32_t srcALen, + float32_t * pSrcB, + uint32_t srcBLen, + float32_t * pDst, + uint32_t firstIndex, + uint32_t numPoints); + + + /** + * @brief Partial convolution of Q15 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_opt_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + uint32_t firstIndex, + uint32_t numPoints, + q15_t * pScratch1, + q15_t * pScratch2); + + + /** + * @brief Partial convolution of Q15 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + uint32_t firstIndex, + uint32_t numPoints); + + + /** + * @brief Partial convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_fast_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + uint32_t firstIndex, + uint32_t numPoints); + + + /** + * @brief Partial convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_fast_opt_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + uint32_t firstIndex, + uint32_t numPoints, + q15_t * pScratch1, + q15_t * pScratch2); + + + /** + * @brief Partial convolution of Q31 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_q31( + q31_t * pSrcA, + uint32_t srcALen, + q31_t * pSrcB, + uint32_t srcBLen, + q31_t * pDst, + uint32_t firstIndex, + uint32_t numPoints); + + + /** + * @brief Partial convolution of Q31 sequences (fast version) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_fast_q31( + q31_t * pSrcA, + uint32_t srcALen, + q31_t * pSrcB, + uint32_t srcBLen, + q31_t * pDst, + uint32_t firstIndex, + uint32_t numPoints); + + + /** + * @brief Partial convolution of Q7 sequences + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @param[in] pScratch1 points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + * @param[in] pScratch2 points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_opt_q7( + q7_t * pSrcA, + uint32_t srcALen, + q7_t * pSrcB, + uint32_t srcBLen, + q7_t * pDst, + uint32_t firstIndex, + uint32_t numPoints, + q15_t * pScratch1, + q15_t * pScratch2); + + +/** + * @brief Partial convolution of Q7 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data + * @param[in] firstIndex is the first output sample to start with. + * @param[in] numPoints is the number of output points to be computed. + * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. + */ + arm_status arm_conv_partial_q7( + q7_t * pSrcA, + uint32_t srcALen, + q7_t * pSrcB, + uint32_t srcBLen, + q7_t * pDst, + uint32_t firstIndex, + uint32_t numPoints); + + + /** + * @brief Instance structure for the Q15 FIR decimator. + */ + typedef struct + { + uint8_t M; /**< decimation factor. */ + uint16_t numTaps; /**< number of coefficients in the filter. */ + q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + } arm_fir_decimate_instance_q15; + + /** + * @brief Instance structure for the Q31 FIR decimator. + */ + typedef struct + { + uint8_t M; /**< decimation factor. */ + uint16_t numTaps; /**< number of coefficients in the filter. */ + q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + } arm_fir_decimate_instance_q31; + + /** + * @brief Instance structure for the floating-point FIR decimator. + */ + typedef struct + { + uint8_t M; /**< decimation factor. */ + uint16_t numTaps; /**< number of coefficients in the filter. */ + float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + } arm_fir_decimate_instance_f32; + + + /** + * @brief Processing function for the floating-point FIR decimator. + * @param[in] S points to an instance of the floating-point FIR decimator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_decimate_f32( + const arm_fir_decimate_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the floating-point FIR decimator. + * @param[in,out] S points to an instance of the floating-point FIR decimator structure. + * @param[in] numTaps number of coefficients in the filter. + * @param[in] M decimation factor. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of input samples to process per call. + * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if + * blockSize is not a multiple of M. + */ + arm_status arm_fir_decimate_init_f32( + arm_fir_decimate_instance_f32 * S, + uint16_t numTaps, + uint8_t M, + float32_t * pCoeffs, + float32_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q15 FIR decimator. + * @param[in] S points to an instance of the Q15 FIR decimator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_decimate_q15( + const arm_fir_decimate_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q15 FIR decimator (fast variant) for Cortex-M3 and Cortex-M4. + * @param[in] S points to an instance of the Q15 FIR decimator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_decimate_fast_q15( + const arm_fir_decimate_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q15 FIR decimator. + * @param[in,out] S points to an instance of the Q15 FIR decimator structure. + * @param[in] numTaps number of coefficients in the filter. + * @param[in] M decimation factor. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of input samples to process per call. + * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if + * blockSize is not a multiple of M. + */ + arm_status arm_fir_decimate_init_q15( + arm_fir_decimate_instance_q15 * S, + uint16_t numTaps, + uint8_t M, + q15_t * pCoeffs, + q15_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q31 FIR decimator. + * @param[in] S points to an instance of the Q31 FIR decimator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_decimate_q31( + const arm_fir_decimate_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + /** + * @brief Processing function for the Q31 FIR decimator (fast variant) for Cortex-M3 and Cortex-M4. + * @param[in] S points to an instance of the Q31 FIR decimator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_decimate_fast_q31( + arm_fir_decimate_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q31 FIR decimator. + * @param[in,out] S points to an instance of the Q31 FIR decimator structure. + * @param[in] numTaps number of coefficients in the filter. + * @param[in] M decimation factor. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of input samples to process per call. + * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if + * blockSize is not a multiple of M. + */ + arm_status arm_fir_decimate_init_q31( + arm_fir_decimate_instance_q31 * S, + uint16_t numTaps, + uint8_t M, + q31_t * pCoeffs, + q31_t * pState, + uint32_t blockSize); + + + /** + * @brief Instance structure for the Q15 FIR interpolator. + */ + typedef struct + { + uint8_t L; /**< upsample factor. */ + uint16_t phaseLength; /**< length of each polyphase filter component. */ + q15_t *pCoeffs; /**< points to the coefficient array. The array is of length L*phaseLength. */ + q15_t *pState; /**< points to the state variable array. The array is of length blockSize+phaseLength-1. */ + } arm_fir_interpolate_instance_q15; + + /** + * @brief Instance structure for the Q31 FIR interpolator. + */ + typedef struct + { + uint8_t L; /**< upsample factor. */ + uint16_t phaseLength; /**< length of each polyphase filter component. */ + q31_t *pCoeffs; /**< points to the coefficient array. The array is of length L*phaseLength. */ + q31_t *pState; /**< points to the state variable array. The array is of length blockSize+phaseLength-1. */ + } arm_fir_interpolate_instance_q31; + + /** + * @brief Instance structure for the floating-point FIR interpolator. + */ + typedef struct + { + uint8_t L; /**< upsample factor. */ + uint16_t phaseLength; /**< length of each polyphase filter component. */ + float32_t *pCoeffs; /**< points to the coefficient array. The array is of length L*phaseLength. */ + float32_t *pState; /**< points to the state variable array. The array is of length phaseLength+numTaps-1. */ + } arm_fir_interpolate_instance_f32; + + + /** + * @brief Processing function for the Q15 FIR interpolator. + * @param[in] S points to an instance of the Q15 FIR interpolator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_interpolate_q15( + const arm_fir_interpolate_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q15 FIR interpolator. + * @param[in,out] S points to an instance of the Q15 FIR interpolator structure. + * @param[in] L upsample factor. + * @param[in] numTaps number of filter coefficients in the filter. + * @param[in] pCoeffs points to the filter coefficient buffer. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of input samples to process per call. + * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if + * the filter length numTaps is not a multiple of the interpolation factor L. + */ + arm_status arm_fir_interpolate_init_q15( + arm_fir_interpolate_instance_q15 * S, + uint8_t L, + uint16_t numTaps, + q15_t * pCoeffs, + q15_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q31 FIR interpolator. + * @param[in] S points to an instance of the Q15 FIR interpolator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_interpolate_q31( + const arm_fir_interpolate_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q31 FIR interpolator. + * @param[in,out] S points to an instance of the Q31 FIR interpolator structure. + * @param[in] L upsample factor. + * @param[in] numTaps number of filter coefficients in the filter. + * @param[in] pCoeffs points to the filter coefficient buffer. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of input samples to process per call. + * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if + * the filter length numTaps is not a multiple of the interpolation factor L. + */ + arm_status arm_fir_interpolate_init_q31( + arm_fir_interpolate_instance_q31 * S, + uint8_t L, + uint16_t numTaps, + q31_t * pCoeffs, + q31_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the floating-point FIR interpolator. + * @param[in] S points to an instance of the floating-point FIR interpolator structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_interpolate_f32( + const arm_fir_interpolate_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the floating-point FIR interpolator. + * @param[in,out] S points to an instance of the floating-point FIR interpolator structure. + * @param[in] L upsample factor. + * @param[in] numTaps number of filter coefficients in the filter. + * @param[in] pCoeffs points to the filter coefficient buffer. + * @param[in] pState points to the state buffer. + * @param[in] blockSize number of input samples to process per call. + * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if + * the filter length numTaps is not a multiple of the interpolation factor L. + */ + arm_status arm_fir_interpolate_init_f32( + arm_fir_interpolate_instance_f32 * S, + uint8_t L, + uint16_t numTaps, + float32_t * pCoeffs, + float32_t * pState, + uint32_t blockSize); + + + /** + * @brief Instance structure for the high precision Q31 Biquad cascade filter. + */ + typedef struct + { + uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ + q63_t *pState; /**< points to the array of state coefficients. The array is of length 4*numStages. */ + q31_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ + uint8_t postShift; /**< additional shift, in bits, applied to each output sample. */ + } arm_biquad_cas_df1_32x64_ins_q31; + + + /** + * @param[in] S points to an instance of the high precision Q31 Biquad cascade filter structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cas_df1_32x64_q31( + const arm_biquad_cas_df1_32x64_ins_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @param[in,out] S points to an instance of the high precision Q31 Biquad cascade filter structure. + * @param[in] numStages number of 2nd order stages in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] postShift shift to be applied to the output. Varies according to the coefficients format + */ + void arm_biquad_cas_df1_32x64_init_q31( + arm_biquad_cas_df1_32x64_ins_q31 * S, + uint8_t numStages, + q31_t * pCoeffs, + q63_t * pState, + uint8_t postShift); + + + /** + * @brief Instance structure for the floating-point transposed direct form II Biquad cascade filter. + */ + typedef struct + { + uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ + float32_t *pState; /**< points to the array of state coefficients. The array is of length 2*numStages. */ + float32_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ + } arm_biquad_cascade_df2T_instance_f32; + + /** + * @brief Instance structure for the floating-point transposed direct form II Biquad cascade filter. + */ + typedef struct + { + uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ + float32_t *pState; /**< points to the array of state coefficients. The array is of length 4*numStages. */ + float32_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ + } arm_biquad_cascade_stereo_df2T_instance_f32; + + /** + * @brief Instance structure for the floating-point transposed direct form II Biquad cascade filter. + */ + typedef struct + { + uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ + float64_t *pState; /**< points to the array of state coefficients. The array is of length 2*numStages. */ + float64_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ + } arm_biquad_cascade_df2T_instance_f64; + + + /** + * @brief Processing function for the floating-point transposed direct form II Biquad cascade filter. + * @param[in] S points to an instance of the filter data structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_df2T_f32( + const arm_biquad_cascade_df2T_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Processing function for the floating-point transposed direct form II Biquad cascade filter. 2 channels + * @param[in] S points to an instance of the filter data structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_stereo_df2T_f32( + const arm_biquad_cascade_stereo_df2T_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Processing function for the floating-point transposed direct form II Biquad cascade filter. + * @param[in] S points to an instance of the filter data structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of samples to process. + */ + void arm_biquad_cascade_df2T_f64( + const arm_biquad_cascade_df2T_instance_f64 * S, + float64_t * pSrc, + float64_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the floating-point transposed direct form II Biquad cascade filter. + * @param[in,out] S points to an instance of the filter data structure. + * @param[in] numStages number of 2nd order stages in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + */ + void arm_biquad_cascade_df2T_init_f32( + arm_biquad_cascade_df2T_instance_f32 * S, + uint8_t numStages, + float32_t * pCoeffs, + float32_t * pState); + + + /** + * @brief Initialization function for the floating-point transposed direct form II Biquad cascade filter. + * @param[in,out] S points to an instance of the filter data structure. + * @param[in] numStages number of 2nd order stages in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + */ + void arm_biquad_cascade_stereo_df2T_init_f32( + arm_biquad_cascade_stereo_df2T_instance_f32 * S, + uint8_t numStages, + float32_t * pCoeffs, + float32_t * pState); + + + /** + * @brief Initialization function for the floating-point transposed direct form II Biquad cascade filter. + * @param[in,out] S points to an instance of the filter data structure. + * @param[in] numStages number of 2nd order stages in the filter. + * @param[in] pCoeffs points to the filter coefficients. + * @param[in] pState points to the state buffer. + */ + void arm_biquad_cascade_df2T_init_f64( + arm_biquad_cascade_df2T_instance_f64 * S, + uint8_t numStages, + float64_t * pCoeffs, + float64_t * pState); + + + /** + * @brief Instance structure for the Q15 FIR lattice filter. + */ + typedef struct + { + uint16_t numStages; /**< number of filter stages. */ + q15_t *pState; /**< points to the state variable array. The array is of length numStages. */ + q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numStages. */ + } arm_fir_lattice_instance_q15; + + /** + * @brief Instance structure for the Q31 FIR lattice filter. + */ + typedef struct + { + uint16_t numStages; /**< number of filter stages. */ + q31_t *pState; /**< points to the state variable array. The array is of length numStages. */ + q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numStages. */ + } arm_fir_lattice_instance_q31; + + /** + * @brief Instance structure for the floating-point FIR lattice filter. + */ + typedef struct + { + uint16_t numStages; /**< number of filter stages. */ + float32_t *pState; /**< points to the state variable array. The array is of length numStages. */ + float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numStages. */ + } arm_fir_lattice_instance_f32; + + + /** + * @brief Initialization function for the Q15 FIR lattice filter. + * @param[in] S points to an instance of the Q15 FIR lattice structure. + * @param[in] numStages number of filter stages. + * @param[in] pCoeffs points to the coefficient buffer. The array is of length numStages. + * @param[in] pState points to the state buffer. The array is of length numStages. + */ + void arm_fir_lattice_init_q15( + arm_fir_lattice_instance_q15 * S, + uint16_t numStages, + q15_t * pCoeffs, + q15_t * pState); + + + /** + * @brief Processing function for the Q15 FIR lattice filter. + * @param[in] S points to an instance of the Q15 FIR lattice structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_fir_lattice_q15( + const arm_fir_lattice_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q31 FIR lattice filter. + * @param[in] S points to an instance of the Q31 FIR lattice structure. + * @param[in] numStages number of filter stages. + * @param[in] pCoeffs points to the coefficient buffer. The array is of length numStages. + * @param[in] pState points to the state buffer. The array is of length numStages. + */ + void arm_fir_lattice_init_q31( + arm_fir_lattice_instance_q31 * S, + uint16_t numStages, + q31_t * pCoeffs, + q31_t * pState); + + + /** + * @brief Processing function for the Q31 FIR lattice filter. + * @param[in] S points to an instance of the Q31 FIR lattice structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of samples to process. + */ + void arm_fir_lattice_q31( + const arm_fir_lattice_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + +/** + * @brief Initialization function for the floating-point FIR lattice filter. + * @param[in] S points to an instance of the floating-point FIR lattice structure. + * @param[in] numStages number of filter stages. + * @param[in] pCoeffs points to the coefficient buffer. The array is of length numStages. + * @param[in] pState points to the state buffer. The array is of length numStages. + */ + void arm_fir_lattice_init_f32( + arm_fir_lattice_instance_f32 * S, + uint16_t numStages, + float32_t * pCoeffs, + float32_t * pState); + + + /** + * @brief Processing function for the floating-point FIR lattice filter. + * @param[in] S points to an instance of the floating-point FIR lattice structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] blockSize number of samples to process. + */ + void arm_fir_lattice_f32( + const arm_fir_lattice_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Instance structure for the Q15 IIR lattice filter. + */ + typedef struct + { + uint16_t numStages; /**< number of stages in the filter. */ + q15_t *pState; /**< points to the state variable array. The array is of length numStages+blockSize. */ + q15_t *pkCoeffs; /**< points to the reflection coefficient array. The array is of length numStages. */ + q15_t *pvCoeffs; /**< points to the ladder coefficient array. The array is of length numStages+1. */ + } arm_iir_lattice_instance_q15; + + /** + * @brief Instance structure for the Q31 IIR lattice filter. + */ + typedef struct + { + uint16_t numStages; /**< number of stages in the filter. */ + q31_t *pState; /**< points to the state variable array. The array is of length numStages+blockSize. */ + q31_t *pkCoeffs; /**< points to the reflection coefficient array. The array is of length numStages. */ + q31_t *pvCoeffs; /**< points to the ladder coefficient array. The array is of length numStages+1. */ + } arm_iir_lattice_instance_q31; + + /** + * @brief Instance structure for the floating-point IIR lattice filter. + */ + typedef struct + { + uint16_t numStages; /**< number of stages in the filter. */ + float32_t *pState; /**< points to the state variable array. The array is of length numStages+blockSize. */ + float32_t *pkCoeffs; /**< points to the reflection coefficient array. The array is of length numStages. */ + float32_t *pvCoeffs; /**< points to the ladder coefficient array. The array is of length numStages+1. */ + } arm_iir_lattice_instance_f32; + + + /** + * @brief Processing function for the floating-point IIR lattice filter. + * @param[in] S points to an instance of the floating-point IIR lattice structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_iir_lattice_f32( + const arm_iir_lattice_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the floating-point IIR lattice filter. + * @param[in] S points to an instance of the floating-point IIR lattice structure. + * @param[in] numStages number of stages in the filter. + * @param[in] pkCoeffs points to the reflection coefficient buffer. The array is of length numStages. + * @param[in] pvCoeffs points to the ladder coefficient buffer. The array is of length numStages+1. + * @param[in] pState points to the state buffer. The array is of length numStages+blockSize-1. + * @param[in] blockSize number of samples to process. + */ + void arm_iir_lattice_init_f32( + arm_iir_lattice_instance_f32 * S, + uint16_t numStages, + float32_t * pkCoeffs, + float32_t * pvCoeffs, + float32_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q31 IIR lattice filter. + * @param[in] S points to an instance of the Q31 IIR lattice structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_iir_lattice_q31( + const arm_iir_lattice_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q31 IIR lattice filter. + * @param[in] S points to an instance of the Q31 IIR lattice structure. + * @param[in] numStages number of stages in the filter. + * @param[in] pkCoeffs points to the reflection coefficient buffer. The array is of length numStages. + * @param[in] pvCoeffs points to the ladder coefficient buffer. The array is of length numStages+1. + * @param[in] pState points to the state buffer. The array is of length numStages+blockSize. + * @param[in] blockSize number of samples to process. + */ + void arm_iir_lattice_init_q31( + arm_iir_lattice_instance_q31 * S, + uint16_t numStages, + q31_t * pkCoeffs, + q31_t * pvCoeffs, + q31_t * pState, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q15 IIR lattice filter. + * @param[in] S points to an instance of the Q15 IIR lattice structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data. + * @param[in] blockSize number of samples to process. + */ + void arm_iir_lattice_q15( + const arm_iir_lattice_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + +/** + * @brief Initialization function for the Q15 IIR lattice filter. + * @param[in] S points to an instance of the fixed-point Q15 IIR lattice structure. + * @param[in] numStages number of stages in the filter. + * @param[in] pkCoeffs points to reflection coefficient buffer. The array is of length numStages. + * @param[in] pvCoeffs points to ladder coefficient buffer. The array is of length numStages+1. + * @param[in] pState points to state buffer. The array is of length numStages+blockSize. + * @param[in] blockSize number of samples to process per call. + */ + void arm_iir_lattice_init_q15( + arm_iir_lattice_instance_q15 * S, + uint16_t numStages, + q15_t * pkCoeffs, + q15_t * pvCoeffs, + q15_t * pState, + uint32_t blockSize); + + + /** + * @brief Instance structure for the floating-point LMS filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + float32_t mu; /**< step size that controls filter coefficient updates. */ + } arm_lms_instance_f32; + + + /** + * @brief Processing function for floating-point LMS filter. + * @param[in] S points to an instance of the floating-point LMS filter structure. + * @param[in] pSrc points to the block of input data. + * @param[in] pRef points to the block of reference data. + * @param[out] pOut points to the block of output data. + * @param[out] pErr points to the block of error data. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_f32( + const arm_lms_instance_f32 * S, + float32_t * pSrc, + float32_t * pRef, + float32_t * pOut, + float32_t * pErr, + uint32_t blockSize); + + + /** + * @brief Initialization function for floating-point LMS filter. + * @param[in] S points to an instance of the floating-point LMS filter structure. + * @param[in] numTaps number of filter coefficients. + * @param[in] pCoeffs points to the coefficient buffer. + * @param[in] pState points to state buffer. + * @param[in] mu step size that controls filter coefficient updates. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_init_f32( + arm_lms_instance_f32 * S, + uint16_t numTaps, + float32_t * pCoeffs, + float32_t * pState, + float32_t mu, + uint32_t blockSize); + + + /** + * @brief Instance structure for the Q15 LMS filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + q15_t mu; /**< step size that controls filter coefficient updates. */ + uint32_t postShift; /**< bit shift applied to coefficients. */ + } arm_lms_instance_q15; + + + /** + * @brief Initialization function for the Q15 LMS filter. + * @param[in] S points to an instance of the Q15 LMS filter structure. + * @param[in] numTaps number of filter coefficients. + * @param[in] pCoeffs points to the coefficient buffer. + * @param[in] pState points to the state buffer. + * @param[in] mu step size that controls filter coefficient updates. + * @param[in] blockSize number of samples to process. + * @param[in] postShift bit shift applied to coefficients. + */ + void arm_lms_init_q15( + arm_lms_instance_q15 * S, + uint16_t numTaps, + q15_t * pCoeffs, + q15_t * pState, + q15_t mu, + uint32_t blockSize, + uint32_t postShift); + + + /** + * @brief Processing function for Q15 LMS filter. + * @param[in] S points to an instance of the Q15 LMS filter structure. + * @param[in] pSrc points to the block of input data. + * @param[in] pRef points to the block of reference data. + * @param[out] pOut points to the block of output data. + * @param[out] pErr points to the block of error data. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_q15( + const arm_lms_instance_q15 * S, + q15_t * pSrc, + q15_t * pRef, + q15_t * pOut, + q15_t * pErr, + uint32_t blockSize); + + + /** + * @brief Instance structure for the Q31 LMS filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + q31_t mu; /**< step size that controls filter coefficient updates. */ + uint32_t postShift; /**< bit shift applied to coefficients. */ + } arm_lms_instance_q31; + + + /** + * @brief Processing function for Q31 LMS filter. + * @param[in] S points to an instance of the Q15 LMS filter structure. + * @param[in] pSrc points to the block of input data. + * @param[in] pRef points to the block of reference data. + * @param[out] pOut points to the block of output data. + * @param[out] pErr points to the block of error data. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_q31( + const arm_lms_instance_q31 * S, + q31_t * pSrc, + q31_t * pRef, + q31_t * pOut, + q31_t * pErr, + uint32_t blockSize); + + + /** + * @brief Initialization function for Q31 LMS filter. + * @param[in] S points to an instance of the Q31 LMS filter structure. + * @param[in] numTaps number of filter coefficients. + * @param[in] pCoeffs points to coefficient buffer. + * @param[in] pState points to state buffer. + * @param[in] mu step size that controls filter coefficient updates. + * @param[in] blockSize number of samples to process. + * @param[in] postShift bit shift applied to coefficients. + */ + void arm_lms_init_q31( + arm_lms_instance_q31 * S, + uint16_t numTaps, + q31_t * pCoeffs, + q31_t * pState, + q31_t mu, + uint32_t blockSize, + uint32_t postShift); + + + /** + * @brief Instance structure for the floating-point normalized LMS filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + float32_t mu; /**< step size that control filter coefficient updates. */ + float32_t energy; /**< saves previous frame energy. */ + float32_t x0; /**< saves previous input sample. */ + } arm_lms_norm_instance_f32; + + + /** + * @brief Processing function for floating-point normalized LMS filter. + * @param[in] S points to an instance of the floating-point normalized LMS filter structure. + * @param[in] pSrc points to the block of input data. + * @param[in] pRef points to the block of reference data. + * @param[out] pOut points to the block of output data. + * @param[out] pErr points to the block of error data. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_norm_f32( + arm_lms_norm_instance_f32 * S, + float32_t * pSrc, + float32_t * pRef, + float32_t * pOut, + float32_t * pErr, + uint32_t blockSize); + + + /** + * @brief Initialization function for floating-point normalized LMS filter. + * @param[in] S points to an instance of the floating-point LMS filter structure. + * @param[in] numTaps number of filter coefficients. + * @param[in] pCoeffs points to coefficient buffer. + * @param[in] pState points to state buffer. + * @param[in] mu step size that controls filter coefficient updates. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_norm_init_f32( + arm_lms_norm_instance_f32 * S, + uint16_t numTaps, + float32_t * pCoeffs, + float32_t * pState, + float32_t mu, + uint32_t blockSize); + + + /** + * @brief Instance structure for the Q31 normalized LMS filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + q31_t mu; /**< step size that controls filter coefficient updates. */ + uint8_t postShift; /**< bit shift applied to coefficients. */ + q31_t *recipTable; /**< points to the reciprocal initial value table. */ + q31_t energy; /**< saves previous frame energy. */ + q31_t x0; /**< saves previous input sample. */ + } arm_lms_norm_instance_q31; + + + /** + * @brief Processing function for Q31 normalized LMS filter. + * @param[in] S points to an instance of the Q31 normalized LMS filter structure. + * @param[in] pSrc points to the block of input data. + * @param[in] pRef points to the block of reference data. + * @param[out] pOut points to the block of output data. + * @param[out] pErr points to the block of error data. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_norm_q31( + arm_lms_norm_instance_q31 * S, + q31_t * pSrc, + q31_t * pRef, + q31_t * pOut, + q31_t * pErr, + uint32_t blockSize); + + + /** + * @brief Initialization function for Q31 normalized LMS filter. + * @param[in] S points to an instance of the Q31 normalized LMS filter structure. + * @param[in] numTaps number of filter coefficients. + * @param[in] pCoeffs points to coefficient buffer. + * @param[in] pState points to state buffer. + * @param[in] mu step size that controls filter coefficient updates. + * @param[in] blockSize number of samples to process. + * @param[in] postShift bit shift applied to coefficients. + */ + void arm_lms_norm_init_q31( + arm_lms_norm_instance_q31 * S, + uint16_t numTaps, + q31_t * pCoeffs, + q31_t * pState, + q31_t mu, + uint32_t blockSize, + uint8_t postShift); + + + /** + * @brief Instance structure for the Q15 normalized LMS filter. + */ + typedef struct + { + uint16_t numTaps; /**< Number of coefficients in the filter. */ + q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ + q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ + q15_t mu; /**< step size that controls filter coefficient updates. */ + uint8_t postShift; /**< bit shift applied to coefficients. */ + q15_t *recipTable; /**< Points to the reciprocal initial value table. */ + q15_t energy; /**< saves previous frame energy. */ + q15_t x0; /**< saves previous input sample. */ + } arm_lms_norm_instance_q15; + + + /** + * @brief Processing function for Q15 normalized LMS filter. + * @param[in] S points to an instance of the Q15 normalized LMS filter structure. + * @param[in] pSrc points to the block of input data. + * @param[in] pRef points to the block of reference data. + * @param[out] pOut points to the block of output data. + * @param[out] pErr points to the block of error data. + * @param[in] blockSize number of samples to process. + */ + void arm_lms_norm_q15( + arm_lms_norm_instance_q15 * S, + q15_t * pSrc, + q15_t * pRef, + q15_t * pOut, + q15_t * pErr, + uint32_t blockSize); + + + /** + * @brief Initialization function for Q15 normalized LMS filter. + * @param[in] S points to an instance of the Q15 normalized LMS filter structure. + * @param[in] numTaps number of filter coefficients. + * @param[in] pCoeffs points to coefficient buffer. + * @param[in] pState points to state buffer. + * @param[in] mu step size that controls filter coefficient updates. + * @param[in] blockSize number of samples to process. + * @param[in] postShift bit shift applied to coefficients. + */ + void arm_lms_norm_init_q15( + arm_lms_norm_instance_q15 * S, + uint16_t numTaps, + q15_t * pCoeffs, + q15_t * pState, + q15_t mu, + uint32_t blockSize, + uint8_t postShift); + + + /** + * @brief Correlation of floating-point sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + */ + void arm_correlate_f32( + float32_t * pSrcA, + uint32_t srcALen, + float32_t * pSrcB, + uint32_t srcBLen, + float32_t * pDst); + + + /** + * @brief Correlation of Q15 sequences + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + * @param[in] pScratch points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + */ + void arm_correlate_opt_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + q15_t * pScratch); + + + /** + * @brief Correlation of Q15 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + */ + + void arm_correlate_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst); + + + /** + * @brief Correlation of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + */ + + void arm_correlate_fast_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst); + + + /** + * @brief Correlation of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + * @param[in] pScratch points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + */ + void arm_correlate_fast_opt_q15( + q15_t * pSrcA, + uint32_t srcALen, + q15_t * pSrcB, + uint32_t srcBLen, + q15_t * pDst, + q15_t * pScratch); + + + /** + * @brief Correlation of Q31 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + */ + void arm_correlate_q31( + q31_t * pSrcA, + uint32_t srcALen, + q31_t * pSrcB, + uint32_t srcBLen, + q31_t * pDst); + + + /** + * @brief Correlation of Q31 sequences (fast version) for Cortex-M3 and Cortex-M4 + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + */ + void arm_correlate_fast_q31( + q31_t * pSrcA, + uint32_t srcALen, + q31_t * pSrcB, + uint32_t srcBLen, + q31_t * pDst); + + + /** + * @brief Correlation of Q7 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + * @param[in] pScratch1 points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. + * @param[in] pScratch2 points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). + */ + void arm_correlate_opt_q7( + q7_t * pSrcA, + uint32_t srcALen, + q7_t * pSrcB, + uint32_t srcBLen, + q7_t * pDst, + q15_t * pScratch1, + q15_t * pScratch2); + + + /** + * @brief Correlation of Q7 sequences. + * @param[in] pSrcA points to the first input sequence. + * @param[in] srcALen length of the first input sequence. + * @param[in] pSrcB points to the second input sequence. + * @param[in] srcBLen length of the second input sequence. + * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. + */ + void arm_correlate_q7( + q7_t * pSrcA, + uint32_t srcALen, + q7_t * pSrcB, + uint32_t srcBLen, + q7_t * pDst); + + + /** + * @brief Instance structure for the floating-point sparse FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ + float32_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ + float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ + int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ + } arm_fir_sparse_instance_f32; + + /** + * @brief Instance structure for the Q31 sparse FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ + q31_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ + q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ + int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ + } arm_fir_sparse_instance_q31; + + /** + * @brief Instance structure for the Q15 sparse FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ + q15_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ + q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ + int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ + } arm_fir_sparse_instance_q15; + + /** + * @brief Instance structure for the Q7 sparse FIR filter. + */ + typedef struct + { + uint16_t numTaps; /**< number of coefficients in the filter. */ + uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ + q7_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ + q7_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ + uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ + int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ + } arm_fir_sparse_instance_q7; + + + /** + * @brief Processing function for the floating-point sparse FIR filter. + * @param[in] S points to an instance of the floating-point sparse FIR structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] pScratchIn points to a temporary buffer of size blockSize. + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_sparse_f32( + arm_fir_sparse_instance_f32 * S, + float32_t * pSrc, + float32_t * pDst, + float32_t * pScratchIn, + uint32_t blockSize); + + + /** + * @brief Initialization function for the floating-point sparse FIR filter. + * @param[in,out] S points to an instance of the floating-point sparse FIR structure. + * @param[in] numTaps number of nonzero coefficients in the filter. + * @param[in] pCoeffs points to the array of filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] pTapDelay points to the array of offset times. + * @param[in] maxDelay maximum offset time supported. + * @param[in] blockSize number of samples that will be processed per block. + */ + void arm_fir_sparse_init_f32( + arm_fir_sparse_instance_f32 * S, + uint16_t numTaps, + float32_t * pCoeffs, + float32_t * pState, + int32_t * pTapDelay, + uint16_t maxDelay, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q31 sparse FIR filter. + * @param[in] S points to an instance of the Q31 sparse FIR structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] pScratchIn points to a temporary buffer of size blockSize. + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_sparse_q31( + arm_fir_sparse_instance_q31 * S, + q31_t * pSrc, + q31_t * pDst, + q31_t * pScratchIn, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q31 sparse FIR filter. + * @param[in,out] S points to an instance of the Q31 sparse FIR structure. + * @param[in] numTaps number of nonzero coefficients in the filter. + * @param[in] pCoeffs points to the array of filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] pTapDelay points to the array of offset times. + * @param[in] maxDelay maximum offset time supported. + * @param[in] blockSize number of samples that will be processed per block. + */ + void arm_fir_sparse_init_q31( + arm_fir_sparse_instance_q31 * S, + uint16_t numTaps, + q31_t * pCoeffs, + q31_t * pState, + int32_t * pTapDelay, + uint16_t maxDelay, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q15 sparse FIR filter. + * @param[in] S points to an instance of the Q15 sparse FIR structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] pScratchIn points to a temporary buffer of size blockSize. + * @param[in] pScratchOut points to a temporary buffer of size blockSize. + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_sparse_q15( + arm_fir_sparse_instance_q15 * S, + q15_t * pSrc, + q15_t * pDst, + q15_t * pScratchIn, + q31_t * pScratchOut, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q15 sparse FIR filter. + * @param[in,out] S points to an instance of the Q15 sparse FIR structure. + * @param[in] numTaps number of nonzero coefficients in the filter. + * @param[in] pCoeffs points to the array of filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] pTapDelay points to the array of offset times. + * @param[in] maxDelay maximum offset time supported. + * @param[in] blockSize number of samples that will be processed per block. + */ + void arm_fir_sparse_init_q15( + arm_fir_sparse_instance_q15 * S, + uint16_t numTaps, + q15_t * pCoeffs, + q15_t * pState, + int32_t * pTapDelay, + uint16_t maxDelay, + uint32_t blockSize); + + + /** + * @brief Processing function for the Q7 sparse FIR filter. + * @param[in] S points to an instance of the Q7 sparse FIR structure. + * @param[in] pSrc points to the block of input data. + * @param[out] pDst points to the block of output data + * @param[in] pScratchIn points to a temporary buffer of size blockSize. + * @param[in] pScratchOut points to a temporary buffer of size blockSize. + * @param[in] blockSize number of input samples to process per call. + */ + void arm_fir_sparse_q7( + arm_fir_sparse_instance_q7 * S, + q7_t * pSrc, + q7_t * pDst, + q7_t * pScratchIn, + q31_t * pScratchOut, + uint32_t blockSize); + + + /** + * @brief Initialization function for the Q7 sparse FIR filter. + * @param[in,out] S points to an instance of the Q7 sparse FIR structure. + * @param[in] numTaps number of nonzero coefficients in the filter. + * @param[in] pCoeffs points to the array of filter coefficients. + * @param[in] pState points to the state buffer. + * @param[in] pTapDelay points to the array of offset times. + * @param[in] maxDelay maximum offset time supported. + * @param[in] blockSize number of samples that will be processed per block. + */ + void arm_fir_sparse_init_q7( + arm_fir_sparse_instance_q7 * S, + uint16_t numTaps, + q7_t * pCoeffs, + q7_t * pState, + int32_t * pTapDelay, + uint16_t maxDelay, + uint32_t blockSize); + + + /** + * @brief Floating-point sin_cos function. + * @param[in] theta input value in degrees + * @param[out] pSinVal points to the processed sine output. + * @param[out] pCosVal points to the processed cos output. + */ + void arm_sin_cos_f32( + float32_t theta, + float32_t * pSinVal, + float32_t * pCosVal); + + + /** + * @brief Q31 sin_cos function. + * @param[in] theta scaled input value in degrees + * @param[out] pSinVal points to the processed sine output. + * @param[out] pCosVal points to the processed cosine output. + */ + void arm_sin_cos_q31( + q31_t theta, + q31_t * pSinVal, + q31_t * pCosVal); + + + /** + * @brief Floating-point complex conjugate. + * @param[in] pSrc points to the input vector + * @param[out] pDst points to the output vector + * @param[in] numSamples number of complex samples in each vector + */ + void arm_cmplx_conj_f32( + float32_t * pSrc, + float32_t * pDst, + uint32_t numSamples); + + /** + * @brief Q31 complex conjugate. + * @param[in] pSrc points to the input vector + * @param[out] pDst points to the output vector + * @param[in] numSamples number of complex samples in each vector + */ + void arm_cmplx_conj_q31( + q31_t * pSrc, + q31_t * pDst, + uint32_t numSamples); + + + /** + * @brief Q15 complex conjugate. + * @param[in] pSrc points to the input vector + * @param[out] pDst points to the output vector + * @param[in] numSamples number of complex samples in each vector + */ + void arm_cmplx_conj_q15( + q15_t * pSrc, + q15_t * pDst, + uint32_t numSamples); + + + /** + * @brief Floating-point complex magnitude squared + * @param[in] pSrc points to the complex input vector + * @param[out] pDst points to the real output vector + * @param[in] numSamples number of complex samples in the input vector + */ + void arm_cmplx_mag_squared_f32( + float32_t * pSrc, + float32_t * pDst, + uint32_t numSamples); + + + /** + * @brief Q31 complex magnitude squared + * @param[in] pSrc points to the complex input vector + * @param[out] pDst points to the real output vector + * @param[in] numSamples number of complex samples in the input vector + */ + void arm_cmplx_mag_squared_q31( + q31_t * pSrc, + q31_t * pDst, + uint32_t numSamples); + + + /** + * @brief Q15 complex magnitude squared + * @param[in] pSrc points to the complex input vector + * @param[out] pDst points to the real output vector + * @param[in] numSamples number of complex samples in the input vector + */ + void arm_cmplx_mag_squared_q15( + q15_t * pSrc, + q15_t * pDst, + uint32_t numSamples); + + + /** + * @ingroup groupController + */ + + /** + * @defgroup PID PID Motor Control + * + * A Proportional Integral Derivative (PID) controller is a generic feedback control + * loop mechanism widely used in industrial control systems. + * A PID controller is the most commonly used type of feedback controller. + * + * This set of functions implements (PID) controllers + * for Q15, Q31, and floating-point data types. The functions operate on a single sample + * of data and each call to the function returns a single processed value. + * S points to an instance of the PID control data structure. in + * is the input sample value. The functions return the output value. + * + * \par Algorithm: + *
+   *    y[n] = y[n-1] + A0 * x[n] + A1 * x[n-1] + A2 * x[n-2]
+   *    A0 = Kp + Ki + Kd
+   *    A1 = (-Kp ) - (2 * Kd )
+   *    A2 = Kd  
+ * + * \par + * where \c Kp is proportional constant, \c Ki is Integral constant and \c Kd is Derivative constant + * + * \par + * \image html PID.gif "Proportional Integral Derivative Controller" + * + * \par + * The PID controller calculates an "error" value as the difference between + * the measured output and the reference input. + * The controller attempts to minimize the error by adjusting the process control inputs. + * The proportional value determines the reaction to the current error, + * the integral value determines the reaction based on the sum of recent errors, + * and the derivative value determines the reaction based on the rate at which the error has been changing. + * + * \par Instance Structure + * The Gains A0, A1, A2 and state variables for a PID controller are stored together in an instance data structure. + * A separate instance structure must be defined for each PID Controller. + * There are separate instance structure declarations for each of the 3 supported data types. + * + * \par Reset Functions + * There is also an associated reset function for each data type which clears the state array. + * + * \par Initialization Functions + * There is also an associated initialization function for each data type. + * The initialization function performs the following operations: + * - Initializes the Gains A0, A1, A2 from Kp,Ki, Kd gains. + * - Zeros out the values in the state buffer. + * + * \par + * Instance structure cannot be placed into a const data section and it is recommended to use the initialization function. + * + * \par Fixed-Point Behavior + * Care must be taken when using the fixed-point versions of the PID Controller functions. + * In particular, the overflow and saturation behavior of the accumulator used in each function must be considered. + * Refer to the function specific documentation below for usage guidelines. + */ + + /** + * @addtogroup PID + * @{ + */ + + /** + * @brief Process function for the floating-point PID Control. + * @param[in,out] S is an instance of the floating-point PID Control structure + * @param[in] in input sample to process + * @return out processed output sample. + */ + static __INLINE float32_t arm_pid_f32( + arm_pid_instance_f32 * S, + float32_t in) + { + float32_t out; + + /* y[n] = y[n-1] + A0 * x[n] + A1 * x[n-1] + A2 * x[n-2] */ + out = (S->A0 * in) + + (S->A1 * S->state[0]) + (S->A2 * S->state[1]) + (S->state[2]); + + /* Update state */ + S->state[1] = S->state[0]; + S->state[0] = in; + S->state[2] = out; + + /* return to application */ + return (out); + + } + + /** + * @brief Process function for the Q31 PID Control. + * @param[in,out] S points to an instance of the Q31 PID Control structure + * @param[in] in input sample to process + * @return out processed output sample. + * + * Scaling and Overflow Behavior: + * \par + * The function is implemented using an internal 64-bit accumulator. + * The accumulator has a 2.62 format and maintains full precision of the intermediate multiplication results but provides only a single guard bit. + * Thus, if the accumulator result overflows it wraps around rather than clip. + * In order to avoid overflows completely the input signal must be scaled down by 2 bits as there are four additions. + * After all multiply-accumulates are performed, the 2.62 accumulator is truncated to 1.32 format and then saturated to 1.31 format. + */ + static __INLINE q31_t arm_pid_q31( + arm_pid_instance_q31 * S, + q31_t in) + { + q63_t acc; + q31_t out; + + /* acc = A0 * x[n] */ + acc = (q63_t) S->A0 * in; + + /* acc += A1 * x[n-1] */ + acc += (q63_t) S->A1 * S->state[0]; + + /* acc += A2 * x[n-2] */ + acc += (q63_t) S->A2 * S->state[1]; + + /* convert output to 1.31 format to add y[n-1] */ + out = (q31_t) (acc >> 31u); + + /* out += y[n-1] */ + out += S->state[2]; + + /* Update state */ + S->state[1] = S->state[0]; + S->state[0] = in; + S->state[2] = out; + + /* return to application */ + return (out); + } + + + /** + * @brief Process function for the Q15 PID Control. + * @param[in,out] S points to an instance of the Q15 PID Control structure + * @param[in] in input sample to process + * @return out processed output sample. + * + * Scaling and Overflow Behavior: + * \par + * The function is implemented using a 64-bit internal accumulator. + * Both Gains and state variables are represented in 1.15 format and multiplications yield a 2.30 result. + * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format. + * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. + * After all additions have been performed, the accumulator is truncated to 34.15 format by discarding low 15 bits. + * Lastly, the accumulator is saturated to yield a result in 1.15 format. + */ + static __INLINE q15_t arm_pid_q15( + arm_pid_instance_q15 * S, + q15_t in) + { + q63_t acc; + q15_t out; + +#ifndef ARM_MATH_CM0_FAMILY + __SIMD32_TYPE *vstate; + + /* Implementation of PID controller */ + + /* acc = A0 * x[n] */ + acc = (q31_t) __SMUAD((uint32_t)S->A0, (uint32_t)in); + + /* acc += A1 * x[n-1] + A2 * x[n-2] */ + vstate = __SIMD32_CONST(S->state); + acc = (q63_t)__SMLALD((uint32_t)S->A1, (uint32_t)*vstate, (uint64_t)acc); +#else + /* acc = A0 * x[n] */ + acc = ((q31_t) S->A0) * in; + + /* acc += A1 * x[n-1] + A2 * x[n-2] */ + acc += (q31_t) S->A1 * S->state[0]; + acc += (q31_t) S->A2 * S->state[1]; +#endif + + /* acc += y[n-1] */ + acc += (q31_t) S->state[2] << 15; + + /* saturate the output */ + out = (q15_t) (__SSAT((acc >> 15), 16)); + + /* Update state */ + S->state[1] = S->state[0]; + S->state[0] = in; + S->state[2] = out; + + /* return to application */ + return (out); + } + + /** + * @} end of PID group + */ + + + /** + * @brief Floating-point matrix inverse. + * @param[in] src points to the instance of the input floating-point matrix structure. + * @param[out] dst points to the instance of the output floating-point matrix structure. + * @return The function returns ARM_MATH_SIZE_MISMATCH, if the dimensions do not match. + * If the input matrix is singular (does not have an inverse), then the algorithm terminates and returns error status ARM_MATH_SINGULAR. + */ + arm_status arm_mat_inverse_f32( + const arm_matrix_instance_f32 * src, + arm_matrix_instance_f32 * dst); + + + /** + * @brief Floating-point matrix inverse. + * @param[in] src points to the instance of the input floating-point matrix structure. + * @param[out] dst points to the instance of the output floating-point matrix structure. + * @return The function returns ARM_MATH_SIZE_MISMATCH, if the dimensions do not match. + * If the input matrix is singular (does not have an inverse), then the algorithm terminates and returns error status ARM_MATH_SINGULAR. + */ + arm_status arm_mat_inverse_f64( + const arm_matrix_instance_f64 * src, + arm_matrix_instance_f64 * dst); + + + + /** + * @ingroup groupController + */ + + /** + * @defgroup clarke Vector Clarke Transform + * Forward Clarke transform converts the instantaneous stator phases into a two-coordinate time invariant vector. + * Generally the Clarke transform uses three-phase currents Ia, Ib and Ic to calculate currents + * in the two-phase orthogonal stator axis Ialpha and Ibeta. + * When Ialpha is superposed with Ia as shown in the figure below + * \image html clarke.gif Stator current space vector and its components in (a,b). + * and Ia + Ib + Ic = 0, in this condition Ialpha and Ibeta + * can be calculated using only Ia and Ib. + * + * The function operates on a single sample of data and each call to the function returns the processed output. + * The library provides separate functions for Q31 and floating-point data types. + * \par Algorithm + * \image html clarkeFormula.gif + * where Ia and Ib are the instantaneous stator phases and + * pIalpha and pIbeta are the two coordinates of time invariant vector. + * \par Fixed-Point Behavior + * Care must be taken when using the Q31 version of the Clarke transform. + * In particular, the overflow and saturation behavior of the accumulator used must be considered. + * Refer to the function specific documentation below for usage guidelines. + */ + + /** + * @addtogroup clarke + * @{ + */ + + /** + * + * @brief Floating-point Clarke transform + * @param[in] Ia input three-phase coordinate a + * @param[in] Ib input three-phase coordinate b + * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha + * @param[out] pIbeta points to output two-phase orthogonal vector axis beta + */ + static __INLINE void arm_clarke_f32( + float32_t Ia, + float32_t Ib, + float32_t * pIalpha, + float32_t * pIbeta) + { + /* Calculate pIalpha using the equation, pIalpha = Ia */ + *pIalpha = Ia; + + /* Calculate pIbeta using the equation, pIbeta = (1/sqrt(3)) * Ia + (2/sqrt(3)) * Ib */ + *pIbeta = ((float32_t) 0.57735026919 * Ia + (float32_t) 1.15470053838 * Ib); + } + + + /** + * @brief Clarke transform for Q31 version + * @param[in] Ia input three-phase coordinate a + * @param[in] Ib input three-phase coordinate b + * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha + * @param[out] pIbeta points to output two-phase orthogonal vector axis beta + * + * Scaling and Overflow Behavior: + * \par + * The function is implemented using an internal 32-bit accumulator. + * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. + * There is saturation on the addition, hence there is no risk of overflow. + */ + static __INLINE void arm_clarke_q31( + q31_t Ia, + q31_t Ib, + q31_t * pIalpha, + q31_t * pIbeta) + { + q31_t product1, product2; /* Temporary variables used to store intermediate results */ + + /* Calculating pIalpha from Ia by equation pIalpha = Ia */ + *pIalpha = Ia; + + /* Intermediate product is calculated by (1/(sqrt(3)) * Ia) */ + product1 = (q31_t) (((q63_t) Ia * 0x24F34E8B) >> 30); + + /* Intermediate product is calculated by (2/sqrt(3) * Ib) */ + product2 = (q31_t) (((q63_t) Ib * 0x49E69D16) >> 30); + + /* pIbeta is calculated by adding the intermediate products */ + *pIbeta = __QADD(product1, product2); + } + + /** + * @} end of clarke group + */ + + /** + * @brief Converts the elements of the Q7 vector to Q31 vector. + * @param[in] pSrc input pointer + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_q7_to_q31( + q7_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + + /** + * @ingroup groupController + */ + + /** + * @defgroup inv_clarke Vector Inverse Clarke Transform + * Inverse Clarke transform converts the two-coordinate time invariant vector into instantaneous stator phases. + * + * The function operates on a single sample of data and each call to the function returns the processed output. + * The library provides separate functions for Q31 and floating-point data types. + * \par Algorithm + * \image html clarkeInvFormula.gif + * where pIa and pIb are the instantaneous stator phases and + * Ialpha and Ibeta are the two coordinates of time invariant vector. + * \par Fixed-Point Behavior + * Care must be taken when using the Q31 version of the Clarke transform. + * In particular, the overflow and saturation behavior of the accumulator used must be considered. + * Refer to the function specific documentation below for usage guidelines. + */ + + /** + * @addtogroup inv_clarke + * @{ + */ + + /** + * @brief Floating-point Inverse Clarke transform + * @param[in] Ialpha input two-phase orthogonal vector axis alpha + * @param[in] Ibeta input two-phase orthogonal vector axis beta + * @param[out] pIa points to output three-phase coordinate a + * @param[out] pIb points to output three-phase coordinate b + */ + static __INLINE void arm_inv_clarke_f32( + float32_t Ialpha, + float32_t Ibeta, + float32_t * pIa, + float32_t * pIb) + { + /* Calculating pIa from Ialpha by equation pIa = Ialpha */ + *pIa = Ialpha; + + /* Calculating pIb from Ialpha and Ibeta by equation pIb = -(1/2) * Ialpha + (sqrt(3)/2) * Ibeta */ + *pIb = -0.5f * Ialpha + 0.8660254039f * Ibeta; + } + + + /** + * @brief Inverse Clarke transform for Q31 version + * @param[in] Ialpha input two-phase orthogonal vector axis alpha + * @param[in] Ibeta input two-phase orthogonal vector axis beta + * @param[out] pIa points to output three-phase coordinate a + * @param[out] pIb points to output three-phase coordinate b + * + * Scaling and Overflow Behavior: + * \par + * The function is implemented using an internal 32-bit accumulator. + * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. + * There is saturation on the subtraction, hence there is no risk of overflow. + */ + static __INLINE void arm_inv_clarke_q31( + q31_t Ialpha, + q31_t Ibeta, + q31_t * pIa, + q31_t * pIb) + { + q31_t product1, product2; /* Temporary variables used to store intermediate results */ + + /* Calculating pIa from Ialpha by equation pIa = Ialpha */ + *pIa = Ialpha; + + /* Intermediate product is calculated by (1/(2*sqrt(3)) * Ia) */ + product1 = (q31_t) (((q63_t) (Ialpha) * (0x40000000)) >> 31); + + /* Intermediate product is calculated by (1/sqrt(3) * pIb) */ + product2 = (q31_t) (((q63_t) (Ibeta) * (0x6ED9EBA1)) >> 31); + + /* pIb is calculated by subtracting the products */ + *pIb = __QSUB(product2, product1); + } + + /** + * @} end of inv_clarke group + */ + + /** + * @brief Converts the elements of the Q7 vector to Q15 vector. + * @param[in] pSrc input pointer + * @param[out] pDst output pointer + * @param[in] blockSize number of samples to process + */ + void arm_q7_to_q15( + q7_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + + /** + * @ingroup groupController + */ + + /** + * @defgroup park Vector Park Transform + * + * Forward Park transform converts the input two-coordinate vector to flux and torque components. + * The Park transform can be used to realize the transformation of the Ialpha and the Ibeta currents + * from the stationary to the moving reference frame and control the spatial relationship between + * the stator vector current and rotor flux vector. + * If we consider the d axis aligned with the rotor flux, the diagram below shows the + * current vector and the relationship from the two reference frames: + * \image html park.gif "Stator current space vector and its component in (a,b) and in the d,q rotating reference frame" + * + * The function operates on a single sample of data and each call to the function returns the processed output. + * The library provides separate functions for Q31 and floating-point data types. + * \par Algorithm + * \image html parkFormula.gif + * where Ialpha and Ibeta are the stator vector components, + * pId and pIq are rotor vector components and cosVal and sinVal are the + * cosine and sine values of theta (rotor flux position). + * \par Fixed-Point Behavior + * Care must be taken when using the Q31 version of the Park transform. + * In particular, the overflow and saturation behavior of the accumulator used must be considered. + * Refer to the function specific documentation below for usage guidelines. + */ + + /** + * @addtogroup park + * @{ + */ + + /** + * @brief Floating-point Park transform + * @param[in] Ialpha input two-phase vector coordinate alpha + * @param[in] Ibeta input two-phase vector coordinate beta + * @param[out] pId points to output rotor reference frame d + * @param[out] pIq points to output rotor reference frame q + * @param[in] sinVal sine value of rotation angle theta + * @param[in] cosVal cosine value of rotation angle theta + * + * The function implements the forward Park transform. + * + */ + static __INLINE void arm_park_f32( + float32_t Ialpha, + float32_t Ibeta, + float32_t * pId, + float32_t * pIq, + float32_t sinVal, + float32_t cosVal) + { + /* Calculate pId using the equation, pId = Ialpha * cosVal + Ibeta * sinVal */ + *pId = Ialpha * cosVal + Ibeta * sinVal; + + /* Calculate pIq using the equation, pIq = - Ialpha * sinVal + Ibeta * cosVal */ + *pIq = -Ialpha * sinVal + Ibeta * cosVal; + } + + + /** + * @brief Park transform for Q31 version + * @param[in] Ialpha input two-phase vector coordinate alpha + * @param[in] Ibeta input two-phase vector coordinate beta + * @param[out] pId points to output rotor reference frame d + * @param[out] pIq points to output rotor reference frame q + * @param[in] sinVal sine value of rotation angle theta + * @param[in] cosVal cosine value of rotation angle theta + * + * Scaling and Overflow Behavior: + * \par + * The function is implemented using an internal 32-bit accumulator. + * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. + * There is saturation on the addition and subtraction, hence there is no risk of overflow. + */ + static __INLINE void arm_park_q31( + q31_t Ialpha, + q31_t Ibeta, + q31_t * pId, + q31_t * pIq, + q31_t sinVal, + q31_t cosVal) + { + q31_t product1, product2; /* Temporary variables used to store intermediate results */ + q31_t product3, product4; /* Temporary variables used to store intermediate results */ + + /* Intermediate product is calculated by (Ialpha * cosVal) */ + product1 = (q31_t) (((q63_t) (Ialpha) * (cosVal)) >> 31); + + /* Intermediate product is calculated by (Ibeta * sinVal) */ + product2 = (q31_t) (((q63_t) (Ibeta) * (sinVal)) >> 31); + + + /* Intermediate product is calculated by (Ialpha * sinVal) */ + product3 = (q31_t) (((q63_t) (Ialpha) * (sinVal)) >> 31); + + /* Intermediate product is calculated by (Ibeta * cosVal) */ + product4 = (q31_t) (((q63_t) (Ibeta) * (cosVal)) >> 31); + + /* Calculate pId by adding the two intermediate products 1 and 2 */ + *pId = __QADD(product1, product2); + + /* Calculate pIq by subtracting the two intermediate products 3 from 4 */ + *pIq = __QSUB(product4, product3); + } + + /** + * @} end of park group + */ + + /** + * @brief Converts the elements of the Q7 vector to floating-point vector. + * @param[in] pSrc is input pointer + * @param[out] pDst is output pointer + * @param[in] blockSize is the number of samples to process + */ + void arm_q7_to_float( + q7_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @ingroup groupController + */ + + /** + * @defgroup inv_park Vector Inverse Park transform + * Inverse Park transform converts the input flux and torque components to two-coordinate vector. + * + * The function operates on a single sample of data and each call to the function returns the processed output. + * The library provides separate functions for Q31 and floating-point data types. + * \par Algorithm + * \image html parkInvFormula.gif + * where pIalpha and pIbeta are the stator vector components, + * Id and Iq are rotor vector components and cosVal and sinVal are the + * cosine and sine values of theta (rotor flux position). + * \par Fixed-Point Behavior + * Care must be taken when using the Q31 version of the Park transform. + * In particular, the overflow and saturation behavior of the accumulator used must be considered. + * Refer to the function specific documentation below for usage guidelines. + */ + + /** + * @addtogroup inv_park + * @{ + */ + + /** + * @brief Floating-point Inverse Park transform + * @param[in] Id input coordinate of rotor reference frame d + * @param[in] Iq input coordinate of rotor reference frame q + * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha + * @param[out] pIbeta points to output two-phase orthogonal vector axis beta + * @param[in] sinVal sine value of rotation angle theta + * @param[in] cosVal cosine value of rotation angle theta + */ + static __INLINE void arm_inv_park_f32( + float32_t Id, + float32_t Iq, + float32_t * pIalpha, + float32_t * pIbeta, + float32_t sinVal, + float32_t cosVal) + { + /* Calculate pIalpha using the equation, pIalpha = Id * cosVal - Iq * sinVal */ + *pIalpha = Id * cosVal - Iq * sinVal; + + /* Calculate pIbeta using the equation, pIbeta = Id * sinVal + Iq * cosVal */ + *pIbeta = Id * sinVal + Iq * cosVal; + } + + + /** + * @brief Inverse Park transform for Q31 version + * @param[in] Id input coordinate of rotor reference frame d + * @param[in] Iq input coordinate of rotor reference frame q + * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha + * @param[out] pIbeta points to output two-phase orthogonal vector axis beta + * @param[in] sinVal sine value of rotation angle theta + * @param[in] cosVal cosine value of rotation angle theta + * + * Scaling and Overflow Behavior: + * \par + * The function is implemented using an internal 32-bit accumulator. + * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. + * There is saturation on the addition, hence there is no risk of overflow. + */ + static __INLINE void arm_inv_park_q31( + q31_t Id, + q31_t Iq, + q31_t * pIalpha, + q31_t * pIbeta, + q31_t sinVal, + q31_t cosVal) + { + q31_t product1, product2; /* Temporary variables used to store intermediate results */ + q31_t product3, product4; /* Temporary variables used to store intermediate results */ + + /* Intermediate product is calculated by (Id * cosVal) */ + product1 = (q31_t) (((q63_t) (Id) * (cosVal)) >> 31); + + /* Intermediate product is calculated by (Iq * sinVal) */ + product2 = (q31_t) (((q63_t) (Iq) * (sinVal)) >> 31); + + + /* Intermediate product is calculated by (Id * sinVal) */ + product3 = (q31_t) (((q63_t) (Id) * (sinVal)) >> 31); + + /* Intermediate product is calculated by (Iq * cosVal) */ + product4 = (q31_t) (((q63_t) (Iq) * (cosVal)) >> 31); + + /* Calculate pIalpha by using the two intermediate products 1 and 2 */ + *pIalpha = __QSUB(product1, product2); + + /* Calculate pIbeta by using the two intermediate products 3 and 4 */ + *pIbeta = __QADD(product4, product3); + } + + /** + * @} end of Inverse park group + */ + + + /** + * @brief Converts the elements of the Q31 vector to floating-point vector. + * @param[in] pSrc is input pointer + * @param[out] pDst is output pointer + * @param[in] blockSize is the number of samples to process + */ + void arm_q31_to_float( + q31_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + /** + * @ingroup groupInterpolation + */ + + /** + * @defgroup LinearInterpolate Linear Interpolation + * + * Linear interpolation is a method of curve fitting using linear polynomials. + * Linear interpolation works by effectively drawing a straight line between two neighboring samples and returning the appropriate point along that line + * + * \par + * \image html LinearInterp.gif "Linear interpolation" + * + * \par + * A Linear Interpolate function calculates an output value(y), for the input(x) + * using linear interpolation of the input values x0, x1( nearest input values) and the output values y0 and y1(nearest output values) + * + * \par Algorithm: + *
+   *       y = y0 + (x - x0) * ((y1 - y0)/(x1-x0))
+   *       where x0, x1 are nearest values of input x
+   *             y0, y1 are nearest values to output y
+   * 
+ * + * \par + * This set of functions implements Linear interpolation process + * for Q7, Q15, Q31, and floating-point data types. The functions operate on a single + * sample of data and each call to the function returns a single processed value. + * S points to an instance of the Linear Interpolate function data structure. + * x is the input sample value. The functions returns the output value. + * + * \par + * if x is outside of the table boundary, Linear interpolation returns first value of the table + * if x is below input range and returns last value of table if x is above range. + */ + + /** + * @addtogroup LinearInterpolate + * @{ + */ + + /** + * @brief Process function for the floating-point Linear Interpolation Function. + * @param[in,out] S is an instance of the floating-point Linear Interpolation structure + * @param[in] x input sample to process + * @return y processed output sample. + * + */ + static __INLINE float32_t arm_linear_interp_f32( + arm_linear_interp_instance_f32 * S, + float32_t x) + { + float32_t y; + float32_t x0, x1; /* Nearest input values */ + float32_t y0, y1; /* Nearest output values */ + float32_t xSpacing = S->xSpacing; /* spacing between input values */ + int32_t i; /* Index variable */ + float32_t *pYData = S->pYData; /* pointer to output table */ + + /* Calculation of index */ + i = (int32_t) ((x - S->x1) / xSpacing); + + if(i < 0) + { + /* Iniatilize output for below specified range as least output value of table */ + y = pYData[0]; + } + else if((uint32_t)i >= S->nValues) + { + /* Iniatilize output for above specified range as last output value of table */ + y = pYData[S->nValues - 1]; + } + else + { + /* Calculation of nearest input values */ + x0 = S->x1 + i * xSpacing; + x1 = S->x1 + (i + 1) * xSpacing; + + /* Read of nearest output values */ + y0 = pYData[i]; + y1 = pYData[i + 1]; + + /* Calculation of output */ + y = y0 + (x - x0) * ((y1 - y0) / (x1 - x0)); + + } + + /* returns output value */ + return (y); + } + + + /** + * + * @brief Process function for the Q31 Linear Interpolation Function. + * @param[in] pYData pointer to Q31 Linear Interpolation table + * @param[in] x input sample to process + * @param[in] nValues number of table values + * @return y processed output sample. + * + * \par + * Input sample x is in 12.20 format which contains 12 bits for table index and 20 bits for fractional part. + * This function can support maximum of table size 2^12. + * + */ + static __INLINE q31_t arm_linear_interp_q31( + q31_t * pYData, + q31_t x, + uint32_t nValues) + { + q31_t y; /* output */ + q31_t y0, y1; /* Nearest output values */ + q31_t fract; /* fractional part */ + int32_t index; /* Index to read nearest output values */ + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + index = ((x & (q31_t)0xFFF00000) >> 20); + + if(index >= (int32_t)(nValues - 1)) + { + return (pYData[nValues - 1]); + } + else if(index < 0) + { + return (pYData[0]); + } + else + { + /* 20 bits for the fractional part */ + /* shift left by 11 to keep fract in 1.31 format */ + fract = (x & 0x000FFFFF) << 11; + + /* Read two nearest output values from the index in 1.31(q31) format */ + y0 = pYData[index]; + y1 = pYData[index + 1]; + + /* Calculation of y0 * (1-fract) and y is in 2.30 format */ + y = ((q31_t) ((q63_t) y0 * (0x7FFFFFFF - fract) >> 32)); + + /* Calculation of y0 * (1-fract) + y1 *fract and y is in 2.30 format */ + y += ((q31_t) (((q63_t) y1 * fract) >> 32)); + + /* Convert y to 1.31 format */ + return (y << 1u); + } + } + + + /** + * + * @brief Process function for the Q15 Linear Interpolation Function. + * @param[in] pYData pointer to Q15 Linear Interpolation table + * @param[in] x input sample to process + * @param[in] nValues number of table values + * @return y processed output sample. + * + * \par + * Input sample x is in 12.20 format which contains 12 bits for table index and 20 bits for fractional part. + * This function can support maximum of table size 2^12. + * + */ + static __INLINE q15_t arm_linear_interp_q15( + q15_t * pYData, + q31_t x, + uint32_t nValues) + { + q63_t y; /* output */ + q15_t y0, y1; /* Nearest output values */ + q31_t fract; /* fractional part */ + int32_t index; /* Index to read nearest output values */ + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + index = ((x & (int32_t)0xFFF00000) >> 20); + + if(index >= (int32_t)(nValues - 1)) + { + return (pYData[nValues - 1]); + } + else if(index < 0) + { + return (pYData[0]); + } + else + { + /* 20 bits for the fractional part */ + /* fract is in 12.20 format */ + fract = (x & 0x000FFFFF); + + /* Read two nearest output values from the index */ + y0 = pYData[index]; + y1 = pYData[index + 1]; + + /* Calculation of y0 * (1-fract) and y is in 13.35 format */ + y = ((q63_t) y0 * (0xFFFFF - fract)); + + /* Calculation of (y0 * (1-fract) + y1 * fract) and y is in 13.35 format */ + y += ((q63_t) y1 * (fract)); + + /* convert y to 1.15 format */ + return (q15_t) (y >> 20); + } + } + + + /** + * + * @brief Process function for the Q7 Linear Interpolation Function. + * @param[in] pYData pointer to Q7 Linear Interpolation table + * @param[in] x input sample to process + * @param[in] nValues number of table values + * @return y processed output sample. + * + * \par + * Input sample x is in 12.20 format which contains 12 bits for table index and 20 bits for fractional part. + * This function can support maximum of table size 2^12. + */ + static __INLINE q7_t arm_linear_interp_q7( + q7_t * pYData, + q31_t x, + uint32_t nValues) + { + q31_t y; /* output */ + q7_t y0, y1; /* Nearest output values */ + q31_t fract; /* fractional part */ + uint32_t index; /* Index to read nearest output values */ + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + if (x < 0) + { + return (pYData[0]); + } + index = (x >> 20) & 0xfff; + + if(index >= (nValues - 1)) + { + return (pYData[nValues - 1]); + } + else + { + /* 20 bits for the fractional part */ + /* fract is in 12.20 format */ + fract = (x & 0x000FFFFF); + + /* Read two nearest output values from the index and are in 1.7(q7) format */ + y0 = pYData[index]; + y1 = pYData[index + 1]; + + /* Calculation of y0 * (1-fract ) and y is in 13.27(q27) format */ + y = ((y0 * (0xFFFFF - fract))); + + /* Calculation of y1 * fract + y0 * (1-fract) and y is in 13.27(q27) format */ + y += (y1 * fract); + + /* convert y to 1.7(q7) format */ + return (q7_t) (y >> 20); + } + } + + /** + * @} end of LinearInterpolate group + */ + + /** + * @brief Fast approximation to the trigonometric sine function for floating-point data. + * @param[in] x input value in radians. + * @return sin(x). + */ + float32_t arm_sin_f32( + float32_t x); + + + /** + * @brief Fast approximation to the trigonometric sine function for Q31 data. + * @param[in] x Scaled input value in radians. + * @return sin(x). + */ + q31_t arm_sin_q31( + q31_t x); + + + /** + * @brief Fast approximation to the trigonometric sine function for Q15 data. + * @param[in] x Scaled input value in radians. + * @return sin(x). + */ + q15_t arm_sin_q15( + q15_t x); + + + /** + * @brief Fast approximation to the trigonometric cosine function for floating-point data. + * @param[in] x input value in radians. + * @return cos(x). + */ + float32_t arm_cos_f32( + float32_t x); + + + /** + * @brief Fast approximation to the trigonometric cosine function for Q31 data. + * @param[in] x Scaled input value in radians. + * @return cos(x). + */ + q31_t arm_cos_q31( + q31_t x); + + + /** + * @brief Fast approximation to the trigonometric cosine function for Q15 data. + * @param[in] x Scaled input value in radians. + * @return cos(x). + */ + q15_t arm_cos_q15( + q15_t x); + + + /** + * @ingroup groupFastMath + */ + + + /** + * @defgroup SQRT Square Root + * + * Computes the square root of a number. + * There are separate functions for Q15, Q31, and floating-point data types. + * The square root function is computed using the Newton-Raphson algorithm. + * This is an iterative algorithm of the form: + *
+   *      x1 = x0 - f(x0)/f'(x0)
+   * 
+ * where x1 is the current estimate, + * x0 is the previous estimate, and + * f'(x0) is the derivative of f() evaluated at x0. + * For the square root function, the algorithm reduces to: + *
+   *     x0 = in/2                         [initial guess]
+   *     x1 = 1/2 * ( x0 + in / x0)        [each iteration]
+   * 
+ */ + + + /** + * @addtogroup SQRT + * @{ + */ + + /** + * @brief Floating-point square root function. + * @param[in] in input value. + * @param[out] pOut square root of input value. + * @return The function returns ARM_MATH_SUCCESS if input value is positive value or ARM_MATH_ARGUMENT_ERROR if + * in is negative value and returns zero output for negative values. + */ + static __INLINE arm_status arm_sqrt_f32( + float32_t in, + float32_t * pOut) + { + if(in >= 0.0f) + { + +#if (__FPU_USED == 1) && defined ( __CC_ARM ) + *pOut = __sqrtf(in); +#elif (__FPU_USED == 1) && (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)) + *pOut = __builtin_sqrtf(in); +#elif (__FPU_USED == 1) && defined(__GNUC__) + *pOut = __builtin_sqrtf(in); +#elif (__FPU_USED == 1) && defined ( __ICCARM__ ) && (__VER__ >= 6040000) + __ASM("VSQRT.F32 %0,%1" : "=t"(*pOut) : "t"(in)); +#else + *pOut = sqrtf(in); +#endif + + return (ARM_MATH_SUCCESS); + } + else + { + *pOut = 0.0f; + return (ARM_MATH_ARGUMENT_ERROR); + } + } + + + /** + * @brief Q31 square root function. + * @param[in] in input value. The range of the input value is [0 +1) or 0x00000000 to 0x7FFFFFFF. + * @param[out] pOut square root of input value. + * @return The function returns ARM_MATH_SUCCESS if input value is positive value or ARM_MATH_ARGUMENT_ERROR if + * in is negative value and returns zero output for negative values. + */ + arm_status arm_sqrt_q31( + q31_t in, + q31_t * pOut); + + + /** + * @brief Q15 square root function. + * @param[in] in input value. The range of the input value is [0 +1) or 0x0000 to 0x7FFF. + * @param[out] pOut square root of input value. + * @return The function returns ARM_MATH_SUCCESS if input value is positive value or ARM_MATH_ARGUMENT_ERROR if + * in is negative value and returns zero output for negative values. + */ + arm_status arm_sqrt_q15( + q15_t in, + q15_t * pOut); + + /** + * @} end of SQRT group + */ + + + /** + * @brief floating-point Circular write function. + */ + static __INLINE void arm_circularWrite_f32( + int32_t * circBuffer, + int32_t L, + uint16_t * writeOffset, + int32_t bufferInc, + const int32_t * src, + int32_t srcInc, + uint32_t blockSize) + { + uint32_t i = 0u; + int32_t wOffset; + + /* Copy the value of Index pointer that points + * to the current location where the input samples to be copied */ + wOffset = *writeOffset; + + /* Loop over the blockSize */ + i = blockSize; + + while(i > 0u) + { + /* copy the input sample to the circular buffer */ + circBuffer[wOffset] = *src; + + /* Update the input pointer */ + src += srcInc; + + /* Circularly update wOffset. Watch out for positive and negative value */ + wOffset += bufferInc; + if(wOffset >= L) + wOffset -= L; + + /* Decrement the loop counter */ + i--; + } + + /* Update the index pointer */ + *writeOffset = (uint16_t)wOffset; + } + + + + /** + * @brief floating-point Circular Read function. + */ + static __INLINE void arm_circularRead_f32( + int32_t * circBuffer, + int32_t L, + int32_t * readOffset, + int32_t bufferInc, + int32_t * dst, + int32_t * dst_base, + int32_t dst_length, + int32_t dstInc, + uint32_t blockSize) + { + uint32_t i = 0u; + int32_t rOffset, dst_end; + + /* Copy the value of Index pointer that points + * to the current location from where the input samples to be read */ + rOffset = *readOffset; + dst_end = (int32_t) (dst_base + dst_length); + + /* Loop over the blockSize */ + i = blockSize; + + while(i > 0u) + { + /* copy the sample from the circular buffer to the destination buffer */ + *dst = circBuffer[rOffset]; + + /* Update the input pointer */ + dst += dstInc; + + if(dst == (int32_t *) dst_end) + { + dst = dst_base; + } + + /* Circularly update rOffset. Watch out for positive and negative value */ + rOffset += bufferInc; + + if(rOffset >= L) + { + rOffset -= L; + } + + /* Decrement the loop counter */ + i--; + } + + /* Update the index pointer */ + *readOffset = rOffset; + } + + + /** + * @brief Q15 Circular write function. + */ + static __INLINE void arm_circularWrite_q15( + q15_t * circBuffer, + int32_t L, + uint16_t * writeOffset, + int32_t bufferInc, + const q15_t * src, + int32_t srcInc, + uint32_t blockSize) + { + uint32_t i = 0u; + int32_t wOffset; + + /* Copy the value of Index pointer that points + * to the current location where the input samples to be copied */ + wOffset = *writeOffset; + + /* Loop over the blockSize */ + i = blockSize; + + while(i > 0u) + { + /* copy the input sample to the circular buffer */ + circBuffer[wOffset] = *src; + + /* Update the input pointer */ + src += srcInc; + + /* Circularly update wOffset. Watch out for positive and negative value */ + wOffset += bufferInc; + if(wOffset >= L) + wOffset -= L; + + /* Decrement the loop counter */ + i--; + } + + /* Update the index pointer */ + *writeOffset = (uint16_t)wOffset; + } + + + /** + * @brief Q15 Circular Read function. + */ + static __INLINE void arm_circularRead_q15( + q15_t * circBuffer, + int32_t L, + int32_t * readOffset, + int32_t bufferInc, + q15_t * dst, + q15_t * dst_base, + int32_t dst_length, + int32_t dstInc, + uint32_t blockSize) + { + uint32_t i = 0; + int32_t rOffset, dst_end; + + /* Copy the value of Index pointer that points + * to the current location from where the input samples to be read */ + rOffset = *readOffset; + + dst_end = (int32_t) (dst_base + dst_length); + + /* Loop over the blockSize */ + i = blockSize; + + while(i > 0u) + { + /* copy the sample from the circular buffer to the destination buffer */ + *dst = circBuffer[rOffset]; + + /* Update the input pointer */ + dst += dstInc; + + if(dst == (q15_t *) dst_end) + { + dst = dst_base; + } + + /* Circularly update wOffset. Watch out for positive and negative value */ + rOffset += bufferInc; + + if(rOffset >= L) + { + rOffset -= L; + } + + /* Decrement the loop counter */ + i--; + } + + /* Update the index pointer */ + *readOffset = rOffset; + } + + + /** + * @brief Q7 Circular write function. + */ + static __INLINE void arm_circularWrite_q7( + q7_t * circBuffer, + int32_t L, + uint16_t * writeOffset, + int32_t bufferInc, + const q7_t * src, + int32_t srcInc, + uint32_t blockSize) + { + uint32_t i = 0u; + int32_t wOffset; + + /* Copy the value of Index pointer that points + * to the current location where the input samples to be copied */ + wOffset = *writeOffset; + + /* Loop over the blockSize */ + i = blockSize; + + while(i > 0u) + { + /* copy the input sample to the circular buffer */ + circBuffer[wOffset] = *src; + + /* Update the input pointer */ + src += srcInc; + + /* Circularly update wOffset. Watch out for positive and negative value */ + wOffset += bufferInc; + if(wOffset >= L) + wOffset -= L; + + /* Decrement the loop counter */ + i--; + } + + /* Update the index pointer */ + *writeOffset = (uint16_t)wOffset; + } + + + /** + * @brief Q7 Circular Read function. + */ + static __INLINE void arm_circularRead_q7( + q7_t * circBuffer, + int32_t L, + int32_t * readOffset, + int32_t bufferInc, + q7_t * dst, + q7_t * dst_base, + int32_t dst_length, + int32_t dstInc, + uint32_t blockSize) + { + uint32_t i = 0; + int32_t rOffset, dst_end; + + /* Copy the value of Index pointer that points + * to the current location from where the input samples to be read */ + rOffset = *readOffset; + + dst_end = (int32_t) (dst_base + dst_length); + + /* Loop over the blockSize */ + i = blockSize; + + while(i > 0u) + { + /* copy the sample from the circular buffer to the destination buffer */ + *dst = circBuffer[rOffset]; + + /* Update the input pointer */ + dst += dstInc; + + if(dst == (q7_t *) dst_end) + { + dst = dst_base; + } + + /* Circularly update rOffset. Watch out for positive and negative value */ + rOffset += bufferInc; + + if(rOffset >= L) + { + rOffset -= L; + } + + /* Decrement the loop counter */ + i--; + } + + /* Update the index pointer */ + *readOffset = rOffset; + } + + + /** + * @brief Sum of the squares of the elements of a Q31 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_power_q31( + q31_t * pSrc, + uint32_t blockSize, + q63_t * pResult); + + + /** + * @brief Sum of the squares of the elements of a floating-point vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_power_f32( + float32_t * pSrc, + uint32_t blockSize, + float32_t * pResult); + + + /** + * @brief Sum of the squares of the elements of a Q15 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_power_q15( + q15_t * pSrc, + uint32_t blockSize, + q63_t * pResult); + + + /** + * @brief Sum of the squares of the elements of a Q7 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_power_q7( + q7_t * pSrc, + uint32_t blockSize, + q31_t * pResult); + + + /** + * @brief Mean value of a Q7 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_mean_q7( + q7_t * pSrc, + uint32_t blockSize, + q7_t * pResult); + + + /** + * @brief Mean value of a Q15 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_mean_q15( + q15_t * pSrc, + uint32_t blockSize, + q15_t * pResult); + + + /** + * @brief Mean value of a Q31 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_mean_q31( + q31_t * pSrc, + uint32_t blockSize, + q31_t * pResult); + + + /** + * @brief Mean value of a floating-point vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_mean_f32( + float32_t * pSrc, + uint32_t blockSize, + float32_t * pResult); + + + /** + * @brief Variance of the elements of a floating-point vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_var_f32( + float32_t * pSrc, + uint32_t blockSize, + float32_t * pResult); + + + /** + * @brief Variance of the elements of a Q31 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_var_q31( + q31_t * pSrc, + uint32_t blockSize, + q31_t * pResult); + + + /** + * @brief Variance of the elements of a Q15 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_var_q15( + q15_t * pSrc, + uint32_t blockSize, + q15_t * pResult); + + + /** + * @brief Root Mean Square of the elements of a floating-point vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_rms_f32( + float32_t * pSrc, + uint32_t blockSize, + float32_t * pResult); + + + /** + * @brief Root Mean Square of the elements of a Q31 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_rms_q31( + q31_t * pSrc, + uint32_t blockSize, + q31_t * pResult); + + + /** + * @brief Root Mean Square of the elements of a Q15 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_rms_q15( + q15_t * pSrc, + uint32_t blockSize, + q15_t * pResult); + + + /** + * @brief Standard deviation of the elements of a floating-point vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_std_f32( + float32_t * pSrc, + uint32_t blockSize, + float32_t * pResult); + + + /** + * @brief Standard deviation of the elements of a Q31 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_std_q31( + q31_t * pSrc, + uint32_t blockSize, + q31_t * pResult); + + + /** + * @brief Standard deviation of the elements of a Q15 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output value. + */ + void arm_std_q15( + q15_t * pSrc, + uint32_t blockSize, + q15_t * pResult); + + + /** + * @brief Floating-point complex magnitude + * @param[in] pSrc points to the complex input vector + * @param[out] pDst points to the real output vector + * @param[in] numSamples number of complex samples in the input vector + */ + void arm_cmplx_mag_f32( + float32_t * pSrc, + float32_t * pDst, + uint32_t numSamples); + + + /** + * @brief Q31 complex magnitude + * @param[in] pSrc points to the complex input vector + * @param[out] pDst points to the real output vector + * @param[in] numSamples number of complex samples in the input vector + */ + void arm_cmplx_mag_q31( + q31_t * pSrc, + q31_t * pDst, + uint32_t numSamples); + + + /** + * @brief Q15 complex magnitude + * @param[in] pSrc points to the complex input vector + * @param[out] pDst points to the real output vector + * @param[in] numSamples number of complex samples in the input vector + */ + void arm_cmplx_mag_q15( + q15_t * pSrc, + q15_t * pDst, + uint32_t numSamples); + + + /** + * @brief Q15 complex dot product + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[in] numSamples number of complex samples in each vector + * @param[out] realResult real part of the result returned here + * @param[out] imagResult imaginary part of the result returned here + */ + void arm_cmplx_dot_prod_q15( + q15_t * pSrcA, + q15_t * pSrcB, + uint32_t numSamples, + q31_t * realResult, + q31_t * imagResult); + + + /** + * @brief Q31 complex dot product + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[in] numSamples number of complex samples in each vector + * @param[out] realResult real part of the result returned here + * @param[out] imagResult imaginary part of the result returned here + */ + void arm_cmplx_dot_prod_q31( + q31_t * pSrcA, + q31_t * pSrcB, + uint32_t numSamples, + q63_t * realResult, + q63_t * imagResult); + + + /** + * @brief Floating-point complex dot product + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[in] numSamples number of complex samples in each vector + * @param[out] realResult real part of the result returned here + * @param[out] imagResult imaginary part of the result returned here + */ + void arm_cmplx_dot_prod_f32( + float32_t * pSrcA, + float32_t * pSrcB, + uint32_t numSamples, + float32_t * realResult, + float32_t * imagResult); + + + /** + * @brief Q15 complex-by-real multiplication + * @param[in] pSrcCmplx points to the complex input vector + * @param[in] pSrcReal points to the real input vector + * @param[out] pCmplxDst points to the complex output vector + * @param[in] numSamples number of samples in each vector + */ + void arm_cmplx_mult_real_q15( + q15_t * pSrcCmplx, + q15_t * pSrcReal, + q15_t * pCmplxDst, + uint32_t numSamples); + + + /** + * @brief Q31 complex-by-real multiplication + * @param[in] pSrcCmplx points to the complex input vector + * @param[in] pSrcReal points to the real input vector + * @param[out] pCmplxDst points to the complex output vector + * @param[in] numSamples number of samples in each vector + */ + void arm_cmplx_mult_real_q31( + q31_t * pSrcCmplx, + q31_t * pSrcReal, + q31_t * pCmplxDst, + uint32_t numSamples); + + + /** + * @brief Floating-point complex-by-real multiplication + * @param[in] pSrcCmplx points to the complex input vector + * @param[in] pSrcReal points to the real input vector + * @param[out] pCmplxDst points to the complex output vector + * @param[in] numSamples number of samples in each vector + */ + void arm_cmplx_mult_real_f32( + float32_t * pSrcCmplx, + float32_t * pSrcReal, + float32_t * pCmplxDst, + uint32_t numSamples); + + + /** + * @brief Minimum value of a Q7 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] result is output pointer + * @param[in] index is the array index of the minimum value in the input buffer. + */ + void arm_min_q7( + q7_t * pSrc, + uint32_t blockSize, + q7_t * result, + uint32_t * index); + + + /** + * @brief Minimum value of a Q15 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output pointer + * @param[in] pIndex is the array index of the minimum value in the input buffer. + */ + void arm_min_q15( + q15_t * pSrc, + uint32_t blockSize, + q15_t * pResult, + uint32_t * pIndex); + + + /** + * @brief Minimum value of a Q31 vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output pointer + * @param[out] pIndex is the array index of the minimum value in the input buffer. + */ + void arm_min_q31( + q31_t * pSrc, + uint32_t blockSize, + q31_t * pResult, + uint32_t * pIndex); + + + /** + * @brief Minimum value of a floating-point vector. + * @param[in] pSrc is input pointer + * @param[in] blockSize is the number of samples to process + * @param[out] pResult is output pointer + * @param[out] pIndex is the array index of the minimum value in the input buffer. + */ + void arm_min_f32( + float32_t * pSrc, + uint32_t blockSize, + float32_t * pResult, + uint32_t * pIndex); + + +/** + * @brief Maximum value of a Q7 vector. + * @param[in] pSrc points to the input buffer + * @param[in] blockSize length of the input vector + * @param[out] pResult maximum value returned here + * @param[out] pIndex index of maximum value returned here + */ + void arm_max_q7( + q7_t * pSrc, + uint32_t blockSize, + q7_t * pResult, + uint32_t * pIndex); + + +/** + * @brief Maximum value of a Q15 vector. + * @param[in] pSrc points to the input buffer + * @param[in] blockSize length of the input vector + * @param[out] pResult maximum value returned here + * @param[out] pIndex index of maximum value returned here + */ + void arm_max_q15( + q15_t * pSrc, + uint32_t blockSize, + q15_t * pResult, + uint32_t * pIndex); + + +/** + * @brief Maximum value of a Q31 vector. + * @param[in] pSrc points to the input buffer + * @param[in] blockSize length of the input vector + * @param[out] pResult maximum value returned here + * @param[out] pIndex index of maximum value returned here + */ + void arm_max_q31( + q31_t * pSrc, + uint32_t blockSize, + q31_t * pResult, + uint32_t * pIndex); + + +/** + * @brief Maximum value of a floating-point vector. + * @param[in] pSrc points to the input buffer + * @param[in] blockSize length of the input vector + * @param[out] pResult maximum value returned here + * @param[out] pIndex index of maximum value returned here + */ + void arm_max_f32( + float32_t * pSrc, + uint32_t blockSize, + float32_t * pResult, + uint32_t * pIndex); + + + /** + * @brief Q15 complex-by-complex multiplication + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] numSamples number of complex samples in each vector + */ + void arm_cmplx_mult_cmplx_q15( + q15_t * pSrcA, + q15_t * pSrcB, + q15_t * pDst, + uint32_t numSamples); + + + /** + * @brief Q31 complex-by-complex multiplication + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] numSamples number of complex samples in each vector + */ + void arm_cmplx_mult_cmplx_q31( + q31_t * pSrcA, + q31_t * pSrcB, + q31_t * pDst, + uint32_t numSamples); + + + /** + * @brief Floating-point complex-by-complex multiplication + * @param[in] pSrcA points to the first input vector + * @param[in] pSrcB points to the second input vector + * @param[out] pDst points to the output vector + * @param[in] numSamples number of complex samples in each vector + */ + void arm_cmplx_mult_cmplx_f32( + float32_t * pSrcA, + float32_t * pSrcB, + float32_t * pDst, + uint32_t numSamples); + + + /** + * @brief Converts the elements of the floating-point vector to Q31 vector. + * @param[in] pSrc points to the floating-point input vector + * @param[out] pDst points to the Q31 output vector + * @param[in] blockSize length of the input vector + */ + void arm_float_to_q31( + float32_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Converts the elements of the floating-point vector to Q15 vector. + * @param[in] pSrc points to the floating-point input vector + * @param[out] pDst points to the Q15 output vector + * @param[in] blockSize length of the input vector + */ + void arm_float_to_q15( + float32_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Converts the elements of the floating-point vector to Q7 vector. + * @param[in] pSrc points to the floating-point input vector + * @param[out] pDst points to the Q7 output vector + * @param[in] blockSize length of the input vector + */ + void arm_float_to_q7( + float32_t * pSrc, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Converts the elements of the Q31 vector to Q15 vector. + * @param[in] pSrc is input pointer + * @param[out] pDst is output pointer + * @param[in] blockSize is the number of samples to process + */ + void arm_q31_to_q15( + q31_t * pSrc, + q15_t * pDst, + uint32_t blockSize); + + + /** + * @brief Converts the elements of the Q31 vector to Q7 vector. + * @param[in] pSrc is input pointer + * @param[out] pDst is output pointer + * @param[in] blockSize is the number of samples to process + */ + void arm_q31_to_q7( + q31_t * pSrc, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @brief Converts the elements of the Q15 vector to floating-point vector. + * @param[in] pSrc is input pointer + * @param[out] pDst is output pointer + * @param[in] blockSize is the number of samples to process + */ + void arm_q15_to_float( + q15_t * pSrc, + float32_t * pDst, + uint32_t blockSize); + + + /** + * @brief Converts the elements of the Q15 vector to Q31 vector. + * @param[in] pSrc is input pointer + * @param[out] pDst is output pointer + * @param[in] blockSize is the number of samples to process + */ + void arm_q15_to_q31( + q15_t * pSrc, + q31_t * pDst, + uint32_t blockSize); + + + /** + * @brief Converts the elements of the Q15 vector to Q7 vector. + * @param[in] pSrc is input pointer + * @param[out] pDst is output pointer + * @param[in] blockSize is the number of samples to process + */ + void arm_q15_to_q7( + q15_t * pSrc, + q7_t * pDst, + uint32_t blockSize); + + + /** + * @ingroup groupInterpolation + */ + + /** + * @defgroup BilinearInterpolate Bilinear Interpolation + * + * Bilinear interpolation is an extension of linear interpolation applied to a two dimensional grid. + * The underlying function f(x, y) is sampled on a regular grid and the interpolation process + * determines values between the grid points. + * Bilinear interpolation is equivalent to two step linear interpolation, first in the x-dimension and then in the y-dimension. + * Bilinear interpolation is often used in image processing to rescale images. + * The CMSIS DSP library provides bilinear interpolation functions for Q7, Q15, Q31, and floating-point data types. + * + * Algorithm + * \par + * The instance structure used by the bilinear interpolation functions describes a two dimensional data table. + * For floating-point, the instance structure is defined as: + *
+   *   typedef struct
+   *   {
+   *     uint16_t numRows;
+   *     uint16_t numCols;
+   *     float32_t *pData;
+   * } arm_bilinear_interp_instance_f32;
+   * 
+ * + * \par + * where numRows specifies the number of rows in the table; + * numCols specifies the number of columns in the table; + * and pData points to an array of size numRows*numCols values. + * The data table pTable is organized in row order and the supplied data values fall on integer indexes. + * That is, table element (x,y) is located at pTable[x + y*numCols] where x and y are integers. + * + * \par + * Let (x, y) specify the desired interpolation point. Then define: + *
+   *     XF = floor(x)
+   *     YF = floor(y)
+   * 
+ * \par + * The interpolated output point is computed as: + *
+   *  f(x, y) = f(XF, YF) * (1-(x-XF)) * (1-(y-YF))
+   *           + f(XF+1, YF) * (x-XF)*(1-(y-YF))
+   *           + f(XF, YF+1) * (1-(x-XF))*(y-YF)
+   *           + f(XF+1, YF+1) * (x-XF)*(y-YF)
+   * 
+ * Note that the coordinates (x, y) contain integer and fractional components. + * The integer components specify which portion of the table to use while the + * fractional components control the interpolation processor. + * + * \par + * if (x,y) are outside of the table boundary, Bilinear interpolation returns zero output. + */ + + /** + * @addtogroup BilinearInterpolate + * @{ + */ + + + /** + * + * @brief Floating-point bilinear interpolation. + * @param[in,out] S points to an instance of the interpolation structure. + * @param[in] X interpolation coordinate. + * @param[in] Y interpolation coordinate. + * @return out interpolated value. + */ + static __INLINE float32_t arm_bilinear_interp_f32( + const arm_bilinear_interp_instance_f32 * S, + float32_t X, + float32_t Y) + { + float32_t out; + float32_t f00, f01, f10, f11; + float32_t *pData = S->pData; + int32_t xIndex, yIndex, index; + float32_t xdiff, ydiff; + float32_t b1, b2, b3, b4; + + xIndex = (int32_t) X; + yIndex = (int32_t) Y; + + /* Care taken for table outside boundary */ + /* Returns zero output when values are outside table boundary */ + if(xIndex < 0 || xIndex > (S->numRows - 1) || yIndex < 0 || yIndex > (S->numCols - 1)) + { + return (0); + } + + /* Calculation of index for two nearest points in X-direction */ + index = (xIndex - 1) + (yIndex - 1) * S->numCols; + + + /* Read two nearest points in X-direction */ + f00 = pData[index]; + f01 = pData[index + 1]; + + /* Calculation of index for two nearest points in Y-direction */ + index = (xIndex - 1) + (yIndex) * S->numCols; + + + /* Read two nearest points in Y-direction */ + f10 = pData[index]; + f11 = pData[index + 1]; + + /* Calculation of intermediate values */ + b1 = f00; + b2 = f01 - f00; + b3 = f10 - f00; + b4 = f00 - f01 - f10 + f11; + + /* Calculation of fractional part in X */ + xdiff = X - xIndex; + + /* Calculation of fractional part in Y */ + ydiff = Y - yIndex; + + /* Calculation of bi-linear interpolated output */ + out = b1 + b2 * xdiff + b3 * ydiff + b4 * xdiff * ydiff; + + /* return to application */ + return (out); + } + + + /** + * + * @brief Q31 bilinear interpolation. + * @param[in,out] S points to an instance of the interpolation structure. + * @param[in] X interpolation coordinate in 12.20 format. + * @param[in] Y interpolation coordinate in 12.20 format. + * @return out interpolated value. + */ + static __INLINE q31_t arm_bilinear_interp_q31( + arm_bilinear_interp_instance_q31 * S, + q31_t X, + q31_t Y) + { + q31_t out; /* Temporary output */ + q31_t acc = 0; /* output */ + q31_t xfract, yfract; /* X, Y fractional parts */ + q31_t x1, x2, y1, y2; /* Nearest output values */ + int32_t rI, cI; /* Row and column indices */ + q31_t *pYData = S->pData; /* pointer to output table values */ + uint32_t nCols = S->numCols; /* num of rows */ + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + rI = ((X & (q31_t)0xFFF00000) >> 20); + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + cI = ((Y & (q31_t)0xFFF00000) >> 20); + + /* Care taken for table outside boundary */ + /* Returns zero output when values are outside table boundary */ + if(rI < 0 || rI > (S->numRows - 1) || cI < 0 || cI > (S->numCols - 1)) + { + return (0); + } + + /* 20 bits for the fractional part */ + /* shift left xfract by 11 to keep 1.31 format */ + xfract = (X & 0x000FFFFF) << 11u; + + /* Read two nearest output values from the index */ + x1 = pYData[(rI) + (int32_t)nCols * (cI) ]; + x2 = pYData[(rI) + (int32_t)nCols * (cI) + 1]; + + /* 20 bits for the fractional part */ + /* shift left yfract by 11 to keep 1.31 format */ + yfract = (Y & 0x000FFFFF) << 11u; + + /* Read two nearest output values from the index */ + y1 = pYData[(rI) + (int32_t)nCols * (cI + 1) ]; + y2 = pYData[(rI) + (int32_t)nCols * (cI + 1) + 1]; + + /* Calculation of x1 * (1-xfract ) * (1-yfract) and acc is in 3.29(q29) format */ + out = ((q31_t) (((q63_t) x1 * (0x7FFFFFFF - xfract)) >> 32)); + acc = ((q31_t) (((q63_t) out * (0x7FFFFFFF - yfract)) >> 32)); + + /* x2 * (xfract) * (1-yfract) in 3.29(q29) and adding to acc */ + out = ((q31_t) ((q63_t) x2 * (0x7FFFFFFF - yfract) >> 32)); + acc += ((q31_t) ((q63_t) out * (xfract) >> 32)); + + /* y1 * (1 - xfract) * (yfract) in 3.29(q29) and adding to acc */ + out = ((q31_t) ((q63_t) y1 * (0x7FFFFFFF - xfract) >> 32)); + acc += ((q31_t) ((q63_t) out * (yfract) >> 32)); + + /* y2 * (xfract) * (yfract) in 3.29(q29) and adding to acc */ + out = ((q31_t) ((q63_t) y2 * (xfract) >> 32)); + acc += ((q31_t) ((q63_t) out * (yfract) >> 32)); + + /* Convert acc to 1.31(q31) format */ + return ((q31_t)(acc << 2)); + } + + + /** + * @brief Q15 bilinear interpolation. + * @param[in,out] S points to an instance of the interpolation structure. + * @param[in] X interpolation coordinate in 12.20 format. + * @param[in] Y interpolation coordinate in 12.20 format. + * @return out interpolated value. + */ + static __INLINE q15_t arm_bilinear_interp_q15( + arm_bilinear_interp_instance_q15 * S, + q31_t X, + q31_t Y) + { + q63_t acc = 0; /* output */ + q31_t out; /* Temporary output */ + q15_t x1, x2, y1, y2; /* Nearest output values */ + q31_t xfract, yfract; /* X, Y fractional parts */ + int32_t rI, cI; /* Row and column indices */ + q15_t *pYData = S->pData; /* pointer to output table values */ + uint32_t nCols = S->numCols; /* num of rows */ + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + rI = ((X & (q31_t)0xFFF00000) >> 20); + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + cI = ((Y & (q31_t)0xFFF00000) >> 20); + + /* Care taken for table outside boundary */ + /* Returns zero output when values are outside table boundary */ + if(rI < 0 || rI > (S->numRows - 1) || cI < 0 || cI > (S->numCols - 1)) + { + return (0); + } + + /* 20 bits for the fractional part */ + /* xfract should be in 12.20 format */ + xfract = (X & 0x000FFFFF); + + /* Read two nearest output values from the index */ + x1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) ]; + x2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) + 1]; + + /* 20 bits for the fractional part */ + /* yfract should be in 12.20 format */ + yfract = (Y & 0x000FFFFF); + + /* Read two nearest output values from the index */ + y1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) ]; + y2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) + 1]; + + /* Calculation of x1 * (1-xfract ) * (1-yfract) and acc is in 13.51 format */ + + /* x1 is in 1.15(q15), xfract in 12.20 format and out is in 13.35 format */ + /* convert 13.35 to 13.31 by right shifting and out is in 1.31 */ + out = (q31_t) (((q63_t) x1 * (0xFFFFF - xfract)) >> 4u); + acc = ((q63_t) out * (0xFFFFF - yfract)); + + /* x2 * (xfract) * (1-yfract) in 1.51 and adding to acc */ + out = (q31_t) (((q63_t) x2 * (0xFFFFF - yfract)) >> 4u); + acc += ((q63_t) out * (xfract)); + + /* y1 * (1 - xfract) * (yfract) in 1.51 and adding to acc */ + out = (q31_t) (((q63_t) y1 * (0xFFFFF - xfract)) >> 4u); + acc += ((q63_t) out * (yfract)); + + /* y2 * (xfract) * (yfract) in 1.51 and adding to acc */ + out = (q31_t) (((q63_t) y2 * (xfract)) >> 4u); + acc += ((q63_t) out * (yfract)); + + /* acc is in 13.51 format and down shift acc by 36 times */ + /* Convert out to 1.15 format */ + return ((q15_t)(acc >> 36)); + } + + + /** + * @brief Q7 bilinear interpolation. + * @param[in,out] S points to an instance of the interpolation structure. + * @param[in] X interpolation coordinate in 12.20 format. + * @param[in] Y interpolation coordinate in 12.20 format. + * @return out interpolated value. + */ + static __INLINE q7_t arm_bilinear_interp_q7( + arm_bilinear_interp_instance_q7 * S, + q31_t X, + q31_t Y) + { + q63_t acc = 0; /* output */ + q31_t out; /* Temporary output */ + q31_t xfract, yfract; /* X, Y fractional parts */ + q7_t x1, x2, y1, y2; /* Nearest output values */ + int32_t rI, cI; /* Row and column indices */ + q7_t *pYData = S->pData; /* pointer to output table values */ + uint32_t nCols = S->numCols; /* num of rows */ + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + rI = ((X & (q31_t)0xFFF00000) >> 20); + + /* Input is in 12.20 format */ + /* 12 bits for the table index */ + /* Index value calculation */ + cI = ((Y & (q31_t)0xFFF00000) >> 20); + + /* Care taken for table outside boundary */ + /* Returns zero output when values are outside table boundary */ + if(rI < 0 || rI > (S->numRows - 1) || cI < 0 || cI > (S->numCols - 1)) + { + return (0); + } + + /* 20 bits for the fractional part */ + /* xfract should be in 12.20 format */ + xfract = (X & (q31_t)0x000FFFFF); + + /* Read two nearest output values from the index */ + x1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) ]; + x2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) + 1]; + + /* 20 bits for the fractional part */ + /* yfract should be in 12.20 format */ + yfract = (Y & (q31_t)0x000FFFFF); + + /* Read two nearest output values from the index */ + y1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) ]; + y2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) + 1]; + + /* Calculation of x1 * (1-xfract ) * (1-yfract) and acc is in 16.47 format */ + out = ((x1 * (0xFFFFF - xfract))); + acc = (((q63_t) out * (0xFFFFF - yfract))); + + /* x2 * (xfract) * (1-yfract) in 2.22 and adding to acc */ + out = ((x2 * (0xFFFFF - yfract))); + acc += (((q63_t) out * (xfract))); + + /* y1 * (1 - xfract) * (yfract) in 2.22 and adding to acc */ + out = ((y1 * (0xFFFFF - xfract))); + acc += (((q63_t) out * (yfract))); + + /* y2 * (xfract) * (yfract) in 2.22 and adding to acc */ + out = ((y2 * (yfract))); + acc += (((q63_t) out * (xfract))); + + /* acc in 16.47 format and down shift by 40 to convert to 1.7 format */ + return ((q7_t)(acc >> 40)); + } + + /** + * @} end of BilinearInterpolate group + */ + + +/* SMMLAR */ +#define multAcc_32x32_keep32_R(a, x, y) \ + a = (q31_t) (((((q63_t) a) << 32) + ((q63_t) x * y) + 0x80000000LL ) >> 32) + +/* SMMLSR */ +#define multSub_32x32_keep32_R(a, x, y) \ + a = (q31_t) (((((q63_t) a) << 32) - ((q63_t) x * y) + 0x80000000LL ) >> 32) + +/* SMMULR */ +#define mult_32x32_keep32_R(a, x, y) \ + a = (q31_t) (((q63_t) x * y + 0x80000000LL ) >> 32) + +/* SMMLA */ +#define multAcc_32x32_keep32(a, x, y) \ + a += (q31_t) (((q63_t) x * y) >> 32) + +/* SMMLS */ +#define multSub_32x32_keep32(a, x, y) \ + a -= (q31_t) (((q63_t) x * y) >> 32) + +/* SMMUL */ +#define mult_32x32_keep32(a, x, y) \ + a = (q31_t) (((q63_t) x * y ) >> 32) + + +#if defined ( __CC_ARM ) + /* Enter low optimization region - place directly above function definition */ + #if defined( ARM_MATH_CM4 ) || defined( ARM_MATH_CM7) + #define LOW_OPTIMIZATION_ENTER \ + _Pragma ("push") \ + _Pragma ("O1") + #else + #define LOW_OPTIMIZATION_ENTER + #endif + + /* Exit low optimization region - place directly after end of function definition */ + #if defined( ARM_MATH_CM4 ) || defined( ARM_MATH_CM7) + #define LOW_OPTIMIZATION_EXIT \ + _Pragma ("pop") + #else + #define LOW_OPTIMIZATION_EXIT + #endif + + /* Enter low optimization region - place directly above function definition */ + #define IAR_ONLY_LOW_OPTIMIZATION_ENTER + + /* Exit low optimization region - place directly after end of function definition */ + #define IAR_ONLY_LOW_OPTIMIZATION_EXIT + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define LOW_OPTIMIZATION_ENTER + #define LOW_OPTIMIZATION_EXIT + #define IAR_ONLY_LOW_OPTIMIZATION_ENTER + #define IAR_ONLY_LOW_OPTIMIZATION_EXIT + +#elif defined(__GNUC__) + #define LOW_OPTIMIZATION_ENTER __attribute__(( optimize("-O1") )) + #define LOW_OPTIMIZATION_EXIT + #define IAR_ONLY_LOW_OPTIMIZATION_ENTER + #define IAR_ONLY_LOW_OPTIMIZATION_EXIT + +#elif defined(__ICCARM__) + /* Enter low optimization region - place directly above function definition */ + #if defined( ARM_MATH_CM4 ) || defined( ARM_MATH_CM7) + #define LOW_OPTIMIZATION_ENTER \ + _Pragma ("optimize=low") + #else + #define LOW_OPTIMIZATION_ENTER + #endif + + /* Exit low optimization region - place directly after end of function definition */ + #define LOW_OPTIMIZATION_EXIT + + /* Enter low optimization region - place directly above function definition */ + #if defined( ARM_MATH_CM4 ) || defined( ARM_MATH_CM7) + #define IAR_ONLY_LOW_OPTIMIZATION_ENTER \ + _Pragma ("optimize=low") + #else + #define IAR_ONLY_LOW_OPTIMIZATION_ENTER + #endif + + /* Exit low optimization region - place directly after end of function definition */ + #define IAR_ONLY_LOW_OPTIMIZATION_EXIT + +#elif defined(__CSMC__) + #define LOW_OPTIMIZATION_ENTER + #define LOW_OPTIMIZATION_EXIT + #define IAR_ONLY_LOW_OPTIMIZATION_ENTER + #define IAR_ONLY_LOW_OPTIMIZATION_EXIT + +#elif defined(__TASKING__) + #define LOW_OPTIMIZATION_ENTER + #define LOW_OPTIMIZATION_EXIT + #define IAR_ONLY_LOW_OPTIMIZATION_ENTER + #define IAR_ONLY_LOW_OPTIMIZATION_EXIT + +#endif + + +#ifdef __cplusplus +} +#endif + + +#if defined ( __GNUC__ ) +#pragma GCC diagnostic pop +#endif + +#endif /* _ARM_MATH_H */ + +/** + * + * End of file. + */ diff --git a/Testing/Drivers/CMSIS/Include/cmsis_armcc.h b/Testing/Drivers/CMSIS/Include/cmsis_armcc.h new file mode 100644 index 0000000..74c49c6 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/cmsis_armcc.h @@ -0,0 +1,734 @@ +/**************************************************************************//** + * @file cmsis_armcc.h + * @brief CMSIS Cortex-M Core Function/Instruction Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#ifndef __CMSIS_ARMCC_H +#define __CMSIS_ARMCC_H + + +#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 400677) + #error "Please use ARM Compiler Toolchain V4.0.677 or later!" +#endif + +/* ########################### Core Function Access ########################### */ +/** \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions + @{ + */ + +/* intrinsic void __enable_irq(); */ +/* intrinsic void __disable_irq(); */ + +/** + \brief Get Control Register + \details Returns the content of the Control Register. + \return Control Register value + */ +__STATIC_INLINE uint32_t __get_CONTROL(void) +{ + register uint32_t __regControl __ASM("control"); + return(__regControl); +} + + +/** + \brief Set Control Register + \details Writes the given value to the Control Register. + \param [in] control Control Register value to set + */ +__STATIC_INLINE void __set_CONTROL(uint32_t control) +{ + register uint32_t __regControl __ASM("control"); + __regControl = control; +} + + +/** + \brief Get IPSR Register + \details Returns the content of the IPSR Register. + \return IPSR Register value + */ +__STATIC_INLINE uint32_t __get_IPSR(void) +{ + register uint32_t __regIPSR __ASM("ipsr"); + return(__regIPSR); +} + + +/** + \brief Get APSR Register + \details Returns the content of the APSR Register. + \return APSR Register value + */ +__STATIC_INLINE uint32_t __get_APSR(void) +{ + register uint32_t __regAPSR __ASM("apsr"); + return(__regAPSR); +} + + +/** + \brief Get xPSR Register + \details Returns the content of the xPSR Register. + \return xPSR Register value + */ +__STATIC_INLINE uint32_t __get_xPSR(void) +{ + register uint32_t __regXPSR __ASM("xpsr"); + return(__regXPSR); +} + + +/** + \brief Get Process Stack Pointer + \details Returns the current value of the Process Stack Pointer (PSP). + \return PSP Register value + */ +__STATIC_INLINE uint32_t __get_PSP(void) +{ + register uint32_t __regProcessStackPointer __ASM("psp"); + return(__regProcessStackPointer); +} + + +/** + \brief Set Process Stack Pointer + \details Assigns the given value to the Process Stack Pointer (PSP). + \param [in] topOfProcStack Process Stack Pointer value to set + */ +__STATIC_INLINE void __set_PSP(uint32_t topOfProcStack) +{ + register uint32_t __regProcessStackPointer __ASM("psp"); + __regProcessStackPointer = topOfProcStack; +} + + +/** + \brief Get Main Stack Pointer + \details Returns the current value of the Main Stack Pointer (MSP). + \return MSP Register value + */ +__STATIC_INLINE uint32_t __get_MSP(void) +{ + register uint32_t __regMainStackPointer __ASM("msp"); + return(__regMainStackPointer); +} + + +/** + \brief Set Main Stack Pointer + \details Assigns the given value to the Main Stack Pointer (MSP). + \param [in] topOfMainStack Main Stack Pointer value to set + */ +__STATIC_INLINE void __set_MSP(uint32_t topOfMainStack) +{ + register uint32_t __regMainStackPointer __ASM("msp"); + __regMainStackPointer = topOfMainStack; +} + + +/** + \brief Get Priority Mask + \details Returns the current state of the priority mask bit from the Priority Mask Register. + \return Priority Mask value + */ +__STATIC_INLINE uint32_t __get_PRIMASK(void) +{ + register uint32_t __regPriMask __ASM("primask"); + return(__regPriMask); +} + + +/** + \brief Set Priority Mask + \details Assigns the given value to the Priority Mask Register. + \param [in] priMask Priority Mask + */ +__STATIC_INLINE void __set_PRIMASK(uint32_t priMask) +{ + register uint32_t __regPriMask __ASM("primask"); + __regPriMask = (priMask); +} + + +#if (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) + +/** + \brief Enable FIQ + \details Enables FIQ interrupts by clearing the F-bit in the CPSR. + Can only be executed in Privileged modes. + */ +#define __enable_fault_irq __enable_fiq + + +/** + \brief Disable FIQ + \details Disables FIQ interrupts by setting the F-bit in the CPSR. + Can only be executed in Privileged modes. + */ +#define __disable_fault_irq __disable_fiq + + +/** + \brief Get Base Priority + \details Returns the current value of the Base Priority register. + \return Base Priority register value + */ +__STATIC_INLINE uint32_t __get_BASEPRI(void) +{ + register uint32_t __regBasePri __ASM("basepri"); + return(__regBasePri); +} + + +/** + \brief Set Base Priority + \details Assigns the given value to the Base Priority register. + \param [in] basePri Base Priority value to set + */ +__STATIC_INLINE void __set_BASEPRI(uint32_t basePri) +{ + register uint32_t __regBasePri __ASM("basepri"); + __regBasePri = (basePri & 0xFFU); +} + + +/** + \brief Set Base Priority with condition + \details Assigns the given value to the Base Priority register only if BASEPRI masking is disabled, + or the new value increases the BASEPRI priority level. + \param [in] basePri Base Priority value to set + */ +__STATIC_INLINE void __set_BASEPRI_MAX(uint32_t basePri) +{ + register uint32_t __regBasePriMax __ASM("basepri_max"); + __regBasePriMax = (basePri & 0xFFU); +} + + +/** + \brief Get Fault Mask + \details Returns the current value of the Fault Mask register. + \return Fault Mask register value + */ +__STATIC_INLINE uint32_t __get_FAULTMASK(void) +{ + register uint32_t __regFaultMask __ASM("faultmask"); + return(__regFaultMask); +} + + +/** + \brief Set Fault Mask + \details Assigns the given value to the Fault Mask register. + \param [in] faultMask Fault Mask value to set + */ +__STATIC_INLINE void __set_FAULTMASK(uint32_t faultMask) +{ + register uint32_t __regFaultMask __ASM("faultmask"); + __regFaultMask = (faultMask & (uint32_t)1); +} + +#endif /* (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) */ + + +#if (__CORTEX_M == 0x04U) || (__CORTEX_M == 0x07U) + +/** + \brief Get FPSCR + \details Returns the current value of the Floating Point Status/Control register. + \return Floating Point Status/Control register value + */ +__STATIC_INLINE uint32_t __get_FPSCR(void) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + register uint32_t __regfpscr __ASM("fpscr"); + return(__regfpscr); +#else + return(0U); +#endif +} + + +/** + \brief Set FPSCR + \details Assigns the given value to the Floating Point Status/Control register. + \param [in] fpscr Floating Point Status/Control value to set + */ +__STATIC_INLINE void __set_FPSCR(uint32_t fpscr) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + register uint32_t __regfpscr __ASM("fpscr"); + __regfpscr = (fpscr); +#endif +} + +#endif /* (__CORTEX_M == 0x04U) || (__CORTEX_M == 0x07U) */ + + + +/*@} end of CMSIS_Core_RegAccFunctions */ + + +/* ########################## Core Instruction Access ######################### */ +/** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface + Access to dedicated instructions + @{ +*/ + +/** + \brief No Operation + \details No Operation does nothing. This instruction can be used for code alignment purposes. + */ +#define __NOP __nop + + +/** + \brief Wait For Interrupt + \details Wait For Interrupt is a hint instruction that suspends execution until one of a number of events occurs. + */ +#define __WFI __wfi + + +/** + \brief Wait For Event + \details Wait For Event is a hint instruction that permits the processor to enter + a low-power state until one of a number of events occurs. + */ +#define __WFE __wfe + + +/** + \brief Send Event + \details Send Event is a hint instruction. It causes an event to be signaled to the CPU. + */ +#define __SEV __sev + + +/** + \brief Instruction Synchronization Barrier + \details Instruction Synchronization Barrier flushes the pipeline in the processor, + so that all instructions following the ISB are fetched from cache or memory, + after the instruction has been completed. + */ +#define __ISB() do {\ + __schedule_barrier();\ + __isb(0xF);\ + __schedule_barrier();\ + } while (0U) + +/** + \brief Data Synchronization Barrier + \details Acts as a special kind of Data Memory Barrier. + It completes when all explicit memory accesses before this instruction complete. + */ +#define __DSB() do {\ + __schedule_barrier();\ + __dsb(0xF);\ + __schedule_barrier();\ + } while (0U) + +/** + \brief Data Memory Barrier + \details Ensures the apparent order of the explicit memory operations before + and after the instruction, without ensuring their completion. + */ +#define __DMB() do {\ + __schedule_barrier();\ + __dmb(0xF);\ + __schedule_barrier();\ + } while (0U) + +/** + \brief Reverse byte order (32 bit) + \details Reverses the byte order in integer value. + \param [in] value Value to reverse + \return Reversed value + */ +#define __REV __rev + + +/** + \brief Reverse byte order (16 bit) + \details Reverses the byte order in two unsigned short values. + \param [in] value Value to reverse + \return Reversed value + */ +#ifndef __NO_EMBEDDED_ASM +__attribute__((section(".rev16_text"))) __STATIC_INLINE __ASM uint32_t __REV16(uint32_t value) +{ + rev16 r0, r0 + bx lr +} +#endif + +/** + \brief Reverse byte order in signed short value + \details Reverses the byte order in a signed short value with sign extension to integer. + \param [in] value Value to reverse + \return Reversed value + */ +#ifndef __NO_EMBEDDED_ASM +__attribute__((section(".revsh_text"))) __STATIC_INLINE __ASM int32_t __REVSH(int32_t value) +{ + revsh r0, r0 + bx lr +} +#endif + + +/** + \brief Rotate Right in unsigned value (32 bit) + \details Rotate Right (immediate) provides the value of the contents of a register rotated by a variable number of bits. + \param [in] value Value to rotate + \param [in] value Number of Bits to rotate + \return Rotated value + */ +#define __ROR __ror + + +/** + \brief Breakpoint + \details Causes the processor to enter Debug state. + Debug tools can use this to investigate system state when the instruction at a particular address is reached. + \param [in] value is ignored by the processor. + If required, a debugger can use it to store additional information about the breakpoint. + */ +#define __BKPT(value) __breakpoint(value) + + +/** + \brief Reverse bit order of value + \details Reverses the bit order of the given value. + \param [in] value Value to reverse + \return Reversed value + */ +#if (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) + #define __RBIT __rbit +#else +__attribute__((always_inline)) __STATIC_INLINE uint32_t __RBIT(uint32_t value) +{ + uint32_t result; + int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ + + result = value; /* r will be reversed bits of v; first get LSB of v */ + for (value >>= 1U; value; value >>= 1U) + { + result <<= 1U; + result |= value & 1U; + s--; + } + result <<= s; /* shift when v's highest bits are zero */ + return(result); +} +#endif + + +/** + \brief Count leading zeros + \details Counts the number of leading zeros of a data value. + \param [in] value Value to count the leading zeros + \return number of leading zeros in value + */ +#define __CLZ __clz + + +#if (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) + +/** + \brief LDR Exclusive (8 bit) + \details Executes a exclusive LDR instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020) + #define __LDREXB(ptr) ((uint8_t ) __ldrex(ptr)) +#else + #define __LDREXB(ptr) _Pragma("push") _Pragma("diag_suppress 3731") ((uint8_t ) __ldrex(ptr)) _Pragma("pop") +#endif + + +/** + \brief LDR Exclusive (16 bit) + \details Executes a exclusive LDR instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020) + #define __LDREXH(ptr) ((uint16_t) __ldrex(ptr)) +#else + #define __LDREXH(ptr) _Pragma("push") _Pragma("diag_suppress 3731") ((uint16_t) __ldrex(ptr)) _Pragma("pop") +#endif + + +/** + \brief LDR Exclusive (32 bit) + \details Executes a exclusive LDR instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020) + #define __LDREXW(ptr) ((uint32_t ) __ldrex(ptr)) +#else + #define __LDREXW(ptr) _Pragma("push") _Pragma("diag_suppress 3731") ((uint32_t ) __ldrex(ptr)) _Pragma("pop") +#endif + + +/** + \brief STR Exclusive (8 bit) + \details Executes a exclusive STR instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020) + #define __STREXB(value, ptr) __strex(value, ptr) +#else + #define __STREXB(value, ptr) _Pragma("push") _Pragma("diag_suppress 3731") __strex(value, ptr) _Pragma("pop") +#endif + + +/** + \brief STR Exclusive (16 bit) + \details Executes a exclusive STR instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020) + #define __STREXH(value, ptr) __strex(value, ptr) +#else + #define __STREXH(value, ptr) _Pragma("push") _Pragma("diag_suppress 3731") __strex(value, ptr) _Pragma("pop") +#endif + + +/** + \brief STR Exclusive (32 bit) + \details Executes a exclusive STR instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020) + #define __STREXW(value, ptr) __strex(value, ptr) +#else + #define __STREXW(value, ptr) _Pragma("push") _Pragma("diag_suppress 3731") __strex(value, ptr) _Pragma("pop") +#endif + + +/** + \brief Remove the exclusive lock + \details Removes the exclusive lock which is created by LDREX. + */ +#define __CLREX __clrex + + +/** + \brief Signed Saturate + \details Saturates a signed value. + \param [in] value Value to be saturated + \param [in] sat Bit position to saturate to (1..32) + \return Saturated value + */ +#define __SSAT __ssat + + +/** + \brief Unsigned Saturate + \details Saturates an unsigned value. + \param [in] value Value to be saturated + \param [in] sat Bit position to saturate to (0..31) + \return Saturated value + */ +#define __USAT __usat + + +/** + \brief Rotate Right with Extend (32 bit) + \details Moves each bit of a bitstring right by one bit. + The carry input is shifted in at the left end of the bitstring. + \param [in] value Value to rotate + \return Rotated value + */ +#ifndef __NO_EMBEDDED_ASM +__attribute__((section(".rrx_text"))) __STATIC_INLINE __ASM uint32_t __RRX(uint32_t value) +{ + rrx r0, r0 + bx lr +} +#endif + + +/** + \brief LDRT Unprivileged (8 bit) + \details Executes a Unprivileged LDRT instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +#define __LDRBT(ptr) ((uint8_t ) __ldrt(ptr)) + + +/** + \brief LDRT Unprivileged (16 bit) + \details Executes a Unprivileged LDRT instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +#define __LDRHT(ptr) ((uint16_t) __ldrt(ptr)) + + +/** + \brief LDRT Unprivileged (32 bit) + \details Executes a Unprivileged LDRT instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +#define __LDRT(ptr) ((uint32_t ) __ldrt(ptr)) + + +/** + \brief STRT Unprivileged (8 bit) + \details Executes a Unprivileged STRT instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +#define __STRBT(value, ptr) __strt(value, ptr) + + +/** + \brief STRT Unprivileged (16 bit) + \details Executes a Unprivileged STRT instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +#define __STRHT(value, ptr) __strt(value, ptr) + + +/** + \brief STRT Unprivileged (32 bit) + \details Executes a Unprivileged STRT instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +#define __STRT(value, ptr) __strt(value, ptr) + +#endif /* (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) */ + +/*@}*/ /* end of group CMSIS_Core_InstructionInterface */ + + +/* ################### Compiler specific Intrinsics ########################### */ +/** \defgroup CMSIS_SIMD_intrinsics CMSIS SIMD Intrinsics + Access to dedicated SIMD instructions + @{ +*/ + +#if (__CORTEX_M >= 0x04U) /* only for Cortex-M4 and above */ + +#define __SADD8 __sadd8 +#define __QADD8 __qadd8 +#define __SHADD8 __shadd8 +#define __UADD8 __uadd8 +#define __UQADD8 __uqadd8 +#define __UHADD8 __uhadd8 +#define __SSUB8 __ssub8 +#define __QSUB8 __qsub8 +#define __SHSUB8 __shsub8 +#define __USUB8 __usub8 +#define __UQSUB8 __uqsub8 +#define __UHSUB8 __uhsub8 +#define __SADD16 __sadd16 +#define __QADD16 __qadd16 +#define __SHADD16 __shadd16 +#define __UADD16 __uadd16 +#define __UQADD16 __uqadd16 +#define __UHADD16 __uhadd16 +#define __SSUB16 __ssub16 +#define __QSUB16 __qsub16 +#define __SHSUB16 __shsub16 +#define __USUB16 __usub16 +#define __UQSUB16 __uqsub16 +#define __UHSUB16 __uhsub16 +#define __SASX __sasx +#define __QASX __qasx +#define __SHASX __shasx +#define __UASX __uasx +#define __UQASX __uqasx +#define __UHASX __uhasx +#define __SSAX __ssax +#define __QSAX __qsax +#define __SHSAX __shsax +#define __USAX __usax +#define __UQSAX __uqsax +#define __UHSAX __uhsax +#define __USAD8 __usad8 +#define __USADA8 __usada8 +#define __SSAT16 __ssat16 +#define __USAT16 __usat16 +#define __UXTB16 __uxtb16 +#define __UXTAB16 __uxtab16 +#define __SXTB16 __sxtb16 +#define __SXTAB16 __sxtab16 +#define __SMUAD __smuad +#define __SMUADX __smuadx +#define __SMLAD __smlad +#define __SMLADX __smladx +#define __SMLALD __smlald +#define __SMLALDX __smlaldx +#define __SMUSD __smusd +#define __SMUSDX __smusdx +#define __SMLSD __smlsd +#define __SMLSDX __smlsdx +#define __SMLSLD __smlsld +#define __SMLSLDX __smlsldx +#define __SEL __sel +#define __QADD __qadd +#define __QSUB __qsub + +#define __PKHBT(ARG1,ARG2,ARG3) ( ((((uint32_t)(ARG1)) ) & 0x0000FFFFUL) | \ + ((((uint32_t)(ARG2)) << (ARG3)) & 0xFFFF0000UL) ) + +#define __PKHTB(ARG1,ARG2,ARG3) ( ((((uint32_t)(ARG1)) ) & 0xFFFF0000UL) | \ + ((((uint32_t)(ARG2)) >> (ARG3)) & 0x0000FFFFUL) ) + +#define __SMMLA(ARG1,ARG2,ARG3) ( (int32_t)((((int64_t)(ARG1) * (ARG2)) + \ + ((int64_t)(ARG3) << 32U) ) >> 32U)) + +#endif /* (__CORTEX_M >= 0x04) */ +/*@} end of group CMSIS_SIMD_intrinsics */ + + +#endif /* __CMSIS_ARMCC_H */ diff --git a/Testing/Drivers/CMSIS/Include/cmsis_armcc_V6.h b/Testing/Drivers/CMSIS/Include/cmsis_armcc_V6.h new file mode 100644 index 0000000..cd13240 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/cmsis_armcc_V6.h @@ -0,0 +1,1800 @@ +/**************************************************************************//** + * @file cmsis_armcc_V6.h + * @brief CMSIS Cortex-M Core Function/Instruction Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#ifndef __CMSIS_ARMCC_V6_H +#define __CMSIS_ARMCC_V6_H + + +/* ########################### Core Function Access ########################### */ +/** \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions + @{ + */ + +/** + \brief Enable IRQ Interrupts + \details Enables IRQ interrupts by clearing the I-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__((always_inline)) __STATIC_INLINE void __enable_irq(void) +{ + __ASM volatile ("cpsie i" : : : "memory"); +} + + +/** + \brief Disable IRQ Interrupts + \details Disables IRQ interrupts by setting the I-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__((always_inline)) __STATIC_INLINE void __disable_irq(void) +{ + __ASM volatile ("cpsid i" : : : "memory"); +} + + +/** + \brief Get Control Register + \details Returns the content of the Control Register. + \return Control Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_CONTROL(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, control" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get Control Register (non-secure) + \details Returns the content of the non-secure Control Register when in secure mode. + \return non-secure Control Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_CONTROL_NS(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, control_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Control Register + \details Writes the given value to the Control Register. + \param [in] control Control Register value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_CONTROL(uint32_t control) +{ + __ASM volatile ("MSR control, %0" : : "r" (control) : "memory"); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set Control Register (non-secure) + \details Writes the given value to the non-secure Control Register when in secure state. + \param [in] control Control Register value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_CONTROL_NS(uint32_t control) +{ + __ASM volatile ("MSR control_ns, %0" : : "r" (control) : "memory"); +} +#endif + + +/** + \brief Get IPSR Register + \details Returns the content of the IPSR Register. + \return IPSR Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_IPSR(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get IPSR Register (non-secure) + \details Returns the content of the non-secure IPSR Register when in secure state. + \return IPSR Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_IPSR_NS(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, ipsr_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Get APSR Register + \details Returns the content of the APSR Register. + \return APSR Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_APSR(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, apsr" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get APSR Register (non-secure) + \details Returns the content of the non-secure APSR Register when in secure state. + \return APSR Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_APSR_NS(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, apsr_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Get xPSR Register + \details Returns the content of the xPSR Register. + \return xPSR Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_xPSR(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, xpsr" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get xPSR Register (non-secure) + \details Returns the content of the non-secure xPSR Register when in secure state. + \return xPSR Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_xPSR_NS(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, xpsr_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Get Process Stack Pointer + \details Returns the current value of the Process Stack Pointer (PSP). + \return PSP Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_PSP(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, psp" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get Process Stack Pointer (non-secure) + \details Returns the current value of the non-secure Process Stack Pointer (PSP) when in secure state. + \return PSP Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_PSP_NS(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, psp_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Process Stack Pointer + \details Assigns the given value to the Process Stack Pointer (PSP). + \param [in] topOfProcStack Process Stack Pointer value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_PSP(uint32_t topOfProcStack) +{ + __ASM volatile ("MSR psp, %0" : : "r" (topOfProcStack) : "sp"); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set Process Stack Pointer (non-secure) + \details Assigns the given value to the non-secure Process Stack Pointer (PSP) when in secure state. + \param [in] topOfProcStack Process Stack Pointer value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_PSP_NS(uint32_t topOfProcStack) +{ + __ASM volatile ("MSR psp_ns, %0" : : "r" (topOfProcStack) : "sp"); +} +#endif + + +/** + \brief Get Main Stack Pointer + \details Returns the current value of the Main Stack Pointer (MSP). + \return MSP Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_MSP(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, msp" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get Main Stack Pointer (non-secure) + \details Returns the current value of the non-secure Main Stack Pointer (MSP) when in secure state. + \return MSP Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_MSP_NS(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, msp_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Main Stack Pointer + \details Assigns the given value to the Main Stack Pointer (MSP). + \param [in] topOfMainStack Main Stack Pointer value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_MSP(uint32_t topOfMainStack) +{ + __ASM volatile ("MSR msp, %0" : : "r" (topOfMainStack) : "sp"); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set Main Stack Pointer (non-secure) + \details Assigns the given value to the non-secure Main Stack Pointer (MSP) when in secure state. + \param [in] topOfMainStack Main Stack Pointer value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_MSP_NS(uint32_t topOfMainStack) +{ + __ASM volatile ("MSR msp_ns, %0" : : "r" (topOfMainStack) : "sp"); +} +#endif + + +/** + \brief Get Priority Mask + \details Returns the current state of the priority mask bit from the Priority Mask Register. + \return Priority Mask value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_PRIMASK(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, primask" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get Priority Mask (non-secure) + \details Returns the current state of the non-secure priority mask bit from the Priority Mask Register when in secure state. + \return Priority Mask value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_PRIMASK_NS(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, primask_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Priority Mask + \details Assigns the given value to the Priority Mask Register. + \param [in] priMask Priority Mask + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_PRIMASK(uint32_t priMask) +{ + __ASM volatile ("MSR primask, %0" : : "r" (priMask) : "memory"); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set Priority Mask (non-secure) + \details Assigns the given value to the non-secure Priority Mask Register when in secure state. + \param [in] priMask Priority Mask + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_PRIMASK_NS(uint32_t priMask) +{ + __ASM volatile ("MSR primask_ns, %0" : : "r" (priMask) : "memory"); +} +#endif + + +#if ((__ARM_ARCH_7M__ == 1U) || (__ARM_ARCH_7EM__ == 1U) || (__ARM_ARCH_8M__ == 1U)) /* ToDo: ARMCC_V6: check if this is ok for cortex >=3 */ + +/** + \brief Enable FIQ + \details Enables FIQ interrupts by clearing the F-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__((always_inline)) __STATIC_INLINE void __enable_fault_irq(void) +{ + __ASM volatile ("cpsie f" : : : "memory"); +} + + +/** + \brief Disable FIQ + \details Disables FIQ interrupts by setting the F-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__((always_inline)) __STATIC_INLINE void __disable_fault_irq(void) +{ + __ASM volatile ("cpsid f" : : : "memory"); +} + + +/** + \brief Get Base Priority + \details Returns the current value of the Base Priority register. + \return Base Priority register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_BASEPRI(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, basepri" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get Base Priority (non-secure) + \details Returns the current value of the non-secure Base Priority register when in secure state. + \return Base Priority register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_BASEPRI_NS(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, basepri_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Base Priority + \details Assigns the given value to the Base Priority register. + \param [in] basePri Base Priority value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_BASEPRI(uint32_t value) +{ + __ASM volatile ("MSR basepri, %0" : : "r" (value) : "memory"); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set Base Priority (non-secure) + \details Assigns the given value to the non-secure Base Priority register when in secure state. + \param [in] basePri Base Priority value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_BASEPRI_NS(uint32_t value) +{ + __ASM volatile ("MSR basepri_ns, %0" : : "r" (value) : "memory"); +} +#endif + + +/** + \brief Set Base Priority with condition + \details Assigns the given value to the Base Priority register only if BASEPRI masking is disabled, + or the new value increases the BASEPRI priority level. + \param [in] basePri Base Priority value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_BASEPRI_MAX(uint32_t value) +{ + __ASM volatile ("MSR basepri_max, %0" : : "r" (value) : "memory"); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set Base Priority with condition (non_secure) + \details Assigns the given value to the non-secure Base Priority register when in secure state only if BASEPRI masking is disabled, + or the new value increases the BASEPRI priority level. + \param [in] basePri Base Priority value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_BASEPRI_MAX_NS(uint32_t value) +{ + __ASM volatile ("MSR basepri_max_ns, %0" : : "r" (value) : "memory"); +} +#endif + + +/** + \brief Get Fault Mask + \details Returns the current value of the Fault Mask register. + \return Fault Mask register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_FAULTMASK(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, faultmask" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get Fault Mask (non-secure) + \details Returns the current value of the non-secure Fault Mask register when in secure state. + \return Fault Mask register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_FAULTMASK_NS(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, faultmask_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Fault Mask + \details Assigns the given value to the Fault Mask register. + \param [in] faultMask Fault Mask value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_FAULTMASK(uint32_t faultMask) +{ + __ASM volatile ("MSR faultmask, %0" : : "r" (faultMask) : "memory"); +} + + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set Fault Mask (non-secure) + \details Assigns the given value to the non-secure Fault Mask register when in secure state. + \param [in] faultMask Fault Mask value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_FAULTMASK_NS(uint32_t faultMask) +{ + __ASM volatile ("MSR faultmask_ns, %0" : : "r" (faultMask) : "memory"); +} +#endif + + +#endif /* ((__ARM_ARCH_7M__ == 1U) || (__ARM_ARCH_8M__ == 1U)) */ + + +#if (__ARM_ARCH_8M__ == 1U) + +/** + \brief Get Process Stack Pointer Limit + \details Returns the current value of the Process Stack Pointer Limit (PSPLIM). + \return PSPLIM Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_PSPLIM(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, psplim" : "=r" (result) ); + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) && (__ARM_ARCH_PROFILE == 'M') /* ToDo: ARMCC_V6: check predefined macro for mainline */ +/** + \brief Get Process Stack Pointer Limit (non-secure) + \details Returns the current value of the non-secure Process Stack Pointer Limit (PSPLIM) when in secure state. + \return PSPLIM Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_PSPLIM_NS(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, psplim_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Process Stack Pointer Limit + \details Assigns the given value to the Process Stack Pointer Limit (PSPLIM). + \param [in] ProcStackPtrLimit Process Stack Pointer Limit value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_PSPLIM(uint32_t ProcStackPtrLimit) +{ + __ASM volatile ("MSR psplim, %0" : : "r" (ProcStackPtrLimit)); +} + + +#if (__ARM_FEATURE_CMSE == 3U) && (__ARM_ARCH_PROFILE == 'M') /* ToDo: ARMCC_V6: check predefined macro for mainline */ +/** + \brief Set Process Stack Pointer (non-secure) + \details Assigns the given value to the non-secure Process Stack Pointer Limit (PSPLIM) when in secure state. + \param [in] ProcStackPtrLimit Process Stack Pointer Limit value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_PSPLIM_NS(uint32_t ProcStackPtrLimit) +{ + __ASM volatile ("MSR psplim_ns, %0\n" : : "r" (ProcStackPtrLimit)); +} +#endif + + +/** + \brief Get Main Stack Pointer Limit + \details Returns the current value of the Main Stack Pointer Limit (MSPLIM). + \return MSPLIM Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_MSPLIM(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, msplim" : "=r" (result) ); + + return(result); +} + + +#if (__ARM_FEATURE_CMSE == 3U) && (__ARM_ARCH_PROFILE == 'M') /* ToDo: ARMCC_V6: check predefined macro for mainline */ +/** + \brief Get Main Stack Pointer Limit (non-secure) + \details Returns the current value of the non-secure Main Stack Pointer Limit(MSPLIM) when in secure state. + \return MSPLIM Register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_MSPLIM_NS(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, msplim_ns" : "=r" (result) ); + return(result); +} +#endif + + +/** + \brief Set Main Stack Pointer Limit + \details Assigns the given value to the Main Stack Pointer Limit (MSPLIM). + \param [in] MainStackPtrLimit Main Stack Pointer Limit value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __set_MSPLIM(uint32_t MainStackPtrLimit) +{ + __ASM volatile ("MSR msplim, %0" : : "r" (MainStackPtrLimit)); +} + + +#if (__ARM_FEATURE_CMSE == 3U) && (__ARM_ARCH_PROFILE == 'M') /* ToDo: ARMCC_V6: check predefined macro for mainline */ +/** + \brief Set Main Stack Pointer Limit (non-secure) + \details Assigns the given value to the non-secure Main Stack Pointer Limit (MSPLIM) when in secure state. + \param [in] MainStackPtrLimit Main Stack Pointer value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_MSPLIM_NS(uint32_t MainStackPtrLimit) +{ + __ASM volatile ("MSR msplim_ns, %0" : : "r" (MainStackPtrLimit)); +} +#endif + +#endif /* (__ARM_ARCH_8M__ == 1U) */ + + +#if ((__ARM_ARCH_7EM__ == 1U) || (__ARM_ARCH_8M__ == 1U)) /* ToDo: ARMCC_V6: check if this is ok for cortex >=4 */ + +/** + \brief Get FPSCR + \details eturns the current value of the Floating Point Status/Control register. + \return Floating Point Status/Control register value + */ +#define __get_FPSCR __builtin_arm_get_fpscr +#if 0 +__attribute__((always_inline)) __STATIC_INLINE uint32_t __get_FPSCR(void) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + uint32_t result; + + __ASM volatile (""); /* Empty asm statement works as a scheduling barrier */ + __ASM volatile ("VMRS %0, fpscr" : "=r" (result) ); + __ASM volatile (""); + return(result); +#else + return(0); +#endif +} +#endif + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Get FPSCR (non-secure) + \details Returns the current value of the non-secure Floating Point Status/Control register when in secure state. + \return Floating Point Status/Control register value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __TZ_get_FPSCR_NS(void) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + uint32_t result; + + __ASM volatile (""); /* Empty asm statement works as a scheduling barrier */ + __ASM volatile ("VMRS %0, fpscr_ns" : "=r" (result) ); + __ASM volatile (""); + return(result); +#else + return(0); +#endif +} +#endif + + +/** + \brief Set FPSCR + \details Assigns the given value to the Floating Point Status/Control register. + \param [in] fpscr Floating Point Status/Control value to set + */ +#define __set_FPSCR __builtin_arm_set_fpscr +#if 0 +__attribute__((always_inline)) __STATIC_INLINE void __set_FPSCR(uint32_t fpscr) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + __ASM volatile (""); /* Empty asm statement works as a scheduling barrier */ + __ASM volatile ("VMSR fpscr, %0" : : "r" (fpscr) : "vfpcc"); + __ASM volatile (""); +#endif +} +#endif + +#if (__ARM_FEATURE_CMSE == 3U) +/** + \brief Set FPSCR (non-secure) + \details Assigns the given value to the non-secure Floating Point Status/Control register when in secure state. + \param [in] fpscr Floating Point Status/Control value to set + */ +__attribute__((always_inline)) __STATIC_INLINE void __TZ_set_FPSCR_NS(uint32_t fpscr) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + __ASM volatile (""); /* Empty asm statement works as a scheduling barrier */ + __ASM volatile ("VMSR fpscr_ns, %0" : : "r" (fpscr) : "vfpcc"); + __ASM volatile (""); +#endif +} +#endif + +#endif /* ((__ARM_ARCH_7EM__ == 1U) || (__ARM_ARCH_8M__ == 1U)) */ + + + +/*@} end of CMSIS_Core_RegAccFunctions */ + + +/* ########################## Core Instruction Access ######################### */ +/** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface + Access to dedicated instructions + @{ +*/ + +/* Define macros for porting to both thumb1 and thumb2. + * For thumb1, use low register (r0-r7), specified by constraint "l" + * Otherwise, use general registers, specified by constraint "r" */ +#if defined (__thumb__) && !defined (__thumb2__) +#define __CMSIS_GCC_OUT_REG(r) "=l" (r) +#define __CMSIS_GCC_USE_REG(r) "l" (r) +#else +#define __CMSIS_GCC_OUT_REG(r) "=r" (r) +#define __CMSIS_GCC_USE_REG(r) "r" (r) +#endif + +/** + \brief No Operation + \details No Operation does nothing. This instruction can be used for code alignment purposes. + */ +#define __NOP __builtin_arm_nop + +/** + \brief Wait For Interrupt + \details Wait For Interrupt is a hint instruction that suspends execution until one of a number of events occurs. + */ +#define __WFI __builtin_arm_wfi + + +/** + \brief Wait For Event + \details Wait For Event is a hint instruction that permits the processor to enter + a low-power state until one of a number of events occurs. + */ +#define __WFE __builtin_arm_wfe + + +/** + \brief Send Event + \details Send Event is a hint instruction. It causes an event to be signaled to the CPU. + */ +#define __SEV __builtin_arm_sev + + +/** + \brief Instruction Synchronization Barrier + \details Instruction Synchronization Barrier flushes the pipeline in the processor, + so that all instructions following the ISB are fetched from cache or memory, + after the instruction has been completed. + */ +#define __ISB() __builtin_arm_isb(0xF); + +/** + \brief Data Synchronization Barrier + \details Acts as a special kind of Data Memory Barrier. + It completes when all explicit memory accesses before this instruction complete. + */ +#define __DSB() __builtin_arm_dsb(0xF); + + +/** + \brief Data Memory Barrier + \details Ensures the apparent order of the explicit memory operations before + and after the instruction, without ensuring their completion. + */ +#define __DMB() __builtin_arm_dmb(0xF); + + +/** + \brief Reverse byte order (32 bit) + \details Reverses the byte order in integer value. + \param [in] value Value to reverse + \return Reversed value + */ +#define __REV __builtin_bswap32 + + +/** + \brief Reverse byte order (16 bit) + \details Reverses the byte order in two unsigned short values. + \param [in] value Value to reverse + \return Reversed value + */ +#define __REV16 __builtin_bswap16 /* ToDo: ARMCC_V6: check if __builtin_bswap16 could be used */ +#if 0 +__attribute__((always_inline)) __STATIC_INLINE uint32_t __REV16(uint32_t value) +{ + uint32_t result; + + __ASM volatile ("rev16 %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); + return(result); +} +#endif + + +/** + \brief Reverse byte order in signed short value + \details Reverses the byte order in a signed short value with sign extension to integer. + \param [in] value Value to reverse + \return Reversed value + */ + /* ToDo: ARMCC_V6: check if __builtin_bswap16 could be used */ +__attribute__((always_inline)) __STATIC_INLINE int32_t __REVSH(int32_t value) +{ + int32_t result; + + __ASM volatile ("revsh %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); + return(result); +} + + +/** + \brief Rotate Right in unsigned value (32 bit) + \details Rotate Right (immediate) provides the value of the contents of a register rotated by a variable number of bits. + \param [in] op1 Value to rotate + \param [in] op2 Number of Bits to rotate + \return Rotated value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __ROR(uint32_t op1, uint32_t op2) +{ + return (op1 >> op2) | (op1 << (32U - op2)); +} + + +/** + \brief Breakpoint + \details Causes the processor to enter Debug state. + Debug tools can use this to investigate system state when the instruction at a particular address is reached. + \param [in] value is ignored by the processor. + If required, a debugger can use it to store additional information about the breakpoint. + */ +#define __BKPT(value) __ASM volatile ("bkpt "#value) + + +/** + \brief Reverse bit order of value + \details Reverses the bit order of the given value. + \param [in] value Value to reverse + \return Reversed value + */ + /* ToDo: ARMCC_V6: check if __builtin_arm_rbit is supported */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __RBIT(uint32_t value) +{ + uint32_t result; + +#if ((__ARM_ARCH_7M__ == 1U) || (__ARM_ARCH_7EM__ == 1U) || (__ARM_ARCH_8M__ == 1U)) /* ToDo: ARMCC_V6: check if this is ok for cortex >=3 */ + __ASM volatile ("rbit %0, %1" : "=r" (result) : "r" (value) ); +#else + int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ + + result = value; /* r will be reversed bits of v; first get LSB of v */ + for (value >>= 1U; value; value >>= 1U) + { + result <<= 1U; + result |= value & 1U; + s--; + } + result <<= s; /* shift when v's highest bits are zero */ +#endif + return(result); +} + + +/** + \brief Count leading zeros + \details Counts the number of leading zeros of a data value. + \param [in] value Value to count the leading zeros + \return number of leading zeros in value + */ +#define __CLZ __builtin_clz + + +#if ((__ARM_ARCH_7M__ == 1U) || (__ARM_ARCH_7EM__ == 1U) || (__ARM_ARCH_8M__ == 1U)) /* ToDo: ARMCC_V6: check if this is ok for cortex >=3 */ + +/** + \brief LDR Exclusive (8 bit) + \details Executes a exclusive LDR instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +#define __LDREXB (uint8_t)__builtin_arm_ldrex + + +/** + \brief LDR Exclusive (16 bit) + \details Executes a exclusive LDR instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +#define __LDREXH (uint16_t)__builtin_arm_ldrex + + +/** + \brief LDR Exclusive (32 bit) + \details Executes a exclusive LDR instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +#define __LDREXW (uint32_t)__builtin_arm_ldrex + + +/** + \brief STR Exclusive (8 bit) + \details Executes a exclusive STR instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#define __STREXB (uint32_t)__builtin_arm_strex + + +/** + \brief STR Exclusive (16 bit) + \details Executes a exclusive STR instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#define __STREXH (uint32_t)__builtin_arm_strex + + +/** + \brief STR Exclusive (32 bit) + \details Executes a exclusive STR instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#define __STREXW (uint32_t)__builtin_arm_strex + + +/** + \brief Remove the exclusive lock + \details Removes the exclusive lock which is created by LDREX. + */ +#define __CLREX __builtin_arm_clrex + + +/** + \brief Signed Saturate + \details Saturates a signed value. + \param [in] value Value to be saturated + \param [in] sat Bit position to saturate to (1..32) + \return Saturated value + */ +/*#define __SSAT __builtin_arm_ssat*/ +#define __SSAT(ARG1,ARG2) \ +({ \ + int32_t __RES, __ARG1 = (ARG1); \ + __ASM ("ssat %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) + + +/** + \brief Unsigned Saturate + \details Saturates an unsigned value. + \param [in] value Value to be saturated + \param [in] sat Bit position to saturate to (0..31) + \return Saturated value + */ +#define __USAT __builtin_arm_usat +#if 0 +#define __USAT(ARG1,ARG2) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1); \ + __ASM ("usat %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) +#endif + + +/** + \brief Rotate Right with Extend (32 bit) + \details Moves each bit of a bitstring right by one bit. + The carry input is shifted in at the left end of the bitstring. + \param [in] value Value to rotate + \return Rotated value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __RRX(uint32_t value) +{ + uint32_t result; + + __ASM volatile ("rrx %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); + return(result); +} + + +/** + \brief LDRT Unprivileged (8 bit) + \details Executes a Unprivileged LDRT instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint8_t __LDRBT(volatile uint8_t *ptr) +{ + uint32_t result; + + __ASM volatile ("ldrbt %0, %1" : "=r" (result) : "Q" (*ptr) ); + return ((uint8_t) result); /* Add explicit type cast here */ +} + + +/** + \brief LDRT Unprivileged (16 bit) + \details Executes a Unprivileged LDRT instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint16_t __LDRHT(volatile uint16_t *ptr) +{ + uint32_t result; + + __ASM volatile ("ldrht %0, %1" : "=r" (result) : "Q" (*ptr) ); + return ((uint16_t) result); /* Add explicit type cast here */ +} + + +/** + \brief LDRT Unprivileged (32 bit) + \details Executes a Unprivileged LDRT instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __LDRT(volatile uint32_t *ptr) +{ + uint32_t result; + + __ASM volatile ("ldrt %0, %1" : "=r" (result) : "Q" (*ptr) ); + return(result); +} + + +/** + \brief STRT Unprivileged (8 bit) + \details Executes a Unprivileged STRT instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STRBT(uint8_t value, volatile uint8_t *ptr) +{ + __ASM volatile ("strbt %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) ); +} + + +/** + \brief STRT Unprivileged (16 bit) + \details Executes a Unprivileged STRT instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STRHT(uint16_t value, volatile uint16_t *ptr) +{ + __ASM volatile ("strht %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) ); +} + + +/** + \brief STRT Unprivileged (32 bit) + \details Executes a Unprivileged STRT instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STRT(uint32_t value, volatile uint32_t *ptr) +{ + __ASM volatile ("strt %1, %0" : "=Q" (*ptr) : "r" (value) ); +} + +#endif /* ((__ARM_ARCH_7M__ == 1U) || (__ARM_ARCH_7EM__ == 1U) || (__ARM_ARCH_8M__ == 1U)) */ + + +#if (__ARM_ARCH_8M__ == 1U) + +/** + \brief Load-Acquire (8 bit) + \details Executes a LDAB instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint8_t __LDAB(volatile uint8_t *ptr) +{ + uint32_t result; + + __ASM volatile ("ldab %0, %1" : "=r" (result) : "Q" (*ptr) ); + return ((uint8_t) result); +} + + +/** + \brief Load-Acquire (16 bit) + \details Executes a LDAH instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint16_t __LDAH(volatile uint16_t *ptr) +{ + uint32_t result; + + __ASM volatile ("ldah %0, %1" : "=r" (result) : "Q" (*ptr) ); + return ((uint16_t) result); +} + + +/** + \brief Load-Acquire (32 bit) + \details Executes a LDA instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __LDA(volatile uint32_t *ptr) +{ + uint32_t result; + + __ASM volatile ("lda %0, %1" : "=r" (result) : "Q" (*ptr) ); + return(result); +} + + +/** + \brief Store-Release (8 bit) + \details Executes a STLB instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STLB(uint8_t value, volatile uint8_t *ptr) +{ + __ASM volatile ("stlb %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) ); +} + + +/** + \brief Store-Release (16 bit) + \details Executes a STLH instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STLH(uint16_t value, volatile uint16_t *ptr) +{ + __ASM volatile ("stlh %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) ); +} + + +/** + \brief Store-Release (32 bit) + \details Executes a STL instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STL(uint32_t value, volatile uint32_t *ptr) +{ + __ASM volatile ("stl %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) ); +} + + +/** + \brief Load-Acquire Exclusive (8 bit) + \details Executes a LDAB exclusive instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +#define __LDAEXB (uint8_t)__builtin_arm_ldaex + + +/** + \brief Load-Acquire Exclusive (16 bit) + \details Executes a LDAH exclusive instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +#define __LDAEXH (uint16_t)__builtin_arm_ldaex + + +/** + \brief Load-Acquire Exclusive (32 bit) + \details Executes a LDA exclusive instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +#define __LDAEX (uint32_t)__builtin_arm_ldaex + + +/** + \brief Store-Release Exclusive (8 bit) + \details Executes a STLB exclusive instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#define __STLEXB (uint32_t)__builtin_arm_stlex + + +/** + \brief Store-Release Exclusive (16 bit) + \details Executes a STLH exclusive instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#define __STLEXH (uint32_t)__builtin_arm_stlex + + +/** + \brief Store-Release Exclusive (32 bit) + \details Executes a STL exclusive instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +#define __STLEX (uint32_t)__builtin_arm_stlex + +#endif /* (__ARM_ARCH_8M__ == 1U) */ + +/*@}*/ /* end of group CMSIS_Core_InstructionInterface */ + + +/* ################### Compiler specific Intrinsics ########################### */ +/** \defgroup CMSIS_SIMD_intrinsics CMSIS SIMD Intrinsics + Access to dedicated SIMD instructions + @{ +*/ + +#if (__ARM_FEATURE_DSP == 1U) /* ToDo: ARMCC_V6: This should be ARCH >= ARMv7-M + SIMD */ + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __QADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SHADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UQADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UHADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("ssub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __QSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SHSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __USUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UQSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UHSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __QADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SHADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UQADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UHADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("ssub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __QSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SHSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __USUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UQSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UHSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __QASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SHASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UQASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UHASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("ssax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __QSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SHSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __USAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UQSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UHSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __USAD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usad8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __USADA8(uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("usada8 %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +#define __SSAT16(ARG1,ARG2) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1); \ + __ASM ("ssat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) + +#define __USAT16(ARG1,ARG2) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1); \ + __ASM ("usat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UXTB16(uint32_t op1) +{ + uint32_t result; + + __ASM volatile ("uxtb16 %0, %1" : "=r" (result) : "r" (op1)); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __UXTAB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uxtab16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SXTB16(uint32_t op1) +{ + uint32_t result; + + __ASM volatile ("sxtb16 %0, %1" : "=r" (result) : "r" (op1)); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SXTAB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sxtab16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMUAD (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smuad %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMUADX (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smuadx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMLAD (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smlad %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMLADX (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smladx %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint64_t __SMLALD (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlald %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlald %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__((always_inline)) __STATIC_INLINE uint64_t __SMLALDX (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlaldx %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlaldx %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMUSD (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smusd %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMUSDX (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smusdx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMLSD (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smlsd %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMLSDX (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smlsdx %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE uint64_t __SMLSLD (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlsld %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlsld %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__((always_inline)) __STATIC_INLINE uint64_t __SMLSLDX (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlsldx %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlsldx %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SEL (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sel %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE int32_t __QADD( int32_t op1, int32_t op2) +{ + int32_t result; + + __ASM volatile ("qadd %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__((always_inline)) __STATIC_INLINE int32_t __QSUB( int32_t op1, int32_t op2) +{ + int32_t result; + + __ASM volatile ("qsub %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +#define __PKHBT(ARG1,ARG2,ARG3) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1), __ARG2 = (ARG2); \ + __ASM ("pkhbt %0, %1, %2, lsl %3" : "=r" (__RES) : "r" (__ARG1), "r" (__ARG2), "I" (ARG3) ); \ + __RES; \ + }) + +#define __PKHTB(ARG1,ARG2,ARG3) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1), __ARG2 = (ARG2); \ + if (ARG3 == 0) \ + __ASM ("pkhtb %0, %1, %2" : "=r" (__RES) : "r" (__ARG1), "r" (__ARG2) ); \ + else \ + __ASM ("pkhtb %0, %1, %2, asr %3" : "=r" (__RES) : "r" (__ARG1), "r" (__ARG2), "I" (ARG3) ); \ + __RES; \ + }) + +__attribute__((always_inline)) __STATIC_INLINE uint32_t __SMMLA (int32_t op1, int32_t op2, int32_t op3) +{ + int32_t result; + + __ASM volatile ("smmla %0, %1, %2, %3" : "=r" (result): "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +#endif /* (__ARM_FEATURE_DSP == 1U) */ +/*@} end of group CMSIS_SIMD_intrinsics */ + + +#endif /* __CMSIS_ARMCC_V6_H */ diff --git a/Testing/Drivers/CMSIS/Include/cmsis_gcc.h b/Testing/Drivers/CMSIS/Include/cmsis_gcc.h new file mode 100644 index 0000000..bb89fbb --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/cmsis_gcc.h @@ -0,0 +1,1373 @@ +/**************************************************************************//** + * @file cmsis_gcc.h + * @brief CMSIS Cortex-M Core Function/Instruction Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#ifndef __CMSIS_GCC_H +#define __CMSIS_GCC_H + +/* ignore some GCC warnings */ +#if defined ( __GNUC__ ) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wsign-conversion" +#pragma GCC diagnostic ignored "-Wconversion" +#pragma GCC diagnostic ignored "-Wunused-parameter" +#endif + + +/* ########################### Core Function Access ########################### */ +/** \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions + @{ + */ + +/** + \brief Enable IRQ Interrupts + \details Enables IRQ interrupts by clearing the I-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __enable_irq(void) +{ + __ASM volatile ("cpsie i" : : : "memory"); +} + + +/** + \brief Disable IRQ Interrupts + \details Disables IRQ interrupts by setting the I-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __disable_irq(void) +{ + __ASM volatile ("cpsid i" : : : "memory"); +} + + +/** + \brief Get Control Register + \details Returns the content of the Control Register. + \return Control Register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_CONTROL(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, control" : "=r" (result) ); + return(result); +} + + +/** + \brief Set Control Register + \details Writes the given value to the Control Register. + \param [in] control Control Register value to set + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_CONTROL(uint32_t control) +{ + __ASM volatile ("MSR control, %0" : : "r" (control) : "memory"); +} + + +/** + \brief Get IPSR Register + \details Returns the content of the IPSR Register. + \return IPSR Register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_IPSR(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); + return(result); +} + + +/** + \brief Get APSR Register + \details Returns the content of the APSR Register. + \return APSR Register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_APSR(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, apsr" : "=r" (result) ); + return(result); +} + + +/** + \brief Get xPSR Register + \details Returns the content of the xPSR Register. + + \return xPSR Register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_xPSR(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, xpsr" : "=r" (result) ); + return(result); +} + + +/** + \brief Get Process Stack Pointer + \details Returns the current value of the Process Stack Pointer (PSP). + \return PSP Register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_PSP(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, psp\n" : "=r" (result) ); + return(result); +} + + +/** + \brief Set Process Stack Pointer + \details Assigns the given value to the Process Stack Pointer (PSP). + \param [in] topOfProcStack Process Stack Pointer value to set + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_PSP(uint32_t topOfProcStack) +{ + __ASM volatile ("MSR psp, %0\n" : : "r" (topOfProcStack) : "sp"); +} + + +/** + \brief Get Main Stack Pointer + \details Returns the current value of the Main Stack Pointer (MSP). + \return MSP Register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_MSP(void) +{ + register uint32_t result; + + __ASM volatile ("MRS %0, msp\n" : "=r" (result) ); + return(result); +} + + +/** + \brief Set Main Stack Pointer + \details Assigns the given value to the Main Stack Pointer (MSP). + + \param [in] topOfMainStack Main Stack Pointer value to set + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_MSP(uint32_t topOfMainStack) +{ + __ASM volatile ("MSR msp, %0\n" : : "r" (topOfMainStack) : "sp"); +} + + +/** + \brief Get Priority Mask + \details Returns the current state of the priority mask bit from the Priority Mask Register. + \return Priority Mask value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_PRIMASK(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, primask" : "=r" (result) ); + return(result); +} + + +/** + \brief Set Priority Mask + \details Assigns the given value to the Priority Mask Register. + \param [in] priMask Priority Mask + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_PRIMASK(uint32_t priMask) +{ + __ASM volatile ("MSR primask, %0" : : "r" (priMask) : "memory"); +} + + +#if (__CORTEX_M >= 0x03U) + +/** + \brief Enable FIQ + \details Enables FIQ interrupts by clearing the F-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __enable_fault_irq(void) +{ + __ASM volatile ("cpsie f" : : : "memory"); +} + + +/** + \brief Disable FIQ + \details Disables FIQ interrupts by setting the F-bit in the CPSR. + Can only be executed in Privileged modes. + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __disable_fault_irq(void) +{ + __ASM volatile ("cpsid f" : : : "memory"); +} + + +/** + \brief Get Base Priority + \details Returns the current value of the Base Priority register. + \return Base Priority register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_BASEPRI(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, basepri" : "=r" (result) ); + return(result); +} + + +/** + \brief Set Base Priority + \details Assigns the given value to the Base Priority register. + \param [in] basePri Base Priority value to set + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_BASEPRI(uint32_t value) +{ + __ASM volatile ("MSR basepri, %0" : : "r" (value) : "memory"); +} + + +/** + \brief Set Base Priority with condition + \details Assigns the given value to the Base Priority register only if BASEPRI masking is disabled, + or the new value increases the BASEPRI priority level. + \param [in] basePri Base Priority value to set + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_BASEPRI_MAX(uint32_t value) +{ + __ASM volatile ("MSR basepri_max, %0" : : "r" (value) : "memory"); +} + + +/** + \brief Get Fault Mask + \details Returns the current value of the Fault Mask register. + \return Fault Mask register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_FAULTMASK(void) +{ + uint32_t result; + + __ASM volatile ("MRS %0, faultmask" : "=r" (result) ); + return(result); +} + + +/** + \brief Set Fault Mask + \details Assigns the given value to the Fault Mask register. + \param [in] faultMask Fault Mask value to set + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_FAULTMASK(uint32_t faultMask) +{ + __ASM volatile ("MSR faultmask, %0" : : "r" (faultMask) : "memory"); +} + +#endif /* (__CORTEX_M >= 0x03U) */ + + +#if (__CORTEX_M == 0x04U) || (__CORTEX_M == 0x07U) + +/** + \brief Get FPSCR + \details Returns the current value of the Floating Point Status/Control register. + \return Floating Point Status/Control register value + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_FPSCR(void) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + uint32_t result; + + /* Empty asm statement works as a scheduling barrier */ + __ASM volatile (""); + __ASM volatile ("VMRS %0, fpscr" : "=r" (result) ); + __ASM volatile (""); + return(result); +#else + return(0); +#endif +} + + +/** + \brief Set FPSCR + \details Assigns the given value to the Floating Point Status/Control register. + \param [in] fpscr Floating Point Status/Control value to set + */ +__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_FPSCR(uint32_t fpscr) +{ +#if (__FPU_PRESENT == 1U) && (__FPU_USED == 1U) + /* Empty asm statement works as a scheduling barrier */ + __ASM volatile (""); + __ASM volatile ("VMSR fpscr, %0" : : "r" (fpscr) : "vfpcc"); + __ASM volatile (""); +#endif +} + +#endif /* (__CORTEX_M == 0x04U) || (__CORTEX_M == 0x07U) */ + + + +/*@} end of CMSIS_Core_RegAccFunctions */ + + +/* ########################## Core Instruction Access ######################### */ +/** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface + Access to dedicated instructions + @{ +*/ + +/* Define macros for porting to both thumb1 and thumb2. + * For thumb1, use low register (r0-r7), specified by constraint "l" + * Otherwise, use general registers, specified by constraint "r" */ +#if defined (__thumb__) && !defined (__thumb2__) +#define __CMSIS_GCC_OUT_REG(r) "=l" (r) +#define __CMSIS_GCC_USE_REG(r) "l" (r) +#else +#define __CMSIS_GCC_OUT_REG(r) "=r" (r) +#define __CMSIS_GCC_USE_REG(r) "r" (r) +#endif + +/** + \brief No Operation + \details No Operation does nothing. This instruction can be used for code alignment purposes. + */ +__attribute__((always_inline)) __STATIC_INLINE void __NOP(void) +{ + __ASM volatile ("nop"); +} + + +/** + \brief Wait For Interrupt + \details Wait For Interrupt is a hint instruction that suspends execution until one of a number of events occurs. + */ +__attribute__((always_inline)) __STATIC_INLINE void __WFI(void) +{ + __ASM volatile ("wfi"); +} + + +/** + \brief Wait For Event + \details Wait For Event is a hint instruction that permits the processor to enter + a low-power state until one of a number of events occurs. + */ +__attribute__((always_inline)) __STATIC_INLINE void __WFE(void) +{ + __ASM volatile ("wfe"); +} + + +/** + \brief Send Event + \details Send Event is a hint instruction. It causes an event to be signaled to the CPU. + */ +__attribute__((always_inline)) __STATIC_INLINE void __SEV(void) +{ + __ASM volatile ("sev"); +} + + +/** + \brief Instruction Synchronization Barrier + \details Instruction Synchronization Barrier flushes the pipeline in the processor, + so that all instructions following the ISB are fetched from cache or memory, + after the instruction has been completed. + */ +__attribute__((always_inline)) __STATIC_INLINE void __ISB(void) +{ + __ASM volatile ("isb 0xF":::"memory"); +} + + +/** + \brief Data Synchronization Barrier + \details Acts as a special kind of Data Memory Barrier. + It completes when all explicit memory accesses before this instruction complete. + */ +__attribute__((always_inline)) __STATIC_INLINE void __DSB(void) +{ + __ASM volatile ("dsb 0xF":::"memory"); +} + + +/** + \brief Data Memory Barrier + \details Ensures the apparent order of the explicit memory operations before + and after the instruction, without ensuring their completion. + */ +__attribute__((always_inline)) __STATIC_INLINE void __DMB(void) +{ + __ASM volatile ("dmb 0xF":::"memory"); +} + + +/** + \brief Reverse byte order (32 bit) + \details Reverses the byte order in integer value. + \param [in] value Value to reverse + \return Reversed value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __REV(uint32_t value) +{ +#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) + return __builtin_bswap32(value); +#else + uint32_t result; + + __ASM volatile ("rev %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); + return(result); +#endif +} + + +/** + \brief Reverse byte order (16 bit) + \details Reverses the byte order in two unsigned short values. + \param [in] value Value to reverse + \return Reversed value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __REV16(uint32_t value) +{ + uint32_t result; + + __ASM volatile ("rev16 %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); + return(result); +} + + +/** + \brief Reverse byte order in signed short value + \details Reverses the byte order in a signed short value with sign extension to integer. + \param [in] value Value to reverse + \return Reversed value + */ +__attribute__((always_inline)) __STATIC_INLINE int32_t __REVSH(int32_t value) +{ +#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8) + return (short)__builtin_bswap16(value); +#else + int32_t result; + + __ASM volatile ("revsh %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); + return(result); +#endif +} + + +/** + \brief Rotate Right in unsigned value (32 bit) + \details Rotate Right (immediate) provides the value of the contents of a register rotated by a variable number of bits. + \param [in] value Value to rotate + \param [in] value Number of Bits to rotate + \return Rotated value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __ROR(uint32_t op1, uint32_t op2) +{ + return (op1 >> op2) | (op1 << (32U - op2)); +} + + +/** + \brief Breakpoint + \details Causes the processor to enter Debug state. + Debug tools can use this to investigate system state when the instruction at a particular address is reached. + \param [in] value is ignored by the processor. + If required, a debugger can use it to store additional information about the breakpoint. + */ +#define __BKPT(value) __ASM volatile ("bkpt "#value) + + +/** + \brief Reverse bit order of value + \details Reverses the bit order of the given value. + \param [in] value Value to reverse + \return Reversed value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __RBIT(uint32_t value) +{ + uint32_t result; + +#if (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) + __ASM volatile ("rbit %0, %1" : "=r" (result) : "r" (value) ); +#else + int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ + + result = value; /* r will be reversed bits of v; first get LSB of v */ + for (value >>= 1U; value; value >>= 1U) + { + result <<= 1U; + result |= value & 1U; + s--; + } + result <<= s; /* shift when v's highest bits are zero */ +#endif + return(result); +} + + +/** + \brief Count leading zeros + \details Counts the number of leading zeros of a data value. + \param [in] value Value to count the leading zeros + \return number of leading zeros in value + */ +#define __CLZ __builtin_clz + + +#if (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) + +/** + \brief LDR Exclusive (8 bit) + \details Executes a exclusive LDR instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint8_t __LDREXB(volatile uint8_t *addr) +{ + uint32_t result; + +#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8) + __ASM volatile ("ldrexb %0, %1" : "=r" (result) : "Q" (*addr) ); +#else + /* Prior to GCC 4.8, "Q" will be expanded to [rx, #0] which is not + accepted by assembler. So has to use following less efficient pattern. + */ + __ASM volatile ("ldrexb %0, [%1]" : "=r" (result) : "r" (addr) : "memory" ); +#endif + return ((uint8_t) result); /* Add explicit type cast here */ +} + + +/** + \brief LDR Exclusive (16 bit) + \details Executes a exclusive LDR instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint16_t __LDREXH(volatile uint16_t *addr) +{ + uint32_t result; + +#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8) + __ASM volatile ("ldrexh %0, %1" : "=r" (result) : "Q" (*addr) ); +#else + /* Prior to GCC 4.8, "Q" will be expanded to [rx, #0] which is not + accepted by assembler. So has to use following less efficient pattern. + */ + __ASM volatile ("ldrexh %0, [%1]" : "=r" (result) : "r" (addr) : "memory" ); +#endif + return ((uint16_t) result); /* Add explicit type cast here */ +} + + +/** + \brief LDR Exclusive (32 bit) + \details Executes a exclusive LDR instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __LDREXW(volatile uint32_t *addr) +{ + uint32_t result; + + __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); + return(result); +} + + +/** + \brief STR Exclusive (8 bit) + \details Executes a exclusive STR instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __STREXB(uint8_t value, volatile uint8_t *addr) +{ + uint32_t result; + + __ASM volatile ("strexb %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" ((uint32_t)value) ); + return(result); +} + + +/** + \brief STR Exclusive (16 bit) + \details Executes a exclusive STR instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __STREXH(uint16_t value, volatile uint16_t *addr) +{ + uint32_t result; + + __ASM volatile ("strexh %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" ((uint32_t)value) ); + return(result); +} + + +/** + \brief STR Exclusive (32 bit) + \details Executes a exclusive STR instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + \return 0 Function succeeded + \return 1 Function failed + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __STREXW(uint32_t value, volatile uint32_t *addr) +{ + uint32_t result; + + __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); + return(result); +} + + +/** + \brief Remove the exclusive lock + \details Removes the exclusive lock which is created by LDREX. + */ +__attribute__((always_inline)) __STATIC_INLINE void __CLREX(void) +{ + __ASM volatile ("clrex" ::: "memory"); +} + + +/** + \brief Signed Saturate + \details Saturates a signed value. + \param [in] value Value to be saturated + \param [in] sat Bit position to saturate to (1..32) + \return Saturated value + */ +#define __SSAT(ARG1,ARG2) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1); \ + __ASM ("ssat %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) + + +/** + \brief Unsigned Saturate + \details Saturates an unsigned value. + \param [in] value Value to be saturated + \param [in] sat Bit position to saturate to (0..31) + \return Saturated value + */ +#define __USAT(ARG1,ARG2) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1); \ + __ASM ("usat %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) + + +/** + \brief Rotate Right with Extend (32 bit) + \details Moves each bit of a bitstring right by one bit. + The carry input is shifted in at the left end of the bitstring. + \param [in] value Value to rotate + \return Rotated value + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __RRX(uint32_t value) +{ + uint32_t result; + + __ASM volatile ("rrx %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); + return(result); +} + + +/** + \brief LDRT Unprivileged (8 bit) + \details Executes a Unprivileged LDRT instruction for 8 bit value. + \param [in] ptr Pointer to data + \return value of type uint8_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint8_t __LDRBT(volatile uint8_t *addr) +{ + uint32_t result; + +#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8) + __ASM volatile ("ldrbt %0, %1" : "=r" (result) : "Q" (*addr) ); +#else + /* Prior to GCC 4.8, "Q" will be expanded to [rx, #0] which is not + accepted by assembler. So has to use following less efficient pattern. + */ + __ASM volatile ("ldrbt %0, [%1]" : "=r" (result) : "r" (addr) : "memory" ); +#endif + return ((uint8_t) result); /* Add explicit type cast here */ +} + + +/** + \brief LDRT Unprivileged (16 bit) + \details Executes a Unprivileged LDRT instruction for 16 bit values. + \param [in] ptr Pointer to data + \return value of type uint16_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint16_t __LDRHT(volatile uint16_t *addr) +{ + uint32_t result; + +#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8) + __ASM volatile ("ldrht %0, %1" : "=r" (result) : "Q" (*addr) ); +#else + /* Prior to GCC 4.8, "Q" will be expanded to [rx, #0] which is not + accepted by assembler. So has to use following less efficient pattern. + */ + __ASM volatile ("ldrht %0, [%1]" : "=r" (result) : "r" (addr) : "memory" ); +#endif + return ((uint16_t) result); /* Add explicit type cast here */ +} + + +/** + \brief LDRT Unprivileged (32 bit) + \details Executes a Unprivileged LDRT instruction for 32 bit values. + \param [in] ptr Pointer to data + \return value of type uint32_t at (*ptr) + */ +__attribute__((always_inline)) __STATIC_INLINE uint32_t __LDRT(volatile uint32_t *addr) +{ + uint32_t result; + + __ASM volatile ("ldrt %0, %1" : "=r" (result) : "Q" (*addr) ); + return(result); +} + + +/** + \brief STRT Unprivileged (8 bit) + \details Executes a Unprivileged STRT instruction for 8 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STRBT(uint8_t value, volatile uint8_t *addr) +{ + __ASM volatile ("strbt %1, %0" : "=Q" (*addr) : "r" ((uint32_t)value) ); +} + + +/** + \brief STRT Unprivileged (16 bit) + \details Executes a Unprivileged STRT instruction for 16 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STRHT(uint16_t value, volatile uint16_t *addr) +{ + __ASM volatile ("strht %1, %0" : "=Q" (*addr) : "r" ((uint32_t)value) ); +} + + +/** + \brief STRT Unprivileged (32 bit) + \details Executes a Unprivileged STRT instruction for 32 bit values. + \param [in] value Value to store + \param [in] ptr Pointer to location + */ +__attribute__((always_inline)) __STATIC_INLINE void __STRT(uint32_t value, volatile uint32_t *addr) +{ + __ASM volatile ("strt %1, %0" : "=Q" (*addr) : "r" (value) ); +} + +#endif /* (__CORTEX_M >= 0x03U) || (__CORTEX_SC >= 300U) */ + +/*@}*/ /* end of group CMSIS_Core_InstructionInterface */ + + +/* ################### Compiler specific Intrinsics ########################### */ +/** \defgroup CMSIS_SIMD_intrinsics CMSIS SIMD Intrinsics + Access to dedicated SIMD instructions + @{ +*/ + +#if (__CORTEX_M >= 0x04U) /* only for Cortex-M4 and above */ + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UHADD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("ssub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __USUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UHSUB8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhsub8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UHADD16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("ssub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __USUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UHSUB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhsub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UHASX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhasx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("ssax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("qsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("shsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __USAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uqsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UHSAX(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uhsax %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __USAD8(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("usad8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __USADA8(uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("usada8 %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +#define __SSAT16(ARG1,ARG2) \ +({ \ + int32_t __RES, __ARG1 = (ARG1); \ + __ASM ("ssat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) + +#define __USAT16(ARG1,ARG2) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1); \ + __ASM ("usat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) ); \ + __RES; \ + }) + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UXTB16(uint32_t op1) +{ + uint32_t result; + + __ASM volatile ("uxtb16 %0, %1" : "=r" (result) : "r" (op1)); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UXTAB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("uxtab16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SXTB16(uint32_t op1) +{ + uint32_t result; + + __ASM volatile ("sxtb16 %0, %1" : "=r" (result) : "r" (op1)); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SXTAB16(uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sxtab16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMUAD (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smuad %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMUADX (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smuadx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMLAD (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smlad %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMLADX (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smladx %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint64_t __SMLALD (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlald %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlald %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint64_t __SMLALDX (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlaldx %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlaldx %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMUSD (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smusd %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMUSDX (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("smusdx %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMLSD (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smlsd %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMLSDX (uint32_t op1, uint32_t op2, uint32_t op3) +{ + uint32_t result; + + __ASM volatile ("smlsdx %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint64_t __SMLSLD (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlsld %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlsld %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint64_t __SMLSLDX (uint32_t op1, uint32_t op2, uint64_t acc) +{ + union llreg_u{ + uint32_t w32[2]; + uint64_t w64; + } llr; + llr.w64 = acc; + +#ifndef __ARMEB__ /* Little endian */ + __ASM volatile ("smlsldx %0, %1, %2, %3" : "=r" (llr.w32[0]), "=r" (llr.w32[1]): "r" (op1), "r" (op2) , "0" (llr.w32[0]), "1" (llr.w32[1]) ); +#else /* Big endian */ + __ASM volatile ("smlsldx %0, %1, %2, %3" : "=r" (llr.w32[1]), "=r" (llr.w32[0]): "r" (op1), "r" (op2) , "0" (llr.w32[1]), "1" (llr.w32[0]) ); +#endif + + return(llr.w64); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SEL (uint32_t op1, uint32_t op2) +{ + uint32_t result; + + __ASM volatile ("sel %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE int32_t __QADD( int32_t op1, int32_t op2) +{ + int32_t result; + + __ASM volatile ("qadd %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +__attribute__( ( always_inline ) ) __STATIC_INLINE int32_t __QSUB( int32_t op1, int32_t op2) +{ + int32_t result; + + __ASM volatile ("qsub %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); + return(result); +} + +#define __PKHBT(ARG1,ARG2,ARG3) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1), __ARG2 = (ARG2); \ + __ASM ("pkhbt %0, %1, %2, lsl %3" : "=r" (__RES) : "r" (__ARG1), "r" (__ARG2), "I" (ARG3) ); \ + __RES; \ + }) + +#define __PKHTB(ARG1,ARG2,ARG3) \ +({ \ + uint32_t __RES, __ARG1 = (ARG1), __ARG2 = (ARG2); \ + if (ARG3 == 0) \ + __ASM ("pkhtb %0, %1, %2" : "=r" (__RES) : "r" (__ARG1), "r" (__ARG2) ); \ + else \ + __ASM ("pkhtb %0, %1, %2, asr %3" : "=r" (__RES) : "r" (__ARG1), "r" (__ARG2), "I" (ARG3) ); \ + __RES; \ + }) + +__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SMMLA (int32_t op1, int32_t op2, int32_t op3) +{ + int32_t result; + + __ASM volatile ("smmla %0, %1, %2, %3" : "=r" (result): "r" (op1), "r" (op2), "r" (op3) ); + return(result); +} + +#endif /* (__CORTEX_M >= 0x04) */ +/*@} end of group CMSIS_SIMD_intrinsics */ + + +#if defined ( __GNUC__ ) +#pragma GCC diagnostic pop +#endif + +#endif /* __CMSIS_GCC_H */ diff --git a/Testing/Drivers/CMSIS/Include/core_cm0.h b/Testing/Drivers/CMSIS/Include/core_cm0.h new file mode 100644 index 0000000..711dad5 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cm0.h @@ -0,0 +1,798 @@ +/**************************************************************************//** + * @file core_cm0.h + * @brief CMSIS Cortex-M0 Core Peripheral Access Layer Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CM0_H_GENERIC +#define __CORE_CM0_H_GENERIC + +#include + +#ifdef __cplusplus + extern "C" { +#endif + +/** + \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions + CMSIS violates the following MISRA-C:2004 rules: + + \li Required Rule 8.5, object/function definition in header file.
+ Function definitions in header files are used to allow 'inlining'. + + \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.
+ Unions are used for effective representation of core registers. + + \li Advisory Rule 19.7, Function-like macro defined.
+ Function-like macros are used to allow more efficient code. + */ + + +/******************************************************************************* + * CMSIS definitions + ******************************************************************************/ +/** + \ingroup Cortex_M0 + @{ + */ + +/* CMSIS CM0 definitions */ +#define __CM0_CMSIS_VERSION_MAIN (0x04U) /*!< [31:16] CMSIS HAL main version */ +#define __CM0_CMSIS_VERSION_SUB (0x1EU) /*!< [15:0] CMSIS HAL sub version */ +#define __CM0_CMSIS_VERSION ((__CM0_CMSIS_VERSION_MAIN << 16U) | \ + __CM0_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */ + +#define __CORTEX_M (0x00U) /*!< Cortex-M Core */ + + +#if defined ( __CC_ARM ) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined ( __GNUC__ ) + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __ICCARM__ ) + #define __ASM __asm /*!< asm keyword for IAR Compiler */ + #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ + #define __STATIC_INLINE static inline + +#elif defined ( __TMS470__ ) + #define __ASM __asm /*!< asm keyword for TI CCS Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __TASKING__ ) + #define __ASM __asm /*!< asm keyword for TASKING Compiler */ + #define __INLINE inline /*!< inline keyword for TASKING Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __CSMC__ ) + #define __packed + #define __ASM _asm /*!< asm keyword for COSMIC Compiler */ + #define __INLINE inline /*!< inline keyword for COSMIC Compiler. Use -pc99 on compile line */ + #define __STATIC_INLINE static inline + +#else + #error Unknown compiler +#endif + +/** __FPU_USED indicates whether an FPU is used or not. + This core does not support an FPU at all +*/ +#define __FPU_USED 0U + +#if defined ( __CC_ARM ) + #if defined __TARGET_FPU_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #if defined __ARM_PCS_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __GNUC__ ) + #if defined (__VFP_FP__) && !defined(__SOFTFP__) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __ICCARM__ ) + #if defined __ARMVFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TMS470__ ) + #if defined __TI_VFP_SUPPORT__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TASKING__ ) + #if defined __FPU_VFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __CSMC__ ) + #if ( __CSMC__ & 0x400U) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#endif + +#include "core_cmInstr.h" /* Core Instruction Access */ +#include "core_cmFunc.h" /* Core Function Access */ + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM0_H_GENERIC */ + +#ifndef __CMSIS_GENERIC + +#ifndef __CORE_CM0_H_DEPENDANT +#define __CORE_CM0_H_DEPENDANT + +#ifdef __cplusplus + extern "C" { +#endif + +/* check device defines and use defaults */ +#if defined __CHECK_DEVICE_DEFINES + #ifndef __CM0_REV + #define __CM0_REV 0x0000U + #warning "__CM0_REV not defined in device header file; using default!" + #endif + + #ifndef __NVIC_PRIO_BITS + #define __NVIC_PRIO_BITS 2U + #warning "__NVIC_PRIO_BITS not defined in device header file; using default!" + #endif + + #ifndef __Vendor_SysTickConfig + #define __Vendor_SysTickConfig 0U + #warning "__Vendor_SysTickConfig not defined in device header file; using default!" + #endif +#endif + +/* IO definitions (access restrictions to peripheral registers) */ +/** + \defgroup CMSIS_glob_defs CMSIS Global Defines + + IO Type Qualifiers are used + \li to specify the access to peripheral variables. + \li for automatic generation of peripheral register debug information. +*/ +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +/* following defines should be used for structure members */ +#define __IM volatile const /*! Defines 'read only' structure member permissions */ +#define __OM volatile /*! Defines 'write only' structure member permissions */ +#define __IOM volatile /*! Defines 'read / write' structure member permissions */ + +/*@} end of group Cortex_M0 */ + + + +/******************************************************************************* + * Register Abstraction + Core Register contain: + - Core Register + - Core NVIC Register + - Core SCB Register + - Core SysTick Register + ******************************************************************************/ +/** + \defgroup CMSIS_core_register Defines and Type Definitions + \brief Type definitions and defines for Cortex-M processor based devices. +*/ + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CORE Status and Control Registers + \brief Core Register type definitions. + @{ + */ + +/** + \brief Union type to access the Application Program Status Register (APSR). + */ +typedef union +{ + struct + { + uint32_t _reserved0:28; /*!< bit: 0..27 Reserved */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} APSR_Type; + +/* APSR Register Definitions */ +#define APSR_N_Pos 31U /*!< APSR: N Position */ +#define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */ + +#define APSR_Z_Pos 30U /*!< APSR: Z Position */ +#define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */ + +#define APSR_C_Pos 29U /*!< APSR: C Position */ +#define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */ + +#define APSR_V_Pos 28U /*!< APSR: V Position */ +#define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */ + + +/** + \brief Union type to access the Interrupt Program Status Register (IPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} IPSR_Type; + +/* IPSR Register Definitions */ +#define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */ +#define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */ + + +/** + \brief Union type to access the Special-Purpose Program Status Registers (xPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:15; /*!< bit: 9..23 Reserved */ + uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */ + uint32_t _reserved1:3; /*!< bit: 25..27 Reserved */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} xPSR_Type; + +/* xPSR Register Definitions */ +#define xPSR_N_Pos 31U /*!< xPSR: N Position */ +#define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */ + +#define xPSR_Z_Pos 30U /*!< xPSR: Z Position */ +#define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */ + +#define xPSR_C_Pos 29U /*!< xPSR: C Position */ +#define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */ + +#define xPSR_V_Pos 28U /*!< xPSR: V Position */ +#define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */ + +#define xPSR_T_Pos 24U /*!< xPSR: T Position */ +#define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */ + +#define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */ +#define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */ + + +/** + \brief Union type to access the Control Registers (CONTROL). + */ +typedef union +{ + struct + { + uint32_t _reserved0:1; /*!< bit: 0 Reserved */ + uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */ + uint32_t _reserved1:30; /*!< bit: 2..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} CONTROL_Type; + +/* CONTROL Register Definitions */ +#define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */ +#define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */ + +/*@} end of group CMSIS_CORE */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC) + \brief Type definitions for the NVIC Registers + @{ + */ + +/** + \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC). + */ +typedef struct +{ + __IOM uint32_t ISER[1U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */ + uint32_t RESERVED0[31U]; + __IOM uint32_t ICER[1U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */ + uint32_t RSERVED1[31U]; + __IOM uint32_t ISPR[1U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */ + uint32_t RESERVED2[31U]; + __IOM uint32_t ICPR[1U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */ + uint32_t RESERVED3[31U]; + uint32_t RESERVED4[64U]; + __IOM uint32_t IP[8U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register */ +} NVIC_Type; + +/*@} end of group CMSIS_NVIC */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCB System Control Block (SCB) + \brief Type definitions for the System Control Block Registers + @{ + */ + +/** + \brief Structure type to access the System Control Block (SCB). + */ +typedef struct +{ + __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */ + __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */ + uint32_t RESERVED0; + __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */ + __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */ + __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */ + uint32_t RESERVED1; + __IOM uint32_t SHP[2U]; /*!< Offset: 0x01C (R/W) System Handlers Priority Registers. [0] is RESERVED */ + __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */ +} SCB_Type; + +/* SCB CPUID Register Definitions */ +#define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */ +#define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */ + +#define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */ +#define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */ + +#define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */ +#define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */ + +#define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */ +#define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */ + +#define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */ +#define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */ +#define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */ + +#define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */ +#define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */ + +#define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */ +#define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */ + +#define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */ +#define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */ + +#define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */ +#define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */ + +#define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */ +#define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */ + +#define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */ +#define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */ + +#define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */ +#define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */ + +#define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */ +#define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */ + +/* SCB Application Interrupt and Reset Control Register Definitions */ +#define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */ +#define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */ + +#define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */ +#define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */ + +#define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */ +#define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */ + +#define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */ +#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */ + +#define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */ +#define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */ + +/* SCB System Control Register Definitions */ +#define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */ +#define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */ + +#define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */ +#define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */ + +#define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */ +#define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */ + +/* SCB Configuration Control Register Definitions */ +#define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */ +#define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */ + +#define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */ +#define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */ + +/* SCB System Handler Control and State Register Definitions */ +#define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */ +#define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */ + +/*@} end of group CMSIS_SCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SysTick System Tick Timer (SysTick) + \brief Type definitions for the System Timer Registers. + @{ + */ + +/** + \brief Structure type to access the System Timer (SysTick). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */ + __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */ + __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ + __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */ +} SysTick_Type; + +/* SysTick Control / Status Register Definitions */ +#define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */ +#define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */ + +#define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */ +#define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */ + +#define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */ +#define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */ + +#define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */ +#define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */ + +/* SysTick Reload Register Definitions */ +#define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */ +#define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */ + +/* SysTick Current Register Definitions */ +#define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ +#define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ + +/* SysTick Calibration Register Definitions */ +#define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */ +#define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */ + +#define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */ +#define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */ + +#define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */ +#define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */ + +/*@} end of group CMSIS_SysTick */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug) + \brief Cortex-M0 Core Debug Registers (DCB registers, SHCSR, and DFSR) are only accessible over DAP and not via processor. + Therefore they are not covered by the Cortex-M0 header file. + @{ + */ +/*@} end of group CMSIS_CoreDebug */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_bitfield Core register bit field macros + \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk). + @{ + */ + +/** + \brief Mask and shift a bit field value for use in a register bit range. + \param[in] field Name of the register bit field. + \param[in] value Value of the bit field. + \return Masked and shifted value. +*/ +#define _VAL2FLD(field, value) ((value << field ## _Pos) & field ## _Msk) + +/** + \brief Mask and shift a register value to extract a bit filed value. + \param[in] field Name of the register bit field. + \param[in] value Value of register. + \return Masked and shifted bit field value. +*/ +#define _FLD2VAL(field, value) ((value & field ## _Msk) >> field ## _Pos) + +/*@} end of group CMSIS_core_bitfield */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_base Core Definitions + \brief Definitions for base addresses, unions, and structures. + @{ + */ + +/* Memory mapping of Cortex-M0 Hardware */ +#define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */ +#define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */ +#define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */ +#define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */ + +#define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */ +#define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */ +#define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */ + + +/*@} */ + + + +/******************************************************************************* + * Hardware Abstraction Layer + Core Function Interface contains: + - Core NVIC Functions + - Core SysTick Functions + - Core Register Access Functions + ******************************************************************************/ +/** + \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference +*/ + + + +/* ########################## NVIC functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_NVICFunctions NVIC Functions + \brief Functions that manage interrupts and exceptions via the NVIC. + @{ + */ + +/* Interrupt Priorities are WORD accessible only under ARMv6M */ +/* The following MACROS handle generation of the register offset and byte masks */ +#define _BIT_SHIFT(IRQn) ( ((((uint32_t)(int32_t)(IRQn)) ) & 0x03UL) * 8UL) +#define _SHP_IDX(IRQn) ( (((((uint32_t)(int32_t)(IRQn)) & 0x0FUL)-8UL) >> 2UL) ) +#define _IP_IDX(IRQn) ( (((uint32_t)(int32_t)(IRQn)) >> 2UL) ) + + +/** + \brief Enable External Interrupt + \details Enables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) +{ + NVIC->ISER[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Disable External Interrupt + \details Disables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn) +{ + NVIC->ICER[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the pending register in the NVIC and returns the pending bit for the specified interrupt. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + */ +__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->ISPR[0U] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of an external interrupt. + \param [in] IRQn Interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ISPR[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of an external interrupt. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ICPR[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Set Interrupt Priority + \details Sets the priority of an interrupt. + \note The priority cannot be set for every core interrupt. + \param [in] IRQn Interrupt number. + \param [in] priority Priority to set. + */ +__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) +{ + if ((int32_t)(IRQn) < 0) + { + SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | + (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); + } + else + { + NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | + (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); + } +} + + +/** + \brief Get Interrupt Priority + \details Reads the priority of an interrupt. + The interrupt number can be positive to specify an external (device specific) interrupt, + or negative to specify an internal (core) interrupt. + \param [in] IRQn Interrupt number. + \return Interrupt Priority. + Value is aligned automatically to the implemented priority bits of the microcontroller. + */ +__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn) +{ + + if ((int32_t)(IRQn) < 0) + { + return((uint32_t)(((SCB->SHP[_SHP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS))); + } + else + { + return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS))); + } +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +__STATIC_INLINE void NVIC_SystemReset(void) +{ + __DSB(); /* Ensure all outstanding memory accesses included + buffered write are completed before reset */ + SCB->AIRCR = ((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + SCB_AIRCR_SYSRESETREQ_Msk); + __DSB(); /* Ensure completion of memory access */ + + for(;;) /* wait until reset */ + { + __NOP(); + } +} + +/*@} end of CMSIS_Core_NVICFunctions */ + + + +/* ################################## SysTick function ############################################ */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_SysTickFunctions SysTick Functions + \brief Functions that configure the System. + @{ + */ + +#if (__Vendor_SysTickConfig == 0U) + +/** + \brief System Tick Configuration + \details Initializes the System Timer and its interrupt, and starts the System Tick Timer. + Counter is in free running mode to generate periodic interrupts. + \param [in] ticks Number of ticks between two interrupts. + \return 0 Function succeeded. + \return 1 Function failed. + \note When the variable __Vendor_SysTickConfig is set to 1, then the + 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) + { + return (1UL); /* Reload value impossible */ + } + + SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ + NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ + SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ + SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | + SysTick_CTRL_TICKINT_Msk | + SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + return (0UL); /* Function successful */ +} + +#endif + +/*@} end of CMSIS_Core_SysTickFunctions */ + + + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM0_H_DEPENDANT */ + +#endif /* __CMSIS_GENERIC */ diff --git a/Testing/Drivers/CMSIS/Include/core_cm0plus.h b/Testing/Drivers/CMSIS/Include/core_cm0plus.h new file mode 100644 index 0000000..b04aa39 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cm0plus.h @@ -0,0 +1,914 @@ +/**************************************************************************//** + * @file core_cm0plus.h + * @brief CMSIS Cortex-M0+ Core Peripheral Access Layer Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CM0PLUS_H_GENERIC +#define __CORE_CM0PLUS_H_GENERIC + +#include + +#ifdef __cplusplus + extern "C" { +#endif + +/** + \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions + CMSIS violates the following MISRA-C:2004 rules: + + \li Required Rule 8.5, object/function definition in header file.
+ Function definitions in header files are used to allow 'inlining'. + + \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.
+ Unions are used for effective representation of core registers. + + \li Advisory Rule 19.7, Function-like macro defined.
+ Function-like macros are used to allow more efficient code. + */ + + +/******************************************************************************* + * CMSIS definitions + ******************************************************************************/ +/** + \ingroup Cortex-M0+ + @{ + */ + +/* CMSIS CM0+ definitions */ +#define __CM0PLUS_CMSIS_VERSION_MAIN (0x04U) /*!< [31:16] CMSIS HAL main version */ +#define __CM0PLUS_CMSIS_VERSION_SUB (0x1EU) /*!< [15:0] CMSIS HAL sub version */ +#define __CM0PLUS_CMSIS_VERSION ((__CM0PLUS_CMSIS_VERSION_MAIN << 16U) | \ + __CM0PLUS_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */ + +#define __CORTEX_M (0x00U) /*!< Cortex-M Core */ + + +#if defined ( __CC_ARM ) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined ( __GNUC__ ) + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __ICCARM__ ) + #define __ASM __asm /*!< asm keyword for IAR Compiler */ + #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ + #define __STATIC_INLINE static inline + +#elif defined ( __TMS470__ ) + #define __ASM __asm /*!< asm keyword for TI CCS Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __TASKING__ ) + #define __ASM __asm /*!< asm keyword for TASKING Compiler */ + #define __INLINE inline /*!< inline keyword for TASKING Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __CSMC__ ) + #define __packed + #define __ASM _asm /*!< asm keyword for COSMIC Compiler */ + #define __INLINE inline /*!< inline keyword for COSMIC Compiler. Use -pc99 on compile line */ + #define __STATIC_INLINE static inline + +#else + #error Unknown compiler +#endif + +/** __FPU_USED indicates whether an FPU is used or not. + This core does not support an FPU at all +*/ +#define __FPU_USED 0U + +#if defined ( __CC_ARM ) + #if defined __TARGET_FPU_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #if defined __ARM_PCS_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __GNUC__ ) + #if defined (__VFP_FP__) && !defined(__SOFTFP__) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __ICCARM__ ) + #if defined __ARMVFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TMS470__ ) + #if defined __TI_VFP_SUPPORT__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TASKING__ ) + #if defined __FPU_VFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __CSMC__ ) + #if ( __CSMC__ & 0x400U) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#endif + +#include "core_cmInstr.h" /* Core Instruction Access */ +#include "core_cmFunc.h" /* Core Function Access */ + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM0PLUS_H_GENERIC */ + +#ifndef __CMSIS_GENERIC + +#ifndef __CORE_CM0PLUS_H_DEPENDANT +#define __CORE_CM0PLUS_H_DEPENDANT + +#ifdef __cplusplus + extern "C" { +#endif + +/* check device defines and use defaults */ +#if defined __CHECK_DEVICE_DEFINES + #ifndef __CM0PLUS_REV + #define __CM0PLUS_REV 0x0000U + #warning "__CM0PLUS_REV not defined in device header file; using default!" + #endif + + #ifndef __MPU_PRESENT + #define __MPU_PRESENT 0U + #warning "__MPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __VTOR_PRESENT + #define __VTOR_PRESENT 0U + #warning "__VTOR_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __NVIC_PRIO_BITS + #define __NVIC_PRIO_BITS 2U + #warning "__NVIC_PRIO_BITS not defined in device header file; using default!" + #endif + + #ifndef __Vendor_SysTickConfig + #define __Vendor_SysTickConfig 0U + #warning "__Vendor_SysTickConfig not defined in device header file; using default!" + #endif +#endif + +/* IO definitions (access restrictions to peripheral registers) */ +/** + \defgroup CMSIS_glob_defs CMSIS Global Defines + + IO Type Qualifiers are used + \li to specify the access to peripheral variables. + \li for automatic generation of peripheral register debug information. +*/ +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +/* following defines should be used for structure members */ +#define __IM volatile const /*! Defines 'read only' structure member permissions */ +#define __OM volatile /*! Defines 'write only' structure member permissions */ +#define __IOM volatile /*! Defines 'read / write' structure member permissions */ + +/*@} end of group Cortex-M0+ */ + + + +/******************************************************************************* + * Register Abstraction + Core Register contain: + - Core Register + - Core NVIC Register + - Core SCB Register + - Core SysTick Register + - Core MPU Register + ******************************************************************************/ +/** + \defgroup CMSIS_core_register Defines and Type Definitions + \brief Type definitions and defines for Cortex-M processor based devices. +*/ + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CORE Status and Control Registers + \brief Core Register type definitions. + @{ + */ + +/** + \brief Union type to access the Application Program Status Register (APSR). + */ +typedef union +{ + struct + { + uint32_t _reserved0:28; /*!< bit: 0..27 Reserved */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} APSR_Type; + +/* APSR Register Definitions */ +#define APSR_N_Pos 31U /*!< APSR: N Position */ +#define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */ + +#define APSR_Z_Pos 30U /*!< APSR: Z Position */ +#define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */ + +#define APSR_C_Pos 29U /*!< APSR: C Position */ +#define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */ + +#define APSR_V_Pos 28U /*!< APSR: V Position */ +#define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */ + + +/** + \brief Union type to access the Interrupt Program Status Register (IPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} IPSR_Type; + +/* IPSR Register Definitions */ +#define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */ +#define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */ + + +/** + \brief Union type to access the Special-Purpose Program Status Registers (xPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:15; /*!< bit: 9..23 Reserved */ + uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */ + uint32_t _reserved1:3; /*!< bit: 25..27 Reserved */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} xPSR_Type; + +/* xPSR Register Definitions */ +#define xPSR_N_Pos 31U /*!< xPSR: N Position */ +#define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */ + +#define xPSR_Z_Pos 30U /*!< xPSR: Z Position */ +#define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */ + +#define xPSR_C_Pos 29U /*!< xPSR: C Position */ +#define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */ + +#define xPSR_V_Pos 28U /*!< xPSR: V Position */ +#define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */ + +#define xPSR_T_Pos 24U /*!< xPSR: T Position */ +#define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */ + +#define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */ +#define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */ + + +/** + \brief Union type to access the Control Registers (CONTROL). + */ +typedef union +{ + struct + { + uint32_t nPRIV:1; /*!< bit: 0 Execution privilege in Thread mode */ + uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */ + uint32_t _reserved1:30; /*!< bit: 2..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} CONTROL_Type; + +/* CONTROL Register Definitions */ +#define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */ +#define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */ + +#define CONTROL_nPRIV_Pos 0U /*!< CONTROL: nPRIV Position */ +#define CONTROL_nPRIV_Msk (1UL /*<< CONTROL_nPRIV_Pos*/) /*!< CONTROL: nPRIV Mask */ + +/*@} end of group CMSIS_CORE */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC) + \brief Type definitions for the NVIC Registers + @{ + */ + +/** + \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC). + */ +typedef struct +{ + __IOM uint32_t ISER[1U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */ + uint32_t RESERVED0[31U]; + __IOM uint32_t ICER[1U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */ + uint32_t RSERVED1[31U]; + __IOM uint32_t ISPR[1U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */ + uint32_t RESERVED2[31U]; + __IOM uint32_t ICPR[1U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */ + uint32_t RESERVED3[31U]; + uint32_t RESERVED4[64U]; + __IOM uint32_t IP[8U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register */ +} NVIC_Type; + +/*@} end of group CMSIS_NVIC */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCB System Control Block (SCB) + \brief Type definitions for the System Control Block Registers + @{ + */ + +/** + \brief Structure type to access the System Control Block (SCB). + */ +typedef struct +{ + __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */ + __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */ +#if (__VTOR_PRESENT == 1U) + __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */ +#else + uint32_t RESERVED0; +#endif + __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */ + __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */ + __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */ + uint32_t RESERVED1; + __IOM uint32_t SHP[2U]; /*!< Offset: 0x01C (R/W) System Handlers Priority Registers. [0] is RESERVED */ + __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */ +} SCB_Type; + +/* SCB CPUID Register Definitions */ +#define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */ +#define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */ + +#define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */ +#define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */ + +#define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */ +#define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */ + +#define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */ +#define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */ + +#define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */ +#define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */ +#define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */ + +#define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */ +#define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */ + +#define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */ +#define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */ + +#define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */ +#define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */ + +#define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */ +#define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */ + +#define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */ +#define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */ + +#define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */ +#define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */ + +#define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */ +#define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */ + +#define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */ +#define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */ + +#if (__VTOR_PRESENT == 1U) +/* SCB Interrupt Control State Register Definitions */ +#define SCB_VTOR_TBLOFF_Pos 8U /*!< SCB VTOR: TBLOFF Position */ +#define SCB_VTOR_TBLOFF_Msk (0xFFFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */ +#endif + +/* SCB Application Interrupt and Reset Control Register Definitions */ +#define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */ +#define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */ + +#define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */ +#define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */ + +#define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */ +#define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */ + +#define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */ +#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */ + +#define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */ +#define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */ + +/* SCB System Control Register Definitions */ +#define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */ +#define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */ + +#define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */ +#define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */ + +#define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */ +#define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */ + +/* SCB Configuration Control Register Definitions */ +#define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */ +#define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */ + +#define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */ +#define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */ + +/* SCB System Handler Control and State Register Definitions */ +#define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */ +#define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */ + +/*@} end of group CMSIS_SCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SysTick System Tick Timer (SysTick) + \brief Type definitions for the System Timer Registers. + @{ + */ + +/** + \brief Structure type to access the System Timer (SysTick). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */ + __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */ + __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ + __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */ +} SysTick_Type; + +/* SysTick Control / Status Register Definitions */ +#define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */ +#define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */ + +#define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */ +#define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */ + +#define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */ +#define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */ + +#define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */ +#define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */ + +/* SysTick Reload Register Definitions */ +#define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */ +#define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */ + +/* SysTick Current Register Definitions */ +#define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ +#define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ + +/* SysTick Calibration Register Definitions */ +#define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */ +#define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */ + +#define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */ +#define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */ + +#define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */ +#define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */ + +/*@} end of group CMSIS_SysTick */ + +#if (__MPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_MPU Memory Protection Unit (MPU) + \brief Type definitions for the Memory Protection Unit (MPU) + @{ + */ + +/** + \brief Structure type to access the Memory Protection Unit (MPU). + */ +typedef struct +{ + __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */ + __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */ + __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region RNRber Register */ + __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */ + __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */ +} MPU_Type; + +/* MPU Type Register Definitions */ +#define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */ +#define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */ + +#define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */ +#define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */ + +#define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */ +#define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */ + +/* MPU Control Register Definitions */ +#define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */ +#define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */ + +#define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */ +#define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */ + +#define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */ +#define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */ + +/* MPU Region Number Register Definitions */ +#define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */ +#define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */ + +/* MPU Region Base Address Register Definitions */ +#define MPU_RBAR_ADDR_Pos 8U /*!< MPU RBAR: ADDR Position */ +#define MPU_RBAR_ADDR_Msk (0xFFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */ + +#define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */ +#define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */ + +#define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */ +#define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */ + +/* MPU Region Attribute and Size Register Definitions */ +#define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */ +#define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */ + +#define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */ +#define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */ + +#define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */ +#define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */ + +#define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */ +#define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */ + +#define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */ +#define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */ + +#define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */ +#define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */ + +#define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */ +#define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */ + +#define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */ +#define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */ + +#define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */ +#define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */ + +#define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */ +#define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */ + +/*@} end of group CMSIS_MPU */ +#endif + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug) + \brief Cortex-M0+ Core Debug Registers (DCB registers, SHCSR, and DFSR) are only accessible over DAP and not via processor. + Therefore they are not covered by the Cortex-M0+ header file. + @{ + */ +/*@} end of group CMSIS_CoreDebug */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_bitfield Core register bit field macros + \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk). + @{ + */ + +/** + \brief Mask and shift a bit field value for use in a register bit range. + \param[in] field Name of the register bit field. + \param[in] value Value of the bit field. + \return Masked and shifted value. +*/ +#define _VAL2FLD(field, value) ((value << field ## _Pos) & field ## _Msk) + +/** + \brief Mask and shift a register value to extract a bit filed value. + \param[in] field Name of the register bit field. + \param[in] value Value of register. + \return Masked and shifted bit field value. +*/ +#define _FLD2VAL(field, value) ((value & field ## _Msk) >> field ## _Pos) + +/*@} end of group CMSIS_core_bitfield */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_base Core Definitions + \brief Definitions for base addresses, unions, and structures. + @{ + */ + +/* Memory mapping of Cortex-M0+ Hardware */ +#define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */ +#define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */ +#define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */ +#define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */ + +#define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */ +#define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */ +#define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */ + +#if (__MPU_PRESENT == 1U) + #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */ + #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */ +#endif + +/*@} */ + + + +/******************************************************************************* + * Hardware Abstraction Layer + Core Function Interface contains: + - Core NVIC Functions + - Core SysTick Functions + - Core Register Access Functions + ******************************************************************************/ +/** + \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference +*/ + + + +/* ########################## NVIC functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_NVICFunctions NVIC Functions + \brief Functions that manage interrupts and exceptions via the NVIC. + @{ + */ + +/* Interrupt Priorities are WORD accessible only under ARMv6M */ +/* The following MACROS handle generation of the register offset and byte masks */ +#define _BIT_SHIFT(IRQn) ( ((((uint32_t)(int32_t)(IRQn)) ) & 0x03UL) * 8UL) +#define _SHP_IDX(IRQn) ( (((((uint32_t)(int32_t)(IRQn)) & 0x0FUL)-8UL) >> 2UL) ) +#define _IP_IDX(IRQn) ( (((uint32_t)(int32_t)(IRQn)) >> 2UL) ) + + +/** + \brief Enable External Interrupt + \details Enables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) +{ + NVIC->ISER[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Disable External Interrupt + \details Disables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn) +{ + NVIC->ICER[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the pending register in the NVIC and returns the pending bit for the specified interrupt. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + */ +__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->ISPR[0U] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of an external interrupt. + \param [in] IRQn Interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ISPR[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of an external interrupt. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ICPR[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Set Interrupt Priority + \details Sets the priority of an interrupt. + \note The priority cannot be set for every core interrupt. + \param [in] IRQn Interrupt number. + \param [in] priority Priority to set. + */ +__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) +{ + if ((int32_t)(IRQn) < 0) + { + SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | + (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); + } + else + { + NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | + (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); + } +} + + +/** + \brief Get Interrupt Priority + \details Reads the priority of an interrupt. + The interrupt number can be positive to specify an external (device specific) interrupt, + or negative to specify an internal (core) interrupt. + \param [in] IRQn Interrupt number. + \return Interrupt Priority. + Value is aligned automatically to the implemented priority bits of the microcontroller. + */ +__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn) +{ + + if ((int32_t)(IRQn) < 0) + { + return((uint32_t)(((SCB->SHP[_SHP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS))); + } + else + { + return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS))); + } +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +__STATIC_INLINE void NVIC_SystemReset(void) +{ + __DSB(); /* Ensure all outstanding memory accesses included + buffered write are completed before reset */ + SCB->AIRCR = ((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + SCB_AIRCR_SYSRESETREQ_Msk); + __DSB(); /* Ensure completion of memory access */ + + for(;;) /* wait until reset */ + { + __NOP(); + } +} + +/*@} end of CMSIS_Core_NVICFunctions */ + + + +/* ################################## SysTick function ############################################ */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_SysTickFunctions SysTick Functions + \brief Functions that configure the System. + @{ + */ + +#if (__Vendor_SysTickConfig == 0U) + +/** + \brief System Tick Configuration + \details Initializes the System Timer and its interrupt, and starts the System Tick Timer. + Counter is in free running mode to generate periodic interrupts. + \param [in] ticks Number of ticks between two interrupts. + \return 0 Function succeeded. + \return 1 Function failed. + \note When the variable __Vendor_SysTickConfig is set to 1, then the + 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) + { + return (1UL); /* Reload value impossible */ + } + + SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ + NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ + SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ + SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | + SysTick_CTRL_TICKINT_Msk | + SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + return (0UL); /* Function successful */ +} + +#endif + +/*@} end of CMSIS_Core_SysTickFunctions */ + + + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM0PLUS_H_DEPENDANT */ + +#endif /* __CMSIS_GENERIC */ diff --git a/Testing/Drivers/CMSIS/Include/core_cm3.h b/Testing/Drivers/CMSIS/Include/core_cm3.h new file mode 100644 index 0000000..b4ac4c7 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cm3.h @@ -0,0 +1,1763 @@ +/**************************************************************************//** + * @file core_cm3.h + * @brief CMSIS Cortex-M3 Core Peripheral Access Layer Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CM3_H_GENERIC +#define __CORE_CM3_H_GENERIC + +#include + +#ifdef __cplusplus + extern "C" { +#endif + +/** + \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions + CMSIS violates the following MISRA-C:2004 rules: + + \li Required Rule 8.5, object/function definition in header file.
+ Function definitions in header files are used to allow 'inlining'. + + \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.
+ Unions are used for effective representation of core registers. + + \li Advisory Rule 19.7, Function-like macro defined.
+ Function-like macros are used to allow more efficient code. + */ + + +/******************************************************************************* + * CMSIS definitions + ******************************************************************************/ +/** + \ingroup Cortex_M3 + @{ + */ + +/* CMSIS CM3 definitions */ +#define __CM3_CMSIS_VERSION_MAIN (0x04U) /*!< [31:16] CMSIS HAL main version */ +#define __CM3_CMSIS_VERSION_SUB (0x1EU) /*!< [15:0] CMSIS HAL sub version */ +#define __CM3_CMSIS_VERSION ((__CM3_CMSIS_VERSION_MAIN << 16U) | \ + __CM3_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */ + +#define __CORTEX_M (0x03U) /*!< Cortex-M Core */ + + +#if defined ( __CC_ARM ) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined ( __GNUC__ ) + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __ICCARM__ ) + #define __ASM __asm /*!< asm keyword for IAR Compiler */ + #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ + #define __STATIC_INLINE static inline + +#elif defined ( __TMS470__ ) + #define __ASM __asm /*!< asm keyword for TI CCS Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __TASKING__ ) + #define __ASM __asm /*!< asm keyword for TASKING Compiler */ + #define __INLINE inline /*!< inline keyword for TASKING Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __CSMC__ ) + #define __packed + #define __ASM _asm /*!< asm keyword for COSMIC Compiler */ + #define __INLINE inline /*!< inline keyword for COSMIC Compiler. Use -pc99 on compile line */ + #define __STATIC_INLINE static inline + +#else + #error Unknown compiler +#endif + +/** __FPU_USED indicates whether an FPU is used or not. + This core does not support an FPU at all +*/ +#define __FPU_USED 0U + +#if defined ( __CC_ARM ) + #if defined __TARGET_FPU_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #if defined __ARM_PCS_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __GNUC__ ) + #if defined (__VFP_FP__) && !defined(__SOFTFP__) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __ICCARM__ ) + #if defined __ARMVFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TMS470__ ) + #if defined __TI_VFP_SUPPORT__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TASKING__ ) + #if defined __FPU_VFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __CSMC__ ) + #if ( __CSMC__ & 0x400U) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#endif + +#include "core_cmInstr.h" /* Core Instruction Access */ +#include "core_cmFunc.h" /* Core Function Access */ + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM3_H_GENERIC */ + +#ifndef __CMSIS_GENERIC + +#ifndef __CORE_CM3_H_DEPENDANT +#define __CORE_CM3_H_DEPENDANT + +#ifdef __cplusplus + extern "C" { +#endif + +/* check device defines and use defaults */ +#if defined __CHECK_DEVICE_DEFINES + #ifndef __CM3_REV + #define __CM3_REV 0x0200U + #warning "__CM3_REV not defined in device header file; using default!" + #endif + + #ifndef __MPU_PRESENT + #define __MPU_PRESENT 0U + #warning "__MPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __NVIC_PRIO_BITS + #define __NVIC_PRIO_BITS 4U + #warning "__NVIC_PRIO_BITS not defined in device header file; using default!" + #endif + + #ifndef __Vendor_SysTickConfig + #define __Vendor_SysTickConfig 0U + #warning "__Vendor_SysTickConfig not defined in device header file; using default!" + #endif +#endif + +/* IO definitions (access restrictions to peripheral registers) */ +/** + \defgroup CMSIS_glob_defs CMSIS Global Defines + + IO Type Qualifiers are used + \li to specify the access to peripheral variables. + \li for automatic generation of peripheral register debug information. +*/ +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +/* following defines should be used for structure members */ +#define __IM volatile const /*! Defines 'read only' structure member permissions */ +#define __OM volatile /*! Defines 'write only' structure member permissions */ +#define __IOM volatile /*! Defines 'read / write' structure member permissions */ + +/*@} end of group Cortex_M3 */ + + + +/******************************************************************************* + * Register Abstraction + Core Register contain: + - Core Register + - Core NVIC Register + - Core SCB Register + - Core SysTick Register + - Core Debug Register + - Core MPU Register + ******************************************************************************/ +/** + \defgroup CMSIS_core_register Defines and Type Definitions + \brief Type definitions and defines for Cortex-M processor based devices. +*/ + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CORE Status and Control Registers + \brief Core Register type definitions. + @{ + */ + +/** + \brief Union type to access the Application Program Status Register (APSR). + */ +typedef union +{ + struct + { + uint32_t _reserved0:27; /*!< bit: 0..26 Reserved */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} APSR_Type; + +/* APSR Register Definitions */ +#define APSR_N_Pos 31U /*!< APSR: N Position */ +#define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */ + +#define APSR_Z_Pos 30U /*!< APSR: Z Position */ +#define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */ + +#define APSR_C_Pos 29U /*!< APSR: C Position */ +#define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */ + +#define APSR_V_Pos 28U /*!< APSR: V Position */ +#define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */ + +#define APSR_Q_Pos 27U /*!< APSR: Q Position */ +#define APSR_Q_Msk (1UL << APSR_Q_Pos) /*!< APSR: Q Mask */ + + +/** + \brief Union type to access the Interrupt Program Status Register (IPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} IPSR_Type; + +/* IPSR Register Definitions */ +#define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */ +#define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */ + + +/** + \brief Union type to access the Special-Purpose Program Status Registers (xPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:15; /*!< bit: 9..23 Reserved */ + uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */ + uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} xPSR_Type; + +/* xPSR Register Definitions */ +#define xPSR_N_Pos 31U /*!< xPSR: N Position */ +#define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */ + +#define xPSR_Z_Pos 30U /*!< xPSR: Z Position */ +#define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */ + +#define xPSR_C_Pos 29U /*!< xPSR: C Position */ +#define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */ + +#define xPSR_V_Pos 28U /*!< xPSR: V Position */ +#define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */ + +#define xPSR_Q_Pos 27U /*!< xPSR: Q Position */ +#define xPSR_Q_Msk (1UL << xPSR_Q_Pos) /*!< xPSR: Q Mask */ + +#define xPSR_IT_Pos 25U /*!< xPSR: IT Position */ +#define xPSR_IT_Msk (3UL << xPSR_IT_Pos) /*!< xPSR: IT Mask */ + +#define xPSR_T_Pos 24U /*!< xPSR: T Position */ +#define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */ + +#define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */ +#define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */ + + +/** + \brief Union type to access the Control Registers (CONTROL). + */ +typedef union +{ + struct + { + uint32_t nPRIV:1; /*!< bit: 0 Execution privilege in Thread mode */ + uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */ + uint32_t _reserved1:30; /*!< bit: 2..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} CONTROL_Type; + +/* CONTROL Register Definitions */ +#define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */ +#define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */ + +#define CONTROL_nPRIV_Pos 0U /*!< CONTROL: nPRIV Position */ +#define CONTROL_nPRIV_Msk (1UL /*<< CONTROL_nPRIV_Pos*/) /*!< CONTROL: nPRIV Mask */ + +/*@} end of group CMSIS_CORE */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC) + \brief Type definitions for the NVIC Registers + @{ + */ + +/** + \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC). + */ +typedef struct +{ + __IOM uint32_t ISER[8U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */ + uint32_t RESERVED0[24U]; + __IOM uint32_t ICER[8U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */ + uint32_t RSERVED1[24U]; + __IOM uint32_t ISPR[8U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */ + uint32_t RESERVED2[24U]; + __IOM uint32_t ICPR[8U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */ + uint32_t RESERVED3[24U]; + __IOM uint32_t IABR[8U]; /*!< Offset: 0x200 (R/W) Interrupt Active bit Register */ + uint32_t RESERVED4[56U]; + __IOM uint8_t IP[240U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register (8Bit wide) */ + uint32_t RESERVED5[644U]; + __OM uint32_t STIR; /*!< Offset: 0xE00 ( /W) Software Trigger Interrupt Register */ +} NVIC_Type; + +/* Software Triggered Interrupt Register Definitions */ +#define NVIC_STIR_INTID_Pos 0U /*!< STIR: INTLINESNUM Position */ +#define NVIC_STIR_INTID_Msk (0x1FFUL /*<< NVIC_STIR_INTID_Pos*/) /*!< STIR: INTLINESNUM Mask */ + +/*@} end of group CMSIS_NVIC */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCB System Control Block (SCB) + \brief Type definitions for the System Control Block Registers + @{ + */ + +/** + \brief Structure type to access the System Control Block (SCB). + */ +typedef struct +{ + __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */ + __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */ + __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */ + __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */ + __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */ + __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */ + __IOM uint8_t SHP[12U]; /*!< Offset: 0x018 (R/W) System Handlers Priority Registers (4-7, 8-11, 12-15) */ + __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */ + __IOM uint32_t CFSR; /*!< Offset: 0x028 (R/W) Configurable Fault Status Register */ + __IOM uint32_t HFSR; /*!< Offset: 0x02C (R/W) HardFault Status Register */ + __IOM uint32_t DFSR; /*!< Offset: 0x030 (R/W) Debug Fault Status Register */ + __IOM uint32_t MMFAR; /*!< Offset: 0x034 (R/W) MemManage Fault Address Register */ + __IOM uint32_t BFAR; /*!< Offset: 0x038 (R/W) BusFault Address Register */ + __IOM uint32_t AFSR; /*!< Offset: 0x03C (R/W) Auxiliary Fault Status Register */ + __IM uint32_t PFR[2U]; /*!< Offset: 0x040 (R/ ) Processor Feature Register */ + __IM uint32_t DFR; /*!< Offset: 0x048 (R/ ) Debug Feature Register */ + __IM uint32_t ADR; /*!< Offset: 0x04C (R/ ) Auxiliary Feature Register */ + __IM uint32_t MMFR[4U]; /*!< Offset: 0x050 (R/ ) Memory Model Feature Register */ + __IM uint32_t ISAR[5U]; /*!< Offset: 0x060 (R/ ) Instruction Set Attributes Register */ + uint32_t RESERVED0[5U]; + __IOM uint32_t CPACR; /*!< Offset: 0x088 (R/W) Coprocessor Access Control Register */ +} SCB_Type; + +/* SCB CPUID Register Definitions */ +#define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */ +#define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */ + +#define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */ +#define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */ + +#define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */ +#define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */ + +#define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */ +#define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */ + +#define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */ +#define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */ +#define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */ + +#define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */ +#define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */ + +#define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */ +#define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */ + +#define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */ +#define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */ + +#define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */ +#define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */ + +#define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */ +#define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */ + +#define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */ +#define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */ + +#define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */ +#define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */ + +#define SCB_ICSR_RETTOBASE_Pos 11U /*!< SCB ICSR: RETTOBASE Position */ +#define SCB_ICSR_RETTOBASE_Msk (1UL << SCB_ICSR_RETTOBASE_Pos) /*!< SCB ICSR: RETTOBASE Mask */ + +#define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */ +#define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */ + +/* SCB Vector Table Offset Register Definitions */ +#if (__CM3_REV < 0x0201U) /* core r2p1 */ +#define SCB_VTOR_TBLBASE_Pos 29U /*!< SCB VTOR: TBLBASE Position */ +#define SCB_VTOR_TBLBASE_Msk (1UL << SCB_VTOR_TBLBASE_Pos) /*!< SCB VTOR: TBLBASE Mask */ + +#define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB VTOR: TBLOFF Position */ +#define SCB_VTOR_TBLOFF_Msk (0x3FFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */ +#else +#define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB VTOR: TBLOFF Position */ +#define SCB_VTOR_TBLOFF_Msk (0x1FFFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */ +#endif + +/* SCB Application Interrupt and Reset Control Register Definitions */ +#define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */ +#define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */ + +#define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */ +#define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */ + +#define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */ +#define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */ + +#define SCB_AIRCR_PRIGROUP_Pos 8U /*!< SCB AIRCR: PRIGROUP Position */ +#define SCB_AIRCR_PRIGROUP_Msk (7UL << SCB_AIRCR_PRIGROUP_Pos) /*!< SCB AIRCR: PRIGROUP Mask */ + +#define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */ +#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */ + +#define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */ +#define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */ + +#define SCB_AIRCR_VECTRESET_Pos 0U /*!< SCB AIRCR: VECTRESET Position */ +#define SCB_AIRCR_VECTRESET_Msk (1UL /*<< SCB_AIRCR_VECTRESET_Pos*/) /*!< SCB AIRCR: VECTRESET Mask */ + +/* SCB System Control Register Definitions */ +#define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */ +#define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */ + +#define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */ +#define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */ + +#define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */ +#define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */ + +/* SCB Configuration Control Register Definitions */ +#define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */ +#define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */ + +#define SCB_CCR_BFHFNMIGN_Pos 8U /*!< SCB CCR: BFHFNMIGN Position */ +#define SCB_CCR_BFHFNMIGN_Msk (1UL << SCB_CCR_BFHFNMIGN_Pos) /*!< SCB CCR: BFHFNMIGN Mask */ + +#define SCB_CCR_DIV_0_TRP_Pos 4U /*!< SCB CCR: DIV_0_TRP Position */ +#define SCB_CCR_DIV_0_TRP_Msk (1UL << SCB_CCR_DIV_0_TRP_Pos) /*!< SCB CCR: DIV_0_TRP Mask */ + +#define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */ +#define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */ + +#define SCB_CCR_USERSETMPEND_Pos 1U /*!< SCB CCR: USERSETMPEND Position */ +#define SCB_CCR_USERSETMPEND_Msk (1UL << SCB_CCR_USERSETMPEND_Pos) /*!< SCB CCR: USERSETMPEND Mask */ + +#define SCB_CCR_NONBASETHRDENA_Pos 0U /*!< SCB CCR: NONBASETHRDENA Position */ +#define SCB_CCR_NONBASETHRDENA_Msk (1UL /*<< SCB_CCR_NONBASETHRDENA_Pos*/) /*!< SCB CCR: NONBASETHRDENA Mask */ + +/* SCB System Handler Control and State Register Definitions */ +#define SCB_SHCSR_USGFAULTENA_Pos 18U /*!< SCB SHCSR: USGFAULTENA Position */ +#define SCB_SHCSR_USGFAULTENA_Msk (1UL << SCB_SHCSR_USGFAULTENA_Pos) /*!< SCB SHCSR: USGFAULTENA Mask */ + +#define SCB_SHCSR_BUSFAULTENA_Pos 17U /*!< SCB SHCSR: BUSFAULTENA Position */ +#define SCB_SHCSR_BUSFAULTENA_Msk (1UL << SCB_SHCSR_BUSFAULTENA_Pos) /*!< SCB SHCSR: BUSFAULTENA Mask */ + +#define SCB_SHCSR_MEMFAULTENA_Pos 16U /*!< SCB SHCSR: MEMFAULTENA Position */ +#define SCB_SHCSR_MEMFAULTENA_Msk (1UL << SCB_SHCSR_MEMFAULTENA_Pos) /*!< SCB SHCSR: MEMFAULTENA Mask */ + +#define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */ +#define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */ + +#define SCB_SHCSR_BUSFAULTPENDED_Pos 14U /*!< SCB SHCSR: BUSFAULTPENDED Position */ +#define SCB_SHCSR_BUSFAULTPENDED_Msk (1UL << SCB_SHCSR_BUSFAULTPENDED_Pos) /*!< SCB SHCSR: BUSFAULTPENDED Mask */ + +#define SCB_SHCSR_MEMFAULTPENDED_Pos 13U /*!< SCB SHCSR: MEMFAULTPENDED Position */ +#define SCB_SHCSR_MEMFAULTPENDED_Msk (1UL << SCB_SHCSR_MEMFAULTPENDED_Pos) /*!< SCB SHCSR: MEMFAULTPENDED Mask */ + +#define SCB_SHCSR_USGFAULTPENDED_Pos 12U /*!< SCB SHCSR: USGFAULTPENDED Position */ +#define SCB_SHCSR_USGFAULTPENDED_Msk (1UL << SCB_SHCSR_USGFAULTPENDED_Pos) /*!< SCB SHCSR: USGFAULTPENDED Mask */ + +#define SCB_SHCSR_SYSTICKACT_Pos 11U /*!< SCB SHCSR: SYSTICKACT Position */ +#define SCB_SHCSR_SYSTICKACT_Msk (1UL << SCB_SHCSR_SYSTICKACT_Pos) /*!< SCB SHCSR: SYSTICKACT Mask */ + +#define SCB_SHCSR_PENDSVACT_Pos 10U /*!< SCB SHCSR: PENDSVACT Position */ +#define SCB_SHCSR_PENDSVACT_Msk (1UL << SCB_SHCSR_PENDSVACT_Pos) /*!< SCB SHCSR: PENDSVACT Mask */ + +#define SCB_SHCSR_MONITORACT_Pos 8U /*!< SCB SHCSR: MONITORACT Position */ +#define SCB_SHCSR_MONITORACT_Msk (1UL << SCB_SHCSR_MONITORACT_Pos) /*!< SCB SHCSR: MONITORACT Mask */ + +#define SCB_SHCSR_SVCALLACT_Pos 7U /*!< SCB SHCSR: SVCALLACT Position */ +#define SCB_SHCSR_SVCALLACT_Msk (1UL << SCB_SHCSR_SVCALLACT_Pos) /*!< SCB SHCSR: SVCALLACT Mask */ + +#define SCB_SHCSR_USGFAULTACT_Pos 3U /*!< SCB SHCSR: USGFAULTACT Position */ +#define SCB_SHCSR_USGFAULTACT_Msk (1UL << SCB_SHCSR_USGFAULTACT_Pos) /*!< SCB SHCSR: USGFAULTACT Mask */ + +#define SCB_SHCSR_BUSFAULTACT_Pos 1U /*!< SCB SHCSR: BUSFAULTACT Position */ +#define SCB_SHCSR_BUSFAULTACT_Msk (1UL << SCB_SHCSR_BUSFAULTACT_Pos) /*!< SCB SHCSR: BUSFAULTACT Mask */ + +#define SCB_SHCSR_MEMFAULTACT_Pos 0U /*!< SCB SHCSR: MEMFAULTACT Position */ +#define SCB_SHCSR_MEMFAULTACT_Msk (1UL /*<< SCB_SHCSR_MEMFAULTACT_Pos*/) /*!< SCB SHCSR: MEMFAULTACT Mask */ + +/* SCB Configurable Fault Status Register Definitions */ +#define SCB_CFSR_USGFAULTSR_Pos 16U /*!< SCB CFSR: Usage Fault Status Register Position */ +#define SCB_CFSR_USGFAULTSR_Msk (0xFFFFUL << SCB_CFSR_USGFAULTSR_Pos) /*!< SCB CFSR: Usage Fault Status Register Mask */ + +#define SCB_CFSR_BUSFAULTSR_Pos 8U /*!< SCB CFSR: Bus Fault Status Register Position */ +#define SCB_CFSR_BUSFAULTSR_Msk (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos) /*!< SCB CFSR: Bus Fault Status Register Mask */ + +#define SCB_CFSR_MEMFAULTSR_Pos 0U /*!< SCB CFSR: Memory Manage Fault Status Register Position */ +#define SCB_CFSR_MEMFAULTSR_Msk (0xFFUL /*<< SCB_CFSR_MEMFAULTSR_Pos*/) /*!< SCB CFSR: Memory Manage Fault Status Register Mask */ + +/* SCB Hard Fault Status Register Definitions */ +#define SCB_HFSR_DEBUGEVT_Pos 31U /*!< SCB HFSR: DEBUGEVT Position */ +#define SCB_HFSR_DEBUGEVT_Msk (1UL << SCB_HFSR_DEBUGEVT_Pos) /*!< SCB HFSR: DEBUGEVT Mask */ + +#define SCB_HFSR_FORCED_Pos 30U /*!< SCB HFSR: FORCED Position */ +#define SCB_HFSR_FORCED_Msk (1UL << SCB_HFSR_FORCED_Pos) /*!< SCB HFSR: FORCED Mask */ + +#define SCB_HFSR_VECTTBL_Pos 1U /*!< SCB HFSR: VECTTBL Position */ +#define SCB_HFSR_VECTTBL_Msk (1UL << SCB_HFSR_VECTTBL_Pos) /*!< SCB HFSR: VECTTBL Mask */ + +/* SCB Debug Fault Status Register Definitions */ +#define SCB_DFSR_EXTERNAL_Pos 4U /*!< SCB DFSR: EXTERNAL Position */ +#define SCB_DFSR_EXTERNAL_Msk (1UL << SCB_DFSR_EXTERNAL_Pos) /*!< SCB DFSR: EXTERNAL Mask */ + +#define SCB_DFSR_VCATCH_Pos 3U /*!< SCB DFSR: VCATCH Position */ +#define SCB_DFSR_VCATCH_Msk (1UL << SCB_DFSR_VCATCH_Pos) /*!< SCB DFSR: VCATCH Mask */ + +#define SCB_DFSR_DWTTRAP_Pos 2U /*!< SCB DFSR: DWTTRAP Position */ +#define SCB_DFSR_DWTTRAP_Msk (1UL << SCB_DFSR_DWTTRAP_Pos) /*!< SCB DFSR: DWTTRAP Mask */ + +#define SCB_DFSR_BKPT_Pos 1U /*!< SCB DFSR: BKPT Position */ +#define SCB_DFSR_BKPT_Msk (1UL << SCB_DFSR_BKPT_Pos) /*!< SCB DFSR: BKPT Mask */ + +#define SCB_DFSR_HALTED_Pos 0U /*!< SCB DFSR: HALTED Position */ +#define SCB_DFSR_HALTED_Msk (1UL /*<< SCB_DFSR_HALTED_Pos*/) /*!< SCB DFSR: HALTED Mask */ + +/*@} end of group CMSIS_SCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCnSCB System Controls not in SCB (SCnSCB) + \brief Type definitions for the System Control and ID Register not in the SCB + @{ + */ + +/** + \brief Structure type to access the System Control and ID Register not in the SCB. + */ +typedef struct +{ + uint32_t RESERVED0[1U]; + __IM uint32_t ICTR; /*!< Offset: 0x004 (R/ ) Interrupt Controller Type Register */ +#if ((defined __CM3_REV) && (__CM3_REV >= 0x200U)) + __IOM uint32_t ACTLR; /*!< Offset: 0x008 (R/W) Auxiliary Control Register */ +#else + uint32_t RESERVED1[1U]; +#endif +} SCnSCB_Type; + +/* Interrupt Controller Type Register Definitions */ +#define SCnSCB_ICTR_INTLINESNUM_Pos 0U /*!< ICTR: INTLINESNUM Position */ +#define SCnSCB_ICTR_INTLINESNUM_Msk (0xFUL /*<< SCnSCB_ICTR_INTLINESNUM_Pos*/) /*!< ICTR: INTLINESNUM Mask */ + +/* Auxiliary Control Register Definitions */ + +#define SCnSCB_ACTLR_DISFOLD_Pos 2U /*!< ACTLR: DISFOLD Position */ +#define SCnSCB_ACTLR_DISFOLD_Msk (1UL << SCnSCB_ACTLR_DISFOLD_Pos) /*!< ACTLR: DISFOLD Mask */ + +#define SCnSCB_ACTLR_DISDEFWBUF_Pos 1U /*!< ACTLR: DISDEFWBUF Position */ +#define SCnSCB_ACTLR_DISDEFWBUF_Msk (1UL << SCnSCB_ACTLR_DISDEFWBUF_Pos) /*!< ACTLR: DISDEFWBUF Mask */ + +#define SCnSCB_ACTLR_DISMCYCINT_Pos 0U /*!< ACTLR: DISMCYCINT Position */ +#define SCnSCB_ACTLR_DISMCYCINT_Msk (1UL /*<< SCnSCB_ACTLR_DISMCYCINT_Pos*/) /*!< ACTLR: DISMCYCINT Mask */ + +/*@} end of group CMSIS_SCnotSCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SysTick System Tick Timer (SysTick) + \brief Type definitions for the System Timer Registers. + @{ + */ + +/** + \brief Structure type to access the System Timer (SysTick). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */ + __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */ + __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ + __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */ +} SysTick_Type; + +/* SysTick Control / Status Register Definitions */ +#define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */ +#define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */ + +#define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */ +#define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */ + +#define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */ +#define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */ + +#define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */ +#define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */ + +/* SysTick Reload Register Definitions */ +#define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */ +#define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */ + +/* SysTick Current Register Definitions */ +#define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ +#define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ + +/* SysTick Calibration Register Definitions */ +#define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */ +#define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */ + +#define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */ +#define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */ + +#define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */ +#define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */ + +/*@} end of group CMSIS_SysTick */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_ITM Instrumentation Trace Macrocell (ITM) + \brief Type definitions for the Instrumentation Trace Macrocell (ITM) + @{ + */ + +/** + \brief Structure type to access the Instrumentation Trace Macrocell Register (ITM). + */ +typedef struct +{ + __OM union + { + __OM uint8_t u8; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 8-bit */ + __OM uint16_t u16; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 16-bit */ + __OM uint32_t u32; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 32-bit */ + } PORT [32U]; /*!< Offset: 0x000 ( /W) ITM Stimulus Port Registers */ + uint32_t RESERVED0[864U]; + __IOM uint32_t TER; /*!< Offset: 0xE00 (R/W) ITM Trace Enable Register */ + uint32_t RESERVED1[15U]; + __IOM uint32_t TPR; /*!< Offset: 0xE40 (R/W) ITM Trace Privilege Register */ + uint32_t RESERVED2[15U]; + __IOM uint32_t TCR; /*!< Offset: 0xE80 (R/W) ITM Trace Control Register */ + uint32_t RESERVED3[29U]; + __OM uint32_t IWR; /*!< Offset: 0xEF8 ( /W) ITM Integration Write Register */ + __IM uint32_t IRR; /*!< Offset: 0xEFC (R/ ) ITM Integration Read Register */ + __IOM uint32_t IMCR; /*!< Offset: 0xF00 (R/W) ITM Integration Mode Control Register */ + uint32_t RESERVED4[43U]; + __OM uint32_t LAR; /*!< Offset: 0xFB0 ( /W) ITM Lock Access Register */ + __IM uint32_t LSR; /*!< Offset: 0xFB4 (R/ ) ITM Lock Status Register */ + uint32_t RESERVED5[6U]; + __IM uint32_t PID4; /*!< Offset: 0xFD0 (R/ ) ITM Peripheral Identification Register #4 */ + __IM uint32_t PID5; /*!< Offset: 0xFD4 (R/ ) ITM Peripheral Identification Register #5 */ + __IM uint32_t PID6; /*!< Offset: 0xFD8 (R/ ) ITM Peripheral Identification Register #6 */ + __IM uint32_t PID7; /*!< Offset: 0xFDC (R/ ) ITM Peripheral Identification Register #7 */ + __IM uint32_t PID0; /*!< Offset: 0xFE0 (R/ ) ITM Peripheral Identification Register #0 */ + __IM uint32_t PID1; /*!< Offset: 0xFE4 (R/ ) ITM Peripheral Identification Register #1 */ + __IM uint32_t PID2; /*!< Offset: 0xFE8 (R/ ) ITM Peripheral Identification Register #2 */ + __IM uint32_t PID3; /*!< Offset: 0xFEC (R/ ) ITM Peripheral Identification Register #3 */ + __IM uint32_t CID0; /*!< Offset: 0xFF0 (R/ ) ITM Component Identification Register #0 */ + __IM uint32_t CID1; /*!< Offset: 0xFF4 (R/ ) ITM Component Identification Register #1 */ + __IM uint32_t CID2; /*!< Offset: 0xFF8 (R/ ) ITM Component Identification Register #2 */ + __IM uint32_t CID3; /*!< Offset: 0xFFC (R/ ) ITM Component Identification Register #3 */ +} ITM_Type; + +/* ITM Trace Privilege Register Definitions */ +#define ITM_TPR_PRIVMASK_Pos 0U /*!< ITM TPR: PRIVMASK Position */ +#define ITM_TPR_PRIVMASK_Msk (0xFUL /*<< ITM_TPR_PRIVMASK_Pos*/) /*!< ITM TPR: PRIVMASK Mask */ + +/* ITM Trace Control Register Definitions */ +#define ITM_TCR_BUSY_Pos 23U /*!< ITM TCR: BUSY Position */ +#define ITM_TCR_BUSY_Msk (1UL << ITM_TCR_BUSY_Pos) /*!< ITM TCR: BUSY Mask */ + +#define ITM_TCR_TraceBusID_Pos 16U /*!< ITM TCR: ATBID Position */ +#define ITM_TCR_TraceBusID_Msk (0x7FUL << ITM_TCR_TraceBusID_Pos) /*!< ITM TCR: ATBID Mask */ + +#define ITM_TCR_GTSFREQ_Pos 10U /*!< ITM TCR: Global timestamp frequency Position */ +#define ITM_TCR_GTSFREQ_Msk (3UL << ITM_TCR_GTSFREQ_Pos) /*!< ITM TCR: Global timestamp frequency Mask */ + +#define ITM_TCR_TSPrescale_Pos 8U /*!< ITM TCR: TSPrescale Position */ +#define ITM_TCR_TSPrescale_Msk (3UL << ITM_TCR_TSPrescale_Pos) /*!< ITM TCR: TSPrescale Mask */ + +#define ITM_TCR_SWOENA_Pos 4U /*!< ITM TCR: SWOENA Position */ +#define ITM_TCR_SWOENA_Msk (1UL << ITM_TCR_SWOENA_Pos) /*!< ITM TCR: SWOENA Mask */ + +#define ITM_TCR_DWTENA_Pos 3U /*!< ITM TCR: DWTENA Position */ +#define ITM_TCR_DWTENA_Msk (1UL << ITM_TCR_DWTENA_Pos) /*!< ITM TCR: DWTENA Mask */ + +#define ITM_TCR_SYNCENA_Pos 2U /*!< ITM TCR: SYNCENA Position */ +#define ITM_TCR_SYNCENA_Msk (1UL << ITM_TCR_SYNCENA_Pos) /*!< ITM TCR: SYNCENA Mask */ + +#define ITM_TCR_TSENA_Pos 1U /*!< ITM TCR: TSENA Position */ +#define ITM_TCR_TSENA_Msk (1UL << ITM_TCR_TSENA_Pos) /*!< ITM TCR: TSENA Mask */ + +#define ITM_TCR_ITMENA_Pos 0U /*!< ITM TCR: ITM Enable bit Position */ +#define ITM_TCR_ITMENA_Msk (1UL /*<< ITM_TCR_ITMENA_Pos*/) /*!< ITM TCR: ITM Enable bit Mask */ + +/* ITM Integration Write Register Definitions */ +#define ITM_IWR_ATVALIDM_Pos 0U /*!< ITM IWR: ATVALIDM Position */ +#define ITM_IWR_ATVALIDM_Msk (1UL /*<< ITM_IWR_ATVALIDM_Pos*/) /*!< ITM IWR: ATVALIDM Mask */ + +/* ITM Integration Read Register Definitions */ +#define ITM_IRR_ATREADYM_Pos 0U /*!< ITM IRR: ATREADYM Position */ +#define ITM_IRR_ATREADYM_Msk (1UL /*<< ITM_IRR_ATREADYM_Pos*/) /*!< ITM IRR: ATREADYM Mask */ + +/* ITM Integration Mode Control Register Definitions */ +#define ITM_IMCR_INTEGRATION_Pos 0U /*!< ITM IMCR: INTEGRATION Position */ +#define ITM_IMCR_INTEGRATION_Msk (1UL /*<< ITM_IMCR_INTEGRATION_Pos*/) /*!< ITM IMCR: INTEGRATION Mask */ + +/* ITM Lock Status Register Definitions */ +#define ITM_LSR_ByteAcc_Pos 2U /*!< ITM LSR: ByteAcc Position */ +#define ITM_LSR_ByteAcc_Msk (1UL << ITM_LSR_ByteAcc_Pos) /*!< ITM LSR: ByteAcc Mask */ + +#define ITM_LSR_Access_Pos 1U /*!< ITM LSR: Access Position */ +#define ITM_LSR_Access_Msk (1UL << ITM_LSR_Access_Pos) /*!< ITM LSR: Access Mask */ + +#define ITM_LSR_Present_Pos 0U /*!< ITM LSR: Present Position */ +#define ITM_LSR_Present_Msk (1UL /*<< ITM_LSR_Present_Pos*/) /*!< ITM LSR: Present Mask */ + +/*@}*/ /* end of group CMSIS_ITM */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_DWT Data Watchpoint and Trace (DWT) + \brief Type definitions for the Data Watchpoint and Trace (DWT) + @{ + */ + +/** + \brief Structure type to access the Data Watchpoint and Trace Register (DWT). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) Control Register */ + __IOM uint32_t CYCCNT; /*!< Offset: 0x004 (R/W) Cycle Count Register */ + __IOM uint32_t CPICNT; /*!< Offset: 0x008 (R/W) CPI Count Register */ + __IOM uint32_t EXCCNT; /*!< Offset: 0x00C (R/W) Exception Overhead Count Register */ + __IOM uint32_t SLEEPCNT; /*!< Offset: 0x010 (R/W) Sleep Count Register */ + __IOM uint32_t LSUCNT; /*!< Offset: 0x014 (R/W) LSU Count Register */ + __IOM uint32_t FOLDCNT; /*!< Offset: 0x018 (R/W) Folded-instruction Count Register */ + __IM uint32_t PCSR; /*!< Offset: 0x01C (R/ ) Program Counter Sample Register */ + __IOM uint32_t COMP0; /*!< Offset: 0x020 (R/W) Comparator Register 0 */ + __IOM uint32_t MASK0; /*!< Offset: 0x024 (R/W) Mask Register 0 */ + __IOM uint32_t FUNCTION0; /*!< Offset: 0x028 (R/W) Function Register 0 */ + uint32_t RESERVED0[1U]; + __IOM uint32_t COMP1; /*!< Offset: 0x030 (R/W) Comparator Register 1 */ + __IOM uint32_t MASK1; /*!< Offset: 0x034 (R/W) Mask Register 1 */ + __IOM uint32_t FUNCTION1; /*!< Offset: 0x038 (R/W) Function Register 1 */ + uint32_t RESERVED1[1U]; + __IOM uint32_t COMP2; /*!< Offset: 0x040 (R/W) Comparator Register 2 */ + __IOM uint32_t MASK2; /*!< Offset: 0x044 (R/W) Mask Register 2 */ + __IOM uint32_t FUNCTION2; /*!< Offset: 0x048 (R/W) Function Register 2 */ + uint32_t RESERVED2[1U]; + __IOM uint32_t COMP3; /*!< Offset: 0x050 (R/W) Comparator Register 3 */ + __IOM uint32_t MASK3; /*!< Offset: 0x054 (R/W) Mask Register 3 */ + __IOM uint32_t FUNCTION3; /*!< Offset: 0x058 (R/W) Function Register 3 */ +} DWT_Type; + +/* DWT Control Register Definitions */ +#define DWT_CTRL_NUMCOMP_Pos 28U /*!< DWT CTRL: NUMCOMP Position */ +#define DWT_CTRL_NUMCOMP_Msk (0xFUL << DWT_CTRL_NUMCOMP_Pos) /*!< DWT CTRL: NUMCOMP Mask */ + +#define DWT_CTRL_NOTRCPKT_Pos 27U /*!< DWT CTRL: NOTRCPKT Position */ +#define DWT_CTRL_NOTRCPKT_Msk (0x1UL << DWT_CTRL_NOTRCPKT_Pos) /*!< DWT CTRL: NOTRCPKT Mask */ + +#define DWT_CTRL_NOEXTTRIG_Pos 26U /*!< DWT CTRL: NOEXTTRIG Position */ +#define DWT_CTRL_NOEXTTRIG_Msk (0x1UL << DWT_CTRL_NOEXTTRIG_Pos) /*!< DWT CTRL: NOEXTTRIG Mask */ + +#define DWT_CTRL_NOCYCCNT_Pos 25U /*!< DWT CTRL: NOCYCCNT Position */ +#define DWT_CTRL_NOCYCCNT_Msk (0x1UL << DWT_CTRL_NOCYCCNT_Pos) /*!< DWT CTRL: NOCYCCNT Mask */ + +#define DWT_CTRL_NOPRFCNT_Pos 24U /*!< DWT CTRL: NOPRFCNT Position */ +#define DWT_CTRL_NOPRFCNT_Msk (0x1UL << DWT_CTRL_NOPRFCNT_Pos) /*!< DWT CTRL: NOPRFCNT Mask */ + +#define DWT_CTRL_CYCEVTENA_Pos 22U /*!< DWT CTRL: CYCEVTENA Position */ +#define DWT_CTRL_CYCEVTENA_Msk (0x1UL << DWT_CTRL_CYCEVTENA_Pos) /*!< DWT CTRL: CYCEVTENA Mask */ + +#define DWT_CTRL_FOLDEVTENA_Pos 21U /*!< DWT CTRL: FOLDEVTENA Position */ +#define DWT_CTRL_FOLDEVTENA_Msk (0x1UL << DWT_CTRL_FOLDEVTENA_Pos) /*!< DWT CTRL: FOLDEVTENA Mask */ + +#define DWT_CTRL_LSUEVTENA_Pos 20U /*!< DWT CTRL: LSUEVTENA Position */ +#define DWT_CTRL_LSUEVTENA_Msk (0x1UL << DWT_CTRL_LSUEVTENA_Pos) /*!< DWT CTRL: LSUEVTENA Mask */ + +#define DWT_CTRL_SLEEPEVTENA_Pos 19U /*!< DWT CTRL: SLEEPEVTENA Position */ +#define DWT_CTRL_SLEEPEVTENA_Msk (0x1UL << DWT_CTRL_SLEEPEVTENA_Pos) /*!< DWT CTRL: SLEEPEVTENA Mask */ + +#define DWT_CTRL_EXCEVTENA_Pos 18U /*!< DWT CTRL: EXCEVTENA Position */ +#define DWT_CTRL_EXCEVTENA_Msk (0x1UL << DWT_CTRL_EXCEVTENA_Pos) /*!< DWT CTRL: EXCEVTENA Mask */ + +#define DWT_CTRL_CPIEVTENA_Pos 17U /*!< DWT CTRL: CPIEVTENA Position */ +#define DWT_CTRL_CPIEVTENA_Msk (0x1UL << DWT_CTRL_CPIEVTENA_Pos) /*!< DWT CTRL: CPIEVTENA Mask */ + +#define DWT_CTRL_EXCTRCENA_Pos 16U /*!< DWT CTRL: EXCTRCENA Position */ +#define DWT_CTRL_EXCTRCENA_Msk (0x1UL << DWT_CTRL_EXCTRCENA_Pos) /*!< DWT CTRL: EXCTRCENA Mask */ + +#define DWT_CTRL_PCSAMPLENA_Pos 12U /*!< DWT CTRL: PCSAMPLENA Position */ +#define DWT_CTRL_PCSAMPLENA_Msk (0x1UL << DWT_CTRL_PCSAMPLENA_Pos) /*!< DWT CTRL: PCSAMPLENA Mask */ + +#define DWT_CTRL_SYNCTAP_Pos 10U /*!< DWT CTRL: SYNCTAP Position */ +#define DWT_CTRL_SYNCTAP_Msk (0x3UL << DWT_CTRL_SYNCTAP_Pos) /*!< DWT CTRL: SYNCTAP Mask */ + +#define DWT_CTRL_CYCTAP_Pos 9U /*!< DWT CTRL: CYCTAP Position */ +#define DWT_CTRL_CYCTAP_Msk (0x1UL << DWT_CTRL_CYCTAP_Pos) /*!< DWT CTRL: CYCTAP Mask */ + +#define DWT_CTRL_POSTINIT_Pos 5U /*!< DWT CTRL: POSTINIT Position */ +#define DWT_CTRL_POSTINIT_Msk (0xFUL << DWT_CTRL_POSTINIT_Pos) /*!< DWT CTRL: POSTINIT Mask */ + +#define DWT_CTRL_POSTPRESET_Pos 1U /*!< DWT CTRL: POSTPRESET Position */ +#define DWT_CTRL_POSTPRESET_Msk (0xFUL << DWT_CTRL_POSTPRESET_Pos) /*!< DWT CTRL: POSTPRESET Mask */ + +#define DWT_CTRL_CYCCNTENA_Pos 0U /*!< DWT CTRL: CYCCNTENA Position */ +#define DWT_CTRL_CYCCNTENA_Msk (0x1UL /*<< DWT_CTRL_CYCCNTENA_Pos*/) /*!< DWT CTRL: CYCCNTENA Mask */ + +/* DWT CPI Count Register Definitions */ +#define DWT_CPICNT_CPICNT_Pos 0U /*!< DWT CPICNT: CPICNT Position */ +#define DWT_CPICNT_CPICNT_Msk (0xFFUL /*<< DWT_CPICNT_CPICNT_Pos*/) /*!< DWT CPICNT: CPICNT Mask */ + +/* DWT Exception Overhead Count Register Definitions */ +#define DWT_EXCCNT_EXCCNT_Pos 0U /*!< DWT EXCCNT: EXCCNT Position */ +#define DWT_EXCCNT_EXCCNT_Msk (0xFFUL /*<< DWT_EXCCNT_EXCCNT_Pos*/) /*!< DWT EXCCNT: EXCCNT Mask */ + +/* DWT Sleep Count Register Definitions */ +#define DWT_SLEEPCNT_SLEEPCNT_Pos 0U /*!< DWT SLEEPCNT: SLEEPCNT Position */ +#define DWT_SLEEPCNT_SLEEPCNT_Msk (0xFFUL /*<< DWT_SLEEPCNT_SLEEPCNT_Pos*/) /*!< DWT SLEEPCNT: SLEEPCNT Mask */ + +/* DWT LSU Count Register Definitions */ +#define DWT_LSUCNT_LSUCNT_Pos 0U /*!< DWT LSUCNT: LSUCNT Position */ +#define DWT_LSUCNT_LSUCNT_Msk (0xFFUL /*<< DWT_LSUCNT_LSUCNT_Pos*/) /*!< DWT LSUCNT: LSUCNT Mask */ + +/* DWT Folded-instruction Count Register Definitions */ +#define DWT_FOLDCNT_FOLDCNT_Pos 0U /*!< DWT FOLDCNT: FOLDCNT Position */ +#define DWT_FOLDCNT_FOLDCNT_Msk (0xFFUL /*<< DWT_FOLDCNT_FOLDCNT_Pos*/) /*!< DWT FOLDCNT: FOLDCNT Mask */ + +/* DWT Comparator Mask Register Definitions */ +#define DWT_MASK_MASK_Pos 0U /*!< DWT MASK: MASK Position */ +#define DWT_MASK_MASK_Msk (0x1FUL /*<< DWT_MASK_MASK_Pos*/) /*!< DWT MASK: MASK Mask */ + +/* DWT Comparator Function Register Definitions */ +#define DWT_FUNCTION_MATCHED_Pos 24U /*!< DWT FUNCTION: MATCHED Position */ +#define DWT_FUNCTION_MATCHED_Msk (0x1UL << DWT_FUNCTION_MATCHED_Pos) /*!< DWT FUNCTION: MATCHED Mask */ + +#define DWT_FUNCTION_DATAVADDR1_Pos 16U /*!< DWT FUNCTION: DATAVADDR1 Position */ +#define DWT_FUNCTION_DATAVADDR1_Msk (0xFUL << DWT_FUNCTION_DATAVADDR1_Pos) /*!< DWT FUNCTION: DATAVADDR1 Mask */ + +#define DWT_FUNCTION_DATAVADDR0_Pos 12U /*!< DWT FUNCTION: DATAVADDR0 Position */ +#define DWT_FUNCTION_DATAVADDR0_Msk (0xFUL << DWT_FUNCTION_DATAVADDR0_Pos) /*!< DWT FUNCTION: DATAVADDR0 Mask */ + +#define DWT_FUNCTION_DATAVSIZE_Pos 10U /*!< DWT FUNCTION: DATAVSIZE Position */ +#define DWT_FUNCTION_DATAVSIZE_Msk (0x3UL << DWT_FUNCTION_DATAVSIZE_Pos) /*!< DWT FUNCTION: DATAVSIZE Mask */ + +#define DWT_FUNCTION_LNK1ENA_Pos 9U /*!< DWT FUNCTION: LNK1ENA Position */ +#define DWT_FUNCTION_LNK1ENA_Msk (0x1UL << DWT_FUNCTION_LNK1ENA_Pos) /*!< DWT FUNCTION: LNK1ENA Mask */ + +#define DWT_FUNCTION_DATAVMATCH_Pos 8U /*!< DWT FUNCTION: DATAVMATCH Position */ +#define DWT_FUNCTION_DATAVMATCH_Msk (0x1UL << DWT_FUNCTION_DATAVMATCH_Pos) /*!< DWT FUNCTION: DATAVMATCH Mask */ + +#define DWT_FUNCTION_CYCMATCH_Pos 7U /*!< DWT FUNCTION: CYCMATCH Position */ +#define DWT_FUNCTION_CYCMATCH_Msk (0x1UL << DWT_FUNCTION_CYCMATCH_Pos) /*!< DWT FUNCTION: CYCMATCH Mask */ + +#define DWT_FUNCTION_EMITRANGE_Pos 5U /*!< DWT FUNCTION: EMITRANGE Position */ +#define DWT_FUNCTION_EMITRANGE_Msk (0x1UL << DWT_FUNCTION_EMITRANGE_Pos) /*!< DWT FUNCTION: EMITRANGE Mask */ + +#define DWT_FUNCTION_FUNCTION_Pos 0U /*!< DWT FUNCTION: FUNCTION Position */ +#define DWT_FUNCTION_FUNCTION_Msk (0xFUL /*<< DWT_FUNCTION_FUNCTION_Pos*/) /*!< DWT FUNCTION: FUNCTION Mask */ + +/*@}*/ /* end of group CMSIS_DWT */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_TPI Trace Port Interface (TPI) + \brief Type definitions for the Trace Port Interface (TPI) + @{ + */ + +/** + \brief Structure type to access the Trace Port Interface Register (TPI). + */ +typedef struct +{ + __IOM uint32_t SSPSR; /*!< Offset: 0x000 (R/ ) Supported Parallel Port Size Register */ + __IOM uint32_t CSPSR; /*!< Offset: 0x004 (R/W) Current Parallel Port Size Register */ + uint32_t RESERVED0[2U]; + __IOM uint32_t ACPR; /*!< Offset: 0x010 (R/W) Asynchronous Clock Prescaler Register */ + uint32_t RESERVED1[55U]; + __IOM uint32_t SPPR; /*!< Offset: 0x0F0 (R/W) Selected Pin Protocol Register */ + uint32_t RESERVED2[131U]; + __IM uint32_t FFSR; /*!< Offset: 0x300 (R/ ) Formatter and Flush Status Register */ + __IOM uint32_t FFCR; /*!< Offset: 0x304 (R/W) Formatter and Flush Control Register */ + __IM uint32_t FSCR; /*!< Offset: 0x308 (R/ ) Formatter Synchronization Counter Register */ + uint32_t RESERVED3[759U]; + __IM uint32_t TRIGGER; /*!< Offset: 0xEE8 (R/ ) TRIGGER */ + __IM uint32_t FIFO0; /*!< Offset: 0xEEC (R/ ) Integration ETM Data */ + __IM uint32_t ITATBCTR2; /*!< Offset: 0xEF0 (R/ ) ITATBCTR2 */ + uint32_t RESERVED4[1U]; + __IM uint32_t ITATBCTR0; /*!< Offset: 0xEF8 (R/ ) ITATBCTR0 */ + __IM uint32_t FIFO1; /*!< Offset: 0xEFC (R/ ) Integration ITM Data */ + __IOM uint32_t ITCTRL; /*!< Offset: 0xF00 (R/W) Integration Mode Control */ + uint32_t RESERVED5[39U]; + __IOM uint32_t CLAIMSET; /*!< Offset: 0xFA0 (R/W) Claim tag set */ + __IOM uint32_t CLAIMCLR; /*!< Offset: 0xFA4 (R/W) Claim tag clear */ + uint32_t RESERVED7[8U]; + __IM uint32_t DEVID; /*!< Offset: 0xFC8 (R/ ) TPIU_DEVID */ + __IM uint32_t DEVTYPE; /*!< Offset: 0xFCC (R/ ) TPIU_DEVTYPE */ +} TPI_Type; + +/* TPI Asynchronous Clock Prescaler Register Definitions */ +#define TPI_ACPR_PRESCALER_Pos 0U /*!< TPI ACPR: PRESCALER Position */ +#define TPI_ACPR_PRESCALER_Msk (0x1FFFUL /*<< TPI_ACPR_PRESCALER_Pos*/) /*!< TPI ACPR: PRESCALER Mask */ + +/* TPI Selected Pin Protocol Register Definitions */ +#define TPI_SPPR_TXMODE_Pos 0U /*!< TPI SPPR: TXMODE Position */ +#define TPI_SPPR_TXMODE_Msk (0x3UL /*<< TPI_SPPR_TXMODE_Pos*/) /*!< TPI SPPR: TXMODE Mask */ + +/* TPI Formatter and Flush Status Register Definitions */ +#define TPI_FFSR_FtNonStop_Pos 3U /*!< TPI FFSR: FtNonStop Position */ +#define TPI_FFSR_FtNonStop_Msk (0x1UL << TPI_FFSR_FtNonStop_Pos) /*!< TPI FFSR: FtNonStop Mask */ + +#define TPI_FFSR_TCPresent_Pos 2U /*!< TPI FFSR: TCPresent Position */ +#define TPI_FFSR_TCPresent_Msk (0x1UL << TPI_FFSR_TCPresent_Pos) /*!< TPI FFSR: TCPresent Mask */ + +#define TPI_FFSR_FtStopped_Pos 1U /*!< TPI FFSR: FtStopped Position */ +#define TPI_FFSR_FtStopped_Msk (0x1UL << TPI_FFSR_FtStopped_Pos) /*!< TPI FFSR: FtStopped Mask */ + +#define TPI_FFSR_FlInProg_Pos 0U /*!< TPI FFSR: FlInProg Position */ +#define TPI_FFSR_FlInProg_Msk (0x1UL /*<< TPI_FFSR_FlInProg_Pos*/) /*!< TPI FFSR: FlInProg Mask */ + +/* TPI Formatter and Flush Control Register Definitions */ +#define TPI_FFCR_TrigIn_Pos 8U /*!< TPI FFCR: TrigIn Position */ +#define TPI_FFCR_TrigIn_Msk (0x1UL << TPI_FFCR_TrigIn_Pos) /*!< TPI FFCR: TrigIn Mask */ + +#define TPI_FFCR_EnFCont_Pos 1U /*!< TPI FFCR: EnFCont Position */ +#define TPI_FFCR_EnFCont_Msk (0x1UL << TPI_FFCR_EnFCont_Pos) /*!< TPI FFCR: EnFCont Mask */ + +/* TPI TRIGGER Register Definitions */ +#define TPI_TRIGGER_TRIGGER_Pos 0U /*!< TPI TRIGGER: TRIGGER Position */ +#define TPI_TRIGGER_TRIGGER_Msk (0x1UL /*<< TPI_TRIGGER_TRIGGER_Pos*/) /*!< TPI TRIGGER: TRIGGER Mask */ + +/* TPI Integration ETM Data Register Definitions (FIFO0) */ +#define TPI_FIFO0_ITM_ATVALID_Pos 29U /*!< TPI FIFO0: ITM_ATVALID Position */ +#define TPI_FIFO0_ITM_ATVALID_Msk (0x3UL << TPI_FIFO0_ITM_ATVALID_Pos) /*!< TPI FIFO0: ITM_ATVALID Mask */ + +#define TPI_FIFO0_ITM_bytecount_Pos 27U /*!< TPI FIFO0: ITM_bytecount Position */ +#define TPI_FIFO0_ITM_bytecount_Msk (0x3UL << TPI_FIFO0_ITM_bytecount_Pos) /*!< TPI FIFO0: ITM_bytecount Mask */ + +#define TPI_FIFO0_ETM_ATVALID_Pos 26U /*!< TPI FIFO0: ETM_ATVALID Position */ +#define TPI_FIFO0_ETM_ATVALID_Msk (0x3UL << TPI_FIFO0_ETM_ATVALID_Pos) /*!< TPI FIFO0: ETM_ATVALID Mask */ + +#define TPI_FIFO0_ETM_bytecount_Pos 24U /*!< TPI FIFO0: ETM_bytecount Position */ +#define TPI_FIFO0_ETM_bytecount_Msk (0x3UL << TPI_FIFO0_ETM_bytecount_Pos) /*!< TPI FIFO0: ETM_bytecount Mask */ + +#define TPI_FIFO0_ETM2_Pos 16U /*!< TPI FIFO0: ETM2 Position */ +#define TPI_FIFO0_ETM2_Msk (0xFFUL << TPI_FIFO0_ETM2_Pos) /*!< TPI FIFO0: ETM2 Mask */ + +#define TPI_FIFO0_ETM1_Pos 8U /*!< TPI FIFO0: ETM1 Position */ +#define TPI_FIFO0_ETM1_Msk (0xFFUL << TPI_FIFO0_ETM1_Pos) /*!< TPI FIFO0: ETM1 Mask */ + +#define TPI_FIFO0_ETM0_Pos 0U /*!< TPI FIFO0: ETM0 Position */ +#define TPI_FIFO0_ETM0_Msk (0xFFUL /*<< TPI_FIFO0_ETM0_Pos*/) /*!< TPI FIFO0: ETM0 Mask */ + +/* TPI ITATBCTR2 Register Definitions */ +#define TPI_ITATBCTR2_ATREADY_Pos 0U /*!< TPI ITATBCTR2: ATREADY Position */ +#define TPI_ITATBCTR2_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR2_ATREADY_Pos*/) /*!< TPI ITATBCTR2: ATREADY Mask */ + +/* TPI Integration ITM Data Register Definitions (FIFO1) */ +#define TPI_FIFO1_ITM_ATVALID_Pos 29U /*!< TPI FIFO1: ITM_ATVALID Position */ +#define TPI_FIFO1_ITM_ATVALID_Msk (0x3UL << TPI_FIFO1_ITM_ATVALID_Pos) /*!< TPI FIFO1: ITM_ATVALID Mask */ + +#define TPI_FIFO1_ITM_bytecount_Pos 27U /*!< TPI FIFO1: ITM_bytecount Position */ +#define TPI_FIFO1_ITM_bytecount_Msk (0x3UL << TPI_FIFO1_ITM_bytecount_Pos) /*!< TPI FIFO1: ITM_bytecount Mask */ + +#define TPI_FIFO1_ETM_ATVALID_Pos 26U /*!< TPI FIFO1: ETM_ATVALID Position */ +#define TPI_FIFO1_ETM_ATVALID_Msk (0x3UL << TPI_FIFO1_ETM_ATVALID_Pos) /*!< TPI FIFO1: ETM_ATVALID Mask */ + +#define TPI_FIFO1_ETM_bytecount_Pos 24U /*!< TPI FIFO1: ETM_bytecount Position */ +#define TPI_FIFO1_ETM_bytecount_Msk (0x3UL << TPI_FIFO1_ETM_bytecount_Pos) /*!< TPI FIFO1: ETM_bytecount Mask */ + +#define TPI_FIFO1_ITM2_Pos 16U /*!< TPI FIFO1: ITM2 Position */ +#define TPI_FIFO1_ITM2_Msk (0xFFUL << TPI_FIFO1_ITM2_Pos) /*!< TPI FIFO1: ITM2 Mask */ + +#define TPI_FIFO1_ITM1_Pos 8U /*!< TPI FIFO1: ITM1 Position */ +#define TPI_FIFO1_ITM1_Msk (0xFFUL << TPI_FIFO1_ITM1_Pos) /*!< TPI FIFO1: ITM1 Mask */ + +#define TPI_FIFO1_ITM0_Pos 0U /*!< TPI FIFO1: ITM0 Position */ +#define TPI_FIFO1_ITM0_Msk (0xFFUL /*<< TPI_FIFO1_ITM0_Pos*/) /*!< TPI FIFO1: ITM0 Mask */ + +/* TPI ITATBCTR0 Register Definitions */ +#define TPI_ITATBCTR0_ATREADY_Pos 0U /*!< TPI ITATBCTR0: ATREADY Position */ +#define TPI_ITATBCTR0_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR0_ATREADY_Pos*/) /*!< TPI ITATBCTR0: ATREADY Mask */ + +/* TPI Integration Mode Control Register Definitions */ +#define TPI_ITCTRL_Mode_Pos 0U /*!< TPI ITCTRL: Mode Position */ +#define TPI_ITCTRL_Mode_Msk (0x1UL /*<< TPI_ITCTRL_Mode_Pos*/) /*!< TPI ITCTRL: Mode Mask */ + +/* TPI DEVID Register Definitions */ +#define TPI_DEVID_NRZVALID_Pos 11U /*!< TPI DEVID: NRZVALID Position */ +#define TPI_DEVID_NRZVALID_Msk (0x1UL << TPI_DEVID_NRZVALID_Pos) /*!< TPI DEVID: NRZVALID Mask */ + +#define TPI_DEVID_MANCVALID_Pos 10U /*!< TPI DEVID: MANCVALID Position */ +#define TPI_DEVID_MANCVALID_Msk (0x1UL << TPI_DEVID_MANCVALID_Pos) /*!< TPI DEVID: MANCVALID Mask */ + +#define TPI_DEVID_PTINVALID_Pos 9U /*!< TPI DEVID: PTINVALID Position */ +#define TPI_DEVID_PTINVALID_Msk (0x1UL << TPI_DEVID_PTINVALID_Pos) /*!< TPI DEVID: PTINVALID Mask */ + +#define TPI_DEVID_MinBufSz_Pos 6U /*!< TPI DEVID: MinBufSz Position */ +#define TPI_DEVID_MinBufSz_Msk (0x7UL << TPI_DEVID_MinBufSz_Pos) /*!< TPI DEVID: MinBufSz Mask */ + +#define TPI_DEVID_AsynClkIn_Pos 5U /*!< TPI DEVID: AsynClkIn Position */ +#define TPI_DEVID_AsynClkIn_Msk (0x1UL << TPI_DEVID_AsynClkIn_Pos) /*!< TPI DEVID: AsynClkIn Mask */ + +#define TPI_DEVID_NrTraceInput_Pos 0U /*!< TPI DEVID: NrTraceInput Position */ +#define TPI_DEVID_NrTraceInput_Msk (0x1FUL /*<< TPI_DEVID_NrTraceInput_Pos*/) /*!< TPI DEVID: NrTraceInput Mask */ + +/* TPI DEVTYPE Register Definitions */ +#define TPI_DEVTYPE_MajorType_Pos 4U /*!< TPI DEVTYPE: MajorType Position */ +#define TPI_DEVTYPE_MajorType_Msk (0xFUL << TPI_DEVTYPE_MajorType_Pos) /*!< TPI DEVTYPE: MajorType Mask */ + +#define TPI_DEVTYPE_SubType_Pos 0U /*!< TPI DEVTYPE: SubType Position */ +#define TPI_DEVTYPE_SubType_Msk (0xFUL /*<< TPI_DEVTYPE_SubType_Pos*/) /*!< TPI DEVTYPE: SubType Mask */ + +/*@}*/ /* end of group CMSIS_TPI */ + + +#if (__MPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_MPU Memory Protection Unit (MPU) + \brief Type definitions for the Memory Protection Unit (MPU) + @{ + */ + +/** + \brief Structure type to access the Memory Protection Unit (MPU). + */ +typedef struct +{ + __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */ + __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */ + __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region RNRber Register */ + __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */ + __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */ + __IOM uint32_t RBAR_A1; /*!< Offset: 0x014 (R/W) MPU Alias 1 Region Base Address Register */ + __IOM uint32_t RASR_A1; /*!< Offset: 0x018 (R/W) MPU Alias 1 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A2; /*!< Offset: 0x01C (R/W) MPU Alias 2 Region Base Address Register */ + __IOM uint32_t RASR_A2; /*!< Offset: 0x020 (R/W) MPU Alias 2 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A3; /*!< Offset: 0x024 (R/W) MPU Alias 3 Region Base Address Register */ + __IOM uint32_t RASR_A3; /*!< Offset: 0x028 (R/W) MPU Alias 3 Region Attribute and Size Register */ +} MPU_Type; + +/* MPU Type Register Definitions */ +#define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */ +#define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */ + +#define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */ +#define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */ + +#define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */ +#define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */ + +/* MPU Control Register Definitions */ +#define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */ +#define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */ + +#define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */ +#define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */ + +#define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */ +#define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */ + +/* MPU Region Number Register Definitions */ +#define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */ +#define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */ + +/* MPU Region Base Address Register Definitions */ +#define MPU_RBAR_ADDR_Pos 5U /*!< MPU RBAR: ADDR Position */ +#define MPU_RBAR_ADDR_Msk (0x7FFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */ + +#define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */ +#define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */ + +#define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */ +#define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */ + +/* MPU Region Attribute and Size Register Definitions */ +#define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */ +#define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */ + +#define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */ +#define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */ + +#define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */ +#define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */ + +#define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */ +#define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */ + +#define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */ +#define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */ + +#define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */ +#define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */ + +#define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */ +#define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */ + +#define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */ +#define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */ + +#define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */ +#define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */ + +#define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */ +#define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */ + +/*@} end of group CMSIS_MPU */ +#endif + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug) + \brief Type definitions for the Core Debug Registers + @{ + */ + +/** + \brief Structure type to access the Core Debug Register (CoreDebug). + */ +typedef struct +{ + __IOM uint32_t DHCSR; /*!< Offset: 0x000 (R/W) Debug Halting Control and Status Register */ + __OM uint32_t DCRSR; /*!< Offset: 0x004 ( /W) Debug Core Register Selector Register */ + __IOM uint32_t DCRDR; /*!< Offset: 0x008 (R/W) Debug Core Register Data Register */ + __IOM uint32_t DEMCR; /*!< Offset: 0x00C (R/W) Debug Exception and Monitor Control Register */ +} CoreDebug_Type; + +/* Debug Halting Control and Status Register Definitions */ +#define CoreDebug_DHCSR_DBGKEY_Pos 16U /*!< CoreDebug DHCSR: DBGKEY Position */ +#define CoreDebug_DHCSR_DBGKEY_Msk (0xFFFFUL << CoreDebug_DHCSR_DBGKEY_Pos) /*!< CoreDebug DHCSR: DBGKEY Mask */ + +#define CoreDebug_DHCSR_S_RESET_ST_Pos 25U /*!< CoreDebug DHCSR: S_RESET_ST Position */ +#define CoreDebug_DHCSR_S_RESET_ST_Msk (1UL << CoreDebug_DHCSR_S_RESET_ST_Pos) /*!< CoreDebug DHCSR: S_RESET_ST Mask */ + +#define CoreDebug_DHCSR_S_RETIRE_ST_Pos 24U /*!< CoreDebug DHCSR: S_RETIRE_ST Position */ +#define CoreDebug_DHCSR_S_RETIRE_ST_Msk (1UL << CoreDebug_DHCSR_S_RETIRE_ST_Pos) /*!< CoreDebug DHCSR: S_RETIRE_ST Mask */ + +#define CoreDebug_DHCSR_S_LOCKUP_Pos 19U /*!< CoreDebug DHCSR: S_LOCKUP Position */ +#define CoreDebug_DHCSR_S_LOCKUP_Msk (1UL << CoreDebug_DHCSR_S_LOCKUP_Pos) /*!< CoreDebug DHCSR: S_LOCKUP Mask */ + +#define CoreDebug_DHCSR_S_SLEEP_Pos 18U /*!< CoreDebug DHCSR: S_SLEEP Position */ +#define CoreDebug_DHCSR_S_SLEEP_Msk (1UL << CoreDebug_DHCSR_S_SLEEP_Pos) /*!< CoreDebug DHCSR: S_SLEEP Mask */ + +#define CoreDebug_DHCSR_S_HALT_Pos 17U /*!< CoreDebug DHCSR: S_HALT Position */ +#define CoreDebug_DHCSR_S_HALT_Msk (1UL << CoreDebug_DHCSR_S_HALT_Pos) /*!< CoreDebug DHCSR: S_HALT Mask */ + +#define CoreDebug_DHCSR_S_REGRDY_Pos 16U /*!< CoreDebug DHCSR: S_REGRDY Position */ +#define CoreDebug_DHCSR_S_REGRDY_Msk (1UL << CoreDebug_DHCSR_S_REGRDY_Pos) /*!< CoreDebug DHCSR: S_REGRDY Mask */ + +#define CoreDebug_DHCSR_C_SNAPSTALL_Pos 5U /*!< CoreDebug DHCSR: C_SNAPSTALL Position */ +#define CoreDebug_DHCSR_C_SNAPSTALL_Msk (1UL << CoreDebug_DHCSR_C_SNAPSTALL_Pos) /*!< CoreDebug DHCSR: C_SNAPSTALL Mask */ + +#define CoreDebug_DHCSR_C_MASKINTS_Pos 3U /*!< CoreDebug DHCSR: C_MASKINTS Position */ +#define CoreDebug_DHCSR_C_MASKINTS_Msk (1UL << CoreDebug_DHCSR_C_MASKINTS_Pos) /*!< CoreDebug DHCSR: C_MASKINTS Mask */ + +#define CoreDebug_DHCSR_C_STEP_Pos 2U /*!< CoreDebug DHCSR: C_STEP Position */ +#define CoreDebug_DHCSR_C_STEP_Msk (1UL << CoreDebug_DHCSR_C_STEP_Pos) /*!< CoreDebug DHCSR: C_STEP Mask */ + +#define CoreDebug_DHCSR_C_HALT_Pos 1U /*!< CoreDebug DHCSR: C_HALT Position */ +#define CoreDebug_DHCSR_C_HALT_Msk (1UL << CoreDebug_DHCSR_C_HALT_Pos) /*!< CoreDebug DHCSR: C_HALT Mask */ + +#define CoreDebug_DHCSR_C_DEBUGEN_Pos 0U /*!< CoreDebug DHCSR: C_DEBUGEN Position */ +#define CoreDebug_DHCSR_C_DEBUGEN_Msk (1UL /*<< CoreDebug_DHCSR_C_DEBUGEN_Pos*/) /*!< CoreDebug DHCSR: C_DEBUGEN Mask */ + +/* Debug Core Register Selector Register Definitions */ +#define CoreDebug_DCRSR_REGWnR_Pos 16U /*!< CoreDebug DCRSR: REGWnR Position */ +#define CoreDebug_DCRSR_REGWnR_Msk (1UL << CoreDebug_DCRSR_REGWnR_Pos) /*!< CoreDebug DCRSR: REGWnR Mask */ + +#define CoreDebug_DCRSR_REGSEL_Pos 0U /*!< CoreDebug DCRSR: REGSEL Position */ +#define CoreDebug_DCRSR_REGSEL_Msk (0x1FUL /*<< CoreDebug_DCRSR_REGSEL_Pos*/) /*!< CoreDebug DCRSR: REGSEL Mask */ + +/* Debug Exception and Monitor Control Register Definitions */ +#define CoreDebug_DEMCR_TRCENA_Pos 24U /*!< CoreDebug DEMCR: TRCENA Position */ +#define CoreDebug_DEMCR_TRCENA_Msk (1UL << CoreDebug_DEMCR_TRCENA_Pos) /*!< CoreDebug DEMCR: TRCENA Mask */ + +#define CoreDebug_DEMCR_MON_REQ_Pos 19U /*!< CoreDebug DEMCR: MON_REQ Position */ +#define CoreDebug_DEMCR_MON_REQ_Msk (1UL << CoreDebug_DEMCR_MON_REQ_Pos) /*!< CoreDebug DEMCR: MON_REQ Mask */ + +#define CoreDebug_DEMCR_MON_STEP_Pos 18U /*!< CoreDebug DEMCR: MON_STEP Position */ +#define CoreDebug_DEMCR_MON_STEP_Msk (1UL << CoreDebug_DEMCR_MON_STEP_Pos) /*!< CoreDebug DEMCR: MON_STEP Mask */ + +#define CoreDebug_DEMCR_MON_PEND_Pos 17U /*!< CoreDebug DEMCR: MON_PEND Position */ +#define CoreDebug_DEMCR_MON_PEND_Msk (1UL << CoreDebug_DEMCR_MON_PEND_Pos) /*!< CoreDebug DEMCR: MON_PEND Mask */ + +#define CoreDebug_DEMCR_MON_EN_Pos 16U /*!< CoreDebug DEMCR: MON_EN Position */ +#define CoreDebug_DEMCR_MON_EN_Msk (1UL << CoreDebug_DEMCR_MON_EN_Pos) /*!< CoreDebug DEMCR: MON_EN Mask */ + +#define CoreDebug_DEMCR_VC_HARDERR_Pos 10U /*!< CoreDebug DEMCR: VC_HARDERR Position */ +#define CoreDebug_DEMCR_VC_HARDERR_Msk (1UL << CoreDebug_DEMCR_VC_HARDERR_Pos) /*!< CoreDebug DEMCR: VC_HARDERR Mask */ + +#define CoreDebug_DEMCR_VC_INTERR_Pos 9U /*!< CoreDebug DEMCR: VC_INTERR Position */ +#define CoreDebug_DEMCR_VC_INTERR_Msk (1UL << CoreDebug_DEMCR_VC_INTERR_Pos) /*!< CoreDebug DEMCR: VC_INTERR Mask */ + +#define CoreDebug_DEMCR_VC_BUSERR_Pos 8U /*!< CoreDebug DEMCR: VC_BUSERR Position */ +#define CoreDebug_DEMCR_VC_BUSERR_Msk (1UL << CoreDebug_DEMCR_VC_BUSERR_Pos) /*!< CoreDebug DEMCR: VC_BUSERR Mask */ + +#define CoreDebug_DEMCR_VC_STATERR_Pos 7U /*!< CoreDebug DEMCR: VC_STATERR Position */ +#define CoreDebug_DEMCR_VC_STATERR_Msk (1UL << CoreDebug_DEMCR_VC_STATERR_Pos) /*!< CoreDebug DEMCR: VC_STATERR Mask */ + +#define CoreDebug_DEMCR_VC_CHKERR_Pos 6U /*!< CoreDebug DEMCR: VC_CHKERR Position */ +#define CoreDebug_DEMCR_VC_CHKERR_Msk (1UL << CoreDebug_DEMCR_VC_CHKERR_Pos) /*!< CoreDebug DEMCR: VC_CHKERR Mask */ + +#define CoreDebug_DEMCR_VC_NOCPERR_Pos 5U /*!< CoreDebug DEMCR: VC_NOCPERR Position */ +#define CoreDebug_DEMCR_VC_NOCPERR_Msk (1UL << CoreDebug_DEMCR_VC_NOCPERR_Pos) /*!< CoreDebug DEMCR: VC_NOCPERR Mask */ + +#define CoreDebug_DEMCR_VC_MMERR_Pos 4U /*!< CoreDebug DEMCR: VC_MMERR Position */ +#define CoreDebug_DEMCR_VC_MMERR_Msk (1UL << CoreDebug_DEMCR_VC_MMERR_Pos) /*!< CoreDebug DEMCR: VC_MMERR Mask */ + +#define CoreDebug_DEMCR_VC_CORERESET_Pos 0U /*!< CoreDebug DEMCR: VC_CORERESET Position */ +#define CoreDebug_DEMCR_VC_CORERESET_Msk (1UL /*<< CoreDebug_DEMCR_VC_CORERESET_Pos*/) /*!< CoreDebug DEMCR: VC_CORERESET Mask */ + +/*@} end of group CMSIS_CoreDebug */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_bitfield Core register bit field macros + \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk). + @{ + */ + +/** + \brief Mask and shift a bit field value for use in a register bit range. + \param[in] field Name of the register bit field. + \param[in] value Value of the bit field. + \return Masked and shifted value. +*/ +#define _VAL2FLD(field, value) ((value << field ## _Pos) & field ## _Msk) + +/** + \brief Mask and shift a register value to extract a bit filed value. + \param[in] field Name of the register bit field. + \param[in] value Value of register. + \return Masked and shifted bit field value. +*/ +#define _FLD2VAL(field, value) ((value & field ## _Msk) >> field ## _Pos) + +/*@} end of group CMSIS_core_bitfield */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_base Core Definitions + \brief Definitions for base addresses, unions, and structures. + @{ + */ + +/* Memory mapping of Cortex-M3 Hardware */ +#define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */ +#define ITM_BASE (0xE0000000UL) /*!< ITM Base Address */ +#define DWT_BASE (0xE0001000UL) /*!< DWT Base Address */ +#define TPI_BASE (0xE0040000UL) /*!< TPI Base Address */ +#define CoreDebug_BASE (0xE000EDF0UL) /*!< Core Debug Base Address */ +#define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */ +#define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */ +#define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */ + +#define SCnSCB ((SCnSCB_Type *) SCS_BASE ) /*!< System control Register not in SCB */ +#define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */ +#define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */ +#define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */ +#define ITM ((ITM_Type *) ITM_BASE ) /*!< ITM configuration struct */ +#define DWT ((DWT_Type *) DWT_BASE ) /*!< DWT configuration struct */ +#define TPI ((TPI_Type *) TPI_BASE ) /*!< TPI configuration struct */ +#define CoreDebug ((CoreDebug_Type *) CoreDebug_BASE) /*!< Core Debug configuration struct */ + +#if (__MPU_PRESENT == 1U) + #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */ + #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */ +#endif + +/*@} */ + + + +/******************************************************************************* + * Hardware Abstraction Layer + Core Function Interface contains: + - Core NVIC Functions + - Core SysTick Functions + - Core Debug Functions + - Core Register Access Functions + ******************************************************************************/ +/** + \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference +*/ + + + +/* ########################## NVIC functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_NVICFunctions NVIC Functions + \brief Functions that manage interrupts and exceptions via the NVIC. + @{ + */ + +/** + \brief Set Priority Grouping + \details Sets the priority grouping field using the required unlock sequence. + The parameter PriorityGroup is assigned to the field SCB->AIRCR [10:8] PRIGROUP field. + Only values from 0..7 are used. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Priority grouping field. + */ +__STATIC_INLINE void NVIC_SetPriorityGrouping(uint32_t PriorityGroup) +{ + uint32_t reg_value; + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + + reg_value = SCB->AIRCR; /* read old register configuration */ + reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ + reg_value = (reg_value | + ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (PriorityGroupTmp << 8U) ); /* Insert write key and priorty group */ + SCB->AIRCR = reg_value; +} + + +/** + \brief Get Priority Grouping + \details Reads the priority grouping field from the NVIC Interrupt Controller. + \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). + */ +__STATIC_INLINE uint32_t NVIC_GetPriorityGrouping(void) +{ + return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); +} + + +/** + \brief Enable External Interrupt + \details Enables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) +{ + NVIC->ISER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Disable External Interrupt + \details Disables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn) +{ + NVIC->ICER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the pending register in the NVIC and returns the pending bit for the specified interrupt. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + */ +__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of an external interrupt. + \param [in] IRQn Interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of an external interrupt. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ICPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Active Interrupt + \details Reads the active register in NVIC and returns the active bit. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not active. + \return 1 Interrupt status is active. + */ +__STATIC_INLINE uint32_t NVIC_GetActive(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->IABR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Interrupt Priority + \details Sets the priority of an interrupt. + \note The priority cannot be set for every core interrupt. + \param [in] IRQn Interrupt number. + \param [in] priority Priority to set. + */ +__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) +{ + if ((int32_t)(IRQn) < 0) + { + SCB->SHP[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } + else + { + NVIC->IP[((uint32_t)(int32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } +} + + +/** + \brief Get Interrupt Priority + \details Reads the priority of an interrupt. + The interrupt number can be positive to specify an external (device specific) interrupt, + or negative to specify an internal (core) interrupt. + \param [in] IRQn Interrupt number. + \return Interrupt Priority. + Value is aligned automatically to the implemented priority bits of the microcontroller. + */ +__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn) +{ + + if ((int32_t)(IRQn) < 0) + { + return(((uint32_t)SCB->SHP[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] >> (8U - __NVIC_PRIO_BITS))); + } + else + { + return(((uint32_t)NVIC->IP[((uint32_t)(int32_t)IRQn)] >> (8U - __NVIC_PRIO_BITS))); + } +} + + +/** + \brief Encode Priority + \details Encodes the priority for an interrupt with the given priority group, + preemptive priority value, and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Used priority group. + \param [in] PreemptPriority Preemptive priority value (starting from 0). + \param [in] SubPriority Subpriority value (starting from 0). + \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). + */ +__STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + return ( + ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | + ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) + ); +} + + +/** + \brief Decode Priority + \details Decodes an interrupt priority value with a given priority group to + preemptive priority value and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS) the smallest possible priority group is set. + \param [in] Priority Priority value, which can be retrieved with the function \ref NVIC_GetPriority(). + \param [in] PriorityGroup Used priority group. + \param [out] pPreemptPriority Preemptive priority value (starting from 0). + \param [out] pSubPriority Subpriority value (starting from 0). + */ +__STATIC_INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* const pPreemptPriority, uint32_t* const pSubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + *pPreemptPriority = (Priority >> SubPriorityBits) & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL); + *pSubPriority = (Priority ) & (uint32_t)((1UL << (SubPriorityBits )) - 1UL); +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +__STATIC_INLINE void NVIC_SystemReset(void) +{ + __DSB(); /* Ensure all outstanding memory accesses included + buffered write are completed before reset */ + SCB->AIRCR = (uint32_t)((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) | + SCB_AIRCR_SYSRESETREQ_Msk ); /* Keep priority group unchanged */ + __DSB(); /* Ensure completion of memory access */ + + for(;;) /* wait until reset */ + { + __NOP(); + } +} + +/*@} end of CMSIS_Core_NVICFunctions */ + + + +/* ################################## SysTick function ############################################ */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_SysTickFunctions SysTick Functions + \brief Functions that configure the System. + @{ + */ + +#if (__Vendor_SysTickConfig == 0U) + +/** + \brief System Tick Configuration + \details Initializes the System Timer and its interrupt, and starts the System Tick Timer. + Counter is in free running mode to generate periodic interrupts. + \param [in] ticks Number of ticks between two interrupts. + \return 0 Function succeeded. + \return 1 Function failed. + \note When the variable __Vendor_SysTickConfig is set to 1, then the + 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) + { + return (1UL); /* Reload value impossible */ + } + + SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ + NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ + SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ + SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | + SysTick_CTRL_TICKINT_Msk | + SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + return (0UL); /* Function successful */ +} + +#endif + +/*@} end of CMSIS_Core_SysTickFunctions */ + + + +/* ##################################### Debug In/Output function ########################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_core_DebugFunctions ITM Functions + \brief Functions that access the ITM debug interface. + @{ + */ + +extern volatile int32_t ITM_RxBuffer; /*!< External variable to receive characters. */ +#define ITM_RXBUFFER_EMPTY 0x5AA55AA5U /*!< Value identifying \ref ITM_RxBuffer is ready for next character. */ + + +/** + \brief ITM Send Character + \details Transmits a character via the ITM channel 0, and + \li Just returns when no debugger is connected that has booked the output. + \li Is blocking when a debugger is connected, but the previous character sent has not been transmitted. + \param [in] ch Character to transmit. + \returns Character to transmit. + */ +__STATIC_INLINE uint32_t ITM_SendChar (uint32_t ch) +{ + if (((ITM->TCR & ITM_TCR_ITMENA_Msk) != 0UL) && /* ITM enabled */ + ((ITM->TER & 1UL ) != 0UL) ) /* ITM Port #0 enabled */ + { + while (ITM->PORT[0U].u32 == 0UL) + { + __NOP(); + } + ITM->PORT[0U].u8 = (uint8_t)ch; + } + return (ch); +} + + +/** + \brief ITM Receive Character + \details Inputs a character via the external variable \ref ITM_RxBuffer. + \return Received character. + \return -1 No character pending. + */ +__STATIC_INLINE int32_t ITM_ReceiveChar (void) +{ + int32_t ch = -1; /* no character available */ + + if (ITM_RxBuffer != ITM_RXBUFFER_EMPTY) + { + ch = ITM_RxBuffer; + ITM_RxBuffer = ITM_RXBUFFER_EMPTY; /* ready for next character */ + } + + return (ch); +} + + +/** + \brief ITM Check Character + \details Checks whether a character is pending for reading in the variable \ref ITM_RxBuffer. + \return 0 No character available. + \return 1 Character available. + */ +__STATIC_INLINE int32_t ITM_CheckChar (void) +{ + + if (ITM_RxBuffer == ITM_RXBUFFER_EMPTY) + { + return (0); /* no character available */ + } + else + { + return (1); /* character available */ + } +} + +/*@} end of CMSIS_core_DebugFunctions */ + + + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM3_H_DEPENDANT */ + +#endif /* __CMSIS_GENERIC */ diff --git a/Testing/Drivers/CMSIS/Include/core_cm4.h b/Testing/Drivers/CMSIS/Include/core_cm4.h new file mode 100644 index 0000000..dc840eb --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cm4.h @@ -0,0 +1,1937 @@ +/**************************************************************************//** + * @file core_cm4.h + * @brief CMSIS Cortex-M4 Core Peripheral Access Layer Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CM4_H_GENERIC +#define __CORE_CM4_H_GENERIC + +#include + +#ifdef __cplusplus + extern "C" { +#endif + +/** + \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions + CMSIS violates the following MISRA-C:2004 rules: + + \li Required Rule 8.5, object/function definition in header file.
+ Function definitions in header files are used to allow 'inlining'. + + \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.
+ Unions are used for effective representation of core registers. + + \li Advisory Rule 19.7, Function-like macro defined.
+ Function-like macros are used to allow more efficient code. + */ + + +/******************************************************************************* + * CMSIS definitions + ******************************************************************************/ +/** + \ingroup Cortex_M4 + @{ + */ + +/* CMSIS CM4 definitions */ +#define __CM4_CMSIS_VERSION_MAIN (0x04U) /*!< [31:16] CMSIS HAL main version */ +#define __CM4_CMSIS_VERSION_SUB (0x1EU) /*!< [15:0] CMSIS HAL sub version */ +#define __CM4_CMSIS_VERSION ((__CM4_CMSIS_VERSION_MAIN << 16U) | \ + __CM4_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */ + +#define __CORTEX_M (0x04U) /*!< Cortex-M Core */ + + +#if defined ( __CC_ARM ) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined ( __GNUC__ ) + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __ICCARM__ ) + #define __ASM __asm /*!< asm keyword for IAR Compiler */ + #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ + #define __STATIC_INLINE static inline + +#elif defined ( __TMS470__ ) + #define __ASM __asm /*!< asm keyword for TI CCS Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __TASKING__ ) + #define __ASM __asm /*!< asm keyword for TASKING Compiler */ + #define __INLINE inline /*!< inline keyword for TASKING Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __CSMC__ ) + #define __packed + #define __ASM _asm /*!< asm keyword for COSMIC Compiler */ + #define __INLINE inline /*!< inline keyword for COSMIC Compiler. Use -pc99 on compile line */ + #define __STATIC_INLINE static inline + +#else + #error Unknown compiler +#endif + +/** __FPU_USED indicates whether an FPU is used or not. + For this, __FPU_PRESENT has to be checked prior to making use of FPU specific registers and functions. +*/ +#if defined ( __CC_ARM ) + #if defined __TARGET_FPU_VFP + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #if defined __ARM_PCS_VFP + #if (__FPU_PRESENT == 1) + #define __FPU_USED 1U + #else + #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __GNUC__ ) + #if defined (__VFP_FP__) && !defined(__SOFTFP__) + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __ICCARM__ ) + #if defined __ARMVFP__ + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __TMS470__ ) + #if defined __TI_VFP_SUPPORT__ + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __TASKING__ ) + #if defined __FPU_VFP__ + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __CSMC__ ) + #if ( __CSMC__ & 0x400U) + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#endif + +#include "core_cmInstr.h" /* Core Instruction Access */ +#include "core_cmFunc.h" /* Core Function Access */ +#include "core_cmSimd.h" /* Compiler specific SIMD Intrinsics */ + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM4_H_GENERIC */ + +#ifndef __CMSIS_GENERIC + +#ifndef __CORE_CM4_H_DEPENDANT +#define __CORE_CM4_H_DEPENDANT + +#ifdef __cplusplus + extern "C" { +#endif + +/* check device defines and use defaults */ +#if defined __CHECK_DEVICE_DEFINES + #ifndef __CM4_REV + #define __CM4_REV 0x0000U + #warning "__CM4_REV not defined in device header file; using default!" + #endif + + #ifndef __FPU_PRESENT + #define __FPU_PRESENT 0U + #warning "__FPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __MPU_PRESENT + #define __MPU_PRESENT 0U + #warning "__MPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __NVIC_PRIO_BITS + #define __NVIC_PRIO_BITS 4U + #warning "__NVIC_PRIO_BITS not defined in device header file; using default!" + #endif + + #ifndef __Vendor_SysTickConfig + #define __Vendor_SysTickConfig 0U + #warning "__Vendor_SysTickConfig not defined in device header file; using default!" + #endif +#endif + +/* IO definitions (access restrictions to peripheral registers) */ +/** + \defgroup CMSIS_glob_defs CMSIS Global Defines + + IO Type Qualifiers are used + \li to specify the access to peripheral variables. + \li for automatic generation of peripheral register debug information. +*/ +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +/* following defines should be used for structure members */ +#define __IM volatile const /*! Defines 'read only' structure member permissions */ +#define __OM volatile /*! Defines 'write only' structure member permissions */ +#define __IOM volatile /*! Defines 'read / write' structure member permissions */ + +/*@} end of group Cortex_M4 */ + + + +/******************************************************************************* + * Register Abstraction + Core Register contain: + - Core Register + - Core NVIC Register + - Core SCB Register + - Core SysTick Register + - Core Debug Register + - Core MPU Register + - Core FPU Register + ******************************************************************************/ +/** + \defgroup CMSIS_core_register Defines and Type Definitions + \brief Type definitions and defines for Cortex-M processor based devices. +*/ + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CORE Status and Control Registers + \brief Core Register type definitions. + @{ + */ + +/** + \brief Union type to access the Application Program Status Register (APSR). + */ +typedef union +{ + struct + { + uint32_t _reserved0:16; /*!< bit: 0..15 Reserved */ + uint32_t GE:4; /*!< bit: 16..19 Greater than or Equal flags */ + uint32_t _reserved1:7; /*!< bit: 20..26 Reserved */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} APSR_Type; + +/* APSR Register Definitions */ +#define APSR_N_Pos 31U /*!< APSR: N Position */ +#define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */ + +#define APSR_Z_Pos 30U /*!< APSR: Z Position */ +#define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */ + +#define APSR_C_Pos 29U /*!< APSR: C Position */ +#define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */ + +#define APSR_V_Pos 28U /*!< APSR: V Position */ +#define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */ + +#define APSR_Q_Pos 27U /*!< APSR: Q Position */ +#define APSR_Q_Msk (1UL << APSR_Q_Pos) /*!< APSR: Q Mask */ + +#define APSR_GE_Pos 16U /*!< APSR: GE Position */ +#define APSR_GE_Msk (0xFUL << APSR_GE_Pos) /*!< APSR: GE Mask */ + + +/** + \brief Union type to access the Interrupt Program Status Register (IPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} IPSR_Type; + +/* IPSR Register Definitions */ +#define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */ +#define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */ + + +/** + \brief Union type to access the Special-Purpose Program Status Registers (xPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:7; /*!< bit: 9..15 Reserved */ + uint32_t GE:4; /*!< bit: 16..19 Greater than or Equal flags */ + uint32_t _reserved1:4; /*!< bit: 20..23 Reserved */ + uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */ + uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} xPSR_Type; + +/* xPSR Register Definitions */ +#define xPSR_N_Pos 31U /*!< xPSR: N Position */ +#define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */ + +#define xPSR_Z_Pos 30U /*!< xPSR: Z Position */ +#define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */ + +#define xPSR_C_Pos 29U /*!< xPSR: C Position */ +#define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */ + +#define xPSR_V_Pos 28U /*!< xPSR: V Position */ +#define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */ + +#define xPSR_Q_Pos 27U /*!< xPSR: Q Position */ +#define xPSR_Q_Msk (1UL << xPSR_Q_Pos) /*!< xPSR: Q Mask */ + +#define xPSR_IT_Pos 25U /*!< xPSR: IT Position */ +#define xPSR_IT_Msk (3UL << xPSR_IT_Pos) /*!< xPSR: IT Mask */ + +#define xPSR_T_Pos 24U /*!< xPSR: T Position */ +#define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */ + +#define xPSR_GE_Pos 16U /*!< xPSR: GE Position */ +#define xPSR_GE_Msk (0xFUL << xPSR_GE_Pos) /*!< xPSR: GE Mask */ + +#define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */ +#define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */ + + +/** + \brief Union type to access the Control Registers (CONTROL). + */ +typedef union +{ + struct + { + uint32_t nPRIV:1; /*!< bit: 0 Execution privilege in Thread mode */ + uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */ + uint32_t FPCA:1; /*!< bit: 2 FP extension active flag */ + uint32_t _reserved0:29; /*!< bit: 3..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} CONTROL_Type; + +/* CONTROL Register Definitions */ +#define CONTROL_FPCA_Pos 2U /*!< CONTROL: FPCA Position */ +#define CONTROL_FPCA_Msk (1UL << CONTROL_FPCA_Pos) /*!< CONTROL: FPCA Mask */ + +#define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */ +#define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */ + +#define CONTROL_nPRIV_Pos 0U /*!< CONTROL: nPRIV Position */ +#define CONTROL_nPRIV_Msk (1UL /*<< CONTROL_nPRIV_Pos*/) /*!< CONTROL: nPRIV Mask */ + +/*@} end of group CMSIS_CORE */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC) + \brief Type definitions for the NVIC Registers + @{ + */ + +/** + \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC). + */ +typedef struct +{ + __IOM uint32_t ISER[8U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */ + uint32_t RESERVED0[24U]; + __IOM uint32_t ICER[8U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */ + uint32_t RSERVED1[24U]; + __IOM uint32_t ISPR[8U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */ + uint32_t RESERVED2[24U]; + __IOM uint32_t ICPR[8U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */ + uint32_t RESERVED3[24U]; + __IOM uint32_t IABR[8U]; /*!< Offset: 0x200 (R/W) Interrupt Active bit Register */ + uint32_t RESERVED4[56U]; + __IOM uint8_t IP[240U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register (8Bit wide) */ + uint32_t RESERVED5[644U]; + __OM uint32_t STIR; /*!< Offset: 0xE00 ( /W) Software Trigger Interrupt Register */ +} NVIC_Type; + +/* Software Triggered Interrupt Register Definitions */ +#define NVIC_STIR_INTID_Pos 0U /*!< STIR: INTLINESNUM Position */ +#define NVIC_STIR_INTID_Msk (0x1FFUL /*<< NVIC_STIR_INTID_Pos*/) /*!< STIR: INTLINESNUM Mask */ + +/*@} end of group CMSIS_NVIC */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCB System Control Block (SCB) + \brief Type definitions for the System Control Block Registers + @{ + */ + +/** + \brief Structure type to access the System Control Block (SCB). + */ +typedef struct +{ + __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */ + __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */ + __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */ + __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */ + __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */ + __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */ + __IOM uint8_t SHP[12U]; /*!< Offset: 0x018 (R/W) System Handlers Priority Registers (4-7, 8-11, 12-15) */ + __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */ + __IOM uint32_t CFSR; /*!< Offset: 0x028 (R/W) Configurable Fault Status Register */ + __IOM uint32_t HFSR; /*!< Offset: 0x02C (R/W) HardFault Status Register */ + __IOM uint32_t DFSR; /*!< Offset: 0x030 (R/W) Debug Fault Status Register */ + __IOM uint32_t MMFAR; /*!< Offset: 0x034 (R/W) MemManage Fault Address Register */ + __IOM uint32_t BFAR; /*!< Offset: 0x038 (R/W) BusFault Address Register */ + __IOM uint32_t AFSR; /*!< Offset: 0x03C (R/W) Auxiliary Fault Status Register */ + __IM uint32_t PFR[2U]; /*!< Offset: 0x040 (R/ ) Processor Feature Register */ + __IM uint32_t DFR; /*!< Offset: 0x048 (R/ ) Debug Feature Register */ + __IM uint32_t ADR; /*!< Offset: 0x04C (R/ ) Auxiliary Feature Register */ + __IM uint32_t MMFR[4U]; /*!< Offset: 0x050 (R/ ) Memory Model Feature Register */ + __IM uint32_t ISAR[5U]; /*!< Offset: 0x060 (R/ ) Instruction Set Attributes Register */ + uint32_t RESERVED0[5U]; + __IOM uint32_t CPACR; /*!< Offset: 0x088 (R/W) Coprocessor Access Control Register */ +} SCB_Type; + +/* SCB CPUID Register Definitions */ +#define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */ +#define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */ + +#define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */ +#define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */ + +#define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */ +#define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */ + +#define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */ +#define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */ + +#define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */ +#define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */ +#define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */ + +#define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */ +#define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */ + +#define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */ +#define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */ + +#define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */ +#define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */ + +#define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */ +#define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */ + +#define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */ +#define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */ + +#define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */ +#define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */ + +#define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */ +#define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */ + +#define SCB_ICSR_RETTOBASE_Pos 11U /*!< SCB ICSR: RETTOBASE Position */ +#define SCB_ICSR_RETTOBASE_Msk (1UL << SCB_ICSR_RETTOBASE_Pos) /*!< SCB ICSR: RETTOBASE Mask */ + +#define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */ +#define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */ + +/* SCB Vector Table Offset Register Definitions */ +#define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB VTOR: TBLOFF Position */ +#define SCB_VTOR_TBLOFF_Msk (0x1FFFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */ + +/* SCB Application Interrupt and Reset Control Register Definitions */ +#define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */ +#define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */ + +#define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */ +#define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */ + +#define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */ +#define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */ + +#define SCB_AIRCR_PRIGROUP_Pos 8U /*!< SCB AIRCR: PRIGROUP Position */ +#define SCB_AIRCR_PRIGROUP_Msk (7UL << SCB_AIRCR_PRIGROUP_Pos) /*!< SCB AIRCR: PRIGROUP Mask */ + +#define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */ +#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */ + +#define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */ +#define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */ + +#define SCB_AIRCR_VECTRESET_Pos 0U /*!< SCB AIRCR: VECTRESET Position */ +#define SCB_AIRCR_VECTRESET_Msk (1UL /*<< SCB_AIRCR_VECTRESET_Pos*/) /*!< SCB AIRCR: VECTRESET Mask */ + +/* SCB System Control Register Definitions */ +#define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */ +#define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */ + +#define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */ +#define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */ + +#define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */ +#define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */ + +/* SCB Configuration Control Register Definitions */ +#define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */ +#define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */ + +#define SCB_CCR_BFHFNMIGN_Pos 8U /*!< SCB CCR: BFHFNMIGN Position */ +#define SCB_CCR_BFHFNMIGN_Msk (1UL << SCB_CCR_BFHFNMIGN_Pos) /*!< SCB CCR: BFHFNMIGN Mask */ + +#define SCB_CCR_DIV_0_TRP_Pos 4U /*!< SCB CCR: DIV_0_TRP Position */ +#define SCB_CCR_DIV_0_TRP_Msk (1UL << SCB_CCR_DIV_0_TRP_Pos) /*!< SCB CCR: DIV_0_TRP Mask */ + +#define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */ +#define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */ + +#define SCB_CCR_USERSETMPEND_Pos 1U /*!< SCB CCR: USERSETMPEND Position */ +#define SCB_CCR_USERSETMPEND_Msk (1UL << SCB_CCR_USERSETMPEND_Pos) /*!< SCB CCR: USERSETMPEND Mask */ + +#define SCB_CCR_NONBASETHRDENA_Pos 0U /*!< SCB CCR: NONBASETHRDENA Position */ +#define SCB_CCR_NONBASETHRDENA_Msk (1UL /*<< SCB_CCR_NONBASETHRDENA_Pos*/) /*!< SCB CCR: NONBASETHRDENA Mask */ + +/* SCB System Handler Control and State Register Definitions */ +#define SCB_SHCSR_USGFAULTENA_Pos 18U /*!< SCB SHCSR: USGFAULTENA Position */ +#define SCB_SHCSR_USGFAULTENA_Msk (1UL << SCB_SHCSR_USGFAULTENA_Pos) /*!< SCB SHCSR: USGFAULTENA Mask */ + +#define SCB_SHCSR_BUSFAULTENA_Pos 17U /*!< SCB SHCSR: BUSFAULTENA Position */ +#define SCB_SHCSR_BUSFAULTENA_Msk (1UL << SCB_SHCSR_BUSFAULTENA_Pos) /*!< SCB SHCSR: BUSFAULTENA Mask */ + +#define SCB_SHCSR_MEMFAULTENA_Pos 16U /*!< SCB SHCSR: MEMFAULTENA Position */ +#define SCB_SHCSR_MEMFAULTENA_Msk (1UL << SCB_SHCSR_MEMFAULTENA_Pos) /*!< SCB SHCSR: MEMFAULTENA Mask */ + +#define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */ +#define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */ + +#define SCB_SHCSR_BUSFAULTPENDED_Pos 14U /*!< SCB SHCSR: BUSFAULTPENDED Position */ +#define SCB_SHCSR_BUSFAULTPENDED_Msk (1UL << SCB_SHCSR_BUSFAULTPENDED_Pos) /*!< SCB SHCSR: BUSFAULTPENDED Mask */ + +#define SCB_SHCSR_MEMFAULTPENDED_Pos 13U /*!< SCB SHCSR: MEMFAULTPENDED Position */ +#define SCB_SHCSR_MEMFAULTPENDED_Msk (1UL << SCB_SHCSR_MEMFAULTPENDED_Pos) /*!< SCB SHCSR: MEMFAULTPENDED Mask */ + +#define SCB_SHCSR_USGFAULTPENDED_Pos 12U /*!< SCB SHCSR: USGFAULTPENDED Position */ +#define SCB_SHCSR_USGFAULTPENDED_Msk (1UL << SCB_SHCSR_USGFAULTPENDED_Pos) /*!< SCB SHCSR: USGFAULTPENDED Mask */ + +#define SCB_SHCSR_SYSTICKACT_Pos 11U /*!< SCB SHCSR: SYSTICKACT Position */ +#define SCB_SHCSR_SYSTICKACT_Msk (1UL << SCB_SHCSR_SYSTICKACT_Pos) /*!< SCB SHCSR: SYSTICKACT Mask */ + +#define SCB_SHCSR_PENDSVACT_Pos 10U /*!< SCB SHCSR: PENDSVACT Position */ +#define SCB_SHCSR_PENDSVACT_Msk (1UL << SCB_SHCSR_PENDSVACT_Pos) /*!< SCB SHCSR: PENDSVACT Mask */ + +#define SCB_SHCSR_MONITORACT_Pos 8U /*!< SCB SHCSR: MONITORACT Position */ +#define SCB_SHCSR_MONITORACT_Msk (1UL << SCB_SHCSR_MONITORACT_Pos) /*!< SCB SHCSR: MONITORACT Mask */ + +#define SCB_SHCSR_SVCALLACT_Pos 7U /*!< SCB SHCSR: SVCALLACT Position */ +#define SCB_SHCSR_SVCALLACT_Msk (1UL << SCB_SHCSR_SVCALLACT_Pos) /*!< SCB SHCSR: SVCALLACT Mask */ + +#define SCB_SHCSR_USGFAULTACT_Pos 3U /*!< SCB SHCSR: USGFAULTACT Position */ +#define SCB_SHCSR_USGFAULTACT_Msk (1UL << SCB_SHCSR_USGFAULTACT_Pos) /*!< SCB SHCSR: USGFAULTACT Mask */ + +#define SCB_SHCSR_BUSFAULTACT_Pos 1U /*!< SCB SHCSR: BUSFAULTACT Position */ +#define SCB_SHCSR_BUSFAULTACT_Msk (1UL << SCB_SHCSR_BUSFAULTACT_Pos) /*!< SCB SHCSR: BUSFAULTACT Mask */ + +#define SCB_SHCSR_MEMFAULTACT_Pos 0U /*!< SCB SHCSR: MEMFAULTACT Position */ +#define SCB_SHCSR_MEMFAULTACT_Msk (1UL /*<< SCB_SHCSR_MEMFAULTACT_Pos*/) /*!< SCB SHCSR: MEMFAULTACT Mask */ + +/* SCB Configurable Fault Status Register Definitions */ +#define SCB_CFSR_USGFAULTSR_Pos 16U /*!< SCB CFSR: Usage Fault Status Register Position */ +#define SCB_CFSR_USGFAULTSR_Msk (0xFFFFUL << SCB_CFSR_USGFAULTSR_Pos) /*!< SCB CFSR: Usage Fault Status Register Mask */ + +#define SCB_CFSR_BUSFAULTSR_Pos 8U /*!< SCB CFSR: Bus Fault Status Register Position */ +#define SCB_CFSR_BUSFAULTSR_Msk (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos) /*!< SCB CFSR: Bus Fault Status Register Mask */ + +#define SCB_CFSR_MEMFAULTSR_Pos 0U /*!< SCB CFSR: Memory Manage Fault Status Register Position */ +#define SCB_CFSR_MEMFAULTSR_Msk (0xFFUL /*<< SCB_CFSR_MEMFAULTSR_Pos*/) /*!< SCB CFSR: Memory Manage Fault Status Register Mask */ + +/* SCB Hard Fault Status Register Definitions */ +#define SCB_HFSR_DEBUGEVT_Pos 31U /*!< SCB HFSR: DEBUGEVT Position */ +#define SCB_HFSR_DEBUGEVT_Msk (1UL << SCB_HFSR_DEBUGEVT_Pos) /*!< SCB HFSR: DEBUGEVT Mask */ + +#define SCB_HFSR_FORCED_Pos 30U /*!< SCB HFSR: FORCED Position */ +#define SCB_HFSR_FORCED_Msk (1UL << SCB_HFSR_FORCED_Pos) /*!< SCB HFSR: FORCED Mask */ + +#define SCB_HFSR_VECTTBL_Pos 1U /*!< SCB HFSR: VECTTBL Position */ +#define SCB_HFSR_VECTTBL_Msk (1UL << SCB_HFSR_VECTTBL_Pos) /*!< SCB HFSR: VECTTBL Mask */ + +/* SCB Debug Fault Status Register Definitions */ +#define SCB_DFSR_EXTERNAL_Pos 4U /*!< SCB DFSR: EXTERNAL Position */ +#define SCB_DFSR_EXTERNAL_Msk (1UL << SCB_DFSR_EXTERNAL_Pos) /*!< SCB DFSR: EXTERNAL Mask */ + +#define SCB_DFSR_VCATCH_Pos 3U /*!< SCB DFSR: VCATCH Position */ +#define SCB_DFSR_VCATCH_Msk (1UL << SCB_DFSR_VCATCH_Pos) /*!< SCB DFSR: VCATCH Mask */ + +#define SCB_DFSR_DWTTRAP_Pos 2U /*!< SCB DFSR: DWTTRAP Position */ +#define SCB_DFSR_DWTTRAP_Msk (1UL << SCB_DFSR_DWTTRAP_Pos) /*!< SCB DFSR: DWTTRAP Mask */ + +#define SCB_DFSR_BKPT_Pos 1U /*!< SCB DFSR: BKPT Position */ +#define SCB_DFSR_BKPT_Msk (1UL << SCB_DFSR_BKPT_Pos) /*!< SCB DFSR: BKPT Mask */ + +#define SCB_DFSR_HALTED_Pos 0U /*!< SCB DFSR: HALTED Position */ +#define SCB_DFSR_HALTED_Msk (1UL /*<< SCB_DFSR_HALTED_Pos*/) /*!< SCB DFSR: HALTED Mask */ + +/*@} end of group CMSIS_SCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCnSCB System Controls not in SCB (SCnSCB) + \brief Type definitions for the System Control and ID Register not in the SCB + @{ + */ + +/** + \brief Structure type to access the System Control and ID Register not in the SCB. + */ +typedef struct +{ + uint32_t RESERVED0[1U]; + __IM uint32_t ICTR; /*!< Offset: 0x004 (R/ ) Interrupt Controller Type Register */ + __IOM uint32_t ACTLR; /*!< Offset: 0x008 (R/W) Auxiliary Control Register */ +} SCnSCB_Type; + +/* Interrupt Controller Type Register Definitions */ +#define SCnSCB_ICTR_INTLINESNUM_Pos 0U /*!< ICTR: INTLINESNUM Position */ +#define SCnSCB_ICTR_INTLINESNUM_Msk (0xFUL /*<< SCnSCB_ICTR_INTLINESNUM_Pos*/) /*!< ICTR: INTLINESNUM Mask */ + +/* Auxiliary Control Register Definitions */ +#define SCnSCB_ACTLR_DISOOFP_Pos 9U /*!< ACTLR: DISOOFP Position */ +#define SCnSCB_ACTLR_DISOOFP_Msk (1UL << SCnSCB_ACTLR_DISOOFP_Pos) /*!< ACTLR: DISOOFP Mask */ + +#define SCnSCB_ACTLR_DISFPCA_Pos 8U /*!< ACTLR: DISFPCA Position */ +#define SCnSCB_ACTLR_DISFPCA_Msk (1UL << SCnSCB_ACTLR_DISFPCA_Pos) /*!< ACTLR: DISFPCA Mask */ + +#define SCnSCB_ACTLR_DISFOLD_Pos 2U /*!< ACTLR: DISFOLD Position */ +#define SCnSCB_ACTLR_DISFOLD_Msk (1UL << SCnSCB_ACTLR_DISFOLD_Pos) /*!< ACTLR: DISFOLD Mask */ + +#define SCnSCB_ACTLR_DISDEFWBUF_Pos 1U /*!< ACTLR: DISDEFWBUF Position */ +#define SCnSCB_ACTLR_DISDEFWBUF_Msk (1UL << SCnSCB_ACTLR_DISDEFWBUF_Pos) /*!< ACTLR: DISDEFWBUF Mask */ + +#define SCnSCB_ACTLR_DISMCYCINT_Pos 0U /*!< ACTLR: DISMCYCINT Position */ +#define SCnSCB_ACTLR_DISMCYCINT_Msk (1UL /*<< SCnSCB_ACTLR_DISMCYCINT_Pos*/) /*!< ACTLR: DISMCYCINT Mask */ + +/*@} end of group CMSIS_SCnotSCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SysTick System Tick Timer (SysTick) + \brief Type definitions for the System Timer Registers. + @{ + */ + +/** + \brief Structure type to access the System Timer (SysTick). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */ + __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */ + __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ + __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */ +} SysTick_Type; + +/* SysTick Control / Status Register Definitions */ +#define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */ +#define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */ + +#define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */ +#define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */ + +#define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */ +#define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */ + +#define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */ +#define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */ + +/* SysTick Reload Register Definitions */ +#define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */ +#define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */ + +/* SysTick Current Register Definitions */ +#define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ +#define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ + +/* SysTick Calibration Register Definitions */ +#define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */ +#define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */ + +#define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */ +#define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */ + +#define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */ +#define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */ + +/*@} end of group CMSIS_SysTick */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_ITM Instrumentation Trace Macrocell (ITM) + \brief Type definitions for the Instrumentation Trace Macrocell (ITM) + @{ + */ + +/** + \brief Structure type to access the Instrumentation Trace Macrocell Register (ITM). + */ +typedef struct +{ + __OM union + { + __OM uint8_t u8; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 8-bit */ + __OM uint16_t u16; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 16-bit */ + __OM uint32_t u32; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 32-bit */ + } PORT [32U]; /*!< Offset: 0x000 ( /W) ITM Stimulus Port Registers */ + uint32_t RESERVED0[864U]; + __IOM uint32_t TER; /*!< Offset: 0xE00 (R/W) ITM Trace Enable Register */ + uint32_t RESERVED1[15U]; + __IOM uint32_t TPR; /*!< Offset: 0xE40 (R/W) ITM Trace Privilege Register */ + uint32_t RESERVED2[15U]; + __IOM uint32_t TCR; /*!< Offset: 0xE80 (R/W) ITM Trace Control Register */ + uint32_t RESERVED3[29U]; + __OM uint32_t IWR; /*!< Offset: 0xEF8 ( /W) ITM Integration Write Register */ + __IM uint32_t IRR; /*!< Offset: 0xEFC (R/ ) ITM Integration Read Register */ + __IOM uint32_t IMCR; /*!< Offset: 0xF00 (R/W) ITM Integration Mode Control Register */ + uint32_t RESERVED4[43U]; + __OM uint32_t LAR; /*!< Offset: 0xFB0 ( /W) ITM Lock Access Register */ + __IM uint32_t LSR; /*!< Offset: 0xFB4 (R/ ) ITM Lock Status Register */ + uint32_t RESERVED5[6U]; + __IM uint32_t PID4; /*!< Offset: 0xFD0 (R/ ) ITM Peripheral Identification Register #4 */ + __IM uint32_t PID5; /*!< Offset: 0xFD4 (R/ ) ITM Peripheral Identification Register #5 */ + __IM uint32_t PID6; /*!< Offset: 0xFD8 (R/ ) ITM Peripheral Identification Register #6 */ + __IM uint32_t PID7; /*!< Offset: 0xFDC (R/ ) ITM Peripheral Identification Register #7 */ + __IM uint32_t PID0; /*!< Offset: 0xFE0 (R/ ) ITM Peripheral Identification Register #0 */ + __IM uint32_t PID1; /*!< Offset: 0xFE4 (R/ ) ITM Peripheral Identification Register #1 */ + __IM uint32_t PID2; /*!< Offset: 0xFE8 (R/ ) ITM Peripheral Identification Register #2 */ + __IM uint32_t PID3; /*!< Offset: 0xFEC (R/ ) ITM Peripheral Identification Register #3 */ + __IM uint32_t CID0; /*!< Offset: 0xFF0 (R/ ) ITM Component Identification Register #0 */ + __IM uint32_t CID1; /*!< Offset: 0xFF4 (R/ ) ITM Component Identification Register #1 */ + __IM uint32_t CID2; /*!< Offset: 0xFF8 (R/ ) ITM Component Identification Register #2 */ + __IM uint32_t CID3; /*!< Offset: 0xFFC (R/ ) ITM Component Identification Register #3 */ +} ITM_Type; + +/* ITM Trace Privilege Register Definitions */ +#define ITM_TPR_PRIVMASK_Pos 0U /*!< ITM TPR: PRIVMASK Position */ +#define ITM_TPR_PRIVMASK_Msk (0xFUL /*<< ITM_TPR_PRIVMASK_Pos*/) /*!< ITM TPR: PRIVMASK Mask */ + +/* ITM Trace Control Register Definitions */ +#define ITM_TCR_BUSY_Pos 23U /*!< ITM TCR: BUSY Position */ +#define ITM_TCR_BUSY_Msk (1UL << ITM_TCR_BUSY_Pos) /*!< ITM TCR: BUSY Mask */ + +#define ITM_TCR_TraceBusID_Pos 16U /*!< ITM TCR: ATBID Position */ +#define ITM_TCR_TraceBusID_Msk (0x7FUL << ITM_TCR_TraceBusID_Pos) /*!< ITM TCR: ATBID Mask */ + +#define ITM_TCR_GTSFREQ_Pos 10U /*!< ITM TCR: Global timestamp frequency Position */ +#define ITM_TCR_GTSFREQ_Msk (3UL << ITM_TCR_GTSFREQ_Pos) /*!< ITM TCR: Global timestamp frequency Mask */ + +#define ITM_TCR_TSPrescale_Pos 8U /*!< ITM TCR: TSPrescale Position */ +#define ITM_TCR_TSPrescale_Msk (3UL << ITM_TCR_TSPrescale_Pos) /*!< ITM TCR: TSPrescale Mask */ + +#define ITM_TCR_SWOENA_Pos 4U /*!< ITM TCR: SWOENA Position */ +#define ITM_TCR_SWOENA_Msk (1UL << ITM_TCR_SWOENA_Pos) /*!< ITM TCR: SWOENA Mask */ + +#define ITM_TCR_DWTENA_Pos 3U /*!< ITM TCR: DWTENA Position */ +#define ITM_TCR_DWTENA_Msk (1UL << ITM_TCR_DWTENA_Pos) /*!< ITM TCR: DWTENA Mask */ + +#define ITM_TCR_SYNCENA_Pos 2U /*!< ITM TCR: SYNCENA Position */ +#define ITM_TCR_SYNCENA_Msk (1UL << ITM_TCR_SYNCENA_Pos) /*!< ITM TCR: SYNCENA Mask */ + +#define ITM_TCR_TSENA_Pos 1U /*!< ITM TCR: TSENA Position */ +#define ITM_TCR_TSENA_Msk (1UL << ITM_TCR_TSENA_Pos) /*!< ITM TCR: TSENA Mask */ + +#define ITM_TCR_ITMENA_Pos 0U /*!< ITM TCR: ITM Enable bit Position */ +#define ITM_TCR_ITMENA_Msk (1UL /*<< ITM_TCR_ITMENA_Pos*/) /*!< ITM TCR: ITM Enable bit Mask */ + +/* ITM Integration Write Register Definitions */ +#define ITM_IWR_ATVALIDM_Pos 0U /*!< ITM IWR: ATVALIDM Position */ +#define ITM_IWR_ATVALIDM_Msk (1UL /*<< ITM_IWR_ATVALIDM_Pos*/) /*!< ITM IWR: ATVALIDM Mask */ + +/* ITM Integration Read Register Definitions */ +#define ITM_IRR_ATREADYM_Pos 0U /*!< ITM IRR: ATREADYM Position */ +#define ITM_IRR_ATREADYM_Msk (1UL /*<< ITM_IRR_ATREADYM_Pos*/) /*!< ITM IRR: ATREADYM Mask */ + +/* ITM Integration Mode Control Register Definitions */ +#define ITM_IMCR_INTEGRATION_Pos 0U /*!< ITM IMCR: INTEGRATION Position */ +#define ITM_IMCR_INTEGRATION_Msk (1UL /*<< ITM_IMCR_INTEGRATION_Pos*/) /*!< ITM IMCR: INTEGRATION Mask */ + +/* ITM Lock Status Register Definitions */ +#define ITM_LSR_ByteAcc_Pos 2U /*!< ITM LSR: ByteAcc Position */ +#define ITM_LSR_ByteAcc_Msk (1UL << ITM_LSR_ByteAcc_Pos) /*!< ITM LSR: ByteAcc Mask */ + +#define ITM_LSR_Access_Pos 1U /*!< ITM LSR: Access Position */ +#define ITM_LSR_Access_Msk (1UL << ITM_LSR_Access_Pos) /*!< ITM LSR: Access Mask */ + +#define ITM_LSR_Present_Pos 0U /*!< ITM LSR: Present Position */ +#define ITM_LSR_Present_Msk (1UL /*<< ITM_LSR_Present_Pos*/) /*!< ITM LSR: Present Mask */ + +/*@}*/ /* end of group CMSIS_ITM */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_DWT Data Watchpoint and Trace (DWT) + \brief Type definitions for the Data Watchpoint and Trace (DWT) + @{ + */ + +/** + \brief Structure type to access the Data Watchpoint and Trace Register (DWT). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) Control Register */ + __IOM uint32_t CYCCNT; /*!< Offset: 0x004 (R/W) Cycle Count Register */ + __IOM uint32_t CPICNT; /*!< Offset: 0x008 (R/W) CPI Count Register */ + __IOM uint32_t EXCCNT; /*!< Offset: 0x00C (R/W) Exception Overhead Count Register */ + __IOM uint32_t SLEEPCNT; /*!< Offset: 0x010 (R/W) Sleep Count Register */ + __IOM uint32_t LSUCNT; /*!< Offset: 0x014 (R/W) LSU Count Register */ + __IOM uint32_t FOLDCNT; /*!< Offset: 0x018 (R/W) Folded-instruction Count Register */ + __IM uint32_t PCSR; /*!< Offset: 0x01C (R/ ) Program Counter Sample Register */ + __IOM uint32_t COMP0; /*!< Offset: 0x020 (R/W) Comparator Register 0 */ + __IOM uint32_t MASK0; /*!< Offset: 0x024 (R/W) Mask Register 0 */ + __IOM uint32_t FUNCTION0; /*!< Offset: 0x028 (R/W) Function Register 0 */ + uint32_t RESERVED0[1U]; + __IOM uint32_t COMP1; /*!< Offset: 0x030 (R/W) Comparator Register 1 */ + __IOM uint32_t MASK1; /*!< Offset: 0x034 (R/W) Mask Register 1 */ + __IOM uint32_t FUNCTION1; /*!< Offset: 0x038 (R/W) Function Register 1 */ + uint32_t RESERVED1[1U]; + __IOM uint32_t COMP2; /*!< Offset: 0x040 (R/W) Comparator Register 2 */ + __IOM uint32_t MASK2; /*!< Offset: 0x044 (R/W) Mask Register 2 */ + __IOM uint32_t FUNCTION2; /*!< Offset: 0x048 (R/W) Function Register 2 */ + uint32_t RESERVED2[1U]; + __IOM uint32_t COMP3; /*!< Offset: 0x050 (R/W) Comparator Register 3 */ + __IOM uint32_t MASK3; /*!< Offset: 0x054 (R/W) Mask Register 3 */ + __IOM uint32_t FUNCTION3; /*!< Offset: 0x058 (R/W) Function Register 3 */ +} DWT_Type; + +/* DWT Control Register Definitions */ +#define DWT_CTRL_NUMCOMP_Pos 28U /*!< DWT CTRL: NUMCOMP Position */ +#define DWT_CTRL_NUMCOMP_Msk (0xFUL << DWT_CTRL_NUMCOMP_Pos) /*!< DWT CTRL: NUMCOMP Mask */ + +#define DWT_CTRL_NOTRCPKT_Pos 27U /*!< DWT CTRL: NOTRCPKT Position */ +#define DWT_CTRL_NOTRCPKT_Msk (0x1UL << DWT_CTRL_NOTRCPKT_Pos) /*!< DWT CTRL: NOTRCPKT Mask */ + +#define DWT_CTRL_NOEXTTRIG_Pos 26U /*!< DWT CTRL: NOEXTTRIG Position */ +#define DWT_CTRL_NOEXTTRIG_Msk (0x1UL << DWT_CTRL_NOEXTTRIG_Pos) /*!< DWT CTRL: NOEXTTRIG Mask */ + +#define DWT_CTRL_NOCYCCNT_Pos 25U /*!< DWT CTRL: NOCYCCNT Position */ +#define DWT_CTRL_NOCYCCNT_Msk (0x1UL << DWT_CTRL_NOCYCCNT_Pos) /*!< DWT CTRL: NOCYCCNT Mask */ + +#define DWT_CTRL_NOPRFCNT_Pos 24U /*!< DWT CTRL: NOPRFCNT Position */ +#define DWT_CTRL_NOPRFCNT_Msk (0x1UL << DWT_CTRL_NOPRFCNT_Pos) /*!< DWT CTRL: NOPRFCNT Mask */ + +#define DWT_CTRL_CYCEVTENA_Pos 22U /*!< DWT CTRL: CYCEVTENA Position */ +#define DWT_CTRL_CYCEVTENA_Msk (0x1UL << DWT_CTRL_CYCEVTENA_Pos) /*!< DWT CTRL: CYCEVTENA Mask */ + +#define DWT_CTRL_FOLDEVTENA_Pos 21U /*!< DWT CTRL: FOLDEVTENA Position */ +#define DWT_CTRL_FOLDEVTENA_Msk (0x1UL << DWT_CTRL_FOLDEVTENA_Pos) /*!< DWT CTRL: FOLDEVTENA Mask */ + +#define DWT_CTRL_LSUEVTENA_Pos 20U /*!< DWT CTRL: LSUEVTENA Position */ +#define DWT_CTRL_LSUEVTENA_Msk (0x1UL << DWT_CTRL_LSUEVTENA_Pos) /*!< DWT CTRL: LSUEVTENA Mask */ + +#define DWT_CTRL_SLEEPEVTENA_Pos 19U /*!< DWT CTRL: SLEEPEVTENA Position */ +#define DWT_CTRL_SLEEPEVTENA_Msk (0x1UL << DWT_CTRL_SLEEPEVTENA_Pos) /*!< DWT CTRL: SLEEPEVTENA Mask */ + +#define DWT_CTRL_EXCEVTENA_Pos 18U /*!< DWT CTRL: EXCEVTENA Position */ +#define DWT_CTRL_EXCEVTENA_Msk (0x1UL << DWT_CTRL_EXCEVTENA_Pos) /*!< DWT CTRL: EXCEVTENA Mask */ + +#define DWT_CTRL_CPIEVTENA_Pos 17U /*!< DWT CTRL: CPIEVTENA Position */ +#define DWT_CTRL_CPIEVTENA_Msk (0x1UL << DWT_CTRL_CPIEVTENA_Pos) /*!< DWT CTRL: CPIEVTENA Mask */ + +#define DWT_CTRL_EXCTRCENA_Pos 16U /*!< DWT CTRL: EXCTRCENA Position */ +#define DWT_CTRL_EXCTRCENA_Msk (0x1UL << DWT_CTRL_EXCTRCENA_Pos) /*!< DWT CTRL: EXCTRCENA Mask */ + +#define DWT_CTRL_PCSAMPLENA_Pos 12U /*!< DWT CTRL: PCSAMPLENA Position */ +#define DWT_CTRL_PCSAMPLENA_Msk (0x1UL << DWT_CTRL_PCSAMPLENA_Pos) /*!< DWT CTRL: PCSAMPLENA Mask */ + +#define DWT_CTRL_SYNCTAP_Pos 10U /*!< DWT CTRL: SYNCTAP Position */ +#define DWT_CTRL_SYNCTAP_Msk (0x3UL << DWT_CTRL_SYNCTAP_Pos) /*!< DWT CTRL: SYNCTAP Mask */ + +#define DWT_CTRL_CYCTAP_Pos 9U /*!< DWT CTRL: CYCTAP Position */ +#define DWT_CTRL_CYCTAP_Msk (0x1UL << DWT_CTRL_CYCTAP_Pos) /*!< DWT CTRL: CYCTAP Mask */ + +#define DWT_CTRL_POSTINIT_Pos 5U /*!< DWT CTRL: POSTINIT Position */ +#define DWT_CTRL_POSTINIT_Msk (0xFUL << DWT_CTRL_POSTINIT_Pos) /*!< DWT CTRL: POSTINIT Mask */ + +#define DWT_CTRL_POSTPRESET_Pos 1U /*!< DWT CTRL: POSTPRESET Position */ +#define DWT_CTRL_POSTPRESET_Msk (0xFUL << DWT_CTRL_POSTPRESET_Pos) /*!< DWT CTRL: POSTPRESET Mask */ + +#define DWT_CTRL_CYCCNTENA_Pos 0U /*!< DWT CTRL: CYCCNTENA Position */ +#define DWT_CTRL_CYCCNTENA_Msk (0x1UL /*<< DWT_CTRL_CYCCNTENA_Pos*/) /*!< DWT CTRL: CYCCNTENA Mask */ + +/* DWT CPI Count Register Definitions */ +#define DWT_CPICNT_CPICNT_Pos 0U /*!< DWT CPICNT: CPICNT Position */ +#define DWT_CPICNT_CPICNT_Msk (0xFFUL /*<< DWT_CPICNT_CPICNT_Pos*/) /*!< DWT CPICNT: CPICNT Mask */ + +/* DWT Exception Overhead Count Register Definitions */ +#define DWT_EXCCNT_EXCCNT_Pos 0U /*!< DWT EXCCNT: EXCCNT Position */ +#define DWT_EXCCNT_EXCCNT_Msk (0xFFUL /*<< DWT_EXCCNT_EXCCNT_Pos*/) /*!< DWT EXCCNT: EXCCNT Mask */ + +/* DWT Sleep Count Register Definitions */ +#define DWT_SLEEPCNT_SLEEPCNT_Pos 0U /*!< DWT SLEEPCNT: SLEEPCNT Position */ +#define DWT_SLEEPCNT_SLEEPCNT_Msk (0xFFUL /*<< DWT_SLEEPCNT_SLEEPCNT_Pos*/) /*!< DWT SLEEPCNT: SLEEPCNT Mask */ + +/* DWT LSU Count Register Definitions */ +#define DWT_LSUCNT_LSUCNT_Pos 0U /*!< DWT LSUCNT: LSUCNT Position */ +#define DWT_LSUCNT_LSUCNT_Msk (0xFFUL /*<< DWT_LSUCNT_LSUCNT_Pos*/) /*!< DWT LSUCNT: LSUCNT Mask */ + +/* DWT Folded-instruction Count Register Definitions */ +#define DWT_FOLDCNT_FOLDCNT_Pos 0U /*!< DWT FOLDCNT: FOLDCNT Position */ +#define DWT_FOLDCNT_FOLDCNT_Msk (0xFFUL /*<< DWT_FOLDCNT_FOLDCNT_Pos*/) /*!< DWT FOLDCNT: FOLDCNT Mask */ + +/* DWT Comparator Mask Register Definitions */ +#define DWT_MASK_MASK_Pos 0U /*!< DWT MASK: MASK Position */ +#define DWT_MASK_MASK_Msk (0x1FUL /*<< DWT_MASK_MASK_Pos*/) /*!< DWT MASK: MASK Mask */ + +/* DWT Comparator Function Register Definitions */ +#define DWT_FUNCTION_MATCHED_Pos 24U /*!< DWT FUNCTION: MATCHED Position */ +#define DWT_FUNCTION_MATCHED_Msk (0x1UL << DWT_FUNCTION_MATCHED_Pos) /*!< DWT FUNCTION: MATCHED Mask */ + +#define DWT_FUNCTION_DATAVADDR1_Pos 16U /*!< DWT FUNCTION: DATAVADDR1 Position */ +#define DWT_FUNCTION_DATAVADDR1_Msk (0xFUL << DWT_FUNCTION_DATAVADDR1_Pos) /*!< DWT FUNCTION: DATAVADDR1 Mask */ + +#define DWT_FUNCTION_DATAVADDR0_Pos 12U /*!< DWT FUNCTION: DATAVADDR0 Position */ +#define DWT_FUNCTION_DATAVADDR0_Msk (0xFUL << DWT_FUNCTION_DATAVADDR0_Pos) /*!< DWT FUNCTION: DATAVADDR0 Mask */ + +#define DWT_FUNCTION_DATAVSIZE_Pos 10U /*!< DWT FUNCTION: DATAVSIZE Position */ +#define DWT_FUNCTION_DATAVSIZE_Msk (0x3UL << DWT_FUNCTION_DATAVSIZE_Pos) /*!< DWT FUNCTION: DATAVSIZE Mask */ + +#define DWT_FUNCTION_LNK1ENA_Pos 9U /*!< DWT FUNCTION: LNK1ENA Position */ +#define DWT_FUNCTION_LNK1ENA_Msk (0x1UL << DWT_FUNCTION_LNK1ENA_Pos) /*!< DWT FUNCTION: LNK1ENA Mask */ + +#define DWT_FUNCTION_DATAVMATCH_Pos 8U /*!< DWT FUNCTION: DATAVMATCH Position */ +#define DWT_FUNCTION_DATAVMATCH_Msk (0x1UL << DWT_FUNCTION_DATAVMATCH_Pos) /*!< DWT FUNCTION: DATAVMATCH Mask */ + +#define DWT_FUNCTION_CYCMATCH_Pos 7U /*!< DWT FUNCTION: CYCMATCH Position */ +#define DWT_FUNCTION_CYCMATCH_Msk (0x1UL << DWT_FUNCTION_CYCMATCH_Pos) /*!< DWT FUNCTION: CYCMATCH Mask */ + +#define DWT_FUNCTION_EMITRANGE_Pos 5U /*!< DWT FUNCTION: EMITRANGE Position */ +#define DWT_FUNCTION_EMITRANGE_Msk (0x1UL << DWT_FUNCTION_EMITRANGE_Pos) /*!< DWT FUNCTION: EMITRANGE Mask */ + +#define DWT_FUNCTION_FUNCTION_Pos 0U /*!< DWT FUNCTION: FUNCTION Position */ +#define DWT_FUNCTION_FUNCTION_Msk (0xFUL /*<< DWT_FUNCTION_FUNCTION_Pos*/) /*!< DWT FUNCTION: FUNCTION Mask */ + +/*@}*/ /* end of group CMSIS_DWT */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_TPI Trace Port Interface (TPI) + \brief Type definitions for the Trace Port Interface (TPI) + @{ + */ + +/** + \brief Structure type to access the Trace Port Interface Register (TPI). + */ +typedef struct +{ + __IOM uint32_t SSPSR; /*!< Offset: 0x000 (R/ ) Supported Parallel Port Size Register */ + __IOM uint32_t CSPSR; /*!< Offset: 0x004 (R/W) Current Parallel Port Size Register */ + uint32_t RESERVED0[2U]; + __IOM uint32_t ACPR; /*!< Offset: 0x010 (R/W) Asynchronous Clock Prescaler Register */ + uint32_t RESERVED1[55U]; + __IOM uint32_t SPPR; /*!< Offset: 0x0F0 (R/W) Selected Pin Protocol Register */ + uint32_t RESERVED2[131U]; + __IM uint32_t FFSR; /*!< Offset: 0x300 (R/ ) Formatter and Flush Status Register */ + __IOM uint32_t FFCR; /*!< Offset: 0x304 (R/W) Formatter and Flush Control Register */ + __IM uint32_t FSCR; /*!< Offset: 0x308 (R/ ) Formatter Synchronization Counter Register */ + uint32_t RESERVED3[759U]; + __IM uint32_t TRIGGER; /*!< Offset: 0xEE8 (R/ ) TRIGGER */ + __IM uint32_t FIFO0; /*!< Offset: 0xEEC (R/ ) Integration ETM Data */ + __IM uint32_t ITATBCTR2; /*!< Offset: 0xEF0 (R/ ) ITATBCTR2 */ + uint32_t RESERVED4[1U]; + __IM uint32_t ITATBCTR0; /*!< Offset: 0xEF8 (R/ ) ITATBCTR0 */ + __IM uint32_t FIFO1; /*!< Offset: 0xEFC (R/ ) Integration ITM Data */ + __IOM uint32_t ITCTRL; /*!< Offset: 0xF00 (R/W) Integration Mode Control */ + uint32_t RESERVED5[39U]; + __IOM uint32_t CLAIMSET; /*!< Offset: 0xFA0 (R/W) Claim tag set */ + __IOM uint32_t CLAIMCLR; /*!< Offset: 0xFA4 (R/W) Claim tag clear */ + uint32_t RESERVED7[8U]; + __IM uint32_t DEVID; /*!< Offset: 0xFC8 (R/ ) TPIU_DEVID */ + __IM uint32_t DEVTYPE; /*!< Offset: 0xFCC (R/ ) TPIU_DEVTYPE */ +} TPI_Type; + +/* TPI Asynchronous Clock Prescaler Register Definitions */ +#define TPI_ACPR_PRESCALER_Pos 0U /*!< TPI ACPR: PRESCALER Position */ +#define TPI_ACPR_PRESCALER_Msk (0x1FFFUL /*<< TPI_ACPR_PRESCALER_Pos*/) /*!< TPI ACPR: PRESCALER Mask */ + +/* TPI Selected Pin Protocol Register Definitions */ +#define TPI_SPPR_TXMODE_Pos 0U /*!< TPI SPPR: TXMODE Position */ +#define TPI_SPPR_TXMODE_Msk (0x3UL /*<< TPI_SPPR_TXMODE_Pos*/) /*!< TPI SPPR: TXMODE Mask */ + +/* TPI Formatter and Flush Status Register Definitions */ +#define TPI_FFSR_FtNonStop_Pos 3U /*!< TPI FFSR: FtNonStop Position */ +#define TPI_FFSR_FtNonStop_Msk (0x1UL << TPI_FFSR_FtNonStop_Pos) /*!< TPI FFSR: FtNonStop Mask */ + +#define TPI_FFSR_TCPresent_Pos 2U /*!< TPI FFSR: TCPresent Position */ +#define TPI_FFSR_TCPresent_Msk (0x1UL << TPI_FFSR_TCPresent_Pos) /*!< TPI FFSR: TCPresent Mask */ + +#define TPI_FFSR_FtStopped_Pos 1U /*!< TPI FFSR: FtStopped Position */ +#define TPI_FFSR_FtStopped_Msk (0x1UL << TPI_FFSR_FtStopped_Pos) /*!< TPI FFSR: FtStopped Mask */ + +#define TPI_FFSR_FlInProg_Pos 0U /*!< TPI FFSR: FlInProg Position */ +#define TPI_FFSR_FlInProg_Msk (0x1UL /*<< TPI_FFSR_FlInProg_Pos*/) /*!< TPI FFSR: FlInProg Mask */ + +/* TPI Formatter and Flush Control Register Definitions */ +#define TPI_FFCR_TrigIn_Pos 8U /*!< TPI FFCR: TrigIn Position */ +#define TPI_FFCR_TrigIn_Msk (0x1UL << TPI_FFCR_TrigIn_Pos) /*!< TPI FFCR: TrigIn Mask */ + +#define TPI_FFCR_EnFCont_Pos 1U /*!< TPI FFCR: EnFCont Position */ +#define TPI_FFCR_EnFCont_Msk (0x1UL << TPI_FFCR_EnFCont_Pos) /*!< TPI FFCR: EnFCont Mask */ + +/* TPI TRIGGER Register Definitions */ +#define TPI_TRIGGER_TRIGGER_Pos 0U /*!< TPI TRIGGER: TRIGGER Position */ +#define TPI_TRIGGER_TRIGGER_Msk (0x1UL /*<< TPI_TRIGGER_TRIGGER_Pos*/) /*!< TPI TRIGGER: TRIGGER Mask */ + +/* TPI Integration ETM Data Register Definitions (FIFO0) */ +#define TPI_FIFO0_ITM_ATVALID_Pos 29U /*!< TPI FIFO0: ITM_ATVALID Position */ +#define TPI_FIFO0_ITM_ATVALID_Msk (0x3UL << TPI_FIFO0_ITM_ATVALID_Pos) /*!< TPI FIFO0: ITM_ATVALID Mask */ + +#define TPI_FIFO0_ITM_bytecount_Pos 27U /*!< TPI FIFO0: ITM_bytecount Position */ +#define TPI_FIFO0_ITM_bytecount_Msk (0x3UL << TPI_FIFO0_ITM_bytecount_Pos) /*!< TPI FIFO0: ITM_bytecount Mask */ + +#define TPI_FIFO0_ETM_ATVALID_Pos 26U /*!< TPI FIFO0: ETM_ATVALID Position */ +#define TPI_FIFO0_ETM_ATVALID_Msk (0x3UL << TPI_FIFO0_ETM_ATVALID_Pos) /*!< TPI FIFO0: ETM_ATVALID Mask */ + +#define TPI_FIFO0_ETM_bytecount_Pos 24U /*!< TPI FIFO0: ETM_bytecount Position */ +#define TPI_FIFO0_ETM_bytecount_Msk (0x3UL << TPI_FIFO0_ETM_bytecount_Pos) /*!< TPI FIFO0: ETM_bytecount Mask */ + +#define TPI_FIFO0_ETM2_Pos 16U /*!< TPI FIFO0: ETM2 Position */ +#define TPI_FIFO0_ETM2_Msk (0xFFUL << TPI_FIFO0_ETM2_Pos) /*!< TPI FIFO0: ETM2 Mask */ + +#define TPI_FIFO0_ETM1_Pos 8U /*!< TPI FIFO0: ETM1 Position */ +#define TPI_FIFO0_ETM1_Msk (0xFFUL << TPI_FIFO0_ETM1_Pos) /*!< TPI FIFO0: ETM1 Mask */ + +#define TPI_FIFO0_ETM0_Pos 0U /*!< TPI FIFO0: ETM0 Position */ +#define TPI_FIFO0_ETM0_Msk (0xFFUL /*<< TPI_FIFO0_ETM0_Pos*/) /*!< TPI FIFO0: ETM0 Mask */ + +/* TPI ITATBCTR2 Register Definitions */ +#define TPI_ITATBCTR2_ATREADY_Pos 0U /*!< TPI ITATBCTR2: ATREADY Position */ +#define TPI_ITATBCTR2_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR2_ATREADY_Pos*/) /*!< TPI ITATBCTR2: ATREADY Mask */ + +/* TPI Integration ITM Data Register Definitions (FIFO1) */ +#define TPI_FIFO1_ITM_ATVALID_Pos 29U /*!< TPI FIFO1: ITM_ATVALID Position */ +#define TPI_FIFO1_ITM_ATVALID_Msk (0x3UL << TPI_FIFO1_ITM_ATVALID_Pos) /*!< TPI FIFO1: ITM_ATVALID Mask */ + +#define TPI_FIFO1_ITM_bytecount_Pos 27U /*!< TPI FIFO1: ITM_bytecount Position */ +#define TPI_FIFO1_ITM_bytecount_Msk (0x3UL << TPI_FIFO1_ITM_bytecount_Pos) /*!< TPI FIFO1: ITM_bytecount Mask */ + +#define TPI_FIFO1_ETM_ATVALID_Pos 26U /*!< TPI FIFO1: ETM_ATVALID Position */ +#define TPI_FIFO1_ETM_ATVALID_Msk (0x3UL << TPI_FIFO1_ETM_ATVALID_Pos) /*!< TPI FIFO1: ETM_ATVALID Mask */ + +#define TPI_FIFO1_ETM_bytecount_Pos 24U /*!< TPI FIFO1: ETM_bytecount Position */ +#define TPI_FIFO1_ETM_bytecount_Msk (0x3UL << TPI_FIFO1_ETM_bytecount_Pos) /*!< TPI FIFO1: ETM_bytecount Mask */ + +#define TPI_FIFO1_ITM2_Pos 16U /*!< TPI FIFO1: ITM2 Position */ +#define TPI_FIFO1_ITM2_Msk (0xFFUL << TPI_FIFO1_ITM2_Pos) /*!< TPI FIFO1: ITM2 Mask */ + +#define TPI_FIFO1_ITM1_Pos 8U /*!< TPI FIFO1: ITM1 Position */ +#define TPI_FIFO1_ITM1_Msk (0xFFUL << TPI_FIFO1_ITM1_Pos) /*!< TPI FIFO1: ITM1 Mask */ + +#define TPI_FIFO1_ITM0_Pos 0U /*!< TPI FIFO1: ITM0 Position */ +#define TPI_FIFO1_ITM0_Msk (0xFFUL /*<< TPI_FIFO1_ITM0_Pos*/) /*!< TPI FIFO1: ITM0 Mask */ + +/* TPI ITATBCTR0 Register Definitions */ +#define TPI_ITATBCTR0_ATREADY_Pos 0U /*!< TPI ITATBCTR0: ATREADY Position */ +#define TPI_ITATBCTR0_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR0_ATREADY_Pos*/) /*!< TPI ITATBCTR0: ATREADY Mask */ + +/* TPI Integration Mode Control Register Definitions */ +#define TPI_ITCTRL_Mode_Pos 0U /*!< TPI ITCTRL: Mode Position */ +#define TPI_ITCTRL_Mode_Msk (0x1UL /*<< TPI_ITCTRL_Mode_Pos*/) /*!< TPI ITCTRL: Mode Mask */ + +/* TPI DEVID Register Definitions */ +#define TPI_DEVID_NRZVALID_Pos 11U /*!< TPI DEVID: NRZVALID Position */ +#define TPI_DEVID_NRZVALID_Msk (0x1UL << TPI_DEVID_NRZVALID_Pos) /*!< TPI DEVID: NRZVALID Mask */ + +#define TPI_DEVID_MANCVALID_Pos 10U /*!< TPI DEVID: MANCVALID Position */ +#define TPI_DEVID_MANCVALID_Msk (0x1UL << TPI_DEVID_MANCVALID_Pos) /*!< TPI DEVID: MANCVALID Mask */ + +#define TPI_DEVID_PTINVALID_Pos 9U /*!< TPI DEVID: PTINVALID Position */ +#define TPI_DEVID_PTINVALID_Msk (0x1UL << TPI_DEVID_PTINVALID_Pos) /*!< TPI DEVID: PTINVALID Mask */ + +#define TPI_DEVID_MinBufSz_Pos 6U /*!< TPI DEVID: MinBufSz Position */ +#define TPI_DEVID_MinBufSz_Msk (0x7UL << TPI_DEVID_MinBufSz_Pos) /*!< TPI DEVID: MinBufSz Mask */ + +#define TPI_DEVID_AsynClkIn_Pos 5U /*!< TPI DEVID: AsynClkIn Position */ +#define TPI_DEVID_AsynClkIn_Msk (0x1UL << TPI_DEVID_AsynClkIn_Pos) /*!< TPI DEVID: AsynClkIn Mask */ + +#define TPI_DEVID_NrTraceInput_Pos 0U /*!< TPI DEVID: NrTraceInput Position */ +#define TPI_DEVID_NrTraceInput_Msk (0x1FUL /*<< TPI_DEVID_NrTraceInput_Pos*/) /*!< TPI DEVID: NrTraceInput Mask */ + +/* TPI DEVTYPE Register Definitions */ +#define TPI_DEVTYPE_MajorType_Pos 4U /*!< TPI DEVTYPE: MajorType Position */ +#define TPI_DEVTYPE_MajorType_Msk (0xFUL << TPI_DEVTYPE_MajorType_Pos) /*!< TPI DEVTYPE: MajorType Mask */ + +#define TPI_DEVTYPE_SubType_Pos 0U /*!< TPI DEVTYPE: SubType Position */ +#define TPI_DEVTYPE_SubType_Msk (0xFUL /*<< TPI_DEVTYPE_SubType_Pos*/) /*!< TPI DEVTYPE: SubType Mask */ + +/*@}*/ /* end of group CMSIS_TPI */ + + +#if (__MPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_MPU Memory Protection Unit (MPU) + \brief Type definitions for the Memory Protection Unit (MPU) + @{ + */ + +/** + \brief Structure type to access the Memory Protection Unit (MPU). + */ +typedef struct +{ + __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */ + __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */ + __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region RNRber Register */ + __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */ + __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */ + __IOM uint32_t RBAR_A1; /*!< Offset: 0x014 (R/W) MPU Alias 1 Region Base Address Register */ + __IOM uint32_t RASR_A1; /*!< Offset: 0x018 (R/W) MPU Alias 1 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A2; /*!< Offset: 0x01C (R/W) MPU Alias 2 Region Base Address Register */ + __IOM uint32_t RASR_A2; /*!< Offset: 0x020 (R/W) MPU Alias 2 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A3; /*!< Offset: 0x024 (R/W) MPU Alias 3 Region Base Address Register */ + __IOM uint32_t RASR_A3; /*!< Offset: 0x028 (R/W) MPU Alias 3 Region Attribute and Size Register */ +} MPU_Type; + +/* MPU Type Register Definitions */ +#define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */ +#define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */ + +#define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */ +#define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */ + +#define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */ +#define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */ + +/* MPU Control Register Definitions */ +#define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */ +#define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */ + +#define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */ +#define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */ + +#define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */ +#define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */ + +/* MPU Region Number Register Definitions */ +#define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */ +#define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */ + +/* MPU Region Base Address Register Definitions */ +#define MPU_RBAR_ADDR_Pos 5U /*!< MPU RBAR: ADDR Position */ +#define MPU_RBAR_ADDR_Msk (0x7FFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */ + +#define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */ +#define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */ + +#define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */ +#define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */ + +/* MPU Region Attribute and Size Register Definitions */ +#define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */ +#define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */ + +#define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */ +#define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */ + +#define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */ +#define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */ + +#define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */ +#define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */ + +#define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */ +#define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */ + +#define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */ +#define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */ + +#define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */ +#define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */ + +#define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */ +#define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */ + +#define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */ +#define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */ + +#define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */ +#define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */ + +/*@} end of group CMSIS_MPU */ +#endif + + +#if (__FPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_FPU Floating Point Unit (FPU) + \brief Type definitions for the Floating Point Unit (FPU) + @{ + */ + +/** + \brief Structure type to access the Floating Point Unit (FPU). + */ +typedef struct +{ + uint32_t RESERVED0[1U]; + __IOM uint32_t FPCCR; /*!< Offset: 0x004 (R/W) Floating-Point Context Control Register */ + __IOM uint32_t FPCAR; /*!< Offset: 0x008 (R/W) Floating-Point Context Address Register */ + __IOM uint32_t FPDSCR; /*!< Offset: 0x00C (R/W) Floating-Point Default Status Control Register */ + __IM uint32_t MVFR0; /*!< Offset: 0x010 (R/ ) Media and FP Feature Register 0 */ + __IM uint32_t MVFR1; /*!< Offset: 0x014 (R/ ) Media and FP Feature Register 1 */ +} FPU_Type; + +/* Floating-Point Context Control Register Definitions */ +#define FPU_FPCCR_ASPEN_Pos 31U /*!< FPCCR: ASPEN bit Position */ +#define FPU_FPCCR_ASPEN_Msk (1UL << FPU_FPCCR_ASPEN_Pos) /*!< FPCCR: ASPEN bit Mask */ + +#define FPU_FPCCR_LSPEN_Pos 30U /*!< FPCCR: LSPEN Position */ +#define FPU_FPCCR_LSPEN_Msk (1UL << FPU_FPCCR_LSPEN_Pos) /*!< FPCCR: LSPEN bit Mask */ + +#define FPU_FPCCR_MONRDY_Pos 8U /*!< FPCCR: MONRDY Position */ +#define FPU_FPCCR_MONRDY_Msk (1UL << FPU_FPCCR_MONRDY_Pos) /*!< FPCCR: MONRDY bit Mask */ + +#define FPU_FPCCR_BFRDY_Pos 6U /*!< FPCCR: BFRDY Position */ +#define FPU_FPCCR_BFRDY_Msk (1UL << FPU_FPCCR_BFRDY_Pos) /*!< FPCCR: BFRDY bit Mask */ + +#define FPU_FPCCR_MMRDY_Pos 5U /*!< FPCCR: MMRDY Position */ +#define FPU_FPCCR_MMRDY_Msk (1UL << FPU_FPCCR_MMRDY_Pos) /*!< FPCCR: MMRDY bit Mask */ + +#define FPU_FPCCR_HFRDY_Pos 4U /*!< FPCCR: HFRDY Position */ +#define FPU_FPCCR_HFRDY_Msk (1UL << FPU_FPCCR_HFRDY_Pos) /*!< FPCCR: HFRDY bit Mask */ + +#define FPU_FPCCR_THREAD_Pos 3U /*!< FPCCR: processor mode bit Position */ +#define FPU_FPCCR_THREAD_Msk (1UL << FPU_FPCCR_THREAD_Pos) /*!< FPCCR: processor mode active bit Mask */ + +#define FPU_FPCCR_USER_Pos 1U /*!< FPCCR: privilege level bit Position */ +#define FPU_FPCCR_USER_Msk (1UL << FPU_FPCCR_USER_Pos) /*!< FPCCR: privilege level bit Mask */ + +#define FPU_FPCCR_LSPACT_Pos 0U /*!< FPCCR: Lazy state preservation active bit Position */ +#define FPU_FPCCR_LSPACT_Msk (1UL /*<< FPU_FPCCR_LSPACT_Pos*/) /*!< FPCCR: Lazy state preservation active bit Mask */ + +/* Floating-Point Context Address Register Definitions */ +#define FPU_FPCAR_ADDRESS_Pos 3U /*!< FPCAR: ADDRESS bit Position */ +#define FPU_FPCAR_ADDRESS_Msk (0x1FFFFFFFUL << FPU_FPCAR_ADDRESS_Pos) /*!< FPCAR: ADDRESS bit Mask */ + +/* Floating-Point Default Status Control Register Definitions */ +#define FPU_FPDSCR_AHP_Pos 26U /*!< FPDSCR: AHP bit Position */ +#define FPU_FPDSCR_AHP_Msk (1UL << FPU_FPDSCR_AHP_Pos) /*!< FPDSCR: AHP bit Mask */ + +#define FPU_FPDSCR_DN_Pos 25U /*!< FPDSCR: DN bit Position */ +#define FPU_FPDSCR_DN_Msk (1UL << FPU_FPDSCR_DN_Pos) /*!< FPDSCR: DN bit Mask */ + +#define FPU_FPDSCR_FZ_Pos 24U /*!< FPDSCR: FZ bit Position */ +#define FPU_FPDSCR_FZ_Msk (1UL << FPU_FPDSCR_FZ_Pos) /*!< FPDSCR: FZ bit Mask */ + +#define FPU_FPDSCR_RMode_Pos 22U /*!< FPDSCR: RMode bit Position */ +#define FPU_FPDSCR_RMode_Msk (3UL << FPU_FPDSCR_RMode_Pos) /*!< FPDSCR: RMode bit Mask */ + +/* Media and FP Feature Register 0 Definitions */ +#define FPU_MVFR0_FP_rounding_modes_Pos 28U /*!< MVFR0: FP rounding modes bits Position */ +#define FPU_MVFR0_FP_rounding_modes_Msk (0xFUL << FPU_MVFR0_FP_rounding_modes_Pos) /*!< MVFR0: FP rounding modes bits Mask */ + +#define FPU_MVFR0_Short_vectors_Pos 24U /*!< MVFR0: Short vectors bits Position */ +#define FPU_MVFR0_Short_vectors_Msk (0xFUL << FPU_MVFR0_Short_vectors_Pos) /*!< MVFR0: Short vectors bits Mask */ + +#define FPU_MVFR0_Square_root_Pos 20U /*!< MVFR0: Square root bits Position */ +#define FPU_MVFR0_Square_root_Msk (0xFUL << FPU_MVFR0_Square_root_Pos) /*!< MVFR0: Square root bits Mask */ + +#define FPU_MVFR0_Divide_Pos 16U /*!< MVFR0: Divide bits Position */ +#define FPU_MVFR0_Divide_Msk (0xFUL << FPU_MVFR0_Divide_Pos) /*!< MVFR0: Divide bits Mask */ + +#define FPU_MVFR0_FP_excep_trapping_Pos 12U /*!< MVFR0: FP exception trapping bits Position */ +#define FPU_MVFR0_FP_excep_trapping_Msk (0xFUL << FPU_MVFR0_FP_excep_trapping_Pos) /*!< MVFR0: FP exception trapping bits Mask */ + +#define FPU_MVFR0_Double_precision_Pos 8U /*!< MVFR0: Double-precision bits Position */ +#define FPU_MVFR0_Double_precision_Msk (0xFUL << FPU_MVFR0_Double_precision_Pos) /*!< MVFR0: Double-precision bits Mask */ + +#define FPU_MVFR0_Single_precision_Pos 4U /*!< MVFR0: Single-precision bits Position */ +#define FPU_MVFR0_Single_precision_Msk (0xFUL << FPU_MVFR0_Single_precision_Pos) /*!< MVFR0: Single-precision bits Mask */ + +#define FPU_MVFR0_A_SIMD_registers_Pos 0U /*!< MVFR0: A_SIMD registers bits Position */ +#define FPU_MVFR0_A_SIMD_registers_Msk (0xFUL /*<< FPU_MVFR0_A_SIMD_registers_Pos*/) /*!< MVFR0: A_SIMD registers bits Mask */ + +/* Media and FP Feature Register 1 Definitions */ +#define FPU_MVFR1_FP_fused_MAC_Pos 28U /*!< MVFR1: FP fused MAC bits Position */ +#define FPU_MVFR1_FP_fused_MAC_Msk (0xFUL << FPU_MVFR1_FP_fused_MAC_Pos) /*!< MVFR1: FP fused MAC bits Mask */ + +#define FPU_MVFR1_FP_HPFP_Pos 24U /*!< MVFR1: FP HPFP bits Position */ +#define FPU_MVFR1_FP_HPFP_Msk (0xFUL << FPU_MVFR1_FP_HPFP_Pos) /*!< MVFR1: FP HPFP bits Mask */ + +#define FPU_MVFR1_D_NaN_mode_Pos 4U /*!< MVFR1: D_NaN mode bits Position */ +#define FPU_MVFR1_D_NaN_mode_Msk (0xFUL << FPU_MVFR1_D_NaN_mode_Pos) /*!< MVFR1: D_NaN mode bits Mask */ + +#define FPU_MVFR1_FtZ_mode_Pos 0U /*!< MVFR1: FtZ mode bits Position */ +#define FPU_MVFR1_FtZ_mode_Msk (0xFUL /*<< FPU_MVFR1_FtZ_mode_Pos*/) /*!< MVFR1: FtZ mode bits Mask */ + +/*@} end of group CMSIS_FPU */ +#endif + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug) + \brief Type definitions for the Core Debug Registers + @{ + */ + +/** + \brief Structure type to access the Core Debug Register (CoreDebug). + */ +typedef struct +{ + __IOM uint32_t DHCSR; /*!< Offset: 0x000 (R/W) Debug Halting Control and Status Register */ + __OM uint32_t DCRSR; /*!< Offset: 0x004 ( /W) Debug Core Register Selector Register */ + __IOM uint32_t DCRDR; /*!< Offset: 0x008 (R/W) Debug Core Register Data Register */ + __IOM uint32_t DEMCR; /*!< Offset: 0x00C (R/W) Debug Exception and Monitor Control Register */ +} CoreDebug_Type; + +/* Debug Halting Control and Status Register Definitions */ +#define CoreDebug_DHCSR_DBGKEY_Pos 16U /*!< CoreDebug DHCSR: DBGKEY Position */ +#define CoreDebug_DHCSR_DBGKEY_Msk (0xFFFFUL << CoreDebug_DHCSR_DBGKEY_Pos) /*!< CoreDebug DHCSR: DBGKEY Mask */ + +#define CoreDebug_DHCSR_S_RESET_ST_Pos 25U /*!< CoreDebug DHCSR: S_RESET_ST Position */ +#define CoreDebug_DHCSR_S_RESET_ST_Msk (1UL << CoreDebug_DHCSR_S_RESET_ST_Pos) /*!< CoreDebug DHCSR: S_RESET_ST Mask */ + +#define CoreDebug_DHCSR_S_RETIRE_ST_Pos 24U /*!< CoreDebug DHCSR: S_RETIRE_ST Position */ +#define CoreDebug_DHCSR_S_RETIRE_ST_Msk (1UL << CoreDebug_DHCSR_S_RETIRE_ST_Pos) /*!< CoreDebug DHCSR: S_RETIRE_ST Mask */ + +#define CoreDebug_DHCSR_S_LOCKUP_Pos 19U /*!< CoreDebug DHCSR: S_LOCKUP Position */ +#define CoreDebug_DHCSR_S_LOCKUP_Msk (1UL << CoreDebug_DHCSR_S_LOCKUP_Pos) /*!< CoreDebug DHCSR: S_LOCKUP Mask */ + +#define CoreDebug_DHCSR_S_SLEEP_Pos 18U /*!< CoreDebug DHCSR: S_SLEEP Position */ +#define CoreDebug_DHCSR_S_SLEEP_Msk (1UL << CoreDebug_DHCSR_S_SLEEP_Pos) /*!< CoreDebug DHCSR: S_SLEEP Mask */ + +#define CoreDebug_DHCSR_S_HALT_Pos 17U /*!< CoreDebug DHCSR: S_HALT Position */ +#define CoreDebug_DHCSR_S_HALT_Msk (1UL << CoreDebug_DHCSR_S_HALT_Pos) /*!< CoreDebug DHCSR: S_HALT Mask */ + +#define CoreDebug_DHCSR_S_REGRDY_Pos 16U /*!< CoreDebug DHCSR: S_REGRDY Position */ +#define CoreDebug_DHCSR_S_REGRDY_Msk (1UL << CoreDebug_DHCSR_S_REGRDY_Pos) /*!< CoreDebug DHCSR: S_REGRDY Mask */ + +#define CoreDebug_DHCSR_C_SNAPSTALL_Pos 5U /*!< CoreDebug DHCSR: C_SNAPSTALL Position */ +#define CoreDebug_DHCSR_C_SNAPSTALL_Msk (1UL << CoreDebug_DHCSR_C_SNAPSTALL_Pos) /*!< CoreDebug DHCSR: C_SNAPSTALL Mask */ + +#define CoreDebug_DHCSR_C_MASKINTS_Pos 3U /*!< CoreDebug DHCSR: C_MASKINTS Position */ +#define CoreDebug_DHCSR_C_MASKINTS_Msk (1UL << CoreDebug_DHCSR_C_MASKINTS_Pos) /*!< CoreDebug DHCSR: C_MASKINTS Mask */ + +#define CoreDebug_DHCSR_C_STEP_Pos 2U /*!< CoreDebug DHCSR: C_STEP Position */ +#define CoreDebug_DHCSR_C_STEP_Msk (1UL << CoreDebug_DHCSR_C_STEP_Pos) /*!< CoreDebug DHCSR: C_STEP Mask */ + +#define CoreDebug_DHCSR_C_HALT_Pos 1U /*!< CoreDebug DHCSR: C_HALT Position */ +#define CoreDebug_DHCSR_C_HALT_Msk (1UL << CoreDebug_DHCSR_C_HALT_Pos) /*!< CoreDebug DHCSR: C_HALT Mask */ + +#define CoreDebug_DHCSR_C_DEBUGEN_Pos 0U /*!< CoreDebug DHCSR: C_DEBUGEN Position */ +#define CoreDebug_DHCSR_C_DEBUGEN_Msk (1UL /*<< CoreDebug_DHCSR_C_DEBUGEN_Pos*/) /*!< CoreDebug DHCSR: C_DEBUGEN Mask */ + +/* Debug Core Register Selector Register Definitions */ +#define CoreDebug_DCRSR_REGWnR_Pos 16U /*!< CoreDebug DCRSR: REGWnR Position */ +#define CoreDebug_DCRSR_REGWnR_Msk (1UL << CoreDebug_DCRSR_REGWnR_Pos) /*!< CoreDebug DCRSR: REGWnR Mask */ + +#define CoreDebug_DCRSR_REGSEL_Pos 0U /*!< CoreDebug DCRSR: REGSEL Position */ +#define CoreDebug_DCRSR_REGSEL_Msk (0x1FUL /*<< CoreDebug_DCRSR_REGSEL_Pos*/) /*!< CoreDebug DCRSR: REGSEL Mask */ + +/* Debug Exception and Monitor Control Register Definitions */ +#define CoreDebug_DEMCR_TRCENA_Pos 24U /*!< CoreDebug DEMCR: TRCENA Position */ +#define CoreDebug_DEMCR_TRCENA_Msk (1UL << CoreDebug_DEMCR_TRCENA_Pos) /*!< CoreDebug DEMCR: TRCENA Mask */ + +#define CoreDebug_DEMCR_MON_REQ_Pos 19U /*!< CoreDebug DEMCR: MON_REQ Position */ +#define CoreDebug_DEMCR_MON_REQ_Msk (1UL << CoreDebug_DEMCR_MON_REQ_Pos) /*!< CoreDebug DEMCR: MON_REQ Mask */ + +#define CoreDebug_DEMCR_MON_STEP_Pos 18U /*!< CoreDebug DEMCR: MON_STEP Position */ +#define CoreDebug_DEMCR_MON_STEP_Msk (1UL << CoreDebug_DEMCR_MON_STEP_Pos) /*!< CoreDebug DEMCR: MON_STEP Mask */ + +#define CoreDebug_DEMCR_MON_PEND_Pos 17U /*!< CoreDebug DEMCR: MON_PEND Position */ +#define CoreDebug_DEMCR_MON_PEND_Msk (1UL << CoreDebug_DEMCR_MON_PEND_Pos) /*!< CoreDebug DEMCR: MON_PEND Mask */ + +#define CoreDebug_DEMCR_MON_EN_Pos 16U /*!< CoreDebug DEMCR: MON_EN Position */ +#define CoreDebug_DEMCR_MON_EN_Msk (1UL << CoreDebug_DEMCR_MON_EN_Pos) /*!< CoreDebug DEMCR: MON_EN Mask */ + +#define CoreDebug_DEMCR_VC_HARDERR_Pos 10U /*!< CoreDebug DEMCR: VC_HARDERR Position */ +#define CoreDebug_DEMCR_VC_HARDERR_Msk (1UL << CoreDebug_DEMCR_VC_HARDERR_Pos) /*!< CoreDebug DEMCR: VC_HARDERR Mask */ + +#define CoreDebug_DEMCR_VC_INTERR_Pos 9U /*!< CoreDebug DEMCR: VC_INTERR Position */ +#define CoreDebug_DEMCR_VC_INTERR_Msk (1UL << CoreDebug_DEMCR_VC_INTERR_Pos) /*!< CoreDebug DEMCR: VC_INTERR Mask */ + +#define CoreDebug_DEMCR_VC_BUSERR_Pos 8U /*!< CoreDebug DEMCR: VC_BUSERR Position */ +#define CoreDebug_DEMCR_VC_BUSERR_Msk (1UL << CoreDebug_DEMCR_VC_BUSERR_Pos) /*!< CoreDebug DEMCR: VC_BUSERR Mask */ + +#define CoreDebug_DEMCR_VC_STATERR_Pos 7U /*!< CoreDebug DEMCR: VC_STATERR Position */ +#define CoreDebug_DEMCR_VC_STATERR_Msk (1UL << CoreDebug_DEMCR_VC_STATERR_Pos) /*!< CoreDebug DEMCR: VC_STATERR Mask */ + +#define CoreDebug_DEMCR_VC_CHKERR_Pos 6U /*!< CoreDebug DEMCR: VC_CHKERR Position */ +#define CoreDebug_DEMCR_VC_CHKERR_Msk (1UL << CoreDebug_DEMCR_VC_CHKERR_Pos) /*!< CoreDebug DEMCR: VC_CHKERR Mask */ + +#define CoreDebug_DEMCR_VC_NOCPERR_Pos 5U /*!< CoreDebug DEMCR: VC_NOCPERR Position */ +#define CoreDebug_DEMCR_VC_NOCPERR_Msk (1UL << CoreDebug_DEMCR_VC_NOCPERR_Pos) /*!< CoreDebug DEMCR: VC_NOCPERR Mask */ + +#define CoreDebug_DEMCR_VC_MMERR_Pos 4U /*!< CoreDebug DEMCR: VC_MMERR Position */ +#define CoreDebug_DEMCR_VC_MMERR_Msk (1UL << CoreDebug_DEMCR_VC_MMERR_Pos) /*!< CoreDebug DEMCR: VC_MMERR Mask */ + +#define CoreDebug_DEMCR_VC_CORERESET_Pos 0U /*!< CoreDebug DEMCR: VC_CORERESET Position */ +#define CoreDebug_DEMCR_VC_CORERESET_Msk (1UL /*<< CoreDebug_DEMCR_VC_CORERESET_Pos*/) /*!< CoreDebug DEMCR: VC_CORERESET Mask */ + +/*@} end of group CMSIS_CoreDebug */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_bitfield Core register bit field macros + \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk). + @{ + */ + +/** + \brief Mask and shift a bit field value for use in a register bit range. + \param[in] field Name of the register bit field. + \param[in] value Value of the bit field. + \return Masked and shifted value. +*/ +#define _VAL2FLD(field, value) ((value << field ## _Pos) & field ## _Msk) + +/** + \brief Mask and shift a register value to extract a bit filed value. + \param[in] field Name of the register bit field. + \param[in] value Value of register. + \return Masked and shifted bit field value. +*/ +#define _FLD2VAL(field, value) ((value & field ## _Msk) >> field ## _Pos) + +/*@} end of group CMSIS_core_bitfield */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_base Core Definitions + \brief Definitions for base addresses, unions, and structures. + @{ + */ + +/* Memory mapping of Cortex-M4 Hardware */ +#define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */ +#define ITM_BASE (0xE0000000UL) /*!< ITM Base Address */ +#define DWT_BASE (0xE0001000UL) /*!< DWT Base Address */ +#define TPI_BASE (0xE0040000UL) /*!< TPI Base Address */ +#define CoreDebug_BASE (0xE000EDF0UL) /*!< Core Debug Base Address */ +#define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */ +#define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */ +#define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */ + +#define SCnSCB ((SCnSCB_Type *) SCS_BASE ) /*!< System control Register not in SCB */ +#define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */ +#define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */ +#define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */ +#define ITM ((ITM_Type *) ITM_BASE ) /*!< ITM configuration struct */ +#define DWT ((DWT_Type *) DWT_BASE ) /*!< DWT configuration struct */ +#define TPI ((TPI_Type *) TPI_BASE ) /*!< TPI configuration struct */ +#define CoreDebug ((CoreDebug_Type *) CoreDebug_BASE) /*!< Core Debug configuration struct */ + +#if (__MPU_PRESENT == 1U) + #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */ + #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */ +#endif + +#if (__FPU_PRESENT == 1U) + #define FPU_BASE (SCS_BASE + 0x0F30UL) /*!< Floating Point Unit */ + #define FPU ((FPU_Type *) FPU_BASE ) /*!< Floating Point Unit */ +#endif + +/*@} */ + + + +/******************************************************************************* + * Hardware Abstraction Layer + Core Function Interface contains: + - Core NVIC Functions + - Core SysTick Functions + - Core Debug Functions + - Core Register Access Functions + ******************************************************************************/ +/** + \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference +*/ + + + +/* ########################## NVIC functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_NVICFunctions NVIC Functions + \brief Functions that manage interrupts and exceptions via the NVIC. + @{ + */ + +/** + \brief Set Priority Grouping + \details Sets the priority grouping field using the required unlock sequence. + The parameter PriorityGroup is assigned to the field SCB->AIRCR [10:8] PRIGROUP field. + Only values from 0..7 are used. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Priority grouping field. + */ +__STATIC_INLINE void NVIC_SetPriorityGrouping(uint32_t PriorityGroup) +{ + uint32_t reg_value; + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + + reg_value = SCB->AIRCR; /* read old register configuration */ + reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ + reg_value = (reg_value | + ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (PriorityGroupTmp << 8U) ); /* Insert write key and priorty group */ + SCB->AIRCR = reg_value; +} + + +/** + \brief Get Priority Grouping + \details Reads the priority grouping field from the NVIC Interrupt Controller. + \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). + */ +__STATIC_INLINE uint32_t NVIC_GetPriorityGrouping(void) +{ + return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); +} + + +/** + \brief Enable External Interrupt + \details Enables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) +{ + NVIC->ISER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Disable External Interrupt + \details Disables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn) +{ + NVIC->ICER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the pending register in the NVIC and returns the pending bit for the specified interrupt. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + */ +__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of an external interrupt. + \param [in] IRQn Interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of an external interrupt. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ICPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Active Interrupt + \details Reads the active register in NVIC and returns the active bit. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not active. + \return 1 Interrupt status is active. + */ +__STATIC_INLINE uint32_t NVIC_GetActive(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->IABR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Interrupt Priority + \details Sets the priority of an interrupt. + \note The priority cannot be set for every core interrupt. + \param [in] IRQn Interrupt number. + \param [in] priority Priority to set. + */ +__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) +{ + if ((int32_t)(IRQn) < 0) + { + SCB->SHP[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } + else + { + NVIC->IP[((uint32_t)(int32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } +} + + +/** + \brief Get Interrupt Priority + \details Reads the priority of an interrupt. + The interrupt number can be positive to specify an external (device specific) interrupt, + or negative to specify an internal (core) interrupt. + \param [in] IRQn Interrupt number. + \return Interrupt Priority. + Value is aligned automatically to the implemented priority bits of the microcontroller. + */ +__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn) +{ + + if ((int32_t)(IRQn) < 0) + { + return(((uint32_t)SCB->SHP[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] >> (8U - __NVIC_PRIO_BITS))); + } + else + { + return(((uint32_t)NVIC->IP[((uint32_t)(int32_t)IRQn)] >> (8U - __NVIC_PRIO_BITS))); + } +} + + +/** + \brief Encode Priority + \details Encodes the priority for an interrupt with the given priority group, + preemptive priority value, and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Used priority group. + \param [in] PreemptPriority Preemptive priority value (starting from 0). + \param [in] SubPriority Subpriority value (starting from 0). + \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). + */ +__STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + return ( + ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | + ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) + ); +} + + +/** + \brief Decode Priority + \details Decodes an interrupt priority value with a given priority group to + preemptive priority value and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS) the smallest possible priority group is set. + \param [in] Priority Priority value, which can be retrieved with the function \ref NVIC_GetPriority(). + \param [in] PriorityGroup Used priority group. + \param [out] pPreemptPriority Preemptive priority value (starting from 0). + \param [out] pSubPriority Subpriority value (starting from 0). + */ +__STATIC_INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* const pPreemptPriority, uint32_t* const pSubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + *pPreemptPriority = (Priority >> SubPriorityBits) & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL); + *pSubPriority = (Priority ) & (uint32_t)((1UL << (SubPriorityBits )) - 1UL); +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +__STATIC_INLINE void NVIC_SystemReset(void) +{ + __DSB(); /* Ensure all outstanding memory accesses included + buffered write are completed before reset */ + SCB->AIRCR = (uint32_t)((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) | + SCB_AIRCR_SYSRESETREQ_Msk ); /* Keep priority group unchanged */ + __DSB(); /* Ensure completion of memory access */ + + for(;;) /* wait until reset */ + { + __NOP(); + } +} + +/*@} end of CMSIS_Core_NVICFunctions */ + + + +/* ################################## SysTick function ############################################ */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_SysTickFunctions SysTick Functions + \brief Functions that configure the System. + @{ + */ + +#if (__Vendor_SysTickConfig == 0U) + +/** + \brief System Tick Configuration + \details Initializes the System Timer and its interrupt, and starts the System Tick Timer. + Counter is in free running mode to generate periodic interrupts. + \param [in] ticks Number of ticks between two interrupts. + \return 0 Function succeeded. + \return 1 Function failed. + \note When the variable __Vendor_SysTickConfig is set to 1, then the + 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) + { + return (1UL); /* Reload value impossible */ + } + + SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ + NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ + SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ + SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | + SysTick_CTRL_TICKINT_Msk | + SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + return (0UL); /* Function successful */ +} + +#endif + +/*@} end of CMSIS_Core_SysTickFunctions */ + + + +/* ##################################### Debug In/Output function ########################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_core_DebugFunctions ITM Functions + \brief Functions that access the ITM debug interface. + @{ + */ + +extern volatile int32_t ITM_RxBuffer; /*!< External variable to receive characters. */ +#define ITM_RXBUFFER_EMPTY 0x5AA55AA5U /*!< Value identifying \ref ITM_RxBuffer is ready for next character. */ + + +/** + \brief ITM Send Character + \details Transmits a character via the ITM channel 0, and + \li Just returns when no debugger is connected that has booked the output. + \li Is blocking when a debugger is connected, but the previous character sent has not been transmitted. + \param [in] ch Character to transmit. + \returns Character to transmit. + */ +__STATIC_INLINE uint32_t ITM_SendChar (uint32_t ch) +{ + if (((ITM->TCR & ITM_TCR_ITMENA_Msk) != 0UL) && /* ITM enabled */ + ((ITM->TER & 1UL ) != 0UL) ) /* ITM Port #0 enabled */ + { + while (ITM->PORT[0U].u32 == 0UL) + { + __NOP(); + } + ITM->PORT[0U].u8 = (uint8_t)ch; + } + return (ch); +} + + +/** + \brief ITM Receive Character + \details Inputs a character via the external variable \ref ITM_RxBuffer. + \return Received character. + \return -1 No character pending. + */ +__STATIC_INLINE int32_t ITM_ReceiveChar (void) +{ + int32_t ch = -1; /* no character available */ + + if (ITM_RxBuffer != ITM_RXBUFFER_EMPTY) + { + ch = ITM_RxBuffer; + ITM_RxBuffer = ITM_RXBUFFER_EMPTY; /* ready for next character */ + } + + return (ch); +} + + +/** + \brief ITM Check Character + \details Checks whether a character is pending for reading in the variable \ref ITM_RxBuffer. + \return 0 No character available. + \return 1 Character available. + */ +__STATIC_INLINE int32_t ITM_CheckChar (void) +{ + + if (ITM_RxBuffer == ITM_RXBUFFER_EMPTY) + { + return (0); /* no character available */ + } + else + { + return (1); /* character available */ + } +} + +/*@} end of CMSIS_core_DebugFunctions */ + + + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM4_H_DEPENDANT */ + +#endif /* __CMSIS_GENERIC */ diff --git a/Testing/Drivers/CMSIS/Include/core_cm7.h b/Testing/Drivers/CMSIS/Include/core_cm7.h new file mode 100644 index 0000000..3b7530a --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cm7.h @@ -0,0 +1,2512 @@ +/**************************************************************************//** + * @file core_cm7.h + * @brief CMSIS Cortex-M7 Core Peripheral Access Layer Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CM7_H_GENERIC +#define __CORE_CM7_H_GENERIC + +#include + +#ifdef __cplusplus + extern "C" { +#endif + +/** + \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions + CMSIS violates the following MISRA-C:2004 rules: + + \li Required Rule 8.5, object/function definition in header file.
+ Function definitions in header files are used to allow 'inlining'. + + \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.
+ Unions are used for effective representation of core registers. + + \li Advisory Rule 19.7, Function-like macro defined.
+ Function-like macros are used to allow more efficient code. + */ + + +/******************************************************************************* + * CMSIS definitions + ******************************************************************************/ +/** + \ingroup Cortex_M7 + @{ + */ + +/* CMSIS CM7 definitions */ +#define __CM7_CMSIS_VERSION_MAIN (0x04U) /*!< [31:16] CMSIS HAL main version */ +#define __CM7_CMSIS_VERSION_SUB (0x1EU) /*!< [15:0] CMSIS HAL sub version */ +#define __CM7_CMSIS_VERSION ((__CM7_CMSIS_VERSION_MAIN << 16U) | \ + __CM7_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */ + +#define __CORTEX_M (0x07U) /*!< Cortex-M Core */ + + +#if defined ( __CC_ARM ) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined ( __GNUC__ ) + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __ICCARM__ ) + #define __ASM __asm /*!< asm keyword for IAR Compiler */ + #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ + #define __STATIC_INLINE static inline + +#elif defined ( __TMS470__ ) + #define __ASM __asm /*!< asm keyword for TI CCS Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __TASKING__ ) + #define __ASM __asm /*!< asm keyword for TASKING Compiler */ + #define __INLINE inline /*!< inline keyword for TASKING Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __CSMC__ ) + #define __packed + #define __ASM _asm /*!< asm keyword for COSMIC Compiler */ + #define __INLINE inline /*!< inline keyword for COSMIC Compiler. Use -pc99 on compile line */ + #define __STATIC_INLINE static inline + +#else + #error Unknown compiler +#endif + +/** __FPU_USED indicates whether an FPU is used or not. + For this, __FPU_PRESENT has to be checked prior to making use of FPU specific registers and functions. +*/ +#if defined ( __CC_ARM ) + #if defined __TARGET_FPU_VFP + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #if defined __ARM_PCS_VFP + #if (__FPU_PRESENT == 1) + #define __FPU_USED 1U + #else + #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __GNUC__ ) + #if defined (__VFP_FP__) && !defined(__SOFTFP__) + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __ICCARM__ ) + #if defined __ARMVFP__ + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __TMS470__ ) + #if defined __TI_VFP_SUPPORT__ + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __TASKING__ ) + #if defined __FPU_VFP__ + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#elif defined ( __CSMC__ ) + #if ( __CSMC__ & 0x400U) + #if (__FPU_PRESENT == 1U) + #define __FPU_USED 1U + #else + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #define __FPU_USED 0U + #endif + #else + #define __FPU_USED 0U + #endif + +#endif + +#include "core_cmInstr.h" /* Core Instruction Access */ +#include "core_cmFunc.h" /* Core Function Access */ +#include "core_cmSimd.h" /* Compiler specific SIMD Intrinsics */ + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM7_H_GENERIC */ + +#ifndef __CMSIS_GENERIC + +#ifndef __CORE_CM7_H_DEPENDANT +#define __CORE_CM7_H_DEPENDANT + +#ifdef __cplusplus + extern "C" { +#endif + +/* check device defines and use defaults */ +#if defined __CHECK_DEVICE_DEFINES + #ifndef __CM7_REV + #define __CM7_REV 0x0000U + #warning "__CM7_REV not defined in device header file; using default!" + #endif + + #ifndef __FPU_PRESENT + #define __FPU_PRESENT 0U + #warning "__FPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __MPU_PRESENT + #define __MPU_PRESENT 0U + #warning "__MPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __ICACHE_PRESENT + #define __ICACHE_PRESENT 0U + #warning "__ICACHE_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __DCACHE_PRESENT + #define __DCACHE_PRESENT 0U + #warning "__DCACHE_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __DTCM_PRESENT + #define __DTCM_PRESENT 0U + #warning "__DTCM_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __NVIC_PRIO_BITS + #define __NVIC_PRIO_BITS 3U + #warning "__NVIC_PRIO_BITS not defined in device header file; using default!" + #endif + + #ifndef __Vendor_SysTickConfig + #define __Vendor_SysTickConfig 0U + #warning "__Vendor_SysTickConfig not defined in device header file; using default!" + #endif +#endif + +/* IO definitions (access restrictions to peripheral registers) */ +/** + \defgroup CMSIS_glob_defs CMSIS Global Defines + + IO Type Qualifiers are used + \li to specify the access to peripheral variables. + \li for automatic generation of peripheral register debug information. +*/ +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +/* following defines should be used for structure members */ +#define __IM volatile const /*! Defines 'read only' structure member permissions */ +#define __OM volatile /*! Defines 'write only' structure member permissions */ +#define __IOM volatile /*! Defines 'read / write' structure member permissions */ + +/*@} end of group Cortex_M7 */ + + + +/******************************************************************************* + * Register Abstraction + Core Register contain: + - Core Register + - Core NVIC Register + - Core SCB Register + - Core SysTick Register + - Core Debug Register + - Core MPU Register + - Core FPU Register + ******************************************************************************/ +/** + \defgroup CMSIS_core_register Defines and Type Definitions + \brief Type definitions and defines for Cortex-M processor based devices. +*/ + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CORE Status and Control Registers + \brief Core Register type definitions. + @{ + */ + +/** + \brief Union type to access the Application Program Status Register (APSR). + */ +typedef union +{ + struct + { + uint32_t _reserved0:16; /*!< bit: 0..15 Reserved */ + uint32_t GE:4; /*!< bit: 16..19 Greater than or Equal flags */ + uint32_t _reserved1:7; /*!< bit: 20..26 Reserved */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} APSR_Type; + +/* APSR Register Definitions */ +#define APSR_N_Pos 31U /*!< APSR: N Position */ +#define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */ + +#define APSR_Z_Pos 30U /*!< APSR: Z Position */ +#define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */ + +#define APSR_C_Pos 29U /*!< APSR: C Position */ +#define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */ + +#define APSR_V_Pos 28U /*!< APSR: V Position */ +#define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */ + +#define APSR_Q_Pos 27U /*!< APSR: Q Position */ +#define APSR_Q_Msk (1UL << APSR_Q_Pos) /*!< APSR: Q Mask */ + +#define APSR_GE_Pos 16U /*!< APSR: GE Position */ +#define APSR_GE_Msk (0xFUL << APSR_GE_Pos) /*!< APSR: GE Mask */ + + +/** + \brief Union type to access the Interrupt Program Status Register (IPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} IPSR_Type; + +/* IPSR Register Definitions */ +#define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */ +#define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */ + + +/** + \brief Union type to access the Special-Purpose Program Status Registers (xPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:7; /*!< bit: 9..15 Reserved */ + uint32_t GE:4; /*!< bit: 16..19 Greater than or Equal flags */ + uint32_t _reserved1:4; /*!< bit: 20..23 Reserved */ + uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */ + uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} xPSR_Type; + +/* xPSR Register Definitions */ +#define xPSR_N_Pos 31U /*!< xPSR: N Position */ +#define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */ + +#define xPSR_Z_Pos 30U /*!< xPSR: Z Position */ +#define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */ + +#define xPSR_C_Pos 29U /*!< xPSR: C Position */ +#define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */ + +#define xPSR_V_Pos 28U /*!< xPSR: V Position */ +#define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */ + +#define xPSR_Q_Pos 27U /*!< xPSR: Q Position */ +#define xPSR_Q_Msk (1UL << xPSR_Q_Pos) /*!< xPSR: Q Mask */ + +#define xPSR_IT_Pos 25U /*!< xPSR: IT Position */ +#define xPSR_IT_Msk (3UL << xPSR_IT_Pos) /*!< xPSR: IT Mask */ + +#define xPSR_T_Pos 24U /*!< xPSR: T Position */ +#define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */ + +#define xPSR_GE_Pos 16U /*!< xPSR: GE Position */ +#define xPSR_GE_Msk (0xFUL << xPSR_GE_Pos) /*!< xPSR: GE Mask */ + +#define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */ +#define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */ + + +/** + \brief Union type to access the Control Registers (CONTROL). + */ +typedef union +{ + struct + { + uint32_t nPRIV:1; /*!< bit: 0 Execution privilege in Thread mode */ + uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */ + uint32_t FPCA:1; /*!< bit: 2 FP extension active flag */ + uint32_t _reserved0:29; /*!< bit: 3..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} CONTROL_Type; + +/* CONTROL Register Definitions */ +#define CONTROL_FPCA_Pos 2U /*!< CONTROL: FPCA Position */ +#define CONTROL_FPCA_Msk (1UL << CONTROL_FPCA_Pos) /*!< CONTROL: FPCA Mask */ + +#define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */ +#define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */ + +#define CONTROL_nPRIV_Pos 0U /*!< CONTROL: nPRIV Position */ +#define CONTROL_nPRIV_Msk (1UL /*<< CONTROL_nPRIV_Pos*/) /*!< CONTROL: nPRIV Mask */ + +/*@} end of group CMSIS_CORE */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC) + \brief Type definitions for the NVIC Registers + @{ + */ + +/** + \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC). + */ +typedef struct +{ + __IOM uint32_t ISER[8U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */ + uint32_t RESERVED0[24U]; + __IOM uint32_t ICER[8U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */ + uint32_t RSERVED1[24U]; + __IOM uint32_t ISPR[8U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */ + uint32_t RESERVED2[24U]; + __IOM uint32_t ICPR[8U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */ + uint32_t RESERVED3[24U]; + __IOM uint32_t IABR[8U]; /*!< Offset: 0x200 (R/W) Interrupt Active bit Register */ + uint32_t RESERVED4[56U]; + __IOM uint8_t IP[240U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register (8Bit wide) */ + uint32_t RESERVED5[644U]; + __OM uint32_t STIR; /*!< Offset: 0xE00 ( /W) Software Trigger Interrupt Register */ +} NVIC_Type; + +/* Software Triggered Interrupt Register Definitions */ +#define NVIC_STIR_INTID_Pos 0U /*!< STIR: INTLINESNUM Position */ +#define NVIC_STIR_INTID_Msk (0x1FFUL /*<< NVIC_STIR_INTID_Pos*/) /*!< STIR: INTLINESNUM Mask */ + +/*@} end of group CMSIS_NVIC */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCB System Control Block (SCB) + \brief Type definitions for the System Control Block Registers + @{ + */ + +/** + \brief Structure type to access the System Control Block (SCB). + */ +typedef struct +{ + __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */ + __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */ + __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */ + __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */ + __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */ + __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */ + __IOM uint8_t SHPR[12U]; /*!< Offset: 0x018 (R/W) System Handlers Priority Registers (4-7, 8-11, 12-15) */ + __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */ + __IOM uint32_t CFSR; /*!< Offset: 0x028 (R/W) Configurable Fault Status Register */ + __IOM uint32_t HFSR; /*!< Offset: 0x02C (R/W) HardFault Status Register */ + __IOM uint32_t DFSR; /*!< Offset: 0x030 (R/W) Debug Fault Status Register */ + __IOM uint32_t MMFAR; /*!< Offset: 0x034 (R/W) MemManage Fault Address Register */ + __IOM uint32_t BFAR; /*!< Offset: 0x038 (R/W) BusFault Address Register */ + __IOM uint32_t AFSR; /*!< Offset: 0x03C (R/W) Auxiliary Fault Status Register */ + __IM uint32_t ID_PFR[2U]; /*!< Offset: 0x040 (R/ ) Processor Feature Register */ + __IM uint32_t ID_DFR; /*!< Offset: 0x048 (R/ ) Debug Feature Register */ + __IM uint32_t ID_AFR; /*!< Offset: 0x04C (R/ ) Auxiliary Feature Register */ + __IM uint32_t ID_MFR[4U]; /*!< Offset: 0x050 (R/ ) Memory Model Feature Register */ + __IM uint32_t ID_ISAR[5U]; /*!< Offset: 0x060 (R/ ) Instruction Set Attributes Register */ + uint32_t RESERVED0[1U]; + __IM uint32_t CLIDR; /*!< Offset: 0x078 (R/ ) Cache Level ID register */ + __IM uint32_t CTR; /*!< Offset: 0x07C (R/ ) Cache Type register */ + __IM uint32_t CCSIDR; /*!< Offset: 0x080 (R/ ) Cache Size ID Register */ + __IOM uint32_t CSSELR; /*!< Offset: 0x084 (R/W) Cache Size Selection Register */ + __IOM uint32_t CPACR; /*!< Offset: 0x088 (R/W) Coprocessor Access Control Register */ + uint32_t RESERVED3[93U]; + __OM uint32_t STIR; /*!< Offset: 0x200 ( /W) Software Triggered Interrupt Register */ + uint32_t RESERVED4[15U]; + __IM uint32_t MVFR0; /*!< Offset: 0x240 (R/ ) Media and VFP Feature Register 0 */ + __IM uint32_t MVFR1; /*!< Offset: 0x244 (R/ ) Media and VFP Feature Register 1 */ + __IM uint32_t MVFR2; /*!< Offset: 0x248 (R/ ) Media and VFP Feature Register 1 */ + uint32_t RESERVED5[1U]; + __OM uint32_t ICIALLU; /*!< Offset: 0x250 ( /W) I-Cache Invalidate All to PoU */ + uint32_t RESERVED6[1U]; + __OM uint32_t ICIMVAU; /*!< Offset: 0x258 ( /W) I-Cache Invalidate by MVA to PoU */ + __OM uint32_t DCIMVAC; /*!< Offset: 0x25C ( /W) D-Cache Invalidate by MVA to PoC */ + __OM uint32_t DCISW; /*!< Offset: 0x260 ( /W) D-Cache Invalidate by Set-way */ + __OM uint32_t DCCMVAU; /*!< Offset: 0x264 ( /W) D-Cache Clean by MVA to PoU */ + __OM uint32_t DCCMVAC; /*!< Offset: 0x268 ( /W) D-Cache Clean by MVA to PoC */ + __OM uint32_t DCCSW; /*!< Offset: 0x26C ( /W) D-Cache Clean by Set-way */ + __OM uint32_t DCCIMVAC; /*!< Offset: 0x270 ( /W) D-Cache Clean and Invalidate by MVA to PoC */ + __OM uint32_t DCCISW; /*!< Offset: 0x274 ( /W) D-Cache Clean and Invalidate by Set-way */ + uint32_t RESERVED7[6U]; + __IOM uint32_t ITCMCR; /*!< Offset: 0x290 (R/W) Instruction Tightly-Coupled Memory Control Register */ + __IOM uint32_t DTCMCR; /*!< Offset: 0x294 (R/W) Data Tightly-Coupled Memory Control Registers */ + __IOM uint32_t AHBPCR; /*!< Offset: 0x298 (R/W) AHBP Control Register */ + __IOM uint32_t CACR; /*!< Offset: 0x29C (R/W) L1 Cache Control Register */ + __IOM uint32_t AHBSCR; /*!< Offset: 0x2A0 (R/W) AHB Slave Control Register */ + uint32_t RESERVED8[1U]; + __IOM uint32_t ABFSR; /*!< Offset: 0x2A8 (R/W) Auxiliary Bus Fault Status Register */ +} SCB_Type; + +/* SCB CPUID Register Definitions */ +#define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */ +#define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */ + +#define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */ +#define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */ + +#define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */ +#define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */ + +#define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */ +#define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */ + +#define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */ +#define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */ +#define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */ + +#define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */ +#define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */ + +#define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */ +#define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */ + +#define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */ +#define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */ + +#define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */ +#define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */ + +#define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */ +#define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */ + +#define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */ +#define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */ + +#define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */ +#define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */ + +#define SCB_ICSR_RETTOBASE_Pos 11U /*!< SCB ICSR: RETTOBASE Position */ +#define SCB_ICSR_RETTOBASE_Msk (1UL << SCB_ICSR_RETTOBASE_Pos) /*!< SCB ICSR: RETTOBASE Mask */ + +#define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */ +#define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */ + +/* SCB Vector Table Offset Register Definitions */ +#define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB VTOR: TBLOFF Position */ +#define SCB_VTOR_TBLOFF_Msk (0x1FFFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */ + +/* SCB Application Interrupt and Reset Control Register Definitions */ +#define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */ +#define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */ + +#define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */ +#define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */ + +#define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */ +#define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */ + +#define SCB_AIRCR_PRIGROUP_Pos 8U /*!< SCB AIRCR: PRIGROUP Position */ +#define SCB_AIRCR_PRIGROUP_Msk (7UL << SCB_AIRCR_PRIGROUP_Pos) /*!< SCB AIRCR: PRIGROUP Mask */ + +#define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */ +#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */ + +#define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */ +#define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */ + +#define SCB_AIRCR_VECTRESET_Pos 0U /*!< SCB AIRCR: VECTRESET Position */ +#define SCB_AIRCR_VECTRESET_Msk (1UL /*<< SCB_AIRCR_VECTRESET_Pos*/) /*!< SCB AIRCR: VECTRESET Mask */ + +/* SCB System Control Register Definitions */ +#define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */ +#define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */ + +#define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */ +#define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */ + +#define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */ +#define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */ + +/* SCB Configuration Control Register Definitions */ +#define SCB_CCR_BP_Pos 18U /*!< SCB CCR: Branch prediction enable bit Position */ +#define SCB_CCR_BP_Msk (1UL << SCB_CCR_BP_Pos) /*!< SCB CCR: Branch prediction enable bit Mask */ + +#define SCB_CCR_IC_Pos 17U /*!< SCB CCR: Instruction cache enable bit Position */ +#define SCB_CCR_IC_Msk (1UL << SCB_CCR_IC_Pos) /*!< SCB CCR: Instruction cache enable bit Mask */ + +#define SCB_CCR_DC_Pos 16U /*!< SCB CCR: Cache enable bit Position */ +#define SCB_CCR_DC_Msk (1UL << SCB_CCR_DC_Pos) /*!< SCB CCR: Cache enable bit Mask */ + +#define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */ +#define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */ + +#define SCB_CCR_BFHFNMIGN_Pos 8U /*!< SCB CCR: BFHFNMIGN Position */ +#define SCB_CCR_BFHFNMIGN_Msk (1UL << SCB_CCR_BFHFNMIGN_Pos) /*!< SCB CCR: BFHFNMIGN Mask */ + +#define SCB_CCR_DIV_0_TRP_Pos 4U /*!< SCB CCR: DIV_0_TRP Position */ +#define SCB_CCR_DIV_0_TRP_Msk (1UL << SCB_CCR_DIV_0_TRP_Pos) /*!< SCB CCR: DIV_0_TRP Mask */ + +#define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */ +#define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */ + +#define SCB_CCR_USERSETMPEND_Pos 1U /*!< SCB CCR: USERSETMPEND Position */ +#define SCB_CCR_USERSETMPEND_Msk (1UL << SCB_CCR_USERSETMPEND_Pos) /*!< SCB CCR: USERSETMPEND Mask */ + +#define SCB_CCR_NONBASETHRDENA_Pos 0U /*!< SCB CCR: NONBASETHRDENA Position */ +#define SCB_CCR_NONBASETHRDENA_Msk (1UL /*<< SCB_CCR_NONBASETHRDENA_Pos*/) /*!< SCB CCR: NONBASETHRDENA Mask */ + +/* SCB System Handler Control and State Register Definitions */ +#define SCB_SHCSR_USGFAULTENA_Pos 18U /*!< SCB SHCSR: USGFAULTENA Position */ +#define SCB_SHCSR_USGFAULTENA_Msk (1UL << SCB_SHCSR_USGFAULTENA_Pos) /*!< SCB SHCSR: USGFAULTENA Mask */ + +#define SCB_SHCSR_BUSFAULTENA_Pos 17U /*!< SCB SHCSR: BUSFAULTENA Position */ +#define SCB_SHCSR_BUSFAULTENA_Msk (1UL << SCB_SHCSR_BUSFAULTENA_Pos) /*!< SCB SHCSR: BUSFAULTENA Mask */ + +#define SCB_SHCSR_MEMFAULTENA_Pos 16U /*!< SCB SHCSR: MEMFAULTENA Position */ +#define SCB_SHCSR_MEMFAULTENA_Msk (1UL << SCB_SHCSR_MEMFAULTENA_Pos) /*!< SCB SHCSR: MEMFAULTENA Mask */ + +#define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */ +#define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */ + +#define SCB_SHCSR_BUSFAULTPENDED_Pos 14U /*!< SCB SHCSR: BUSFAULTPENDED Position */ +#define SCB_SHCSR_BUSFAULTPENDED_Msk (1UL << SCB_SHCSR_BUSFAULTPENDED_Pos) /*!< SCB SHCSR: BUSFAULTPENDED Mask */ + +#define SCB_SHCSR_MEMFAULTPENDED_Pos 13U /*!< SCB SHCSR: MEMFAULTPENDED Position */ +#define SCB_SHCSR_MEMFAULTPENDED_Msk (1UL << SCB_SHCSR_MEMFAULTPENDED_Pos) /*!< SCB SHCSR: MEMFAULTPENDED Mask */ + +#define SCB_SHCSR_USGFAULTPENDED_Pos 12U /*!< SCB SHCSR: USGFAULTPENDED Position */ +#define SCB_SHCSR_USGFAULTPENDED_Msk (1UL << SCB_SHCSR_USGFAULTPENDED_Pos) /*!< SCB SHCSR: USGFAULTPENDED Mask */ + +#define SCB_SHCSR_SYSTICKACT_Pos 11U /*!< SCB SHCSR: SYSTICKACT Position */ +#define SCB_SHCSR_SYSTICKACT_Msk (1UL << SCB_SHCSR_SYSTICKACT_Pos) /*!< SCB SHCSR: SYSTICKACT Mask */ + +#define SCB_SHCSR_PENDSVACT_Pos 10U /*!< SCB SHCSR: PENDSVACT Position */ +#define SCB_SHCSR_PENDSVACT_Msk (1UL << SCB_SHCSR_PENDSVACT_Pos) /*!< SCB SHCSR: PENDSVACT Mask */ + +#define SCB_SHCSR_MONITORACT_Pos 8U /*!< SCB SHCSR: MONITORACT Position */ +#define SCB_SHCSR_MONITORACT_Msk (1UL << SCB_SHCSR_MONITORACT_Pos) /*!< SCB SHCSR: MONITORACT Mask */ + +#define SCB_SHCSR_SVCALLACT_Pos 7U /*!< SCB SHCSR: SVCALLACT Position */ +#define SCB_SHCSR_SVCALLACT_Msk (1UL << SCB_SHCSR_SVCALLACT_Pos) /*!< SCB SHCSR: SVCALLACT Mask */ + +#define SCB_SHCSR_USGFAULTACT_Pos 3U /*!< SCB SHCSR: USGFAULTACT Position */ +#define SCB_SHCSR_USGFAULTACT_Msk (1UL << SCB_SHCSR_USGFAULTACT_Pos) /*!< SCB SHCSR: USGFAULTACT Mask */ + +#define SCB_SHCSR_BUSFAULTACT_Pos 1U /*!< SCB SHCSR: BUSFAULTACT Position */ +#define SCB_SHCSR_BUSFAULTACT_Msk (1UL << SCB_SHCSR_BUSFAULTACT_Pos) /*!< SCB SHCSR: BUSFAULTACT Mask */ + +#define SCB_SHCSR_MEMFAULTACT_Pos 0U /*!< SCB SHCSR: MEMFAULTACT Position */ +#define SCB_SHCSR_MEMFAULTACT_Msk (1UL /*<< SCB_SHCSR_MEMFAULTACT_Pos*/) /*!< SCB SHCSR: MEMFAULTACT Mask */ + +/* SCB Configurable Fault Status Register Definitions */ +#define SCB_CFSR_USGFAULTSR_Pos 16U /*!< SCB CFSR: Usage Fault Status Register Position */ +#define SCB_CFSR_USGFAULTSR_Msk (0xFFFFUL << SCB_CFSR_USGFAULTSR_Pos) /*!< SCB CFSR: Usage Fault Status Register Mask */ + +#define SCB_CFSR_BUSFAULTSR_Pos 8U /*!< SCB CFSR: Bus Fault Status Register Position */ +#define SCB_CFSR_BUSFAULTSR_Msk (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos) /*!< SCB CFSR: Bus Fault Status Register Mask */ + +#define SCB_CFSR_MEMFAULTSR_Pos 0U /*!< SCB CFSR: Memory Manage Fault Status Register Position */ +#define SCB_CFSR_MEMFAULTSR_Msk (0xFFUL /*<< SCB_CFSR_MEMFAULTSR_Pos*/) /*!< SCB CFSR: Memory Manage Fault Status Register Mask */ + +/* SCB Hard Fault Status Register Definitions */ +#define SCB_HFSR_DEBUGEVT_Pos 31U /*!< SCB HFSR: DEBUGEVT Position */ +#define SCB_HFSR_DEBUGEVT_Msk (1UL << SCB_HFSR_DEBUGEVT_Pos) /*!< SCB HFSR: DEBUGEVT Mask */ + +#define SCB_HFSR_FORCED_Pos 30U /*!< SCB HFSR: FORCED Position */ +#define SCB_HFSR_FORCED_Msk (1UL << SCB_HFSR_FORCED_Pos) /*!< SCB HFSR: FORCED Mask */ + +#define SCB_HFSR_VECTTBL_Pos 1U /*!< SCB HFSR: VECTTBL Position */ +#define SCB_HFSR_VECTTBL_Msk (1UL << SCB_HFSR_VECTTBL_Pos) /*!< SCB HFSR: VECTTBL Mask */ + +/* SCB Debug Fault Status Register Definitions */ +#define SCB_DFSR_EXTERNAL_Pos 4U /*!< SCB DFSR: EXTERNAL Position */ +#define SCB_DFSR_EXTERNAL_Msk (1UL << SCB_DFSR_EXTERNAL_Pos) /*!< SCB DFSR: EXTERNAL Mask */ + +#define SCB_DFSR_VCATCH_Pos 3U /*!< SCB DFSR: VCATCH Position */ +#define SCB_DFSR_VCATCH_Msk (1UL << SCB_DFSR_VCATCH_Pos) /*!< SCB DFSR: VCATCH Mask */ + +#define SCB_DFSR_DWTTRAP_Pos 2U /*!< SCB DFSR: DWTTRAP Position */ +#define SCB_DFSR_DWTTRAP_Msk (1UL << SCB_DFSR_DWTTRAP_Pos) /*!< SCB DFSR: DWTTRAP Mask */ + +#define SCB_DFSR_BKPT_Pos 1U /*!< SCB DFSR: BKPT Position */ +#define SCB_DFSR_BKPT_Msk (1UL << SCB_DFSR_BKPT_Pos) /*!< SCB DFSR: BKPT Mask */ + +#define SCB_DFSR_HALTED_Pos 0U /*!< SCB DFSR: HALTED Position */ +#define SCB_DFSR_HALTED_Msk (1UL /*<< SCB_DFSR_HALTED_Pos*/) /*!< SCB DFSR: HALTED Mask */ + +/* SCB Cache Level ID Register Definitions */ +#define SCB_CLIDR_LOUU_Pos 27U /*!< SCB CLIDR: LoUU Position */ +#define SCB_CLIDR_LOUU_Msk (7UL << SCB_CLIDR_LOUU_Pos) /*!< SCB CLIDR: LoUU Mask */ + +#define SCB_CLIDR_LOC_Pos 24U /*!< SCB CLIDR: LoC Position */ +#define SCB_CLIDR_LOC_Msk (7UL << SCB_CLIDR_LOC_Pos) /*!< SCB CLIDR: LoC Mask */ + +/* SCB Cache Type Register Definitions */ +#define SCB_CTR_FORMAT_Pos 29U /*!< SCB CTR: Format Position */ +#define SCB_CTR_FORMAT_Msk (7UL << SCB_CTR_FORMAT_Pos) /*!< SCB CTR: Format Mask */ + +#define SCB_CTR_CWG_Pos 24U /*!< SCB CTR: CWG Position */ +#define SCB_CTR_CWG_Msk (0xFUL << SCB_CTR_CWG_Pos) /*!< SCB CTR: CWG Mask */ + +#define SCB_CTR_ERG_Pos 20U /*!< SCB CTR: ERG Position */ +#define SCB_CTR_ERG_Msk (0xFUL << SCB_CTR_ERG_Pos) /*!< SCB CTR: ERG Mask */ + +#define SCB_CTR_DMINLINE_Pos 16U /*!< SCB CTR: DminLine Position */ +#define SCB_CTR_DMINLINE_Msk (0xFUL << SCB_CTR_DMINLINE_Pos) /*!< SCB CTR: DminLine Mask */ + +#define SCB_CTR_IMINLINE_Pos 0U /*!< SCB CTR: ImInLine Position */ +#define SCB_CTR_IMINLINE_Msk (0xFUL /*<< SCB_CTR_IMINLINE_Pos*/) /*!< SCB CTR: ImInLine Mask */ + +/* SCB Cache Size ID Register Definitions */ +#define SCB_CCSIDR_WT_Pos 31U /*!< SCB CCSIDR: WT Position */ +#define SCB_CCSIDR_WT_Msk (1UL << SCB_CCSIDR_WT_Pos) /*!< SCB CCSIDR: WT Mask */ + +#define SCB_CCSIDR_WB_Pos 30U /*!< SCB CCSIDR: WB Position */ +#define SCB_CCSIDR_WB_Msk (1UL << SCB_CCSIDR_WB_Pos) /*!< SCB CCSIDR: WB Mask */ + +#define SCB_CCSIDR_RA_Pos 29U /*!< SCB CCSIDR: RA Position */ +#define SCB_CCSIDR_RA_Msk (1UL << SCB_CCSIDR_RA_Pos) /*!< SCB CCSIDR: RA Mask */ + +#define SCB_CCSIDR_WA_Pos 28U /*!< SCB CCSIDR: WA Position */ +#define SCB_CCSIDR_WA_Msk (1UL << SCB_CCSIDR_WA_Pos) /*!< SCB CCSIDR: WA Mask */ + +#define SCB_CCSIDR_NUMSETS_Pos 13U /*!< SCB CCSIDR: NumSets Position */ +#define SCB_CCSIDR_NUMSETS_Msk (0x7FFFUL << SCB_CCSIDR_NUMSETS_Pos) /*!< SCB CCSIDR: NumSets Mask */ + +#define SCB_CCSIDR_ASSOCIATIVITY_Pos 3U /*!< SCB CCSIDR: Associativity Position */ +#define SCB_CCSIDR_ASSOCIATIVITY_Msk (0x3FFUL << SCB_CCSIDR_ASSOCIATIVITY_Pos) /*!< SCB CCSIDR: Associativity Mask */ + +#define SCB_CCSIDR_LINESIZE_Pos 0U /*!< SCB CCSIDR: LineSize Position */ +#define SCB_CCSIDR_LINESIZE_Msk (7UL /*<< SCB_CCSIDR_LINESIZE_Pos*/) /*!< SCB CCSIDR: LineSize Mask */ + +/* SCB Cache Size Selection Register Definitions */ +#define SCB_CSSELR_LEVEL_Pos 1U /*!< SCB CSSELR: Level Position */ +#define SCB_CSSELR_LEVEL_Msk (7UL << SCB_CSSELR_LEVEL_Pos) /*!< SCB CSSELR: Level Mask */ + +#define SCB_CSSELR_IND_Pos 0U /*!< SCB CSSELR: InD Position */ +#define SCB_CSSELR_IND_Msk (1UL /*<< SCB_CSSELR_IND_Pos*/) /*!< SCB CSSELR: InD Mask */ + +/* SCB Software Triggered Interrupt Register Definitions */ +#define SCB_STIR_INTID_Pos 0U /*!< SCB STIR: INTID Position */ +#define SCB_STIR_INTID_Msk (0x1FFUL /*<< SCB_STIR_INTID_Pos*/) /*!< SCB STIR: INTID Mask */ + +/* SCB D-Cache Invalidate by Set-way Register Definitions */ +#define SCB_DCISW_WAY_Pos 30U /*!< SCB DCISW: Way Position */ +#define SCB_DCISW_WAY_Msk (3UL << SCB_DCISW_WAY_Pos) /*!< SCB DCISW: Way Mask */ + +#define SCB_DCISW_SET_Pos 5U /*!< SCB DCISW: Set Position */ +#define SCB_DCISW_SET_Msk (0x1FFUL << SCB_DCISW_SET_Pos) /*!< SCB DCISW: Set Mask */ + +/* SCB D-Cache Clean by Set-way Register Definitions */ +#define SCB_DCCSW_WAY_Pos 30U /*!< SCB DCCSW: Way Position */ +#define SCB_DCCSW_WAY_Msk (3UL << SCB_DCCSW_WAY_Pos) /*!< SCB DCCSW: Way Mask */ + +#define SCB_DCCSW_SET_Pos 5U /*!< SCB DCCSW: Set Position */ +#define SCB_DCCSW_SET_Msk (0x1FFUL << SCB_DCCSW_SET_Pos) /*!< SCB DCCSW: Set Mask */ + +/* SCB D-Cache Clean and Invalidate by Set-way Register Definitions */ +#define SCB_DCCISW_WAY_Pos 30U /*!< SCB DCCISW: Way Position */ +#define SCB_DCCISW_WAY_Msk (3UL << SCB_DCCISW_WAY_Pos) /*!< SCB DCCISW: Way Mask */ + +#define SCB_DCCISW_SET_Pos 5U /*!< SCB DCCISW: Set Position */ +#define SCB_DCCISW_SET_Msk (0x1FFUL << SCB_DCCISW_SET_Pos) /*!< SCB DCCISW: Set Mask */ + +/* Instruction Tightly-Coupled Memory Control Register Definitions */ +#define SCB_ITCMCR_SZ_Pos 3U /*!< SCB ITCMCR: SZ Position */ +#define SCB_ITCMCR_SZ_Msk (0xFUL << SCB_ITCMCR_SZ_Pos) /*!< SCB ITCMCR: SZ Mask */ + +#define SCB_ITCMCR_RETEN_Pos 2U /*!< SCB ITCMCR: RETEN Position */ +#define SCB_ITCMCR_RETEN_Msk (1UL << SCB_ITCMCR_RETEN_Pos) /*!< SCB ITCMCR: RETEN Mask */ + +#define SCB_ITCMCR_RMW_Pos 1U /*!< SCB ITCMCR: RMW Position */ +#define SCB_ITCMCR_RMW_Msk (1UL << SCB_ITCMCR_RMW_Pos) /*!< SCB ITCMCR: RMW Mask */ + +#define SCB_ITCMCR_EN_Pos 0U /*!< SCB ITCMCR: EN Position */ +#define SCB_ITCMCR_EN_Msk (1UL /*<< SCB_ITCMCR_EN_Pos*/) /*!< SCB ITCMCR: EN Mask */ + +/* Data Tightly-Coupled Memory Control Register Definitions */ +#define SCB_DTCMCR_SZ_Pos 3U /*!< SCB DTCMCR: SZ Position */ +#define SCB_DTCMCR_SZ_Msk (0xFUL << SCB_DTCMCR_SZ_Pos) /*!< SCB DTCMCR: SZ Mask */ + +#define SCB_DTCMCR_RETEN_Pos 2U /*!< SCB DTCMCR: RETEN Position */ +#define SCB_DTCMCR_RETEN_Msk (1UL << SCB_DTCMCR_RETEN_Pos) /*!< SCB DTCMCR: RETEN Mask */ + +#define SCB_DTCMCR_RMW_Pos 1U /*!< SCB DTCMCR: RMW Position */ +#define SCB_DTCMCR_RMW_Msk (1UL << SCB_DTCMCR_RMW_Pos) /*!< SCB DTCMCR: RMW Mask */ + +#define SCB_DTCMCR_EN_Pos 0U /*!< SCB DTCMCR: EN Position */ +#define SCB_DTCMCR_EN_Msk (1UL /*<< SCB_DTCMCR_EN_Pos*/) /*!< SCB DTCMCR: EN Mask */ + +/* AHBP Control Register Definitions */ +#define SCB_AHBPCR_SZ_Pos 1U /*!< SCB AHBPCR: SZ Position */ +#define SCB_AHBPCR_SZ_Msk (7UL << SCB_AHBPCR_SZ_Pos) /*!< SCB AHBPCR: SZ Mask */ + +#define SCB_AHBPCR_EN_Pos 0U /*!< SCB AHBPCR: EN Position */ +#define SCB_AHBPCR_EN_Msk (1UL /*<< SCB_AHBPCR_EN_Pos*/) /*!< SCB AHBPCR: EN Mask */ + +/* L1 Cache Control Register Definitions */ +#define SCB_CACR_FORCEWT_Pos 2U /*!< SCB CACR: FORCEWT Position */ +#define SCB_CACR_FORCEWT_Msk (1UL << SCB_CACR_FORCEWT_Pos) /*!< SCB CACR: FORCEWT Mask */ + +#define SCB_CACR_ECCEN_Pos 1U /*!< SCB CACR: ECCEN Position */ +#define SCB_CACR_ECCEN_Msk (1UL << SCB_CACR_ECCEN_Pos) /*!< SCB CACR: ECCEN Mask */ + +#define SCB_CACR_SIWT_Pos 0U /*!< SCB CACR: SIWT Position */ +#define SCB_CACR_SIWT_Msk (1UL /*<< SCB_CACR_SIWT_Pos*/) /*!< SCB CACR: SIWT Mask */ + +/* AHBS Control Register Definitions */ +#define SCB_AHBSCR_INITCOUNT_Pos 11U /*!< SCB AHBSCR: INITCOUNT Position */ +#define SCB_AHBSCR_INITCOUNT_Msk (0x1FUL << SCB_AHBPCR_INITCOUNT_Pos) /*!< SCB AHBSCR: INITCOUNT Mask */ + +#define SCB_AHBSCR_TPRI_Pos 2U /*!< SCB AHBSCR: TPRI Position */ +#define SCB_AHBSCR_TPRI_Msk (0x1FFUL << SCB_AHBPCR_TPRI_Pos) /*!< SCB AHBSCR: TPRI Mask */ + +#define SCB_AHBSCR_CTL_Pos 0U /*!< SCB AHBSCR: CTL Position*/ +#define SCB_AHBSCR_CTL_Msk (3UL /*<< SCB_AHBPCR_CTL_Pos*/) /*!< SCB AHBSCR: CTL Mask */ + +/* Auxiliary Bus Fault Status Register Definitions */ +#define SCB_ABFSR_AXIMTYPE_Pos 8U /*!< SCB ABFSR: AXIMTYPE Position*/ +#define SCB_ABFSR_AXIMTYPE_Msk (3UL << SCB_ABFSR_AXIMTYPE_Pos) /*!< SCB ABFSR: AXIMTYPE Mask */ + +#define SCB_ABFSR_EPPB_Pos 4U /*!< SCB ABFSR: EPPB Position*/ +#define SCB_ABFSR_EPPB_Msk (1UL << SCB_ABFSR_EPPB_Pos) /*!< SCB ABFSR: EPPB Mask */ + +#define SCB_ABFSR_AXIM_Pos 3U /*!< SCB ABFSR: AXIM Position*/ +#define SCB_ABFSR_AXIM_Msk (1UL << SCB_ABFSR_AXIM_Pos) /*!< SCB ABFSR: AXIM Mask */ + +#define SCB_ABFSR_AHBP_Pos 2U /*!< SCB ABFSR: AHBP Position*/ +#define SCB_ABFSR_AHBP_Msk (1UL << SCB_ABFSR_AHBP_Pos) /*!< SCB ABFSR: AHBP Mask */ + +#define SCB_ABFSR_DTCM_Pos 1U /*!< SCB ABFSR: DTCM Position*/ +#define SCB_ABFSR_DTCM_Msk (1UL << SCB_ABFSR_DTCM_Pos) /*!< SCB ABFSR: DTCM Mask */ + +#define SCB_ABFSR_ITCM_Pos 0U /*!< SCB ABFSR: ITCM Position*/ +#define SCB_ABFSR_ITCM_Msk (1UL /*<< SCB_ABFSR_ITCM_Pos*/) /*!< SCB ABFSR: ITCM Mask */ + +/*@} end of group CMSIS_SCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCnSCB System Controls not in SCB (SCnSCB) + \brief Type definitions for the System Control and ID Register not in the SCB + @{ + */ + +/** + \brief Structure type to access the System Control and ID Register not in the SCB. + */ +typedef struct +{ + uint32_t RESERVED0[1U]; + __IM uint32_t ICTR; /*!< Offset: 0x004 (R/ ) Interrupt Controller Type Register */ + __IOM uint32_t ACTLR; /*!< Offset: 0x008 (R/W) Auxiliary Control Register */ +} SCnSCB_Type; + +/* Interrupt Controller Type Register Definitions */ +#define SCnSCB_ICTR_INTLINESNUM_Pos 0U /*!< ICTR: INTLINESNUM Position */ +#define SCnSCB_ICTR_INTLINESNUM_Msk (0xFUL /*<< SCnSCB_ICTR_INTLINESNUM_Pos*/) /*!< ICTR: INTLINESNUM Mask */ + +/* Auxiliary Control Register Definitions */ +#define SCnSCB_ACTLR_DISITMATBFLUSH_Pos 12U /*!< ACTLR: DISITMATBFLUSH Position */ +#define SCnSCB_ACTLR_DISITMATBFLUSH_Msk (1UL << SCnSCB_ACTLR_DISITMATBFLUSH_Pos) /*!< ACTLR: DISITMATBFLUSH Mask */ + +#define SCnSCB_ACTLR_DISRAMODE_Pos 11U /*!< ACTLR: DISRAMODE Position */ +#define SCnSCB_ACTLR_DISRAMODE_Msk (1UL << SCnSCB_ACTLR_DISRAMODE_Pos) /*!< ACTLR: DISRAMODE Mask */ + +#define SCnSCB_ACTLR_FPEXCODIS_Pos 10U /*!< ACTLR: FPEXCODIS Position */ +#define SCnSCB_ACTLR_FPEXCODIS_Msk (1UL << SCnSCB_ACTLR_FPEXCODIS_Pos) /*!< ACTLR: FPEXCODIS Mask */ + +#define SCnSCB_ACTLR_DISFOLD_Pos 2U /*!< ACTLR: DISFOLD Position */ +#define SCnSCB_ACTLR_DISFOLD_Msk (1UL << SCnSCB_ACTLR_DISFOLD_Pos) /*!< ACTLR: DISFOLD Mask */ + +#define SCnSCB_ACTLR_DISMCYCINT_Pos 0U /*!< ACTLR: DISMCYCINT Position */ +#define SCnSCB_ACTLR_DISMCYCINT_Msk (1UL /*<< SCnSCB_ACTLR_DISMCYCINT_Pos*/) /*!< ACTLR: DISMCYCINT Mask */ + +/*@} end of group CMSIS_SCnotSCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SysTick System Tick Timer (SysTick) + \brief Type definitions for the System Timer Registers. + @{ + */ + +/** + \brief Structure type to access the System Timer (SysTick). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */ + __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */ + __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ + __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */ +} SysTick_Type; + +/* SysTick Control / Status Register Definitions */ +#define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */ +#define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */ + +#define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */ +#define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */ + +#define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */ +#define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */ + +#define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */ +#define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */ + +/* SysTick Reload Register Definitions */ +#define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */ +#define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */ + +/* SysTick Current Register Definitions */ +#define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ +#define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ + +/* SysTick Calibration Register Definitions */ +#define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */ +#define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */ + +#define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */ +#define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */ + +#define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */ +#define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */ + +/*@} end of group CMSIS_SysTick */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_ITM Instrumentation Trace Macrocell (ITM) + \brief Type definitions for the Instrumentation Trace Macrocell (ITM) + @{ + */ + +/** + \brief Structure type to access the Instrumentation Trace Macrocell Register (ITM). + */ +typedef struct +{ + __OM union + { + __OM uint8_t u8; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 8-bit */ + __OM uint16_t u16; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 16-bit */ + __OM uint32_t u32; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 32-bit */ + } PORT [32U]; /*!< Offset: 0x000 ( /W) ITM Stimulus Port Registers */ + uint32_t RESERVED0[864U]; + __IOM uint32_t TER; /*!< Offset: 0xE00 (R/W) ITM Trace Enable Register */ + uint32_t RESERVED1[15U]; + __IOM uint32_t TPR; /*!< Offset: 0xE40 (R/W) ITM Trace Privilege Register */ + uint32_t RESERVED2[15U]; + __IOM uint32_t TCR; /*!< Offset: 0xE80 (R/W) ITM Trace Control Register */ + uint32_t RESERVED3[29U]; + __OM uint32_t IWR; /*!< Offset: 0xEF8 ( /W) ITM Integration Write Register */ + __IM uint32_t IRR; /*!< Offset: 0xEFC (R/ ) ITM Integration Read Register */ + __IOM uint32_t IMCR; /*!< Offset: 0xF00 (R/W) ITM Integration Mode Control Register */ + uint32_t RESERVED4[43U]; + __OM uint32_t LAR; /*!< Offset: 0xFB0 ( /W) ITM Lock Access Register */ + __IM uint32_t LSR; /*!< Offset: 0xFB4 (R/ ) ITM Lock Status Register */ + uint32_t RESERVED5[6U]; + __IM uint32_t PID4; /*!< Offset: 0xFD0 (R/ ) ITM Peripheral Identification Register #4 */ + __IM uint32_t PID5; /*!< Offset: 0xFD4 (R/ ) ITM Peripheral Identification Register #5 */ + __IM uint32_t PID6; /*!< Offset: 0xFD8 (R/ ) ITM Peripheral Identification Register #6 */ + __IM uint32_t PID7; /*!< Offset: 0xFDC (R/ ) ITM Peripheral Identification Register #7 */ + __IM uint32_t PID0; /*!< Offset: 0xFE0 (R/ ) ITM Peripheral Identification Register #0 */ + __IM uint32_t PID1; /*!< Offset: 0xFE4 (R/ ) ITM Peripheral Identification Register #1 */ + __IM uint32_t PID2; /*!< Offset: 0xFE8 (R/ ) ITM Peripheral Identification Register #2 */ + __IM uint32_t PID3; /*!< Offset: 0xFEC (R/ ) ITM Peripheral Identification Register #3 */ + __IM uint32_t CID0; /*!< Offset: 0xFF0 (R/ ) ITM Component Identification Register #0 */ + __IM uint32_t CID1; /*!< Offset: 0xFF4 (R/ ) ITM Component Identification Register #1 */ + __IM uint32_t CID2; /*!< Offset: 0xFF8 (R/ ) ITM Component Identification Register #2 */ + __IM uint32_t CID3; /*!< Offset: 0xFFC (R/ ) ITM Component Identification Register #3 */ +} ITM_Type; + +/* ITM Trace Privilege Register Definitions */ +#define ITM_TPR_PRIVMASK_Pos 0U /*!< ITM TPR: PRIVMASK Position */ +#define ITM_TPR_PRIVMASK_Msk (0xFUL /*<< ITM_TPR_PRIVMASK_Pos*/) /*!< ITM TPR: PRIVMASK Mask */ + +/* ITM Trace Control Register Definitions */ +#define ITM_TCR_BUSY_Pos 23U /*!< ITM TCR: BUSY Position */ +#define ITM_TCR_BUSY_Msk (1UL << ITM_TCR_BUSY_Pos) /*!< ITM TCR: BUSY Mask */ + +#define ITM_TCR_TraceBusID_Pos 16U /*!< ITM TCR: ATBID Position */ +#define ITM_TCR_TraceBusID_Msk (0x7FUL << ITM_TCR_TraceBusID_Pos) /*!< ITM TCR: ATBID Mask */ + +#define ITM_TCR_GTSFREQ_Pos 10U /*!< ITM TCR: Global timestamp frequency Position */ +#define ITM_TCR_GTSFREQ_Msk (3UL << ITM_TCR_GTSFREQ_Pos) /*!< ITM TCR: Global timestamp frequency Mask */ + +#define ITM_TCR_TSPrescale_Pos 8U /*!< ITM TCR: TSPrescale Position */ +#define ITM_TCR_TSPrescale_Msk (3UL << ITM_TCR_TSPrescale_Pos) /*!< ITM TCR: TSPrescale Mask */ + +#define ITM_TCR_SWOENA_Pos 4U /*!< ITM TCR: SWOENA Position */ +#define ITM_TCR_SWOENA_Msk (1UL << ITM_TCR_SWOENA_Pos) /*!< ITM TCR: SWOENA Mask */ + +#define ITM_TCR_DWTENA_Pos 3U /*!< ITM TCR: DWTENA Position */ +#define ITM_TCR_DWTENA_Msk (1UL << ITM_TCR_DWTENA_Pos) /*!< ITM TCR: DWTENA Mask */ + +#define ITM_TCR_SYNCENA_Pos 2U /*!< ITM TCR: SYNCENA Position */ +#define ITM_TCR_SYNCENA_Msk (1UL << ITM_TCR_SYNCENA_Pos) /*!< ITM TCR: SYNCENA Mask */ + +#define ITM_TCR_TSENA_Pos 1U /*!< ITM TCR: TSENA Position */ +#define ITM_TCR_TSENA_Msk (1UL << ITM_TCR_TSENA_Pos) /*!< ITM TCR: TSENA Mask */ + +#define ITM_TCR_ITMENA_Pos 0U /*!< ITM TCR: ITM Enable bit Position */ +#define ITM_TCR_ITMENA_Msk (1UL /*<< ITM_TCR_ITMENA_Pos*/) /*!< ITM TCR: ITM Enable bit Mask */ + +/* ITM Integration Write Register Definitions */ +#define ITM_IWR_ATVALIDM_Pos 0U /*!< ITM IWR: ATVALIDM Position */ +#define ITM_IWR_ATVALIDM_Msk (1UL /*<< ITM_IWR_ATVALIDM_Pos*/) /*!< ITM IWR: ATVALIDM Mask */ + +/* ITM Integration Read Register Definitions */ +#define ITM_IRR_ATREADYM_Pos 0U /*!< ITM IRR: ATREADYM Position */ +#define ITM_IRR_ATREADYM_Msk (1UL /*<< ITM_IRR_ATREADYM_Pos*/) /*!< ITM IRR: ATREADYM Mask */ + +/* ITM Integration Mode Control Register Definitions */ +#define ITM_IMCR_INTEGRATION_Pos 0U /*!< ITM IMCR: INTEGRATION Position */ +#define ITM_IMCR_INTEGRATION_Msk (1UL /*<< ITM_IMCR_INTEGRATION_Pos*/) /*!< ITM IMCR: INTEGRATION Mask */ + +/* ITM Lock Status Register Definitions */ +#define ITM_LSR_ByteAcc_Pos 2U /*!< ITM LSR: ByteAcc Position */ +#define ITM_LSR_ByteAcc_Msk (1UL << ITM_LSR_ByteAcc_Pos) /*!< ITM LSR: ByteAcc Mask */ + +#define ITM_LSR_Access_Pos 1U /*!< ITM LSR: Access Position */ +#define ITM_LSR_Access_Msk (1UL << ITM_LSR_Access_Pos) /*!< ITM LSR: Access Mask */ + +#define ITM_LSR_Present_Pos 0U /*!< ITM LSR: Present Position */ +#define ITM_LSR_Present_Msk (1UL /*<< ITM_LSR_Present_Pos*/) /*!< ITM LSR: Present Mask */ + +/*@}*/ /* end of group CMSIS_ITM */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_DWT Data Watchpoint and Trace (DWT) + \brief Type definitions for the Data Watchpoint and Trace (DWT) + @{ + */ + +/** + \brief Structure type to access the Data Watchpoint and Trace Register (DWT). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) Control Register */ + __IOM uint32_t CYCCNT; /*!< Offset: 0x004 (R/W) Cycle Count Register */ + __IOM uint32_t CPICNT; /*!< Offset: 0x008 (R/W) CPI Count Register */ + __IOM uint32_t EXCCNT; /*!< Offset: 0x00C (R/W) Exception Overhead Count Register */ + __IOM uint32_t SLEEPCNT; /*!< Offset: 0x010 (R/W) Sleep Count Register */ + __IOM uint32_t LSUCNT; /*!< Offset: 0x014 (R/W) LSU Count Register */ + __IOM uint32_t FOLDCNT; /*!< Offset: 0x018 (R/W) Folded-instruction Count Register */ + __IM uint32_t PCSR; /*!< Offset: 0x01C (R/ ) Program Counter Sample Register */ + __IOM uint32_t COMP0; /*!< Offset: 0x020 (R/W) Comparator Register 0 */ + __IOM uint32_t MASK0; /*!< Offset: 0x024 (R/W) Mask Register 0 */ + __IOM uint32_t FUNCTION0; /*!< Offset: 0x028 (R/W) Function Register 0 */ + uint32_t RESERVED0[1U]; + __IOM uint32_t COMP1; /*!< Offset: 0x030 (R/W) Comparator Register 1 */ + __IOM uint32_t MASK1; /*!< Offset: 0x034 (R/W) Mask Register 1 */ + __IOM uint32_t FUNCTION1; /*!< Offset: 0x038 (R/W) Function Register 1 */ + uint32_t RESERVED1[1U]; + __IOM uint32_t COMP2; /*!< Offset: 0x040 (R/W) Comparator Register 2 */ + __IOM uint32_t MASK2; /*!< Offset: 0x044 (R/W) Mask Register 2 */ + __IOM uint32_t FUNCTION2; /*!< Offset: 0x048 (R/W) Function Register 2 */ + uint32_t RESERVED2[1U]; + __IOM uint32_t COMP3; /*!< Offset: 0x050 (R/W) Comparator Register 3 */ + __IOM uint32_t MASK3; /*!< Offset: 0x054 (R/W) Mask Register 3 */ + __IOM uint32_t FUNCTION3; /*!< Offset: 0x058 (R/W) Function Register 3 */ + uint32_t RESERVED3[981U]; + __OM uint32_t LAR; /*!< Offset: 0xFB0 ( W) Lock Access Register */ + __IM uint32_t LSR; /*!< Offset: 0xFB4 (R ) Lock Status Register */ +} DWT_Type; + +/* DWT Control Register Definitions */ +#define DWT_CTRL_NUMCOMP_Pos 28U /*!< DWT CTRL: NUMCOMP Position */ +#define DWT_CTRL_NUMCOMP_Msk (0xFUL << DWT_CTRL_NUMCOMP_Pos) /*!< DWT CTRL: NUMCOMP Mask */ + +#define DWT_CTRL_NOTRCPKT_Pos 27U /*!< DWT CTRL: NOTRCPKT Position */ +#define DWT_CTRL_NOTRCPKT_Msk (0x1UL << DWT_CTRL_NOTRCPKT_Pos) /*!< DWT CTRL: NOTRCPKT Mask */ + +#define DWT_CTRL_NOEXTTRIG_Pos 26U /*!< DWT CTRL: NOEXTTRIG Position */ +#define DWT_CTRL_NOEXTTRIG_Msk (0x1UL << DWT_CTRL_NOEXTTRIG_Pos) /*!< DWT CTRL: NOEXTTRIG Mask */ + +#define DWT_CTRL_NOCYCCNT_Pos 25U /*!< DWT CTRL: NOCYCCNT Position */ +#define DWT_CTRL_NOCYCCNT_Msk (0x1UL << DWT_CTRL_NOCYCCNT_Pos) /*!< DWT CTRL: NOCYCCNT Mask */ + +#define DWT_CTRL_NOPRFCNT_Pos 24U /*!< DWT CTRL: NOPRFCNT Position */ +#define DWT_CTRL_NOPRFCNT_Msk (0x1UL << DWT_CTRL_NOPRFCNT_Pos) /*!< DWT CTRL: NOPRFCNT Mask */ + +#define DWT_CTRL_CYCEVTENA_Pos 22U /*!< DWT CTRL: CYCEVTENA Position */ +#define DWT_CTRL_CYCEVTENA_Msk (0x1UL << DWT_CTRL_CYCEVTENA_Pos) /*!< DWT CTRL: CYCEVTENA Mask */ + +#define DWT_CTRL_FOLDEVTENA_Pos 21U /*!< DWT CTRL: FOLDEVTENA Position */ +#define DWT_CTRL_FOLDEVTENA_Msk (0x1UL << DWT_CTRL_FOLDEVTENA_Pos) /*!< DWT CTRL: FOLDEVTENA Mask */ + +#define DWT_CTRL_LSUEVTENA_Pos 20U /*!< DWT CTRL: LSUEVTENA Position */ +#define DWT_CTRL_LSUEVTENA_Msk (0x1UL << DWT_CTRL_LSUEVTENA_Pos) /*!< DWT CTRL: LSUEVTENA Mask */ + +#define DWT_CTRL_SLEEPEVTENA_Pos 19U /*!< DWT CTRL: SLEEPEVTENA Position */ +#define DWT_CTRL_SLEEPEVTENA_Msk (0x1UL << DWT_CTRL_SLEEPEVTENA_Pos) /*!< DWT CTRL: SLEEPEVTENA Mask */ + +#define DWT_CTRL_EXCEVTENA_Pos 18U /*!< DWT CTRL: EXCEVTENA Position */ +#define DWT_CTRL_EXCEVTENA_Msk (0x1UL << DWT_CTRL_EXCEVTENA_Pos) /*!< DWT CTRL: EXCEVTENA Mask */ + +#define DWT_CTRL_CPIEVTENA_Pos 17U /*!< DWT CTRL: CPIEVTENA Position */ +#define DWT_CTRL_CPIEVTENA_Msk (0x1UL << DWT_CTRL_CPIEVTENA_Pos) /*!< DWT CTRL: CPIEVTENA Mask */ + +#define DWT_CTRL_EXCTRCENA_Pos 16U /*!< DWT CTRL: EXCTRCENA Position */ +#define DWT_CTRL_EXCTRCENA_Msk (0x1UL << DWT_CTRL_EXCTRCENA_Pos) /*!< DWT CTRL: EXCTRCENA Mask */ + +#define DWT_CTRL_PCSAMPLENA_Pos 12U /*!< DWT CTRL: PCSAMPLENA Position */ +#define DWT_CTRL_PCSAMPLENA_Msk (0x1UL << DWT_CTRL_PCSAMPLENA_Pos) /*!< DWT CTRL: PCSAMPLENA Mask */ + +#define DWT_CTRL_SYNCTAP_Pos 10U /*!< DWT CTRL: SYNCTAP Position */ +#define DWT_CTRL_SYNCTAP_Msk (0x3UL << DWT_CTRL_SYNCTAP_Pos) /*!< DWT CTRL: SYNCTAP Mask */ + +#define DWT_CTRL_CYCTAP_Pos 9U /*!< DWT CTRL: CYCTAP Position */ +#define DWT_CTRL_CYCTAP_Msk (0x1UL << DWT_CTRL_CYCTAP_Pos) /*!< DWT CTRL: CYCTAP Mask */ + +#define DWT_CTRL_POSTINIT_Pos 5U /*!< DWT CTRL: POSTINIT Position */ +#define DWT_CTRL_POSTINIT_Msk (0xFUL << DWT_CTRL_POSTINIT_Pos) /*!< DWT CTRL: POSTINIT Mask */ + +#define DWT_CTRL_POSTPRESET_Pos 1U /*!< DWT CTRL: POSTPRESET Position */ +#define DWT_CTRL_POSTPRESET_Msk (0xFUL << DWT_CTRL_POSTPRESET_Pos) /*!< DWT CTRL: POSTPRESET Mask */ + +#define DWT_CTRL_CYCCNTENA_Pos 0U /*!< DWT CTRL: CYCCNTENA Position */ +#define DWT_CTRL_CYCCNTENA_Msk (0x1UL /*<< DWT_CTRL_CYCCNTENA_Pos*/) /*!< DWT CTRL: CYCCNTENA Mask */ + +/* DWT CPI Count Register Definitions */ +#define DWT_CPICNT_CPICNT_Pos 0U /*!< DWT CPICNT: CPICNT Position */ +#define DWT_CPICNT_CPICNT_Msk (0xFFUL /*<< DWT_CPICNT_CPICNT_Pos*/) /*!< DWT CPICNT: CPICNT Mask */ + +/* DWT Exception Overhead Count Register Definitions */ +#define DWT_EXCCNT_EXCCNT_Pos 0U /*!< DWT EXCCNT: EXCCNT Position */ +#define DWT_EXCCNT_EXCCNT_Msk (0xFFUL /*<< DWT_EXCCNT_EXCCNT_Pos*/) /*!< DWT EXCCNT: EXCCNT Mask */ + +/* DWT Sleep Count Register Definitions */ +#define DWT_SLEEPCNT_SLEEPCNT_Pos 0U /*!< DWT SLEEPCNT: SLEEPCNT Position */ +#define DWT_SLEEPCNT_SLEEPCNT_Msk (0xFFUL /*<< DWT_SLEEPCNT_SLEEPCNT_Pos*/) /*!< DWT SLEEPCNT: SLEEPCNT Mask */ + +/* DWT LSU Count Register Definitions */ +#define DWT_LSUCNT_LSUCNT_Pos 0U /*!< DWT LSUCNT: LSUCNT Position */ +#define DWT_LSUCNT_LSUCNT_Msk (0xFFUL /*<< DWT_LSUCNT_LSUCNT_Pos*/) /*!< DWT LSUCNT: LSUCNT Mask */ + +/* DWT Folded-instruction Count Register Definitions */ +#define DWT_FOLDCNT_FOLDCNT_Pos 0U /*!< DWT FOLDCNT: FOLDCNT Position */ +#define DWT_FOLDCNT_FOLDCNT_Msk (0xFFUL /*<< DWT_FOLDCNT_FOLDCNT_Pos*/) /*!< DWT FOLDCNT: FOLDCNT Mask */ + +/* DWT Comparator Mask Register Definitions */ +#define DWT_MASK_MASK_Pos 0U /*!< DWT MASK: MASK Position */ +#define DWT_MASK_MASK_Msk (0x1FUL /*<< DWT_MASK_MASK_Pos*/) /*!< DWT MASK: MASK Mask */ + +/* DWT Comparator Function Register Definitions */ +#define DWT_FUNCTION_MATCHED_Pos 24U /*!< DWT FUNCTION: MATCHED Position */ +#define DWT_FUNCTION_MATCHED_Msk (0x1UL << DWT_FUNCTION_MATCHED_Pos) /*!< DWT FUNCTION: MATCHED Mask */ + +#define DWT_FUNCTION_DATAVADDR1_Pos 16U /*!< DWT FUNCTION: DATAVADDR1 Position */ +#define DWT_FUNCTION_DATAVADDR1_Msk (0xFUL << DWT_FUNCTION_DATAVADDR1_Pos) /*!< DWT FUNCTION: DATAVADDR1 Mask */ + +#define DWT_FUNCTION_DATAVADDR0_Pos 12U /*!< DWT FUNCTION: DATAVADDR0 Position */ +#define DWT_FUNCTION_DATAVADDR0_Msk (0xFUL << DWT_FUNCTION_DATAVADDR0_Pos) /*!< DWT FUNCTION: DATAVADDR0 Mask */ + +#define DWT_FUNCTION_DATAVSIZE_Pos 10U /*!< DWT FUNCTION: DATAVSIZE Position */ +#define DWT_FUNCTION_DATAVSIZE_Msk (0x3UL << DWT_FUNCTION_DATAVSIZE_Pos) /*!< DWT FUNCTION: DATAVSIZE Mask */ + +#define DWT_FUNCTION_LNK1ENA_Pos 9U /*!< DWT FUNCTION: LNK1ENA Position */ +#define DWT_FUNCTION_LNK1ENA_Msk (0x1UL << DWT_FUNCTION_LNK1ENA_Pos) /*!< DWT FUNCTION: LNK1ENA Mask */ + +#define DWT_FUNCTION_DATAVMATCH_Pos 8U /*!< DWT FUNCTION: DATAVMATCH Position */ +#define DWT_FUNCTION_DATAVMATCH_Msk (0x1UL << DWT_FUNCTION_DATAVMATCH_Pos) /*!< DWT FUNCTION: DATAVMATCH Mask */ + +#define DWT_FUNCTION_CYCMATCH_Pos 7U /*!< DWT FUNCTION: CYCMATCH Position */ +#define DWT_FUNCTION_CYCMATCH_Msk (0x1UL << DWT_FUNCTION_CYCMATCH_Pos) /*!< DWT FUNCTION: CYCMATCH Mask */ + +#define DWT_FUNCTION_EMITRANGE_Pos 5U /*!< DWT FUNCTION: EMITRANGE Position */ +#define DWT_FUNCTION_EMITRANGE_Msk (0x1UL << DWT_FUNCTION_EMITRANGE_Pos) /*!< DWT FUNCTION: EMITRANGE Mask */ + +#define DWT_FUNCTION_FUNCTION_Pos 0U /*!< DWT FUNCTION: FUNCTION Position */ +#define DWT_FUNCTION_FUNCTION_Msk (0xFUL /*<< DWT_FUNCTION_FUNCTION_Pos*/) /*!< DWT FUNCTION: FUNCTION Mask */ + +/*@}*/ /* end of group CMSIS_DWT */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_TPI Trace Port Interface (TPI) + \brief Type definitions for the Trace Port Interface (TPI) + @{ + */ + +/** + \brief Structure type to access the Trace Port Interface Register (TPI). + */ +typedef struct +{ + __IOM uint32_t SSPSR; /*!< Offset: 0x000 (R/ ) Supported Parallel Port Size Register */ + __IOM uint32_t CSPSR; /*!< Offset: 0x004 (R/W) Current Parallel Port Size Register */ + uint32_t RESERVED0[2U]; + __IOM uint32_t ACPR; /*!< Offset: 0x010 (R/W) Asynchronous Clock Prescaler Register */ + uint32_t RESERVED1[55U]; + __IOM uint32_t SPPR; /*!< Offset: 0x0F0 (R/W) Selected Pin Protocol Register */ + uint32_t RESERVED2[131U]; + __IM uint32_t FFSR; /*!< Offset: 0x300 (R/ ) Formatter and Flush Status Register */ + __IOM uint32_t FFCR; /*!< Offset: 0x304 (R/W) Formatter and Flush Control Register */ + __IM uint32_t FSCR; /*!< Offset: 0x308 (R/ ) Formatter Synchronization Counter Register */ + uint32_t RESERVED3[759U]; + __IM uint32_t TRIGGER; /*!< Offset: 0xEE8 (R/ ) TRIGGER */ + __IM uint32_t FIFO0; /*!< Offset: 0xEEC (R/ ) Integration ETM Data */ + __IM uint32_t ITATBCTR2; /*!< Offset: 0xEF0 (R/ ) ITATBCTR2 */ + uint32_t RESERVED4[1U]; + __IM uint32_t ITATBCTR0; /*!< Offset: 0xEF8 (R/ ) ITATBCTR0 */ + __IM uint32_t FIFO1; /*!< Offset: 0xEFC (R/ ) Integration ITM Data */ + __IOM uint32_t ITCTRL; /*!< Offset: 0xF00 (R/W) Integration Mode Control */ + uint32_t RESERVED5[39U]; + __IOM uint32_t CLAIMSET; /*!< Offset: 0xFA0 (R/W) Claim tag set */ + __IOM uint32_t CLAIMCLR; /*!< Offset: 0xFA4 (R/W) Claim tag clear */ + uint32_t RESERVED7[8U]; + __IM uint32_t DEVID; /*!< Offset: 0xFC8 (R/ ) TPIU_DEVID */ + __IM uint32_t DEVTYPE; /*!< Offset: 0xFCC (R/ ) TPIU_DEVTYPE */ +} TPI_Type; + +/* TPI Asynchronous Clock Prescaler Register Definitions */ +#define TPI_ACPR_PRESCALER_Pos 0U /*!< TPI ACPR: PRESCALER Position */ +#define TPI_ACPR_PRESCALER_Msk (0x1FFFUL /*<< TPI_ACPR_PRESCALER_Pos*/) /*!< TPI ACPR: PRESCALER Mask */ + +/* TPI Selected Pin Protocol Register Definitions */ +#define TPI_SPPR_TXMODE_Pos 0U /*!< TPI SPPR: TXMODE Position */ +#define TPI_SPPR_TXMODE_Msk (0x3UL /*<< TPI_SPPR_TXMODE_Pos*/) /*!< TPI SPPR: TXMODE Mask */ + +/* TPI Formatter and Flush Status Register Definitions */ +#define TPI_FFSR_FtNonStop_Pos 3U /*!< TPI FFSR: FtNonStop Position */ +#define TPI_FFSR_FtNonStop_Msk (0x1UL << TPI_FFSR_FtNonStop_Pos) /*!< TPI FFSR: FtNonStop Mask */ + +#define TPI_FFSR_TCPresent_Pos 2U /*!< TPI FFSR: TCPresent Position */ +#define TPI_FFSR_TCPresent_Msk (0x1UL << TPI_FFSR_TCPresent_Pos) /*!< TPI FFSR: TCPresent Mask */ + +#define TPI_FFSR_FtStopped_Pos 1U /*!< TPI FFSR: FtStopped Position */ +#define TPI_FFSR_FtStopped_Msk (0x1UL << TPI_FFSR_FtStopped_Pos) /*!< TPI FFSR: FtStopped Mask */ + +#define TPI_FFSR_FlInProg_Pos 0U /*!< TPI FFSR: FlInProg Position */ +#define TPI_FFSR_FlInProg_Msk (0x1UL /*<< TPI_FFSR_FlInProg_Pos*/) /*!< TPI FFSR: FlInProg Mask */ + +/* TPI Formatter and Flush Control Register Definitions */ +#define TPI_FFCR_TrigIn_Pos 8U /*!< TPI FFCR: TrigIn Position */ +#define TPI_FFCR_TrigIn_Msk (0x1UL << TPI_FFCR_TrigIn_Pos) /*!< TPI FFCR: TrigIn Mask */ + +#define TPI_FFCR_EnFCont_Pos 1U /*!< TPI FFCR: EnFCont Position */ +#define TPI_FFCR_EnFCont_Msk (0x1UL << TPI_FFCR_EnFCont_Pos) /*!< TPI FFCR: EnFCont Mask */ + +/* TPI TRIGGER Register Definitions */ +#define TPI_TRIGGER_TRIGGER_Pos 0U /*!< TPI TRIGGER: TRIGGER Position */ +#define TPI_TRIGGER_TRIGGER_Msk (0x1UL /*<< TPI_TRIGGER_TRIGGER_Pos*/) /*!< TPI TRIGGER: TRIGGER Mask */ + +/* TPI Integration ETM Data Register Definitions (FIFO0) */ +#define TPI_FIFO0_ITM_ATVALID_Pos 29U /*!< TPI FIFO0: ITM_ATVALID Position */ +#define TPI_FIFO0_ITM_ATVALID_Msk (0x3UL << TPI_FIFO0_ITM_ATVALID_Pos) /*!< TPI FIFO0: ITM_ATVALID Mask */ + +#define TPI_FIFO0_ITM_bytecount_Pos 27U /*!< TPI FIFO0: ITM_bytecount Position */ +#define TPI_FIFO0_ITM_bytecount_Msk (0x3UL << TPI_FIFO0_ITM_bytecount_Pos) /*!< TPI FIFO0: ITM_bytecount Mask */ + +#define TPI_FIFO0_ETM_ATVALID_Pos 26U /*!< TPI FIFO0: ETM_ATVALID Position */ +#define TPI_FIFO0_ETM_ATVALID_Msk (0x3UL << TPI_FIFO0_ETM_ATVALID_Pos) /*!< TPI FIFO0: ETM_ATVALID Mask */ + +#define TPI_FIFO0_ETM_bytecount_Pos 24U /*!< TPI FIFO0: ETM_bytecount Position */ +#define TPI_FIFO0_ETM_bytecount_Msk (0x3UL << TPI_FIFO0_ETM_bytecount_Pos) /*!< TPI FIFO0: ETM_bytecount Mask */ + +#define TPI_FIFO0_ETM2_Pos 16U /*!< TPI FIFO0: ETM2 Position */ +#define TPI_FIFO0_ETM2_Msk (0xFFUL << TPI_FIFO0_ETM2_Pos) /*!< TPI FIFO0: ETM2 Mask */ + +#define TPI_FIFO0_ETM1_Pos 8U /*!< TPI FIFO0: ETM1 Position */ +#define TPI_FIFO0_ETM1_Msk (0xFFUL << TPI_FIFO0_ETM1_Pos) /*!< TPI FIFO0: ETM1 Mask */ + +#define TPI_FIFO0_ETM0_Pos 0U /*!< TPI FIFO0: ETM0 Position */ +#define TPI_FIFO0_ETM0_Msk (0xFFUL /*<< TPI_FIFO0_ETM0_Pos*/) /*!< TPI FIFO0: ETM0 Mask */ + +/* TPI ITATBCTR2 Register Definitions */ +#define TPI_ITATBCTR2_ATREADY_Pos 0U /*!< TPI ITATBCTR2: ATREADY Position */ +#define TPI_ITATBCTR2_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR2_ATREADY_Pos*/) /*!< TPI ITATBCTR2: ATREADY Mask */ + +/* TPI Integration ITM Data Register Definitions (FIFO1) */ +#define TPI_FIFO1_ITM_ATVALID_Pos 29U /*!< TPI FIFO1: ITM_ATVALID Position */ +#define TPI_FIFO1_ITM_ATVALID_Msk (0x3UL << TPI_FIFO1_ITM_ATVALID_Pos) /*!< TPI FIFO1: ITM_ATVALID Mask */ + +#define TPI_FIFO1_ITM_bytecount_Pos 27U /*!< TPI FIFO1: ITM_bytecount Position */ +#define TPI_FIFO1_ITM_bytecount_Msk (0x3UL << TPI_FIFO1_ITM_bytecount_Pos) /*!< TPI FIFO1: ITM_bytecount Mask */ + +#define TPI_FIFO1_ETM_ATVALID_Pos 26U /*!< TPI FIFO1: ETM_ATVALID Position */ +#define TPI_FIFO1_ETM_ATVALID_Msk (0x3UL << TPI_FIFO1_ETM_ATVALID_Pos) /*!< TPI FIFO1: ETM_ATVALID Mask */ + +#define TPI_FIFO1_ETM_bytecount_Pos 24U /*!< TPI FIFO1: ETM_bytecount Position */ +#define TPI_FIFO1_ETM_bytecount_Msk (0x3UL << TPI_FIFO1_ETM_bytecount_Pos) /*!< TPI FIFO1: ETM_bytecount Mask */ + +#define TPI_FIFO1_ITM2_Pos 16U /*!< TPI FIFO1: ITM2 Position */ +#define TPI_FIFO1_ITM2_Msk (0xFFUL << TPI_FIFO1_ITM2_Pos) /*!< TPI FIFO1: ITM2 Mask */ + +#define TPI_FIFO1_ITM1_Pos 8U /*!< TPI FIFO1: ITM1 Position */ +#define TPI_FIFO1_ITM1_Msk (0xFFUL << TPI_FIFO1_ITM1_Pos) /*!< TPI FIFO1: ITM1 Mask */ + +#define TPI_FIFO1_ITM0_Pos 0U /*!< TPI FIFO1: ITM0 Position */ +#define TPI_FIFO1_ITM0_Msk (0xFFUL /*<< TPI_FIFO1_ITM0_Pos*/) /*!< TPI FIFO1: ITM0 Mask */ + +/* TPI ITATBCTR0 Register Definitions */ +#define TPI_ITATBCTR0_ATREADY_Pos 0U /*!< TPI ITATBCTR0: ATREADY Position */ +#define TPI_ITATBCTR0_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR0_ATREADY_Pos*/) /*!< TPI ITATBCTR0: ATREADY Mask */ + +/* TPI Integration Mode Control Register Definitions */ +#define TPI_ITCTRL_Mode_Pos 0U /*!< TPI ITCTRL: Mode Position */ +#define TPI_ITCTRL_Mode_Msk (0x1UL /*<< TPI_ITCTRL_Mode_Pos*/) /*!< TPI ITCTRL: Mode Mask */ + +/* TPI DEVID Register Definitions */ +#define TPI_DEVID_NRZVALID_Pos 11U /*!< TPI DEVID: NRZVALID Position */ +#define TPI_DEVID_NRZVALID_Msk (0x1UL << TPI_DEVID_NRZVALID_Pos) /*!< TPI DEVID: NRZVALID Mask */ + +#define TPI_DEVID_MANCVALID_Pos 10U /*!< TPI DEVID: MANCVALID Position */ +#define TPI_DEVID_MANCVALID_Msk (0x1UL << TPI_DEVID_MANCVALID_Pos) /*!< TPI DEVID: MANCVALID Mask */ + +#define TPI_DEVID_PTINVALID_Pos 9U /*!< TPI DEVID: PTINVALID Position */ +#define TPI_DEVID_PTINVALID_Msk (0x1UL << TPI_DEVID_PTINVALID_Pos) /*!< TPI DEVID: PTINVALID Mask */ + +#define TPI_DEVID_MinBufSz_Pos 6U /*!< TPI DEVID: MinBufSz Position */ +#define TPI_DEVID_MinBufSz_Msk (0x7UL << TPI_DEVID_MinBufSz_Pos) /*!< TPI DEVID: MinBufSz Mask */ + +#define TPI_DEVID_AsynClkIn_Pos 5U /*!< TPI DEVID: AsynClkIn Position */ +#define TPI_DEVID_AsynClkIn_Msk (0x1UL << TPI_DEVID_AsynClkIn_Pos) /*!< TPI DEVID: AsynClkIn Mask */ + +#define TPI_DEVID_NrTraceInput_Pos 0U /*!< TPI DEVID: NrTraceInput Position */ +#define TPI_DEVID_NrTraceInput_Msk (0x1FUL /*<< TPI_DEVID_NrTraceInput_Pos*/) /*!< TPI DEVID: NrTraceInput Mask */ + +/* TPI DEVTYPE Register Definitions */ +#define TPI_DEVTYPE_MajorType_Pos 4U /*!< TPI DEVTYPE: MajorType Position */ +#define TPI_DEVTYPE_MajorType_Msk (0xFUL << TPI_DEVTYPE_MajorType_Pos) /*!< TPI DEVTYPE: MajorType Mask */ + +#define TPI_DEVTYPE_SubType_Pos 0U /*!< TPI DEVTYPE: SubType Position */ +#define TPI_DEVTYPE_SubType_Msk (0xFUL /*<< TPI_DEVTYPE_SubType_Pos*/) /*!< TPI DEVTYPE: SubType Mask */ + +/*@}*/ /* end of group CMSIS_TPI */ + + +#if (__MPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_MPU Memory Protection Unit (MPU) + \brief Type definitions for the Memory Protection Unit (MPU) + @{ + */ + +/** + \brief Structure type to access the Memory Protection Unit (MPU). + */ +typedef struct +{ + __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */ + __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */ + __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region RNRber Register */ + __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */ + __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */ + __IOM uint32_t RBAR_A1; /*!< Offset: 0x014 (R/W) MPU Alias 1 Region Base Address Register */ + __IOM uint32_t RASR_A1; /*!< Offset: 0x018 (R/W) MPU Alias 1 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A2; /*!< Offset: 0x01C (R/W) MPU Alias 2 Region Base Address Register */ + __IOM uint32_t RASR_A2; /*!< Offset: 0x020 (R/W) MPU Alias 2 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A3; /*!< Offset: 0x024 (R/W) MPU Alias 3 Region Base Address Register */ + __IOM uint32_t RASR_A3; /*!< Offset: 0x028 (R/W) MPU Alias 3 Region Attribute and Size Register */ +} MPU_Type; + +/* MPU Type Register Definitions */ +#define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */ +#define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */ + +#define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */ +#define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */ + +#define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */ +#define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */ + +/* MPU Control Register Definitions */ +#define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */ +#define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */ + +#define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */ +#define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */ + +#define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */ +#define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */ + +/* MPU Region Number Register Definitions */ +#define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */ +#define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */ + +/* MPU Region Base Address Register Definitions */ +#define MPU_RBAR_ADDR_Pos 5U /*!< MPU RBAR: ADDR Position */ +#define MPU_RBAR_ADDR_Msk (0x7FFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */ + +#define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */ +#define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */ + +#define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */ +#define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */ + +/* MPU Region Attribute and Size Register Definitions */ +#define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */ +#define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */ + +#define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */ +#define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */ + +#define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */ +#define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */ + +#define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */ +#define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */ + +#define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */ +#define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */ + +#define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */ +#define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */ + +#define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */ +#define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */ + +#define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */ +#define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */ + +#define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */ +#define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */ + +#define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */ +#define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */ + +/*@} end of group CMSIS_MPU */ +#endif + + +#if (__FPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_FPU Floating Point Unit (FPU) + \brief Type definitions for the Floating Point Unit (FPU) + @{ + */ + +/** + \brief Structure type to access the Floating Point Unit (FPU). + */ +typedef struct +{ + uint32_t RESERVED0[1U]; + __IOM uint32_t FPCCR; /*!< Offset: 0x004 (R/W) Floating-Point Context Control Register */ + __IOM uint32_t FPCAR; /*!< Offset: 0x008 (R/W) Floating-Point Context Address Register */ + __IOM uint32_t FPDSCR; /*!< Offset: 0x00C (R/W) Floating-Point Default Status Control Register */ + __IM uint32_t MVFR0; /*!< Offset: 0x010 (R/ ) Media and FP Feature Register 0 */ + __IM uint32_t MVFR1; /*!< Offset: 0x014 (R/ ) Media and FP Feature Register 1 */ + __IM uint32_t MVFR2; /*!< Offset: 0x018 (R/ ) Media and FP Feature Register 2 */ +} FPU_Type; + +/* Floating-Point Context Control Register Definitions */ +#define FPU_FPCCR_ASPEN_Pos 31U /*!< FPCCR: ASPEN bit Position */ +#define FPU_FPCCR_ASPEN_Msk (1UL << FPU_FPCCR_ASPEN_Pos) /*!< FPCCR: ASPEN bit Mask */ + +#define FPU_FPCCR_LSPEN_Pos 30U /*!< FPCCR: LSPEN Position */ +#define FPU_FPCCR_LSPEN_Msk (1UL << FPU_FPCCR_LSPEN_Pos) /*!< FPCCR: LSPEN bit Mask */ + +#define FPU_FPCCR_MONRDY_Pos 8U /*!< FPCCR: MONRDY Position */ +#define FPU_FPCCR_MONRDY_Msk (1UL << FPU_FPCCR_MONRDY_Pos) /*!< FPCCR: MONRDY bit Mask */ + +#define FPU_FPCCR_BFRDY_Pos 6U /*!< FPCCR: BFRDY Position */ +#define FPU_FPCCR_BFRDY_Msk (1UL << FPU_FPCCR_BFRDY_Pos) /*!< FPCCR: BFRDY bit Mask */ + +#define FPU_FPCCR_MMRDY_Pos 5U /*!< FPCCR: MMRDY Position */ +#define FPU_FPCCR_MMRDY_Msk (1UL << FPU_FPCCR_MMRDY_Pos) /*!< FPCCR: MMRDY bit Mask */ + +#define FPU_FPCCR_HFRDY_Pos 4U /*!< FPCCR: HFRDY Position */ +#define FPU_FPCCR_HFRDY_Msk (1UL << FPU_FPCCR_HFRDY_Pos) /*!< FPCCR: HFRDY bit Mask */ + +#define FPU_FPCCR_THREAD_Pos 3U /*!< FPCCR: processor mode bit Position */ +#define FPU_FPCCR_THREAD_Msk (1UL << FPU_FPCCR_THREAD_Pos) /*!< FPCCR: processor mode active bit Mask */ + +#define FPU_FPCCR_USER_Pos 1U /*!< FPCCR: privilege level bit Position */ +#define FPU_FPCCR_USER_Msk (1UL << FPU_FPCCR_USER_Pos) /*!< FPCCR: privilege level bit Mask */ + +#define FPU_FPCCR_LSPACT_Pos 0U /*!< FPCCR: Lazy state preservation active bit Position */ +#define FPU_FPCCR_LSPACT_Msk (1UL /*<< FPU_FPCCR_LSPACT_Pos*/) /*!< FPCCR: Lazy state preservation active bit Mask */ + +/* Floating-Point Context Address Register Definitions */ +#define FPU_FPCAR_ADDRESS_Pos 3U /*!< FPCAR: ADDRESS bit Position */ +#define FPU_FPCAR_ADDRESS_Msk (0x1FFFFFFFUL << FPU_FPCAR_ADDRESS_Pos) /*!< FPCAR: ADDRESS bit Mask */ + +/* Floating-Point Default Status Control Register Definitions */ +#define FPU_FPDSCR_AHP_Pos 26U /*!< FPDSCR: AHP bit Position */ +#define FPU_FPDSCR_AHP_Msk (1UL << FPU_FPDSCR_AHP_Pos) /*!< FPDSCR: AHP bit Mask */ + +#define FPU_FPDSCR_DN_Pos 25U /*!< FPDSCR: DN bit Position */ +#define FPU_FPDSCR_DN_Msk (1UL << FPU_FPDSCR_DN_Pos) /*!< FPDSCR: DN bit Mask */ + +#define FPU_FPDSCR_FZ_Pos 24U /*!< FPDSCR: FZ bit Position */ +#define FPU_FPDSCR_FZ_Msk (1UL << FPU_FPDSCR_FZ_Pos) /*!< FPDSCR: FZ bit Mask */ + +#define FPU_FPDSCR_RMode_Pos 22U /*!< FPDSCR: RMode bit Position */ +#define FPU_FPDSCR_RMode_Msk (3UL << FPU_FPDSCR_RMode_Pos) /*!< FPDSCR: RMode bit Mask */ + +/* Media and FP Feature Register 0 Definitions */ +#define FPU_MVFR0_FP_rounding_modes_Pos 28U /*!< MVFR0: FP rounding modes bits Position */ +#define FPU_MVFR0_FP_rounding_modes_Msk (0xFUL << FPU_MVFR0_FP_rounding_modes_Pos) /*!< MVFR0: FP rounding modes bits Mask */ + +#define FPU_MVFR0_Short_vectors_Pos 24U /*!< MVFR0: Short vectors bits Position */ +#define FPU_MVFR0_Short_vectors_Msk (0xFUL << FPU_MVFR0_Short_vectors_Pos) /*!< MVFR0: Short vectors bits Mask */ + +#define FPU_MVFR0_Square_root_Pos 20U /*!< MVFR0: Square root bits Position */ +#define FPU_MVFR0_Square_root_Msk (0xFUL << FPU_MVFR0_Square_root_Pos) /*!< MVFR0: Square root bits Mask */ + +#define FPU_MVFR0_Divide_Pos 16U /*!< MVFR0: Divide bits Position */ +#define FPU_MVFR0_Divide_Msk (0xFUL << FPU_MVFR0_Divide_Pos) /*!< MVFR0: Divide bits Mask */ + +#define FPU_MVFR0_FP_excep_trapping_Pos 12U /*!< MVFR0: FP exception trapping bits Position */ +#define FPU_MVFR0_FP_excep_trapping_Msk (0xFUL << FPU_MVFR0_FP_excep_trapping_Pos) /*!< MVFR0: FP exception trapping bits Mask */ + +#define FPU_MVFR0_Double_precision_Pos 8U /*!< MVFR0: Double-precision bits Position */ +#define FPU_MVFR0_Double_precision_Msk (0xFUL << FPU_MVFR0_Double_precision_Pos) /*!< MVFR0: Double-precision bits Mask */ + +#define FPU_MVFR0_Single_precision_Pos 4U /*!< MVFR0: Single-precision bits Position */ +#define FPU_MVFR0_Single_precision_Msk (0xFUL << FPU_MVFR0_Single_precision_Pos) /*!< MVFR0: Single-precision bits Mask */ + +#define FPU_MVFR0_A_SIMD_registers_Pos 0U /*!< MVFR0: A_SIMD registers bits Position */ +#define FPU_MVFR0_A_SIMD_registers_Msk (0xFUL /*<< FPU_MVFR0_A_SIMD_registers_Pos*/) /*!< MVFR0: A_SIMD registers bits Mask */ + +/* Media and FP Feature Register 1 Definitions */ +#define FPU_MVFR1_FP_fused_MAC_Pos 28U /*!< MVFR1: FP fused MAC bits Position */ +#define FPU_MVFR1_FP_fused_MAC_Msk (0xFUL << FPU_MVFR1_FP_fused_MAC_Pos) /*!< MVFR1: FP fused MAC bits Mask */ + +#define FPU_MVFR1_FP_HPFP_Pos 24U /*!< MVFR1: FP HPFP bits Position */ +#define FPU_MVFR1_FP_HPFP_Msk (0xFUL << FPU_MVFR1_FP_HPFP_Pos) /*!< MVFR1: FP HPFP bits Mask */ + +#define FPU_MVFR1_D_NaN_mode_Pos 4U /*!< MVFR1: D_NaN mode bits Position */ +#define FPU_MVFR1_D_NaN_mode_Msk (0xFUL << FPU_MVFR1_D_NaN_mode_Pos) /*!< MVFR1: D_NaN mode bits Mask */ + +#define FPU_MVFR1_FtZ_mode_Pos 0U /*!< MVFR1: FtZ mode bits Position */ +#define FPU_MVFR1_FtZ_mode_Msk (0xFUL /*<< FPU_MVFR1_FtZ_mode_Pos*/) /*!< MVFR1: FtZ mode bits Mask */ + +/* Media and FP Feature Register 2 Definitions */ + +/*@} end of group CMSIS_FPU */ +#endif + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug) + \brief Type definitions for the Core Debug Registers + @{ + */ + +/** + \brief Structure type to access the Core Debug Register (CoreDebug). + */ +typedef struct +{ + __IOM uint32_t DHCSR; /*!< Offset: 0x000 (R/W) Debug Halting Control and Status Register */ + __OM uint32_t DCRSR; /*!< Offset: 0x004 ( /W) Debug Core Register Selector Register */ + __IOM uint32_t DCRDR; /*!< Offset: 0x008 (R/W) Debug Core Register Data Register */ + __IOM uint32_t DEMCR; /*!< Offset: 0x00C (R/W) Debug Exception and Monitor Control Register */ +} CoreDebug_Type; + +/* Debug Halting Control and Status Register Definitions */ +#define CoreDebug_DHCSR_DBGKEY_Pos 16U /*!< CoreDebug DHCSR: DBGKEY Position */ +#define CoreDebug_DHCSR_DBGKEY_Msk (0xFFFFUL << CoreDebug_DHCSR_DBGKEY_Pos) /*!< CoreDebug DHCSR: DBGKEY Mask */ + +#define CoreDebug_DHCSR_S_RESET_ST_Pos 25U /*!< CoreDebug DHCSR: S_RESET_ST Position */ +#define CoreDebug_DHCSR_S_RESET_ST_Msk (1UL << CoreDebug_DHCSR_S_RESET_ST_Pos) /*!< CoreDebug DHCSR: S_RESET_ST Mask */ + +#define CoreDebug_DHCSR_S_RETIRE_ST_Pos 24U /*!< CoreDebug DHCSR: S_RETIRE_ST Position */ +#define CoreDebug_DHCSR_S_RETIRE_ST_Msk (1UL << CoreDebug_DHCSR_S_RETIRE_ST_Pos) /*!< CoreDebug DHCSR: S_RETIRE_ST Mask */ + +#define CoreDebug_DHCSR_S_LOCKUP_Pos 19U /*!< CoreDebug DHCSR: S_LOCKUP Position */ +#define CoreDebug_DHCSR_S_LOCKUP_Msk (1UL << CoreDebug_DHCSR_S_LOCKUP_Pos) /*!< CoreDebug DHCSR: S_LOCKUP Mask */ + +#define CoreDebug_DHCSR_S_SLEEP_Pos 18U /*!< CoreDebug DHCSR: S_SLEEP Position */ +#define CoreDebug_DHCSR_S_SLEEP_Msk (1UL << CoreDebug_DHCSR_S_SLEEP_Pos) /*!< CoreDebug DHCSR: S_SLEEP Mask */ + +#define CoreDebug_DHCSR_S_HALT_Pos 17U /*!< CoreDebug DHCSR: S_HALT Position */ +#define CoreDebug_DHCSR_S_HALT_Msk (1UL << CoreDebug_DHCSR_S_HALT_Pos) /*!< CoreDebug DHCSR: S_HALT Mask */ + +#define CoreDebug_DHCSR_S_REGRDY_Pos 16U /*!< CoreDebug DHCSR: S_REGRDY Position */ +#define CoreDebug_DHCSR_S_REGRDY_Msk (1UL << CoreDebug_DHCSR_S_REGRDY_Pos) /*!< CoreDebug DHCSR: S_REGRDY Mask */ + +#define CoreDebug_DHCSR_C_SNAPSTALL_Pos 5U /*!< CoreDebug DHCSR: C_SNAPSTALL Position */ +#define CoreDebug_DHCSR_C_SNAPSTALL_Msk (1UL << CoreDebug_DHCSR_C_SNAPSTALL_Pos) /*!< CoreDebug DHCSR: C_SNAPSTALL Mask */ + +#define CoreDebug_DHCSR_C_MASKINTS_Pos 3U /*!< CoreDebug DHCSR: C_MASKINTS Position */ +#define CoreDebug_DHCSR_C_MASKINTS_Msk (1UL << CoreDebug_DHCSR_C_MASKINTS_Pos) /*!< CoreDebug DHCSR: C_MASKINTS Mask */ + +#define CoreDebug_DHCSR_C_STEP_Pos 2U /*!< CoreDebug DHCSR: C_STEP Position */ +#define CoreDebug_DHCSR_C_STEP_Msk (1UL << CoreDebug_DHCSR_C_STEP_Pos) /*!< CoreDebug DHCSR: C_STEP Mask */ + +#define CoreDebug_DHCSR_C_HALT_Pos 1U /*!< CoreDebug DHCSR: C_HALT Position */ +#define CoreDebug_DHCSR_C_HALT_Msk (1UL << CoreDebug_DHCSR_C_HALT_Pos) /*!< CoreDebug DHCSR: C_HALT Mask */ + +#define CoreDebug_DHCSR_C_DEBUGEN_Pos 0U /*!< CoreDebug DHCSR: C_DEBUGEN Position */ +#define CoreDebug_DHCSR_C_DEBUGEN_Msk (1UL /*<< CoreDebug_DHCSR_C_DEBUGEN_Pos*/) /*!< CoreDebug DHCSR: C_DEBUGEN Mask */ + +/* Debug Core Register Selector Register Definitions */ +#define CoreDebug_DCRSR_REGWnR_Pos 16U /*!< CoreDebug DCRSR: REGWnR Position */ +#define CoreDebug_DCRSR_REGWnR_Msk (1UL << CoreDebug_DCRSR_REGWnR_Pos) /*!< CoreDebug DCRSR: REGWnR Mask */ + +#define CoreDebug_DCRSR_REGSEL_Pos 0U /*!< CoreDebug DCRSR: REGSEL Position */ +#define CoreDebug_DCRSR_REGSEL_Msk (0x1FUL /*<< CoreDebug_DCRSR_REGSEL_Pos*/) /*!< CoreDebug DCRSR: REGSEL Mask */ + +/* Debug Exception and Monitor Control Register Definitions */ +#define CoreDebug_DEMCR_TRCENA_Pos 24U /*!< CoreDebug DEMCR: TRCENA Position */ +#define CoreDebug_DEMCR_TRCENA_Msk (1UL << CoreDebug_DEMCR_TRCENA_Pos) /*!< CoreDebug DEMCR: TRCENA Mask */ + +#define CoreDebug_DEMCR_MON_REQ_Pos 19U /*!< CoreDebug DEMCR: MON_REQ Position */ +#define CoreDebug_DEMCR_MON_REQ_Msk (1UL << CoreDebug_DEMCR_MON_REQ_Pos) /*!< CoreDebug DEMCR: MON_REQ Mask */ + +#define CoreDebug_DEMCR_MON_STEP_Pos 18U /*!< CoreDebug DEMCR: MON_STEP Position */ +#define CoreDebug_DEMCR_MON_STEP_Msk (1UL << CoreDebug_DEMCR_MON_STEP_Pos) /*!< CoreDebug DEMCR: MON_STEP Mask */ + +#define CoreDebug_DEMCR_MON_PEND_Pos 17U /*!< CoreDebug DEMCR: MON_PEND Position */ +#define CoreDebug_DEMCR_MON_PEND_Msk (1UL << CoreDebug_DEMCR_MON_PEND_Pos) /*!< CoreDebug DEMCR: MON_PEND Mask */ + +#define CoreDebug_DEMCR_MON_EN_Pos 16U /*!< CoreDebug DEMCR: MON_EN Position */ +#define CoreDebug_DEMCR_MON_EN_Msk (1UL << CoreDebug_DEMCR_MON_EN_Pos) /*!< CoreDebug DEMCR: MON_EN Mask */ + +#define CoreDebug_DEMCR_VC_HARDERR_Pos 10U /*!< CoreDebug DEMCR: VC_HARDERR Position */ +#define CoreDebug_DEMCR_VC_HARDERR_Msk (1UL << CoreDebug_DEMCR_VC_HARDERR_Pos) /*!< CoreDebug DEMCR: VC_HARDERR Mask */ + +#define CoreDebug_DEMCR_VC_INTERR_Pos 9U /*!< CoreDebug DEMCR: VC_INTERR Position */ +#define CoreDebug_DEMCR_VC_INTERR_Msk (1UL << CoreDebug_DEMCR_VC_INTERR_Pos) /*!< CoreDebug DEMCR: VC_INTERR Mask */ + +#define CoreDebug_DEMCR_VC_BUSERR_Pos 8U /*!< CoreDebug DEMCR: VC_BUSERR Position */ +#define CoreDebug_DEMCR_VC_BUSERR_Msk (1UL << CoreDebug_DEMCR_VC_BUSERR_Pos) /*!< CoreDebug DEMCR: VC_BUSERR Mask */ + +#define CoreDebug_DEMCR_VC_STATERR_Pos 7U /*!< CoreDebug DEMCR: VC_STATERR Position */ +#define CoreDebug_DEMCR_VC_STATERR_Msk (1UL << CoreDebug_DEMCR_VC_STATERR_Pos) /*!< CoreDebug DEMCR: VC_STATERR Mask */ + +#define CoreDebug_DEMCR_VC_CHKERR_Pos 6U /*!< CoreDebug DEMCR: VC_CHKERR Position */ +#define CoreDebug_DEMCR_VC_CHKERR_Msk (1UL << CoreDebug_DEMCR_VC_CHKERR_Pos) /*!< CoreDebug DEMCR: VC_CHKERR Mask */ + +#define CoreDebug_DEMCR_VC_NOCPERR_Pos 5U /*!< CoreDebug DEMCR: VC_NOCPERR Position */ +#define CoreDebug_DEMCR_VC_NOCPERR_Msk (1UL << CoreDebug_DEMCR_VC_NOCPERR_Pos) /*!< CoreDebug DEMCR: VC_NOCPERR Mask */ + +#define CoreDebug_DEMCR_VC_MMERR_Pos 4U /*!< CoreDebug DEMCR: VC_MMERR Position */ +#define CoreDebug_DEMCR_VC_MMERR_Msk (1UL << CoreDebug_DEMCR_VC_MMERR_Pos) /*!< CoreDebug DEMCR: VC_MMERR Mask */ + +#define CoreDebug_DEMCR_VC_CORERESET_Pos 0U /*!< CoreDebug DEMCR: VC_CORERESET Position */ +#define CoreDebug_DEMCR_VC_CORERESET_Msk (1UL /*<< CoreDebug_DEMCR_VC_CORERESET_Pos*/) /*!< CoreDebug DEMCR: VC_CORERESET Mask */ + +/*@} end of group CMSIS_CoreDebug */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_bitfield Core register bit field macros + \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk). + @{ + */ + +/** + \brief Mask and shift a bit field value for use in a register bit range. + \param[in] field Name of the register bit field. + \param[in] value Value of the bit field. + \return Masked and shifted value. +*/ +#define _VAL2FLD(field, value) ((value << field ## _Pos) & field ## _Msk) + +/** + \brief Mask and shift a register value to extract a bit filed value. + \param[in] field Name of the register bit field. + \param[in] value Value of register. + \return Masked and shifted bit field value. +*/ +#define _FLD2VAL(field, value) ((value & field ## _Msk) >> field ## _Pos) + +/*@} end of group CMSIS_core_bitfield */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_base Core Definitions + \brief Definitions for base addresses, unions, and structures. + @{ + */ + +/* Memory mapping of Cortex-M4 Hardware */ +#define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */ +#define ITM_BASE (0xE0000000UL) /*!< ITM Base Address */ +#define DWT_BASE (0xE0001000UL) /*!< DWT Base Address */ +#define TPI_BASE (0xE0040000UL) /*!< TPI Base Address */ +#define CoreDebug_BASE (0xE000EDF0UL) /*!< Core Debug Base Address */ +#define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */ +#define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */ +#define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */ + +#define SCnSCB ((SCnSCB_Type *) SCS_BASE ) /*!< System control Register not in SCB */ +#define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */ +#define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */ +#define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */ +#define ITM ((ITM_Type *) ITM_BASE ) /*!< ITM configuration struct */ +#define DWT ((DWT_Type *) DWT_BASE ) /*!< DWT configuration struct */ +#define TPI ((TPI_Type *) TPI_BASE ) /*!< TPI configuration struct */ +#define CoreDebug ((CoreDebug_Type *) CoreDebug_BASE) /*!< Core Debug configuration struct */ + +#if (__MPU_PRESENT == 1U) + #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */ + #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */ +#endif + +#if (__FPU_PRESENT == 1U) + #define FPU_BASE (SCS_BASE + 0x0F30UL) /*!< Floating Point Unit */ + #define FPU ((FPU_Type *) FPU_BASE ) /*!< Floating Point Unit */ +#endif + +/*@} */ + + + +/******************************************************************************* + * Hardware Abstraction Layer + Core Function Interface contains: + - Core NVIC Functions + - Core SysTick Functions + - Core Debug Functions + - Core Register Access Functions + ******************************************************************************/ +/** + \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference +*/ + + + +/* ########################## NVIC functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_NVICFunctions NVIC Functions + \brief Functions that manage interrupts and exceptions via the NVIC. + @{ + */ + +/** + \brief Set Priority Grouping + \details Sets the priority grouping field using the required unlock sequence. + The parameter PriorityGroup is assigned to the field SCB->AIRCR [10:8] PRIGROUP field. + Only values from 0..7 are used. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Priority grouping field. + */ +__STATIC_INLINE void NVIC_SetPriorityGrouping(uint32_t PriorityGroup) +{ + uint32_t reg_value; + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + + reg_value = SCB->AIRCR; /* read old register configuration */ + reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ + reg_value = (reg_value | + ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (PriorityGroupTmp << 8U) ); /* Insert write key and priorty group */ + SCB->AIRCR = reg_value; +} + + +/** + \brief Get Priority Grouping + \details Reads the priority grouping field from the NVIC Interrupt Controller. + \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). + */ +__STATIC_INLINE uint32_t NVIC_GetPriorityGrouping(void) +{ + return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); +} + + +/** + \brief Enable External Interrupt + \details Enables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) +{ + NVIC->ISER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Disable External Interrupt + \details Disables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn) +{ + NVIC->ICER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the pending register in the NVIC and returns the pending bit for the specified interrupt. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + */ +__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of an external interrupt. + \param [in] IRQn Interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of an external interrupt. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ICPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Active Interrupt + \details Reads the active register in NVIC and returns the active bit. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not active. + \return 1 Interrupt status is active. + */ +__STATIC_INLINE uint32_t NVIC_GetActive(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->IABR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Interrupt Priority + \details Sets the priority of an interrupt. + \note The priority cannot be set for every core interrupt. + \param [in] IRQn Interrupt number. + \param [in] priority Priority to set. + */ +__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) +{ + if ((int32_t)(IRQn) < 0) + { + SCB->SHPR[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } + else + { + NVIC->IP[((uint32_t)(int32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } +} + + +/** + \brief Get Interrupt Priority + \details Reads the priority of an interrupt. + The interrupt number can be positive to specify an external (device specific) interrupt, + or negative to specify an internal (core) interrupt. + \param [in] IRQn Interrupt number. + \return Interrupt Priority. + Value is aligned automatically to the implemented priority bits of the microcontroller. + */ +__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn) +{ + + if ((int32_t)(IRQn) < 0) + { + return(((uint32_t)SCB->SHPR[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] >> (8U - __NVIC_PRIO_BITS))); + } + else + { + return(((uint32_t)NVIC->IP[((uint32_t)(int32_t)IRQn)] >> (8U - __NVIC_PRIO_BITS))); + } +} + + +/** + \brief Encode Priority + \details Encodes the priority for an interrupt with the given priority group, + preemptive priority value, and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Used priority group. + \param [in] PreemptPriority Preemptive priority value (starting from 0). + \param [in] SubPriority Subpriority value (starting from 0). + \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). + */ +__STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + return ( + ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | + ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) + ); +} + + +/** + \brief Decode Priority + \details Decodes an interrupt priority value with a given priority group to + preemptive priority value and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS) the smallest possible priority group is set. + \param [in] Priority Priority value, which can be retrieved with the function \ref NVIC_GetPriority(). + \param [in] PriorityGroup Used priority group. + \param [out] pPreemptPriority Preemptive priority value (starting from 0). + \param [out] pSubPriority Subpriority value (starting from 0). + */ +__STATIC_INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* const pPreemptPriority, uint32_t* const pSubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + *pPreemptPriority = (Priority >> SubPriorityBits) & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL); + *pSubPriority = (Priority ) & (uint32_t)((1UL << (SubPriorityBits )) - 1UL); +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +__STATIC_INLINE void NVIC_SystemReset(void) +{ + __DSB(); /* Ensure all outstanding memory accesses included + buffered write are completed before reset */ + SCB->AIRCR = (uint32_t)((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) | + SCB_AIRCR_SYSRESETREQ_Msk ); /* Keep priority group unchanged */ + __DSB(); /* Ensure completion of memory access */ + + for(;;) /* wait until reset */ + { + __NOP(); + } +} + +/*@} end of CMSIS_Core_NVICFunctions */ + + +/* ########################## FPU functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_FpuFunctions FPU Functions + \brief Function that provides FPU type. + @{ + */ + +/** + \brief get FPU type + \details returns the FPU type + \returns + - \b 0: No FPU + - \b 1: Single precision FPU + - \b 2: Double + Single precision FPU + */ +__STATIC_INLINE uint32_t SCB_GetFPUType(void) +{ + uint32_t mvfr0; + + mvfr0 = SCB->MVFR0; + if ((mvfr0 & 0x00000FF0UL) == 0x220UL) + { + return 2UL; /* Double + Single precision FPU */ + } + else if ((mvfr0 & 0x00000FF0UL) == 0x020UL) + { + return 1UL; /* Single precision FPU */ + } + else + { + return 0UL; /* No FPU */ + } +} + + +/*@} end of CMSIS_Core_FpuFunctions */ + + + +/* ########################## Cache functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_CacheFunctions Cache Functions + \brief Functions that configure Instruction and Data cache. + @{ + */ + +/* Cache Size ID Register Macros */ +#define CCSIDR_WAYS(x) (((x) & SCB_CCSIDR_ASSOCIATIVITY_Msk) >> SCB_CCSIDR_ASSOCIATIVITY_Pos) +#define CCSIDR_SETS(x) (((x) & SCB_CCSIDR_NUMSETS_Msk ) >> SCB_CCSIDR_NUMSETS_Pos ) + + +/** + \brief Enable I-Cache + \details Turns on I-Cache + */ +__STATIC_INLINE void SCB_EnableICache (void) +{ + #if (__ICACHE_PRESENT == 1U) + __DSB(); + __ISB(); + SCB->ICIALLU = 0UL; /* invalidate I-Cache */ + SCB->CCR |= (uint32_t)SCB_CCR_IC_Msk; /* enable I-Cache */ + __DSB(); + __ISB(); + #endif +} + + +/** + \brief Disable I-Cache + \details Turns off I-Cache + */ +__STATIC_INLINE void SCB_DisableICache (void) +{ + #if (__ICACHE_PRESENT == 1U) + __DSB(); + __ISB(); + SCB->CCR &= ~(uint32_t)SCB_CCR_IC_Msk; /* disable I-Cache */ + SCB->ICIALLU = 0UL; /* invalidate I-Cache */ + __DSB(); + __ISB(); + #endif +} + + +/** + \brief Invalidate I-Cache + \details Invalidates I-Cache + */ +__STATIC_INLINE void SCB_InvalidateICache (void) +{ + #if (__ICACHE_PRESENT == 1U) + __DSB(); + __ISB(); + SCB->ICIALLU = 0UL; + __DSB(); + __ISB(); + #endif +} + + +/** + \brief Enable D-Cache + \details Turns on D-Cache + */ +__STATIC_INLINE void SCB_EnableDCache (void) +{ + #if (__DCACHE_PRESENT == 1U) + uint32_t ccsidr; + uint32_t sets; + uint32_t ways; + + SCB->CSSELR = (0U << 1U) | 0U; /* Level 1 data cache */ + __DSB(); + + ccsidr = SCB->CCSIDR; + + /* invalidate D-Cache */ + sets = (uint32_t)(CCSIDR_SETS(ccsidr)); + do { + ways = (uint32_t)(CCSIDR_WAYS(ccsidr)); + do { + SCB->DCISW = (((sets << SCB_DCISW_SET_Pos) & SCB_DCISW_SET_Msk) | + ((ways << SCB_DCISW_WAY_Pos) & SCB_DCISW_WAY_Msk) ); + #if defined ( __CC_ARM ) + __schedule_barrier(); + #endif + } while (ways--); + } while(sets--); + __DSB(); + + SCB->CCR |= (uint32_t)SCB_CCR_DC_Msk; /* enable D-Cache */ + + __DSB(); + __ISB(); + #endif +} + + +/** + \brief Disable D-Cache + \details Turns off D-Cache + */ +__STATIC_INLINE void SCB_DisableDCache (void) +{ + #if (__DCACHE_PRESENT == 1U) + uint32_t ccsidr; + uint32_t sets; + uint32_t ways; + + SCB->CSSELR = (0U << 1U) | 0U; /* Level 1 data cache */ + __DSB(); + + ccsidr = SCB->CCSIDR; + + SCB->CCR &= ~(uint32_t)SCB_CCR_DC_Msk; /* disable D-Cache */ + + /* clean & invalidate D-Cache */ + sets = (uint32_t)(CCSIDR_SETS(ccsidr)); + do { + ways = (uint32_t)(CCSIDR_WAYS(ccsidr)); + do { + SCB->DCCISW = (((sets << SCB_DCCISW_SET_Pos) & SCB_DCCISW_SET_Msk) | + ((ways << SCB_DCCISW_WAY_Pos) & SCB_DCCISW_WAY_Msk) ); + #if defined ( __CC_ARM ) + __schedule_barrier(); + #endif + } while (ways--); + } while(sets--); + + __DSB(); + __ISB(); + #endif +} + + +/** + \brief Invalidate D-Cache + \details Invalidates D-Cache + */ +__STATIC_INLINE void SCB_InvalidateDCache (void) +{ + #if (__DCACHE_PRESENT == 1U) + uint32_t ccsidr; + uint32_t sets; + uint32_t ways; + + SCB->CSSELR = (0U << 1U) | 0U; /* Level 1 data cache */ + __DSB(); + + ccsidr = SCB->CCSIDR; + + /* invalidate D-Cache */ + sets = (uint32_t)(CCSIDR_SETS(ccsidr)); + do { + ways = (uint32_t)(CCSIDR_WAYS(ccsidr)); + do { + SCB->DCISW = (((sets << SCB_DCISW_SET_Pos) & SCB_DCISW_SET_Msk) | + ((ways << SCB_DCISW_WAY_Pos) & SCB_DCISW_WAY_Msk) ); + #if defined ( __CC_ARM ) + __schedule_barrier(); + #endif + } while (ways--); + } while(sets--); + + __DSB(); + __ISB(); + #endif +} + + +/** + \brief Clean D-Cache + \details Cleans D-Cache + */ +__STATIC_INLINE void SCB_CleanDCache (void) +{ + #if (__DCACHE_PRESENT == 1U) + uint32_t ccsidr; + uint32_t sets; + uint32_t ways; + + SCB->CSSELR = (0U << 1U) | 0U; /* Level 1 data cache */ + __DSB(); + + ccsidr = SCB->CCSIDR; + + /* clean D-Cache */ + sets = (uint32_t)(CCSIDR_SETS(ccsidr)); + do { + ways = (uint32_t)(CCSIDR_WAYS(ccsidr)); + do { + SCB->DCCSW = (((sets << SCB_DCCSW_SET_Pos) & SCB_DCCSW_SET_Msk) | + ((ways << SCB_DCCSW_WAY_Pos) & SCB_DCCSW_WAY_Msk) ); + #if defined ( __CC_ARM ) + __schedule_barrier(); + #endif + } while (ways--); + } while(sets--); + + __DSB(); + __ISB(); + #endif +} + + +/** + \brief Clean & Invalidate D-Cache + \details Cleans and Invalidates D-Cache + */ +__STATIC_INLINE void SCB_CleanInvalidateDCache (void) +{ + #if (__DCACHE_PRESENT == 1U) + uint32_t ccsidr; + uint32_t sets; + uint32_t ways; + + SCB->CSSELR = (0U << 1U) | 0U; /* Level 1 data cache */ + __DSB(); + + ccsidr = SCB->CCSIDR; + + /* clean & invalidate D-Cache */ + sets = (uint32_t)(CCSIDR_SETS(ccsidr)); + do { + ways = (uint32_t)(CCSIDR_WAYS(ccsidr)); + do { + SCB->DCCISW = (((sets << SCB_DCCISW_SET_Pos) & SCB_DCCISW_SET_Msk) | + ((ways << SCB_DCCISW_WAY_Pos) & SCB_DCCISW_WAY_Msk) ); + #if defined ( __CC_ARM ) + __schedule_barrier(); + #endif + } while (ways--); + } while(sets--); + + __DSB(); + __ISB(); + #endif +} + + +/** + \brief D-Cache Invalidate by address + \details Invalidates D-Cache for the given address + \param[in] addr address (aligned to 32-byte boundary) + \param[in] dsize size of memory block (in number of bytes) +*/ +__STATIC_INLINE void SCB_InvalidateDCache_by_Addr (uint32_t *addr, int32_t dsize) +{ + #if (__DCACHE_PRESENT == 1U) + int32_t op_size = dsize; + uint32_t op_addr = (uint32_t)addr; + int32_t linesize = 32U; /* in Cortex-M7 size of cache line is fixed to 8 words (32 bytes) */ + + __DSB(); + + while (op_size > 0) { + SCB->DCIMVAC = op_addr; + op_addr += linesize; + op_size -= linesize; + } + + __DSB(); + __ISB(); + #endif +} + + +/** + \brief D-Cache Clean by address + \details Cleans D-Cache for the given address + \param[in] addr address (aligned to 32-byte boundary) + \param[in] dsize size of memory block (in number of bytes) +*/ +__STATIC_INLINE void SCB_CleanDCache_by_Addr (uint32_t *addr, int32_t dsize) +{ + #if (__DCACHE_PRESENT == 1) + int32_t op_size = dsize; + uint32_t op_addr = (uint32_t) addr; + int32_t linesize = 32U; /* in Cortex-M7 size of cache line is fixed to 8 words (32 bytes) */ + + __DSB(); + + while (op_size > 0) { + SCB->DCCMVAC = op_addr; + op_addr += linesize; + op_size -= linesize; + } + + __DSB(); + __ISB(); + #endif +} + + +/** + \brief D-Cache Clean and Invalidate by address + \details Cleans and invalidates D_Cache for the given address + \param[in] addr address (aligned to 32-byte boundary) + \param[in] dsize size of memory block (in number of bytes) +*/ +__STATIC_INLINE void SCB_CleanInvalidateDCache_by_Addr (uint32_t *addr, int32_t dsize) +{ + #if (__DCACHE_PRESENT == 1U) + int32_t op_size = dsize; + uint32_t op_addr = (uint32_t) addr; + int32_t linesize = 32U; /* in Cortex-M7 size of cache line is fixed to 8 words (32 bytes) */ + + __DSB(); + + while (op_size > 0) { + SCB->DCCIMVAC = op_addr; + op_addr += linesize; + op_size -= linesize; + } + + __DSB(); + __ISB(); + #endif +} + + +/*@} end of CMSIS_Core_CacheFunctions */ + + + +/* ################################## SysTick function ############################################ */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_SysTickFunctions SysTick Functions + \brief Functions that configure the System. + @{ + */ + +#if (__Vendor_SysTickConfig == 0U) + +/** + \brief System Tick Configuration + \details Initializes the System Timer and its interrupt, and starts the System Tick Timer. + Counter is in free running mode to generate periodic interrupts. + \param [in] ticks Number of ticks between two interrupts. + \return 0 Function succeeded. + \return 1 Function failed. + \note When the variable __Vendor_SysTickConfig is set to 1, then the + 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) + { + return (1UL); /* Reload value impossible */ + } + + SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ + NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ + SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ + SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | + SysTick_CTRL_TICKINT_Msk | + SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + return (0UL); /* Function successful */ +} + +#endif + +/*@} end of CMSIS_Core_SysTickFunctions */ + + + +/* ##################################### Debug In/Output function ########################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_core_DebugFunctions ITM Functions + \brief Functions that access the ITM debug interface. + @{ + */ + +extern volatile int32_t ITM_RxBuffer; /*!< External variable to receive characters. */ +#define ITM_RXBUFFER_EMPTY 0x5AA55AA5U /*!< Value identifying \ref ITM_RxBuffer is ready for next character. */ + + +/** + \brief ITM Send Character + \details Transmits a character via the ITM channel 0, and + \li Just returns when no debugger is connected that has booked the output. + \li Is blocking when a debugger is connected, but the previous character sent has not been transmitted. + \param [in] ch Character to transmit. + \returns Character to transmit. + */ +__STATIC_INLINE uint32_t ITM_SendChar (uint32_t ch) +{ + if (((ITM->TCR & ITM_TCR_ITMENA_Msk) != 0UL) && /* ITM enabled */ + ((ITM->TER & 1UL ) != 0UL) ) /* ITM Port #0 enabled */ + { + while (ITM->PORT[0U].u32 == 0UL) + { + __NOP(); + } + ITM->PORT[0U].u8 = (uint8_t)ch; + } + return (ch); +} + + +/** + \brief ITM Receive Character + \details Inputs a character via the external variable \ref ITM_RxBuffer. + \return Received character. + \return -1 No character pending. + */ +__STATIC_INLINE int32_t ITM_ReceiveChar (void) +{ + int32_t ch = -1; /* no character available */ + + if (ITM_RxBuffer != ITM_RXBUFFER_EMPTY) + { + ch = ITM_RxBuffer; + ITM_RxBuffer = ITM_RXBUFFER_EMPTY; /* ready for next character */ + } + + return (ch); +} + + +/** + \brief ITM Check Character + \details Checks whether a character is pending for reading in the variable \ref ITM_RxBuffer. + \return 0 No character available. + \return 1 Character available. + */ +__STATIC_INLINE int32_t ITM_CheckChar (void) +{ + + if (ITM_RxBuffer == ITM_RXBUFFER_EMPTY) + { + return (0); /* no character available */ + } + else + { + return (1); /* character available */ + } +} + +/*@} end of CMSIS_core_DebugFunctions */ + + + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CM7_H_DEPENDANT */ + +#endif /* __CMSIS_GENERIC */ diff --git a/Testing/Drivers/CMSIS/Include/core_cmFunc.h b/Testing/Drivers/CMSIS/Include/core_cmFunc.h new file mode 100644 index 0000000..652a48a --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cmFunc.h @@ -0,0 +1,87 @@ +/**************************************************************************//** + * @file core_cmFunc.h + * @brief CMSIS Cortex-M Core Function Access Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CMFUNC_H +#define __CORE_CMFUNC_H + + +/* ########################### Core Function Access ########################### */ +/** \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions + @{ +*/ + +/*------------------ RealView Compiler -----------------*/ +#if defined ( __CC_ARM ) + #include "cmsis_armcc.h" + +/*------------------ ARM Compiler V6 -------------------*/ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #include "cmsis_armcc_V6.h" + +/*------------------ GNU Compiler ----------------------*/ +#elif defined ( __GNUC__ ) + #include "cmsis_gcc.h" + +/*------------------ ICC Compiler ----------------------*/ +#elif defined ( __ICCARM__ ) + #include + +/*------------------ TI CCS Compiler -------------------*/ +#elif defined ( __TMS470__ ) + #include + +/*------------------ TASKING Compiler ------------------*/ +#elif defined ( __TASKING__ ) + /* + * The CMSIS functions have been implemented as intrinsics in the compiler. + * Please use "carm -?i" to get an up to date list of all intrinsics, + * Including the CMSIS ones. + */ + +/*------------------ COSMIC Compiler -------------------*/ +#elif defined ( __CSMC__ ) + #include + +#endif + +/*@} end of CMSIS_Core_RegAccFunctions */ + +#endif /* __CORE_CMFUNC_H */ diff --git a/Testing/Drivers/CMSIS/Include/core_cmInstr.h b/Testing/Drivers/CMSIS/Include/core_cmInstr.h new file mode 100644 index 0000000..f474b0e --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cmInstr.h @@ -0,0 +1,87 @@ +/**************************************************************************//** + * @file core_cmInstr.h + * @brief CMSIS Cortex-M Core Instruction Access Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CMINSTR_H +#define __CORE_CMINSTR_H + + +/* ########################## Core Instruction Access ######################### */ +/** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface + Access to dedicated instructions + @{ +*/ + +/*------------------ RealView Compiler -----------------*/ +#if defined ( __CC_ARM ) + #include "cmsis_armcc.h" + +/*------------------ ARM Compiler V6 -------------------*/ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #include "cmsis_armcc_V6.h" + +/*------------------ GNU Compiler ----------------------*/ +#elif defined ( __GNUC__ ) + #include "cmsis_gcc.h" + +/*------------------ ICC Compiler ----------------------*/ +#elif defined ( __ICCARM__ ) + #include + +/*------------------ TI CCS Compiler -------------------*/ +#elif defined ( __TMS470__ ) + #include + +/*------------------ TASKING Compiler ------------------*/ +#elif defined ( __TASKING__ ) + /* + * The CMSIS functions have been implemented as intrinsics in the compiler. + * Please use "carm -?i" to get an up to date list of all intrinsics, + * Including the CMSIS ones. + */ + +/*------------------ COSMIC Compiler -------------------*/ +#elif defined ( __CSMC__ ) + #include + +#endif + +/*@}*/ /* end of group CMSIS_Core_InstructionInterface */ + +#endif /* __CORE_CMINSTR_H */ diff --git a/Testing/Drivers/CMSIS/Include/core_cmSimd.h b/Testing/Drivers/CMSIS/Include/core_cmSimd.h new file mode 100644 index 0000000..66bf5c2 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_cmSimd.h @@ -0,0 +1,96 @@ +/**************************************************************************//** + * @file core_cmSimd.h + * @brief CMSIS Cortex-M SIMD Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_CMSIMD_H +#define __CORE_CMSIMD_H + +#ifdef __cplusplus + extern "C" { +#endif + + +/* ################### Compiler specific Intrinsics ########################### */ +/** \defgroup CMSIS_SIMD_intrinsics CMSIS SIMD Intrinsics + Access to dedicated SIMD instructions + @{ +*/ + +/*------------------ RealView Compiler -----------------*/ +#if defined ( __CC_ARM ) + #include "cmsis_armcc.h" + +/*------------------ ARM Compiler V6 -------------------*/ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #include "cmsis_armcc_V6.h" + +/*------------------ GNU Compiler ----------------------*/ +#elif defined ( __GNUC__ ) + #include "cmsis_gcc.h" + +/*------------------ ICC Compiler ----------------------*/ +#elif defined ( __ICCARM__ ) + #include + +/*------------------ TI CCS Compiler -------------------*/ +#elif defined ( __TMS470__ ) + #include + +/*------------------ TASKING Compiler ------------------*/ +#elif defined ( __TASKING__ ) + /* + * The CMSIS functions have been implemented as intrinsics in the compiler. + * Please use "carm -?i" to get an up to date list of all intrinsics, + * Including the CMSIS ones. + */ + +/*------------------ COSMIC Compiler -------------------*/ +#elif defined ( __CSMC__ ) + #include + +#endif + +/*@} end of group CMSIS_SIMD_intrinsics */ + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_CMSIMD_H */ diff --git a/Testing/Drivers/CMSIS/Include/core_sc000.h b/Testing/Drivers/CMSIS/Include/core_sc000.h new file mode 100644 index 0000000..514dbd8 --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_sc000.h @@ -0,0 +1,926 @@ +/**************************************************************************//** + * @file core_sc000.h + * @brief CMSIS SC000 Core Peripheral Access Layer Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_SC000_H_GENERIC +#define __CORE_SC000_H_GENERIC + +#include + +#ifdef __cplusplus + extern "C" { +#endif + +/** + \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions + CMSIS violates the following MISRA-C:2004 rules: + + \li Required Rule 8.5, object/function definition in header file.
+ Function definitions in header files are used to allow 'inlining'. + + \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.
+ Unions are used for effective representation of core registers. + + \li Advisory Rule 19.7, Function-like macro defined.
+ Function-like macros are used to allow more efficient code. + */ + + +/******************************************************************************* + * CMSIS definitions + ******************************************************************************/ +/** + \ingroup SC000 + @{ + */ + +/* CMSIS SC000 definitions */ +#define __SC000_CMSIS_VERSION_MAIN (0x04U) /*!< [31:16] CMSIS HAL main version */ +#define __SC000_CMSIS_VERSION_SUB (0x1EU) /*!< [15:0] CMSIS HAL sub version */ +#define __SC000_CMSIS_VERSION ((__SC000_CMSIS_VERSION_MAIN << 16U) | \ + __SC000_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */ + +#define __CORTEX_SC (000U) /*!< Cortex secure core */ + + +#if defined ( __CC_ARM ) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined ( __GNUC__ ) + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __ICCARM__ ) + #define __ASM __asm /*!< asm keyword for IAR Compiler */ + #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ + #define __STATIC_INLINE static inline + +#elif defined ( __TMS470__ ) + #define __ASM __asm /*!< asm keyword for TI CCS Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __TASKING__ ) + #define __ASM __asm /*!< asm keyword for TASKING Compiler */ + #define __INLINE inline /*!< inline keyword for TASKING Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __CSMC__ ) + #define __packed + #define __ASM _asm /*!< asm keyword for COSMIC Compiler */ + #define __INLINE inline /*!< inline keyword for COSMIC Compiler. Use -pc99 on compile line */ + #define __STATIC_INLINE static inline + +#else + #error Unknown compiler +#endif + +/** __FPU_USED indicates whether an FPU is used or not. + This core does not support an FPU at all +*/ +#define __FPU_USED 0U + +#if defined ( __CC_ARM ) + #if defined __TARGET_FPU_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #if defined __ARM_PCS_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __GNUC__ ) + #if defined (__VFP_FP__) && !defined(__SOFTFP__) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __ICCARM__ ) + #if defined __ARMVFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TMS470__ ) + #if defined __TI_VFP_SUPPORT__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TASKING__ ) + #if defined __FPU_VFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __CSMC__ ) + #if ( __CSMC__ & 0x400U) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#endif + +#include "core_cmInstr.h" /* Core Instruction Access */ +#include "core_cmFunc.h" /* Core Function Access */ + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_SC000_H_GENERIC */ + +#ifndef __CMSIS_GENERIC + +#ifndef __CORE_SC000_H_DEPENDANT +#define __CORE_SC000_H_DEPENDANT + +#ifdef __cplusplus + extern "C" { +#endif + +/* check device defines and use defaults */ +#if defined __CHECK_DEVICE_DEFINES + #ifndef __SC000_REV + #define __SC000_REV 0x0000U + #warning "__SC000_REV not defined in device header file; using default!" + #endif + + #ifndef __MPU_PRESENT + #define __MPU_PRESENT 0U + #warning "__MPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __NVIC_PRIO_BITS + #define __NVIC_PRIO_BITS 2U + #warning "__NVIC_PRIO_BITS not defined in device header file; using default!" + #endif + + #ifndef __Vendor_SysTickConfig + #define __Vendor_SysTickConfig 0U + #warning "__Vendor_SysTickConfig not defined in device header file; using default!" + #endif +#endif + +/* IO definitions (access restrictions to peripheral registers) */ +/** + \defgroup CMSIS_glob_defs CMSIS Global Defines + + IO Type Qualifiers are used + \li to specify the access to peripheral variables. + \li for automatic generation of peripheral register debug information. +*/ +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +/* following defines should be used for structure members */ +#define __IM volatile const /*! Defines 'read only' structure member permissions */ +#define __OM volatile /*! Defines 'write only' structure member permissions */ +#define __IOM volatile /*! Defines 'read / write' structure member permissions */ + +/*@} end of group SC000 */ + + + +/******************************************************************************* + * Register Abstraction + Core Register contain: + - Core Register + - Core NVIC Register + - Core SCB Register + - Core SysTick Register + - Core MPU Register + ******************************************************************************/ +/** + \defgroup CMSIS_core_register Defines and Type Definitions + \brief Type definitions and defines for Cortex-M processor based devices. +*/ + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CORE Status and Control Registers + \brief Core Register type definitions. + @{ + */ + +/** + \brief Union type to access the Application Program Status Register (APSR). + */ +typedef union +{ + struct + { + uint32_t _reserved0:28; /*!< bit: 0..27 Reserved */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} APSR_Type; + +/* APSR Register Definitions */ +#define APSR_N_Pos 31U /*!< APSR: N Position */ +#define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */ + +#define APSR_Z_Pos 30U /*!< APSR: Z Position */ +#define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */ + +#define APSR_C_Pos 29U /*!< APSR: C Position */ +#define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */ + +#define APSR_V_Pos 28U /*!< APSR: V Position */ +#define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */ + + +/** + \brief Union type to access the Interrupt Program Status Register (IPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} IPSR_Type; + +/* IPSR Register Definitions */ +#define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */ +#define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */ + + +/** + \brief Union type to access the Special-Purpose Program Status Registers (xPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:15; /*!< bit: 9..23 Reserved */ + uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */ + uint32_t _reserved1:3; /*!< bit: 25..27 Reserved */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} xPSR_Type; + +/* xPSR Register Definitions */ +#define xPSR_N_Pos 31U /*!< xPSR: N Position */ +#define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */ + +#define xPSR_Z_Pos 30U /*!< xPSR: Z Position */ +#define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */ + +#define xPSR_C_Pos 29U /*!< xPSR: C Position */ +#define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */ + +#define xPSR_V_Pos 28U /*!< xPSR: V Position */ +#define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */ + +#define xPSR_T_Pos 24U /*!< xPSR: T Position */ +#define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */ + +#define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */ +#define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */ + + +/** + \brief Union type to access the Control Registers (CONTROL). + */ +typedef union +{ + struct + { + uint32_t _reserved0:1; /*!< bit: 0 Reserved */ + uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */ + uint32_t _reserved1:30; /*!< bit: 2..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} CONTROL_Type; + +/* CONTROL Register Definitions */ +#define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */ +#define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */ + +/*@} end of group CMSIS_CORE */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC) + \brief Type definitions for the NVIC Registers + @{ + */ + +/** + \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC). + */ +typedef struct +{ + __IOM uint32_t ISER[1U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */ + uint32_t RESERVED0[31U]; + __IOM uint32_t ICER[1U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */ + uint32_t RSERVED1[31U]; + __IOM uint32_t ISPR[1U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */ + uint32_t RESERVED2[31U]; + __IOM uint32_t ICPR[1U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */ + uint32_t RESERVED3[31U]; + uint32_t RESERVED4[64U]; + __IOM uint32_t IP[8U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register */ +} NVIC_Type; + +/*@} end of group CMSIS_NVIC */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCB System Control Block (SCB) + \brief Type definitions for the System Control Block Registers + @{ + */ + +/** + \brief Structure type to access the System Control Block (SCB). + */ +typedef struct +{ + __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */ + __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */ + __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */ + __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */ + __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */ + __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */ + uint32_t RESERVED0[1U]; + __IOM uint32_t SHP[2U]; /*!< Offset: 0x01C (R/W) System Handlers Priority Registers. [0] is RESERVED */ + __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */ + uint32_t RESERVED1[154U]; + __IOM uint32_t SFCR; /*!< Offset: 0x290 (R/W) Security Features Control Register */ +} SCB_Type; + +/* SCB CPUID Register Definitions */ +#define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */ +#define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */ + +#define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */ +#define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */ + +#define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */ +#define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */ + +#define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */ +#define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */ + +#define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */ +#define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */ +#define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */ + +#define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */ +#define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */ + +#define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */ +#define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */ + +#define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */ +#define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */ + +#define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */ +#define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */ + +#define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */ +#define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */ + +#define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */ +#define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */ + +#define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */ +#define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */ + +#define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */ +#define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB VTOR: TBLOFF Position */ +#define SCB_VTOR_TBLOFF_Msk (0x1FFFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */ + +/* SCB Application Interrupt and Reset Control Register Definitions */ +#define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */ +#define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */ + +#define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */ +#define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */ + +#define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */ +#define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */ + +#define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */ +#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */ + +#define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */ +#define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */ + +/* SCB System Control Register Definitions */ +#define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */ +#define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */ + +#define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */ +#define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */ + +#define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */ +#define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */ + +/* SCB Configuration Control Register Definitions */ +#define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */ +#define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */ + +#define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */ +#define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */ + +/* SCB System Handler Control and State Register Definitions */ +#define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */ +#define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */ + +/*@} end of group CMSIS_SCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCnSCB System Controls not in SCB (SCnSCB) + \brief Type definitions for the System Control and ID Register not in the SCB + @{ + */ + +/** + \brief Structure type to access the System Control and ID Register not in the SCB. + */ +typedef struct +{ + uint32_t RESERVED0[2U]; + __IOM uint32_t ACTLR; /*!< Offset: 0x008 (R/W) Auxiliary Control Register */ +} SCnSCB_Type; + +/* Auxiliary Control Register Definitions */ +#define SCnSCB_ACTLR_DISMCYCINT_Pos 0U /*!< ACTLR: DISMCYCINT Position */ +#define SCnSCB_ACTLR_DISMCYCINT_Msk (1UL /*<< SCnSCB_ACTLR_DISMCYCINT_Pos*/) /*!< ACTLR: DISMCYCINT Mask */ + +/*@} end of group CMSIS_SCnotSCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SysTick System Tick Timer (SysTick) + \brief Type definitions for the System Timer Registers. + @{ + */ + +/** + \brief Structure type to access the System Timer (SysTick). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */ + __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */ + __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ + __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */ +} SysTick_Type; + +/* SysTick Control / Status Register Definitions */ +#define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */ +#define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */ + +#define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */ +#define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */ + +#define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */ +#define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */ + +#define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */ +#define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */ + +/* SysTick Reload Register Definitions */ +#define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */ +#define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */ + +/* SysTick Current Register Definitions */ +#define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ +#define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ + +/* SysTick Calibration Register Definitions */ +#define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */ +#define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */ + +#define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */ +#define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */ + +#define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */ +#define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */ + +/*@} end of group CMSIS_SysTick */ + +#if (__MPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_MPU Memory Protection Unit (MPU) + \brief Type definitions for the Memory Protection Unit (MPU) + @{ + */ + +/** + \brief Structure type to access the Memory Protection Unit (MPU). + */ +typedef struct +{ + __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */ + __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */ + __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region RNRber Register */ + __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */ + __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */ +} MPU_Type; + +/* MPU Type Register Definitions */ +#define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */ +#define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */ + +#define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */ +#define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */ + +#define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */ +#define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */ + +/* MPU Control Register Definitions */ +#define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */ +#define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */ + +#define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */ +#define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */ + +#define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */ +#define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */ + +/* MPU Region Number Register Definitions */ +#define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */ +#define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */ + +/* MPU Region Base Address Register Definitions */ +#define MPU_RBAR_ADDR_Pos 8U /*!< MPU RBAR: ADDR Position */ +#define MPU_RBAR_ADDR_Msk (0xFFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */ + +#define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */ +#define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */ + +#define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */ +#define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */ + +/* MPU Region Attribute and Size Register Definitions */ +#define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */ +#define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */ + +#define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */ +#define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */ + +#define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */ +#define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */ + +#define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */ +#define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */ + +#define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */ +#define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */ + +#define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */ +#define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */ + +#define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */ +#define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */ + +#define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */ +#define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */ + +#define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */ +#define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */ + +#define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */ +#define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */ + +/*@} end of group CMSIS_MPU */ +#endif + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug) + \brief SC000 Core Debug Registers (DCB registers, SHCSR, and DFSR) are only accessible over DAP and not via processor. + Therefore they are not covered by the SC000 header file. + @{ + */ +/*@} end of group CMSIS_CoreDebug */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_bitfield Core register bit field macros + \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk). + @{ + */ + +/** + \brief Mask and shift a bit field value for use in a register bit range. + \param[in] field Name of the register bit field. + \param[in] value Value of the bit field. + \return Masked and shifted value. +*/ +#define _VAL2FLD(field, value) ((value << field ## _Pos) & field ## _Msk) + +/** + \brief Mask and shift a register value to extract a bit filed value. + \param[in] field Name of the register bit field. + \param[in] value Value of register. + \return Masked and shifted bit field value. +*/ +#define _FLD2VAL(field, value) ((value & field ## _Msk) >> field ## _Pos) + +/*@} end of group CMSIS_core_bitfield */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_base Core Definitions + \brief Definitions for base addresses, unions, and structures. + @{ + */ + +/* Memory mapping of SC000 Hardware */ +#define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */ +#define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */ +#define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */ +#define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */ + +#define SCnSCB ((SCnSCB_Type *) SCS_BASE ) /*!< System control Register not in SCB */ +#define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */ +#define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */ +#define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */ + +#if (__MPU_PRESENT == 1U) + #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */ + #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */ +#endif + +/*@} */ + + + +/******************************************************************************* + * Hardware Abstraction Layer + Core Function Interface contains: + - Core NVIC Functions + - Core SysTick Functions + - Core Register Access Functions + ******************************************************************************/ +/** + \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference +*/ + + + +/* ########################## NVIC functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_NVICFunctions NVIC Functions + \brief Functions that manage interrupts and exceptions via the NVIC. + @{ + */ + +/* Interrupt Priorities are WORD accessible only under ARMv6M */ +/* The following MACROS handle generation of the register offset and byte masks */ +#define _BIT_SHIFT(IRQn) ( ((((uint32_t)(int32_t)(IRQn)) ) & 0x03UL) * 8UL) +#define _SHP_IDX(IRQn) ( (((((uint32_t)(int32_t)(IRQn)) & 0x0FUL)-8UL) >> 2UL) ) +#define _IP_IDX(IRQn) ( (((uint32_t)(int32_t)(IRQn)) >> 2UL) ) + + +/** + \brief Enable External Interrupt + \details Enables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) +{ + NVIC->ISER[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Disable External Interrupt + \details Disables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn) +{ + NVIC->ICER[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the pending register in the NVIC and returns the pending bit for the specified interrupt. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + */ +__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->ISPR[0U] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of an external interrupt. + \param [in] IRQn Interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ISPR[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of an external interrupt. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ICPR[0U] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Set Interrupt Priority + \details Sets the priority of an interrupt. + \note The priority cannot be set for every core interrupt. + \param [in] IRQn Interrupt number. + \param [in] priority Priority to set. + */ +__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) +{ + if ((int32_t)(IRQn) < 0) + { + SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | + (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); + } + else + { + NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) | + (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); + } +} + + +/** + \brief Get Interrupt Priority + \details Reads the priority of an interrupt. + The interrupt number can be positive to specify an external (device specific) interrupt, + or negative to specify an internal (core) interrupt. + \param [in] IRQn Interrupt number. + \return Interrupt Priority. + Value is aligned automatically to the implemented priority bits of the microcontroller. + */ +__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn) +{ + + if ((int32_t)(IRQn) < 0) + { + return((uint32_t)(((SCB->SHP[_SHP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS))); + } + else + { + return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS))); + } +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +__STATIC_INLINE void NVIC_SystemReset(void) +{ + __DSB(); /* Ensure all outstanding memory accesses included + buffered write are completed before reset */ + SCB->AIRCR = ((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + SCB_AIRCR_SYSRESETREQ_Msk); + __DSB(); /* Ensure completion of memory access */ + + for(;;) /* wait until reset */ + { + __NOP(); + } +} + +/*@} end of CMSIS_Core_NVICFunctions */ + + + +/* ################################## SysTick function ############################################ */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_SysTickFunctions SysTick Functions + \brief Functions that configure the System. + @{ + */ + +#if (__Vendor_SysTickConfig == 0U) + +/** + \brief System Tick Configuration + \details Initializes the System Timer and its interrupt, and starts the System Tick Timer. + Counter is in free running mode to generate periodic interrupts. + \param [in] ticks Number of ticks between two interrupts. + \return 0 Function succeeded. + \return 1 Function failed. + \note When the variable __Vendor_SysTickConfig is set to 1, then the + 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) + { + return (1UL); /* Reload value impossible */ + } + + SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ + NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ + SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ + SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | + SysTick_CTRL_TICKINT_Msk | + SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + return (0UL); /* Function successful */ +} + +#endif + +/*@} end of CMSIS_Core_SysTickFunctions */ + + + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_SC000_H_DEPENDANT */ + +#endif /* __CMSIS_GENERIC */ diff --git a/Testing/Drivers/CMSIS/Include/core_sc300.h b/Testing/Drivers/CMSIS/Include/core_sc300.h new file mode 100644 index 0000000..8bd18aa --- /dev/null +++ b/Testing/Drivers/CMSIS/Include/core_sc300.h @@ -0,0 +1,1745 @@ +/**************************************************************************//** + * @file core_sc300.h + * @brief CMSIS SC300 Core Peripheral Access Layer Header File + * @version V4.30 + * @date 20. October 2015 + ******************************************************************************/ +/* Copyright (c) 2009 - 2015 ARM LIMITED + + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of ARM nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + * + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + ---------------------------------------------------------------------------*/ + + +#if defined ( __ICCARM__ ) + #pragma system_include /* treat file as system include file for MISRA check */ +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #pragma clang system_header /* treat file as system include file */ +#endif + +#ifndef __CORE_SC300_H_GENERIC +#define __CORE_SC300_H_GENERIC + +#include + +#ifdef __cplusplus + extern "C" { +#endif + +/** + \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions + CMSIS violates the following MISRA-C:2004 rules: + + \li Required Rule 8.5, object/function definition in header file.
+ Function definitions in header files are used to allow 'inlining'. + + \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.
+ Unions are used for effective representation of core registers. + + \li Advisory Rule 19.7, Function-like macro defined.
+ Function-like macros are used to allow more efficient code. + */ + + +/******************************************************************************* + * CMSIS definitions + ******************************************************************************/ +/** + \ingroup SC3000 + @{ + */ + +/* CMSIS SC300 definitions */ +#define __SC300_CMSIS_VERSION_MAIN (0x04U) /*!< [31:16] CMSIS HAL main version */ +#define __SC300_CMSIS_VERSION_SUB (0x1EU) /*!< [15:0] CMSIS HAL sub version */ +#define __SC300_CMSIS_VERSION ((__SC300_CMSIS_VERSION_MAIN << 16U) | \ + __SC300_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */ + +#define __CORTEX_SC (300U) /*!< Cortex secure core */ + + +#if defined ( __CC_ARM ) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #define __ASM __asm /*!< asm keyword for ARM Compiler */ + #define __INLINE __inline /*!< inline keyword for ARM Compiler */ + #define __STATIC_INLINE static __inline + +#elif defined ( __GNUC__ ) + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __ICCARM__ ) + #define __ASM __asm /*!< asm keyword for IAR Compiler */ + #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ + #define __STATIC_INLINE static inline + +#elif defined ( __TMS470__ ) + #define __ASM __asm /*!< asm keyword for TI CCS Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __TASKING__ ) + #define __ASM __asm /*!< asm keyword for TASKING Compiler */ + #define __INLINE inline /*!< inline keyword for TASKING Compiler */ + #define __STATIC_INLINE static inline + +#elif defined ( __CSMC__ ) + #define __packed + #define __ASM _asm /*!< asm keyword for COSMIC Compiler */ + #define __INLINE inline /*!< inline keyword for COSMIC Compiler. Use -pc99 on compile line */ + #define __STATIC_INLINE static inline + +#else + #error Unknown compiler +#endif + +/** __FPU_USED indicates whether an FPU is used or not. + This core does not support an FPU at all +*/ +#define __FPU_USED 0U + +#if defined ( __CC_ARM ) + #if defined __TARGET_FPU_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) + #if defined __ARM_PCS_VFP + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __GNUC__ ) + #if defined (__VFP_FP__) && !defined(__SOFTFP__) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __ICCARM__ ) + #if defined __ARMVFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TMS470__ ) + #if defined __TI_VFP_SUPPORT__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __TASKING__ ) + #if defined __FPU_VFP__ + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#elif defined ( __CSMC__ ) + #if ( __CSMC__ & 0x400U) + #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)" + #endif + +#endif + +#include "core_cmInstr.h" /* Core Instruction Access */ +#include "core_cmFunc.h" /* Core Function Access */ + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_SC300_H_GENERIC */ + +#ifndef __CMSIS_GENERIC + +#ifndef __CORE_SC300_H_DEPENDANT +#define __CORE_SC300_H_DEPENDANT + +#ifdef __cplusplus + extern "C" { +#endif + +/* check device defines and use defaults */ +#if defined __CHECK_DEVICE_DEFINES + #ifndef __SC300_REV + #define __SC300_REV 0x0000U + #warning "__SC300_REV not defined in device header file; using default!" + #endif + + #ifndef __MPU_PRESENT + #define __MPU_PRESENT 0U + #warning "__MPU_PRESENT not defined in device header file; using default!" + #endif + + #ifndef __NVIC_PRIO_BITS + #define __NVIC_PRIO_BITS 4U + #warning "__NVIC_PRIO_BITS not defined in device header file; using default!" + #endif + + #ifndef __Vendor_SysTickConfig + #define __Vendor_SysTickConfig 0U + #warning "__Vendor_SysTickConfig not defined in device header file; using default!" + #endif +#endif + +/* IO definitions (access restrictions to peripheral registers) */ +/** + \defgroup CMSIS_glob_defs CMSIS Global Defines + + IO Type Qualifiers are used + \li to specify the access to peripheral variables. + \li for automatic generation of peripheral register debug information. +*/ +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +/* following defines should be used for structure members */ +#define __IM volatile const /*! Defines 'read only' structure member permissions */ +#define __OM volatile /*! Defines 'write only' structure member permissions */ +#define __IOM volatile /*! Defines 'read / write' structure member permissions */ + +/*@} end of group SC300 */ + + + +/******************************************************************************* + * Register Abstraction + Core Register contain: + - Core Register + - Core NVIC Register + - Core SCB Register + - Core SysTick Register + - Core Debug Register + - Core MPU Register + ******************************************************************************/ +/** + \defgroup CMSIS_core_register Defines and Type Definitions + \brief Type definitions and defines for Cortex-M processor based devices. +*/ + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CORE Status and Control Registers + \brief Core Register type definitions. + @{ + */ + +/** + \brief Union type to access the Application Program Status Register (APSR). + */ +typedef union +{ + struct + { + uint32_t _reserved0:27; /*!< bit: 0..26 Reserved */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} APSR_Type; + +/* APSR Register Definitions */ +#define APSR_N_Pos 31U /*!< APSR: N Position */ +#define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */ + +#define APSR_Z_Pos 30U /*!< APSR: Z Position */ +#define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */ + +#define APSR_C_Pos 29U /*!< APSR: C Position */ +#define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */ + +#define APSR_V_Pos 28U /*!< APSR: V Position */ +#define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */ + +#define APSR_Q_Pos 27U /*!< APSR: Q Position */ +#define APSR_Q_Msk (1UL << APSR_Q_Pos) /*!< APSR: Q Mask */ + + +/** + \brief Union type to access the Interrupt Program Status Register (IPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} IPSR_Type; + +/* IPSR Register Definitions */ +#define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */ +#define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */ + + +/** + \brief Union type to access the Special-Purpose Program Status Registers (xPSR). + */ +typedef union +{ + struct + { + uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */ + uint32_t _reserved0:15; /*!< bit: 9..23 Reserved */ + uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */ + uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */ + uint32_t Q:1; /*!< bit: 27 Saturation condition flag */ + uint32_t V:1; /*!< bit: 28 Overflow condition code flag */ + uint32_t C:1; /*!< bit: 29 Carry condition code flag */ + uint32_t Z:1; /*!< bit: 30 Zero condition code flag */ + uint32_t N:1; /*!< bit: 31 Negative condition code flag */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} xPSR_Type; + +/* xPSR Register Definitions */ +#define xPSR_N_Pos 31U /*!< xPSR: N Position */ +#define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */ + +#define xPSR_Z_Pos 30U /*!< xPSR: Z Position */ +#define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */ + +#define xPSR_C_Pos 29U /*!< xPSR: C Position */ +#define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */ + +#define xPSR_V_Pos 28U /*!< xPSR: V Position */ +#define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */ + +#define xPSR_Q_Pos 27U /*!< xPSR: Q Position */ +#define xPSR_Q_Msk (1UL << xPSR_Q_Pos) /*!< xPSR: Q Mask */ + +#define xPSR_IT_Pos 25U /*!< xPSR: IT Position */ +#define xPSR_IT_Msk (3UL << xPSR_IT_Pos) /*!< xPSR: IT Mask */ + +#define xPSR_T_Pos 24U /*!< xPSR: T Position */ +#define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */ + +#define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */ +#define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */ + + +/** + \brief Union type to access the Control Registers (CONTROL). + */ +typedef union +{ + struct + { + uint32_t nPRIV:1; /*!< bit: 0 Execution privilege in Thread mode */ + uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */ + uint32_t _reserved1:30; /*!< bit: 2..31 Reserved */ + } b; /*!< Structure used for bit access */ + uint32_t w; /*!< Type used for word access */ +} CONTROL_Type; + +/* CONTROL Register Definitions */ +#define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */ +#define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */ + +#define CONTROL_nPRIV_Pos 0U /*!< CONTROL: nPRIV Position */ +#define CONTROL_nPRIV_Msk (1UL /*<< CONTROL_nPRIV_Pos*/) /*!< CONTROL: nPRIV Mask */ + +/*@} end of group CMSIS_CORE */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC) + \brief Type definitions for the NVIC Registers + @{ + */ + +/** + \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC). + */ +typedef struct +{ + __IOM uint32_t ISER[8U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */ + uint32_t RESERVED0[24U]; + __IOM uint32_t ICER[8U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */ + uint32_t RSERVED1[24U]; + __IOM uint32_t ISPR[8U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */ + uint32_t RESERVED2[24U]; + __IOM uint32_t ICPR[8U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */ + uint32_t RESERVED3[24U]; + __IOM uint32_t IABR[8U]; /*!< Offset: 0x200 (R/W) Interrupt Active bit Register */ + uint32_t RESERVED4[56U]; + __IOM uint8_t IP[240U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register (8Bit wide) */ + uint32_t RESERVED5[644U]; + __OM uint32_t STIR; /*!< Offset: 0xE00 ( /W) Software Trigger Interrupt Register */ +} NVIC_Type; + +/* Software Triggered Interrupt Register Definitions */ +#define NVIC_STIR_INTID_Pos 0U /*!< STIR: INTLINESNUM Position */ +#define NVIC_STIR_INTID_Msk (0x1FFUL /*<< NVIC_STIR_INTID_Pos*/) /*!< STIR: INTLINESNUM Mask */ + +/*@} end of group CMSIS_NVIC */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCB System Control Block (SCB) + \brief Type definitions for the System Control Block Registers + @{ + */ + +/** + \brief Structure type to access the System Control Block (SCB). + */ +typedef struct +{ + __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */ + __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */ + __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */ + __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */ + __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */ + __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */ + __IOM uint8_t SHP[12U]; /*!< Offset: 0x018 (R/W) System Handlers Priority Registers (4-7, 8-11, 12-15) */ + __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */ + __IOM uint32_t CFSR; /*!< Offset: 0x028 (R/W) Configurable Fault Status Register */ + __IOM uint32_t HFSR; /*!< Offset: 0x02C (R/W) HardFault Status Register */ + __IOM uint32_t DFSR; /*!< Offset: 0x030 (R/W) Debug Fault Status Register */ + __IOM uint32_t MMFAR; /*!< Offset: 0x034 (R/W) MemManage Fault Address Register */ + __IOM uint32_t BFAR; /*!< Offset: 0x038 (R/W) BusFault Address Register */ + __IOM uint32_t AFSR; /*!< Offset: 0x03C (R/W) Auxiliary Fault Status Register */ + __IM uint32_t PFR[2U]; /*!< Offset: 0x040 (R/ ) Processor Feature Register */ + __IM uint32_t DFR; /*!< Offset: 0x048 (R/ ) Debug Feature Register */ + __IM uint32_t ADR; /*!< Offset: 0x04C (R/ ) Auxiliary Feature Register */ + __IM uint32_t MMFR[4U]; /*!< Offset: 0x050 (R/ ) Memory Model Feature Register */ + __IM uint32_t ISAR[5U]; /*!< Offset: 0x060 (R/ ) Instruction Set Attributes Register */ + uint32_t RESERVED0[5U]; + __IOM uint32_t CPACR; /*!< Offset: 0x088 (R/W) Coprocessor Access Control Register */ + uint32_t RESERVED1[129U]; + __IOM uint32_t SFCR; /*!< Offset: 0x290 (R/W) Security Features Control Register */ +} SCB_Type; + +/* SCB CPUID Register Definitions */ +#define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */ +#define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */ + +#define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */ +#define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */ + +#define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */ +#define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */ + +#define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */ +#define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */ + +#define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */ +#define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */ + +/* SCB Interrupt Control State Register Definitions */ +#define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */ +#define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */ + +#define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */ +#define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */ + +#define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */ +#define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */ + +#define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */ +#define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */ + +#define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */ +#define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */ + +#define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */ +#define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */ + +#define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */ +#define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */ + +#define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */ +#define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */ + +#define SCB_ICSR_RETTOBASE_Pos 11U /*!< SCB ICSR: RETTOBASE Position */ +#define SCB_ICSR_RETTOBASE_Msk (1UL << SCB_ICSR_RETTOBASE_Pos) /*!< SCB ICSR: RETTOBASE Mask */ + +#define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */ +#define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */ + +/* SCB Vector Table Offset Register Definitions */ +#define SCB_VTOR_TBLBASE_Pos 29U /*!< SCB VTOR: TBLBASE Position */ +#define SCB_VTOR_TBLBASE_Msk (1UL << SCB_VTOR_TBLBASE_Pos) /*!< SCB VTOR: TBLBASE Mask */ + +#define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB VTOR: TBLOFF Position */ +#define SCB_VTOR_TBLOFF_Msk (0x3FFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */ + +/* SCB Application Interrupt and Reset Control Register Definitions */ +#define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */ +#define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */ + +#define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */ +#define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */ + +#define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */ +#define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */ + +#define SCB_AIRCR_PRIGROUP_Pos 8U /*!< SCB AIRCR: PRIGROUP Position */ +#define SCB_AIRCR_PRIGROUP_Msk (7UL << SCB_AIRCR_PRIGROUP_Pos) /*!< SCB AIRCR: PRIGROUP Mask */ + +#define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */ +#define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */ + +#define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */ +#define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */ + +#define SCB_AIRCR_VECTRESET_Pos 0U /*!< SCB AIRCR: VECTRESET Position */ +#define SCB_AIRCR_VECTRESET_Msk (1UL /*<< SCB_AIRCR_VECTRESET_Pos*/) /*!< SCB AIRCR: VECTRESET Mask */ + +/* SCB System Control Register Definitions */ +#define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */ +#define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */ + +#define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */ +#define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */ + +#define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */ +#define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */ + +/* SCB Configuration Control Register Definitions */ +#define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */ +#define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */ + +#define SCB_CCR_BFHFNMIGN_Pos 8U /*!< SCB CCR: BFHFNMIGN Position */ +#define SCB_CCR_BFHFNMIGN_Msk (1UL << SCB_CCR_BFHFNMIGN_Pos) /*!< SCB CCR: BFHFNMIGN Mask */ + +#define SCB_CCR_DIV_0_TRP_Pos 4U /*!< SCB CCR: DIV_0_TRP Position */ +#define SCB_CCR_DIV_0_TRP_Msk (1UL << SCB_CCR_DIV_0_TRP_Pos) /*!< SCB CCR: DIV_0_TRP Mask */ + +#define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */ +#define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */ + +#define SCB_CCR_USERSETMPEND_Pos 1U /*!< SCB CCR: USERSETMPEND Position */ +#define SCB_CCR_USERSETMPEND_Msk (1UL << SCB_CCR_USERSETMPEND_Pos) /*!< SCB CCR: USERSETMPEND Mask */ + +#define SCB_CCR_NONBASETHRDENA_Pos 0U /*!< SCB CCR: NONBASETHRDENA Position */ +#define SCB_CCR_NONBASETHRDENA_Msk (1UL /*<< SCB_CCR_NONBASETHRDENA_Pos*/) /*!< SCB CCR: NONBASETHRDENA Mask */ + +/* SCB System Handler Control and State Register Definitions */ +#define SCB_SHCSR_USGFAULTENA_Pos 18U /*!< SCB SHCSR: USGFAULTENA Position */ +#define SCB_SHCSR_USGFAULTENA_Msk (1UL << SCB_SHCSR_USGFAULTENA_Pos) /*!< SCB SHCSR: USGFAULTENA Mask */ + +#define SCB_SHCSR_BUSFAULTENA_Pos 17U /*!< SCB SHCSR: BUSFAULTENA Position */ +#define SCB_SHCSR_BUSFAULTENA_Msk (1UL << SCB_SHCSR_BUSFAULTENA_Pos) /*!< SCB SHCSR: BUSFAULTENA Mask */ + +#define SCB_SHCSR_MEMFAULTENA_Pos 16U /*!< SCB SHCSR: MEMFAULTENA Position */ +#define SCB_SHCSR_MEMFAULTENA_Msk (1UL << SCB_SHCSR_MEMFAULTENA_Pos) /*!< SCB SHCSR: MEMFAULTENA Mask */ + +#define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */ +#define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */ + +#define SCB_SHCSR_BUSFAULTPENDED_Pos 14U /*!< SCB SHCSR: BUSFAULTPENDED Position */ +#define SCB_SHCSR_BUSFAULTPENDED_Msk (1UL << SCB_SHCSR_BUSFAULTPENDED_Pos) /*!< SCB SHCSR: BUSFAULTPENDED Mask */ + +#define SCB_SHCSR_MEMFAULTPENDED_Pos 13U /*!< SCB SHCSR: MEMFAULTPENDED Position */ +#define SCB_SHCSR_MEMFAULTPENDED_Msk (1UL << SCB_SHCSR_MEMFAULTPENDED_Pos) /*!< SCB SHCSR: MEMFAULTPENDED Mask */ + +#define SCB_SHCSR_USGFAULTPENDED_Pos 12U /*!< SCB SHCSR: USGFAULTPENDED Position */ +#define SCB_SHCSR_USGFAULTPENDED_Msk (1UL << SCB_SHCSR_USGFAULTPENDED_Pos) /*!< SCB SHCSR: USGFAULTPENDED Mask */ + +#define SCB_SHCSR_SYSTICKACT_Pos 11U /*!< SCB SHCSR: SYSTICKACT Position */ +#define SCB_SHCSR_SYSTICKACT_Msk (1UL << SCB_SHCSR_SYSTICKACT_Pos) /*!< SCB SHCSR: SYSTICKACT Mask */ + +#define SCB_SHCSR_PENDSVACT_Pos 10U /*!< SCB SHCSR: PENDSVACT Position */ +#define SCB_SHCSR_PENDSVACT_Msk (1UL << SCB_SHCSR_PENDSVACT_Pos) /*!< SCB SHCSR: PENDSVACT Mask */ + +#define SCB_SHCSR_MONITORACT_Pos 8U /*!< SCB SHCSR: MONITORACT Position */ +#define SCB_SHCSR_MONITORACT_Msk (1UL << SCB_SHCSR_MONITORACT_Pos) /*!< SCB SHCSR: MONITORACT Mask */ + +#define SCB_SHCSR_SVCALLACT_Pos 7U /*!< SCB SHCSR: SVCALLACT Position */ +#define SCB_SHCSR_SVCALLACT_Msk (1UL << SCB_SHCSR_SVCALLACT_Pos) /*!< SCB SHCSR: SVCALLACT Mask */ + +#define SCB_SHCSR_USGFAULTACT_Pos 3U /*!< SCB SHCSR: USGFAULTACT Position */ +#define SCB_SHCSR_USGFAULTACT_Msk (1UL << SCB_SHCSR_USGFAULTACT_Pos) /*!< SCB SHCSR: USGFAULTACT Mask */ + +#define SCB_SHCSR_BUSFAULTACT_Pos 1U /*!< SCB SHCSR: BUSFAULTACT Position */ +#define SCB_SHCSR_BUSFAULTACT_Msk (1UL << SCB_SHCSR_BUSFAULTACT_Pos) /*!< SCB SHCSR: BUSFAULTACT Mask */ + +#define SCB_SHCSR_MEMFAULTACT_Pos 0U /*!< SCB SHCSR: MEMFAULTACT Position */ +#define SCB_SHCSR_MEMFAULTACT_Msk (1UL /*<< SCB_SHCSR_MEMFAULTACT_Pos*/) /*!< SCB SHCSR: MEMFAULTACT Mask */ + +/* SCB Configurable Fault Status Register Definitions */ +#define SCB_CFSR_USGFAULTSR_Pos 16U /*!< SCB CFSR: Usage Fault Status Register Position */ +#define SCB_CFSR_USGFAULTSR_Msk (0xFFFFUL << SCB_CFSR_USGFAULTSR_Pos) /*!< SCB CFSR: Usage Fault Status Register Mask */ + +#define SCB_CFSR_BUSFAULTSR_Pos 8U /*!< SCB CFSR: Bus Fault Status Register Position */ +#define SCB_CFSR_BUSFAULTSR_Msk (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos) /*!< SCB CFSR: Bus Fault Status Register Mask */ + +#define SCB_CFSR_MEMFAULTSR_Pos 0U /*!< SCB CFSR: Memory Manage Fault Status Register Position */ +#define SCB_CFSR_MEMFAULTSR_Msk (0xFFUL /*<< SCB_CFSR_MEMFAULTSR_Pos*/) /*!< SCB CFSR: Memory Manage Fault Status Register Mask */ + +/* SCB Hard Fault Status Register Definitions */ +#define SCB_HFSR_DEBUGEVT_Pos 31U /*!< SCB HFSR: DEBUGEVT Position */ +#define SCB_HFSR_DEBUGEVT_Msk (1UL << SCB_HFSR_DEBUGEVT_Pos) /*!< SCB HFSR: DEBUGEVT Mask */ + +#define SCB_HFSR_FORCED_Pos 30U /*!< SCB HFSR: FORCED Position */ +#define SCB_HFSR_FORCED_Msk (1UL << SCB_HFSR_FORCED_Pos) /*!< SCB HFSR: FORCED Mask */ + +#define SCB_HFSR_VECTTBL_Pos 1U /*!< SCB HFSR: VECTTBL Position */ +#define SCB_HFSR_VECTTBL_Msk (1UL << SCB_HFSR_VECTTBL_Pos) /*!< SCB HFSR: VECTTBL Mask */ + +/* SCB Debug Fault Status Register Definitions */ +#define SCB_DFSR_EXTERNAL_Pos 4U /*!< SCB DFSR: EXTERNAL Position */ +#define SCB_DFSR_EXTERNAL_Msk (1UL << SCB_DFSR_EXTERNAL_Pos) /*!< SCB DFSR: EXTERNAL Mask */ + +#define SCB_DFSR_VCATCH_Pos 3U /*!< SCB DFSR: VCATCH Position */ +#define SCB_DFSR_VCATCH_Msk (1UL << SCB_DFSR_VCATCH_Pos) /*!< SCB DFSR: VCATCH Mask */ + +#define SCB_DFSR_DWTTRAP_Pos 2U /*!< SCB DFSR: DWTTRAP Position */ +#define SCB_DFSR_DWTTRAP_Msk (1UL << SCB_DFSR_DWTTRAP_Pos) /*!< SCB DFSR: DWTTRAP Mask */ + +#define SCB_DFSR_BKPT_Pos 1U /*!< SCB DFSR: BKPT Position */ +#define SCB_DFSR_BKPT_Msk (1UL << SCB_DFSR_BKPT_Pos) /*!< SCB DFSR: BKPT Mask */ + +#define SCB_DFSR_HALTED_Pos 0U /*!< SCB DFSR: HALTED Position */ +#define SCB_DFSR_HALTED_Msk (1UL /*<< SCB_DFSR_HALTED_Pos*/) /*!< SCB DFSR: HALTED Mask */ + +/*@} end of group CMSIS_SCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SCnSCB System Controls not in SCB (SCnSCB) + \brief Type definitions for the System Control and ID Register not in the SCB + @{ + */ + +/** + \brief Structure type to access the System Control and ID Register not in the SCB. + */ +typedef struct +{ + uint32_t RESERVED0[1U]; + __IM uint32_t ICTR; /*!< Offset: 0x004 (R/ ) Interrupt Controller Type Register */ + uint32_t RESERVED1[1U]; +} SCnSCB_Type; + +/* Interrupt Controller Type Register Definitions */ +#define SCnSCB_ICTR_INTLINESNUM_Pos 0U /*!< ICTR: INTLINESNUM Position */ +#define SCnSCB_ICTR_INTLINESNUM_Msk (0xFUL /*<< SCnSCB_ICTR_INTLINESNUM_Pos*/) /*!< ICTR: INTLINESNUM Mask */ + +/*@} end of group CMSIS_SCnotSCB */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_SysTick System Tick Timer (SysTick) + \brief Type definitions for the System Timer Registers. + @{ + */ + +/** + \brief Structure type to access the System Timer (SysTick). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */ + __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */ + __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ + __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */ +} SysTick_Type; + +/* SysTick Control / Status Register Definitions */ +#define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */ +#define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */ + +#define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */ +#define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */ + +#define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */ +#define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */ + +#define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */ +#define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */ + +/* SysTick Reload Register Definitions */ +#define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */ +#define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */ + +/* SysTick Current Register Definitions */ +#define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ +#define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ + +/* SysTick Calibration Register Definitions */ +#define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */ +#define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */ + +#define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */ +#define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */ + +#define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */ +#define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */ + +/*@} end of group CMSIS_SysTick */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_ITM Instrumentation Trace Macrocell (ITM) + \brief Type definitions for the Instrumentation Trace Macrocell (ITM) + @{ + */ + +/** + \brief Structure type to access the Instrumentation Trace Macrocell Register (ITM). + */ +typedef struct +{ + __OM union + { + __OM uint8_t u8; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 8-bit */ + __OM uint16_t u16; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 16-bit */ + __OM uint32_t u32; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 32-bit */ + } PORT [32U]; /*!< Offset: 0x000 ( /W) ITM Stimulus Port Registers */ + uint32_t RESERVED0[864U]; + __IOM uint32_t TER; /*!< Offset: 0xE00 (R/W) ITM Trace Enable Register */ + uint32_t RESERVED1[15U]; + __IOM uint32_t TPR; /*!< Offset: 0xE40 (R/W) ITM Trace Privilege Register */ + uint32_t RESERVED2[15U]; + __IOM uint32_t TCR; /*!< Offset: 0xE80 (R/W) ITM Trace Control Register */ + uint32_t RESERVED3[29U]; + __OM uint32_t IWR; /*!< Offset: 0xEF8 ( /W) ITM Integration Write Register */ + __IM uint32_t IRR; /*!< Offset: 0xEFC (R/ ) ITM Integration Read Register */ + __IOM uint32_t IMCR; /*!< Offset: 0xF00 (R/W) ITM Integration Mode Control Register */ + uint32_t RESERVED4[43U]; + __OM uint32_t LAR; /*!< Offset: 0xFB0 ( /W) ITM Lock Access Register */ + __IM uint32_t LSR; /*!< Offset: 0xFB4 (R/ ) ITM Lock Status Register */ + uint32_t RESERVED5[6U]; + __IM uint32_t PID4; /*!< Offset: 0xFD0 (R/ ) ITM Peripheral Identification Register #4 */ + __IM uint32_t PID5; /*!< Offset: 0xFD4 (R/ ) ITM Peripheral Identification Register #5 */ + __IM uint32_t PID6; /*!< Offset: 0xFD8 (R/ ) ITM Peripheral Identification Register #6 */ + __IM uint32_t PID7; /*!< Offset: 0xFDC (R/ ) ITM Peripheral Identification Register #7 */ + __IM uint32_t PID0; /*!< Offset: 0xFE0 (R/ ) ITM Peripheral Identification Register #0 */ + __IM uint32_t PID1; /*!< Offset: 0xFE4 (R/ ) ITM Peripheral Identification Register #1 */ + __IM uint32_t PID2; /*!< Offset: 0xFE8 (R/ ) ITM Peripheral Identification Register #2 */ + __IM uint32_t PID3; /*!< Offset: 0xFEC (R/ ) ITM Peripheral Identification Register #3 */ + __IM uint32_t CID0; /*!< Offset: 0xFF0 (R/ ) ITM Component Identification Register #0 */ + __IM uint32_t CID1; /*!< Offset: 0xFF4 (R/ ) ITM Component Identification Register #1 */ + __IM uint32_t CID2; /*!< Offset: 0xFF8 (R/ ) ITM Component Identification Register #2 */ + __IM uint32_t CID3; /*!< Offset: 0xFFC (R/ ) ITM Component Identification Register #3 */ +} ITM_Type; + +/* ITM Trace Privilege Register Definitions */ +#define ITM_TPR_PRIVMASK_Pos 0U /*!< ITM TPR: PRIVMASK Position */ +#define ITM_TPR_PRIVMASK_Msk (0xFUL /*<< ITM_TPR_PRIVMASK_Pos*/) /*!< ITM TPR: PRIVMASK Mask */ + +/* ITM Trace Control Register Definitions */ +#define ITM_TCR_BUSY_Pos 23U /*!< ITM TCR: BUSY Position */ +#define ITM_TCR_BUSY_Msk (1UL << ITM_TCR_BUSY_Pos) /*!< ITM TCR: BUSY Mask */ + +#define ITM_TCR_TraceBusID_Pos 16U /*!< ITM TCR: ATBID Position */ +#define ITM_TCR_TraceBusID_Msk (0x7FUL << ITM_TCR_TraceBusID_Pos) /*!< ITM TCR: ATBID Mask */ + +#define ITM_TCR_GTSFREQ_Pos 10U /*!< ITM TCR: Global timestamp frequency Position */ +#define ITM_TCR_GTSFREQ_Msk (3UL << ITM_TCR_GTSFREQ_Pos) /*!< ITM TCR: Global timestamp frequency Mask */ + +#define ITM_TCR_TSPrescale_Pos 8U /*!< ITM TCR: TSPrescale Position */ +#define ITM_TCR_TSPrescale_Msk (3UL << ITM_TCR_TSPrescale_Pos) /*!< ITM TCR: TSPrescale Mask */ + +#define ITM_TCR_SWOENA_Pos 4U /*!< ITM TCR: SWOENA Position */ +#define ITM_TCR_SWOENA_Msk (1UL << ITM_TCR_SWOENA_Pos) /*!< ITM TCR: SWOENA Mask */ + +#define ITM_TCR_DWTENA_Pos 3U /*!< ITM TCR: DWTENA Position */ +#define ITM_TCR_DWTENA_Msk (1UL << ITM_TCR_DWTENA_Pos) /*!< ITM TCR: DWTENA Mask */ + +#define ITM_TCR_SYNCENA_Pos 2U /*!< ITM TCR: SYNCENA Position */ +#define ITM_TCR_SYNCENA_Msk (1UL << ITM_TCR_SYNCENA_Pos) /*!< ITM TCR: SYNCENA Mask */ + +#define ITM_TCR_TSENA_Pos 1U /*!< ITM TCR: TSENA Position */ +#define ITM_TCR_TSENA_Msk (1UL << ITM_TCR_TSENA_Pos) /*!< ITM TCR: TSENA Mask */ + +#define ITM_TCR_ITMENA_Pos 0U /*!< ITM TCR: ITM Enable bit Position */ +#define ITM_TCR_ITMENA_Msk (1UL /*<< ITM_TCR_ITMENA_Pos*/) /*!< ITM TCR: ITM Enable bit Mask */ + +/* ITM Integration Write Register Definitions */ +#define ITM_IWR_ATVALIDM_Pos 0U /*!< ITM IWR: ATVALIDM Position */ +#define ITM_IWR_ATVALIDM_Msk (1UL /*<< ITM_IWR_ATVALIDM_Pos*/) /*!< ITM IWR: ATVALIDM Mask */ + +/* ITM Integration Read Register Definitions */ +#define ITM_IRR_ATREADYM_Pos 0U /*!< ITM IRR: ATREADYM Position */ +#define ITM_IRR_ATREADYM_Msk (1UL /*<< ITM_IRR_ATREADYM_Pos*/) /*!< ITM IRR: ATREADYM Mask */ + +/* ITM Integration Mode Control Register Definitions */ +#define ITM_IMCR_INTEGRATION_Pos 0U /*!< ITM IMCR: INTEGRATION Position */ +#define ITM_IMCR_INTEGRATION_Msk (1UL /*<< ITM_IMCR_INTEGRATION_Pos*/) /*!< ITM IMCR: INTEGRATION Mask */ + +/* ITM Lock Status Register Definitions */ +#define ITM_LSR_ByteAcc_Pos 2U /*!< ITM LSR: ByteAcc Position */ +#define ITM_LSR_ByteAcc_Msk (1UL << ITM_LSR_ByteAcc_Pos) /*!< ITM LSR: ByteAcc Mask */ + +#define ITM_LSR_Access_Pos 1U /*!< ITM LSR: Access Position */ +#define ITM_LSR_Access_Msk (1UL << ITM_LSR_Access_Pos) /*!< ITM LSR: Access Mask */ + +#define ITM_LSR_Present_Pos 0U /*!< ITM LSR: Present Position */ +#define ITM_LSR_Present_Msk (1UL /*<< ITM_LSR_Present_Pos*/) /*!< ITM LSR: Present Mask */ + +/*@}*/ /* end of group CMSIS_ITM */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_DWT Data Watchpoint and Trace (DWT) + \brief Type definitions for the Data Watchpoint and Trace (DWT) + @{ + */ + +/** + \brief Structure type to access the Data Watchpoint and Trace Register (DWT). + */ +typedef struct +{ + __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) Control Register */ + __IOM uint32_t CYCCNT; /*!< Offset: 0x004 (R/W) Cycle Count Register */ + __IOM uint32_t CPICNT; /*!< Offset: 0x008 (R/W) CPI Count Register */ + __IOM uint32_t EXCCNT; /*!< Offset: 0x00C (R/W) Exception Overhead Count Register */ + __IOM uint32_t SLEEPCNT; /*!< Offset: 0x010 (R/W) Sleep Count Register */ + __IOM uint32_t LSUCNT; /*!< Offset: 0x014 (R/W) LSU Count Register */ + __IOM uint32_t FOLDCNT; /*!< Offset: 0x018 (R/W) Folded-instruction Count Register */ + __IM uint32_t PCSR; /*!< Offset: 0x01C (R/ ) Program Counter Sample Register */ + __IOM uint32_t COMP0; /*!< Offset: 0x020 (R/W) Comparator Register 0 */ + __IOM uint32_t MASK0; /*!< Offset: 0x024 (R/W) Mask Register 0 */ + __IOM uint32_t FUNCTION0; /*!< Offset: 0x028 (R/W) Function Register 0 */ + uint32_t RESERVED0[1U]; + __IOM uint32_t COMP1; /*!< Offset: 0x030 (R/W) Comparator Register 1 */ + __IOM uint32_t MASK1; /*!< Offset: 0x034 (R/W) Mask Register 1 */ + __IOM uint32_t FUNCTION1; /*!< Offset: 0x038 (R/W) Function Register 1 */ + uint32_t RESERVED1[1U]; + __IOM uint32_t COMP2; /*!< Offset: 0x040 (R/W) Comparator Register 2 */ + __IOM uint32_t MASK2; /*!< Offset: 0x044 (R/W) Mask Register 2 */ + __IOM uint32_t FUNCTION2; /*!< Offset: 0x048 (R/W) Function Register 2 */ + uint32_t RESERVED2[1U]; + __IOM uint32_t COMP3; /*!< Offset: 0x050 (R/W) Comparator Register 3 */ + __IOM uint32_t MASK3; /*!< Offset: 0x054 (R/W) Mask Register 3 */ + __IOM uint32_t FUNCTION3; /*!< Offset: 0x058 (R/W) Function Register 3 */ +} DWT_Type; + +/* DWT Control Register Definitions */ +#define DWT_CTRL_NUMCOMP_Pos 28U /*!< DWT CTRL: NUMCOMP Position */ +#define DWT_CTRL_NUMCOMP_Msk (0xFUL << DWT_CTRL_NUMCOMP_Pos) /*!< DWT CTRL: NUMCOMP Mask */ + +#define DWT_CTRL_NOTRCPKT_Pos 27U /*!< DWT CTRL: NOTRCPKT Position */ +#define DWT_CTRL_NOTRCPKT_Msk (0x1UL << DWT_CTRL_NOTRCPKT_Pos) /*!< DWT CTRL: NOTRCPKT Mask */ + +#define DWT_CTRL_NOEXTTRIG_Pos 26U /*!< DWT CTRL: NOEXTTRIG Position */ +#define DWT_CTRL_NOEXTTRIG_Msk (0x1UL << DWT_CTRL_NOEXTTRIG_Pos) /*!< DWT CTRL: NOEXTTRIG Mask */ + +#define DWT_CTRL_NOCYCCNT_Pos 25U /*!< DWT CTRL: NOCYCCNT Position */ +#define DWT_CTRL_NOCYCCNT_Msk (0x1UL << DWT_CTRL_NOCYCCNT_Pos) /*!< DWT CTRL: NOCYCCNT Mask */ + +#define DWT_CTRL_NOPRFCNT_Pos 24U /*!< DWT CTRL: NOPRFCNT Position */ +#define DWT_CTRL_NOPRFCNT_Msk (0x1UL << DWT_CTRL_NOPRFCNT_Pos) /*!< DWT CTRL: NOPRFCNT Mask */ + +#define DWT_CTRL_CYCEVTENA_Pos 22U /*!< DWT CTRL: CYCEVTENA Position */ +#define DWT_CTRL_CYCEVTENA_Msk (0x1UL << DWT_CTRL_CYCEVTENA_Pos) /*!< DWT CTRL: CYCEVTENA Mask */ + +#define DWT_CTRL_FOLDEVTENA_Pos 21U /*!< DWT CTRL: FOLDEVTENA Position */ +#define DWT_CTRL_FOLDEVTENA_Msk (0x1UL << DWT_CTRL_FOLDEVTENA_Pos) /*!< DWT CTRL: FOLDEVTENA Mask */ + +#define DWT_CTRL_LSUEVTENA_Pos 20U /*!< DWT CTRL: LSUEVTENA Position */ +#define DWT_CTRL_LSUEVTENA_Msk (0x1UL << DWT_CTRL_LSUEVTENA_Pos) /*!< DWT CTRL: LSUEVTENA Mask */ + +#define DWT_CTRL_SLEEPEVTENA_Pos 19U /*!< DWT CTRL: SLEEPEVTENA Position */ +#define DWT_CTRL_SLEEPEVTENA_Msk (0x1UL << DWT_CTRL_SLEEPEVTENA_Pos) /*!< DWT CTRL: SLEEPEVTENA Mask */ + +#define DWT_CTRL_EXCEVTENA_Pos 18U /*!< DWT CTRL: EXCEVTENA Position */ +#define DWT_CTRL_EXCEVTENA_Msk (0x1UL << DWT_CTRL_EXCEVTENA_Pos) /*!< DWT CTRL: EXCEVTENA Mask */ + +#define DWT_CTRL_CPIEVTENA_Pos 17U /*!< DWT CTRL: CPIEVTENA Position */ +#define DWT_CTRL_CPIEVTENA_Msk (0x1UL << DWT_CTRL_CPIEVTENA_Pos) /*!< DWT CTRL: CPIEVTENA Mask */ + +#define DWT_CTRL_EXCTRCENA_Pos 16U /*!< DWT CTRL: EXCTRCENA Position */ +#define DWT_CTRL_EXCTRCENA_Msk (0x1UL << DWT_CTRL_EXCTRCENA_Pos) /*!< DWT CTRL: EXCTRCENA Mask */ + +#define DWT_CTRL_PCSAMPLENA_Pos 12U /*!< DWT CTRL: PCSAMPLENA Position */ +#define DWT_CTRL_PCSAMPLENA_Msk (0x1UL << DWT_CTRL_PCSAMPLENA_Pos) /*!< DWT CTRL: PCSAMPLENA Mask */ + +#define DWT_CTRL_SYNCTAP_Pos 10U /*!< DWT CTRL: SYNCTAP Position */ +#define DWT_CTRL_SYNCTAP_Msk (0x3UL << DWT_CTRL_SYNCTAP_Pos) /*!< DWT CTRL: SYNCTAP Mask */ + +#define DWT_CTRL_CYCTAP_Pos 9U /*!< DWT CTRL: CYCTAP Position */ +#define DWT_CTRL_CYCTAP_Msk (0x1UL << DWT_CTRL_CYCTAP_Pos) /*!< DWT CTRL: CYCTAP Mask */ + +#define DWT_CTRL_POSTINIT_Pos 5U /*!< DWT CTRL: POSTINIT Position */ +#define DWT_CTRL_POSTINIT_Msk (0xFUL << DWT_CTRL_POSTINIT_Pos) /*!< DWT CTRL: POSTINIT Mask */ + +#define DWT_CTRL_POSTPRESET_Pos 1U /*!< DWT CTRL: POSTPRESET Position */ +#define DWT_CTRL_POSTPRESET_Msk (0xFUL << DWT_CTRL_POSTPRESET_Pos) /*!< DWT CTRL: POSTPRESET Mask */ + +#define DWT_CTRL_CYCCNTENA_Pos 0U /*!< DWT CTRL: CYCCNTENA Position */ +#define DWT_CTRL_CYCCNTENA_Msk (0x1UL /*<< DWT_CTRL_CYCCNTENA_Pos*/) /*!< DWT CTRL: CYCCNTENA Mask */ + +/* DWT CPI Count Register Definitions */ +#define DWT_CPICNT_CPICNT_Pos 0U /*!< DWT CPICNT: CPICNT Position */ +#define DWT_CPICNT_CPICNT_Msk (0xFFUL /*<< DWT_CPICNT_CPICNT_Pos*/) /*!< DWT CPICNT: CPICNT Mask */ + +/* DWT Exception Overhead Count Register Definitions */ +#define DWT_EXCCNT_EXCCNT_Pos 0U /*!< DWT EXCCNT: EXCCNT Position */ +#define DWT_EXCCNT_EXCCNT_Msk (0xFFUL /*<< DWT_EXCCNT_EXCCNT_Pos*/) /*!< DWT EXCCNT: EXCCNT Mask */ + +/* DWT Sleep Count Register Definitions */ +#define DWT_SLEEPCNT_SLEEPCNT_Pos 0U /*!< DWT SLEEPCNT: SLEEPCNT Position */ +#define DWT_SLEEPCNT_SLEEPCNT_Msk (0xFFUL /*<< DWT_SLEEPCNT_SLEEPCNT_Pos*/) /*!< DWT SLEEPCNT: SLEEPCNT Mask */ + +/* DWT LSU Count Register Definitions */ +#define DWT_LSUCNT_LSUCNT_Pos 0U /*!< DWT LSUCNT: LSUCNT Position */ +#define DWT_LSUCNT_LSUCNT_Msk (0xFFUL /*<< DWT_LSUCNT_LSUCNT_Pos*/) /*!< DWT LSUCNT: LSUCNT Mask */ + +/* DWT Folded-instruction Count Register Definitions */ +#define DWT_FOLDCNT_FOLDCNT_Pos 0U /*!< DWT FOLDCNT: FOLDCNT Position */ +#define DWT_FOLDCNT_FOLDCNT_Msk (0xFFUL /*<< DWT_FOLDCNT_FOLDCNT_Pos*/) /*!< DWT FOLDCNT: FOLDCNT Mask */ + +/* DWT Comparator Mask Register Definitions */ +#define DWT_MASK_MASK_Pos 0U /*!< DWT MASK: MASK Position */ +#define DWT_MASK_MASK_Msk (0x1FUL /*<< DWT_MASK_MASK_Pos*/) /*!< DWT MASK: MASK Mask */ + +/* DWT Comparator Function Register Definitions */ +#define DWT_FUNCTION_MATCHED_Pos 24U /*!< DWT FUNCTION: MATCHED Position */ +#define DWT_FUNCTION_MATCHED_Msk (0x1UL << DWT_FUNCTION_MATCHED_Pos) /*!< DWT FUNCTION: MATCHED Mask */ + +#define DWT_FUNCTION_DATAVADDR1_Pos 16U /*!< DWT FUNCTION: DATAVADDR1 Position */ +#define DWT_FUNCTION_DATAVADDR1_Msk (0xFUL << DWT_FUNCTION_DATAVADDR1_Pos) /*!< DWT FUNCTION: DATAVADDR1 Mask */ + +#define DWT_FUNCTION_DATAVADDR0_Pos 12U /*!< DWT FUNCTION: DATAVADDR0 Position */ +#define DWT_FUNCTION_DATAVADDR0_Msk (0xFUL << DWT_FUNCTION_DATAVADDR0_Pos) /*!< DWT FUNCTION: DATAVADDR0 Mask */ + +#define DWT_FUNCTION_DATAVSIZE_Pos 10U /*!< DWT FUNCTION: DATAVSIZE Position */ +#define DWT_FUNCTION_DATAVSIZE_Msk (0x3UL << DWT_FUNCTION_DATAVSIZE_Pos) /*!< DWT FUNCTION: DATAVSIZE Mask */ + +#define DWT_FUNCTION_LNK1ENA_Pos 9U /*!< DWT FUNCTION: LNK1ENA Position */ +#define DWT_FUNCTION_LNK1ENA_Msk (0x1UL << DWT_FUNCTION_LNK1ENA_Pos) /*!< DWT FUNCTION: LNK1ENA Mask */ + +#define DWT_FUNCTION_DATAVMATCH_Pos 8U /*!< DWT FUNCTION: DATAVMATCH Position */ +#define DWT_FUNCTION_DATAVMATCH_Msk (0x1UL << DWT_FUNCTION_DATAVMATCH_Pos) /*!< DWT FUNCTION: DATAVMATCH Mask */ + +#define DWT_FUNCTION_CYCMATCH_Pos 7U /*!< DWT FUNCTION: CYCMATCH Position */ +#define DWT_FUNCTION_CYCMATCH_Msk (0x1UL << DWT_FUNCTION_CYCMATCH_Pos) /*!< DWT FUNCTION: CYCMATCH Mask */ + +#define DWT_FUNCTION_EMITRANGE_Pos 5U /*!< DWT FUNCTION: EMITRANGE Position */ +#define DWT_FUNCTION_EMITRANGE_Msk (0x1UL << DWT_FUNCTION_EMITRANGE_Pos) /*!< DWT FUNCTION: EMITRANGE Mask */ + +#define DWT_FUNCTION_FUNCTION_Pos 0U /*!< DWT FUNCTION: FUNCTION Position */ +#define DWT_FUNCTION_FUNCTION_Msk (0xFUL /*<< DWT_FUNCTION_FUNCTION_Pos*/) /*!< DWT FUNCTION: FUNCTION Mask */ + +/*@}*/ /* end of group CMSIS_DWT */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_TPI Trace Port Interface (TPI) + \brief Type definitions for the Trace Port Interface (TPI) + @{ + */ + +/** + \brief Structure type to access the Trace Port Interface Register (TPI). + */ +typedef struct +{ + __IOM uint32_t SSPSR; /*!< Offset: 0x000 (R/ ) Supported Parallel Port Size Register */ + __IOM uint32_t CSPSR; /*!< Offset: 0x004 (R/W) Current Parallel Port Size Register */ + uint32_t RESERVED0[2U]; + __IOM uint32_t ACPR; /*!< Offset: 0x010 (R/W) Asynchronous Clock Prescaler Register */ + uint32_t RESERVED1[55U]; + __IOM uint32_t SPPR; /*!< Offset: 0x0F0 (R/W) Selected Pin Protocol Register */ + uint32_t RESERVED2[131U]; + __IM uint32_t FFSR; /*!< Offset: 0x300 (R/ ) Formatter and Flush Status Register */ + __IOM uint32_t FFCR; /*!< Offset: 0x304 (R/W) Formatter and Flush Control Register */ + __IM uint32_t FSCR; /*!< Offset: 0x308 (R/ ) Formatter Synchronization Counter Register */ + uint32_t RESERVED3[759U]; + __IM uint32_t TRIGGER; /*!< Offset: 0xEE8 (R/ ) TRIGGER */ + __IM uint32_t FIFO0; /*!< Offset: 0xEEC (R/ ) Integration ETM Data */ + __IM uint32_t ITATBCTR2; /*!< Offset: 0xEF0 (R/ ) ITATBCTR2 */ + uint32_t RESERVED4[1U]; + __IM uint32_t ITATBCTR0; /*!< Offset: 0xEF8 (R/ ) ITATBCTR0 */ + __IM uint32_t FIFO1; /*!< Offset: 0xEFC (R/ ) Integration ITM Data */ + __IOM uint32_t ITCTRL; /*!< Offset: 0xF00 (R/W) Integration Mode Control */ + uint32_t RESERVED5[39U]; + __IOM uint32_t CLAIMSET; /*!< Offset: 0xFA0 (R/W) Claim tag set */ + __IOM uint32_t CLAIMCLR; /*!< Offset: 0xFA4 (R/W) Claim tag clear */ + uint32_t RESERVED7[8U]; + __IM uint32_t DEVID; /*!< Offset: 0xFC8 (R/ ) TPIU_DEVID */ + __IM uint32_t DEVTYPE; /*!< Offset: 0xFCC (R/ ) TPIU_DEVTYPE */ +} TPI_Type; + +/* TPI Asynchronous Clock Prescaler Register Definitions */ +#define TPI_ACPR_PRESCALER_Pos 0U /*!< TPI ACPR: PRESCALER Position */ +#define TPI_ACPR_PRESCALER_Msk (0x1FFFUL /*<< TPI_ACPR_PRESCALER_Pos*/) /*!< TPI ACPR: PRESCALER Mask */ + +/* TPI Selected Pin Protocol Register Definitions */ +#define TPI_SPPR_TXMODE_Pos 0U /*!< TPI SPPR: TXMODE Position */ +#define TPI_SPPR_TXMODE_Msk (0x3UL /*<< TPI_SPPR_TXMODE_Pos*/) /*!< TPI SPPR: TXMODE Mask */ + +/* TPI Formatter and Flush Status Register Definitions */ +#define TPI_FFSR_FtNonStop_Pos 3U /*!< TPI FFSR: FtNonStop Position */ +#define TPI_FFSR_FtNonStop_Msk (0x1UL << TPI_FFSR_FtNonStop_Pos) /*!< TPI FFSR: FtNonStop Mask */ + +#define TPI_FFSR_TCPresent_Pos 2U /*!< TPI FFSR: TCPresent Position */ +#define TPI_FFSR_TCPresent_Msk (0x1UL << TPI_FFSR_TCPresent_Pos) /*!< TPI FFSR: TCPresent Mask */ + +#define TPI_FFSR_FtStopped_Pos 1U /*!< TPI FFSR: FtStopped Position */ +#define TPI_FFSR_FtStopped_Msk (0x1UL << TPI_FFSR_FtStopped_Pos) /*!< TPI FFSR: FtStopped Mask */ + +#define TPI_FFSR_FlInProg_Pos 0U /*!< TPI FFSR: FlInProg Position */ +#define TPI_FFSR_FlInProg_Msk (0x1UL /*<< TPI_FFSR_FlInProg_Pos*/) /*!< TPI FFSR: FlInProg Mask */ + +/* TPI Formatter and Flush Control Register Definitions */ +#define TPI_FFCR_TrigIn_Pos 8U /*!< TPI FFCR: TrigIn Position */ +#define TPI_FFCR_TrigIn_Msk (0x1UL << TPI_FFCR_TrigIn_Pos) /*!< TPI FFCR: TrigIn Mask */ + +#define TPI_FFCR_EnFCont_Pos 1U /*!< TPI FFCR: EnFCont Position */ +#define TPI_FFCR_EnFCont_Msk (0x1UL << TPI_FFCR_EnFCont_Pos) /*!< TPI FFCR: EnFCont Mask */ + +/* TPI TRIGGER Register Definitions */ +#define TPI_TRIGGER_TRIGGER_Pos 0U /*!< TPI TRIGGER: TRIGGER Position */ +#define TPI_TRIGGER_TRIGGER_Msk (0x1UL /*<< TPI_TRIGGER_TRIGGER_Pos*/) /*!< TPI TRIGGER: TRIGGER Mask */ + +/* TPI Integration ETM Data Register Definitions (FIFO0) */ +#define TPI_FIFO0_ITM_ATVALID_Pos 29U /*!< TPI FIFO0: ITM_ATVALID Position */ +#define TPI_FIFO0_ITM_ATVALID_Msk (0x3UL << TPI_FIFO0_ITM_ATVALID_Pos) /*!< TPI FIFO0: ITM_ATVALID Mask */ + +#define TPI_FIFO0_ITM_bytecount_Pos 27U /*!< TPI FIFO0: ITM_bytecount Position */ +#define TPI_FIFO0_ITM_bytecount_Msk (0x3UL << TPI_FIFO0_ITM_bytecount_Pos) /*!< TPI FIFO0: ITM_bytecount Mask */ + +#define TPI_FIFO0_ETM_ATVALID_Pos 26U /*!< TPI FIFO0: ETM_ATVALID Position */ +#define TPI_FIFO0_ETM_ATVALID_Msk (0x3UL << TPI_FIFO0_ETM_ATVALID_Pos) /*!< TPI FIFO0: ETM_ATVALID Mask */ + +#define TPI_FIFO0_ETM_bytecount_Pos 24U /*!< TPI FIFO0: ETM_bytecount Position */ +#define TPI_FIFO0_ETM_bytecount_Msk (0x3UL << TPI_FIFO0_ETM_bytecount_Pos) /*!< TPI FIFO0: ETM_bytecount Mask */ + +#define TPI_FIFO0_ETM2_Pos 16U /*!< TPI FIFO0: ETM2 Position */ +#define TPI_FIFO0_ETM2_Msk (0xFFUL << TPI_FIFO0_ETM2_Pos) /*!< TPI FIFO0: ETM2 Mask */ + +#define TPI_FIFO0_ETM1_Pos 8U /*!< TPI FIFO0: ETM1 Position */ +#define TPI_FIFO0_ETM1_Msk (0xFFUL << TPI_FIFO0_ETM1_Pos) /*!< TPI FIFO0: ETM1 Mask */ + +#define TPI_FIFO0_ETM0_Pos 0U /*!< TPI FIFO0: ETM0 Position */ +#define TPI_FIFO0_ETM0_Msk (0xFFUL /*<< TPI_FIFO0_ETM0_Pos*/) /*!< TPI FIFO0: ETM0 Mask */ + +/* TPI ITATBCTR2 Register Definitions */ +#define TPI_ITATBCTR2_ATREADY_Pos 0U /*!< TPI ITATBCTR2: ATREADY Position */ +#define TPI_ITATBCTR2_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR2_ATREADY_Pos*/) /*!< TPI ITATBCTR2: ATREADY Mask */ + +/* TPI Integration ITM Data Register Definitions (FIFO1) */ +#define TPI_FIFO1_ITM_ATVALID_Pos 29U /*!< TPI FIFO1: ITM_ATVALID Position */ +#define TPI_FIFO1_ITM_ATVALID_Msk (0x3UL << TPI_FIFO1_ITM_ATVALID_Pos) /*!< TPI FIFO1: ITM_ATVALID Mask */ + +#define TPI_FIFO1_ITM_bytecount_Pos 27U /*!< TPI FIFO1: ITM_bytecount Position */ +#define TPI_FIFO1_ITM_bytecount_Msk (0x3UL << TPI_FIFO1_ITM_bytecount_Pos) /*!< TPI FIFO1: ITM_bytecount Mask */ + +#define TPI_FIFO1_ETM_ATVALID_Pos 26U /*!< TPI FIFO1: ETM_ATVALID Position */ +#define TPI_FIFO1_ETM_ATVALID_Msk (0x3UL << TPI_FIFO1_ETM_ATVALID_Pos) /*!< TPI FIFO1: ETM_ATVALID Mask */ + +#define TPI_FIFO1_ETM_bytecount_Pos 24U /*!< TPI FIFO1: ETM_bytecount Position */ +#define TPI_FIFO1_ETM_bytecount_Msk (0x3UL << TPI_FIFO1_ETM_bytecount_Pos) /*!< TPI FIFO1: ETM_bytecount Mask */ + +#define TPI_FIFO1_ITM2_Pos 16U /*!< TPI FIFO1: ITM2 Position */ +#define TPI_FIFO1_ITM2_Msk (0xFFUL << TPI_FIFO1_ITM2_Pos) /*!< TPI FIFO1: ITM2 Mask */ + +#define TPI_FIFO1_ITM1_Pos 8U /*!< TPI FIFO1: ITM1 Position */ +#define TPI_FIFO1_ITM1_Msk (0xFFUL << TPI_FIFO1_ITM1_Pos) /*!< TPI FIFO1: ITM1 Mask */ + +#define TPI_FIFO1_ITM0_Pos 0U /*!< TPI FIFO1: ITM0 Position */ +#define TPI_FIFO1_ITM0_Msk (0xFFUL /*<< TPI_FIFO1_ITM0_Pos*/) /*!< TPI FIFO1: ITM0 Mask */ + +/* TPI ITATBCTR0 Register Definitions */ +#define TPI_ITATBCTR0_ATREADY_Pos 0U /*!< TPI ITATBCTR0: ATREADY Position */ +#define TPI_ITATBCTR0_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR0_ATREADY_Pos*/) /*!< TPI ITATBCTR0: ATREADY Mask */ + +/* TPI Integration Mode Control Register Definitions */ +#define TPI_ITCTRL_Mode_Pos 0U /*!< TPI ITCTRL: Mode Position */ +#define TPI_ITCTRL_Mode_Msk (0x1UL /*<< TPI_ITCTRL_Mode_Pos*/) /*!< TPI ITCTRL: Mode Mask */ + +/* TPI DEVID Register Definitions */ +#define TPI_DEVID_NRZVALID_Pos 11U /*!< TPI DEVID: NRZVALID Position */ +#define TPI_DEVID_NRZVALID_Msk (0x1UL << TPI_DEVID_NRZVALID_Pos) /*!< TPI DEVID: NRZVALID Mask */ + +#define TPI_DEVID_MANCVALID_Pos 10U /*!< TPI DEVID: MANCVALID Position */ +#define TPI_DEVID_MANCVALID_Msk (0x1UL << TPI_DEVID_MANCVALID_Pos) /*!< TPI DEVID: MANCVALID Mask */ + +#define TPI_DEVID_PTINVALID_Pos 9U /*!< TPI DEVID: PTINVALID Position */ +#define TPI_DEVID_PTINVALID_Msk (0x1UL << TPI_DEVID_PTINVALID_Pos) /*!< TPI DEVID: PTINVALID Mask */ + +#define TPI_DEVID_MinBufSz_Pos 6U /*!< TPI DEVID: MinBufSz Position */ +#define TPI_DEVID_MinBufSz_Msk (0x7UL << TPI_DEVID_MinBufSz_Pos) /*!< TPI DEVID: MinBufSz Mask */ + +#define TPI_DEVID_AsynClkIn_Pos 5U /*!< TPI DEVID: AsynClkIn Position */ +#define TPI_DEVID_AsynClkIn_Msk (0x1UL << TPI_DEVID_AsynClkIn_Pos) /*!< TPI DEVID: AsynClkIn Mask */ + +#define TPI_DEVID_NrTraceInput_Pos 0U /*!< TPI DEVID: NrTraceInput Position */ +#define TPI_DEVID_NrTraceInput_Msk (0x1FUL /*<< TPI_DEVID_NrTraceInput_Pos*/) /*!< TPI DEVID: NrTraceInput Mask */ + +/* TPI DEVTYPE Register Definitions */ +#define TPI_DEVTYPE_MajorType_Pos 4U /*!< TPI DEVTYPE: MajorType Position */ +#define TPI_DEVTYPE_MajorType_Msk (0xFUL << TPI_DEVTYPE_MajorType_Pos) /*!< TPI DEVTYPE: MajorType Mask */ + +#define TPI_DEVTYPE_SubType_Pos 0U /*!< TPI DEVTYPE: SubType Position */ +#define TPI_DEVTYPE_SubType_Msk (0xFUL /*<< TPI_DEVTYPE_SubType_Pos*/) /*!< TPI DEVTYPE: SubType Mask */ + +/*@}*/ /* end of group CMSIS_TPI */ + + +#if (__MPU_PRESENT == 1U) +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_MPU Memory Protection Unit (MPU) + \brief Type definitions for the Memory Protection Unit (MPU) + @{ + */ + +/** + \brief Structure type to access the Memory Protection Unit (MPU). + */ +typedef struct +{ + __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */ + __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */ + __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region RNRber Register */ + __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */ + __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */ + __IOM uint32_t RBAR_A1; /*!< Offset: 0x014 (R/W) MPU Alias 1 Region Base Address Register */ + __IOM uint32_t RASR_A1; /*!< Offset: 0x018 (R/W) MPU Alias 1 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A2; /*!< Offset: 0x01C (R/W) MPU Alias 2 Region Base Address Register */ + __IOM uint32_t RASR_A2; /*!< Offset: 0x020 (R/W) MPU Alias 2 Region Attribute and Size Register */ + __IOM uint32_t RBAR_A3; /*!< Offset: 0x024 (R/W) MPU Alias 3 Region Base Address Register */ + __IOM uint32_t RASR_A3; /*!< Offset: 0x028 (R/W) MPU Alias 3 Region Attribute and Size Register */ +} MPU_Type; + +/* MPU Type Register Definitions */ +#define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */ +#define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */ + +#define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */ +#define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */ + +#define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */ +#define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */ + +/* MPU Control Register Definitions */ +#define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */ +#define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */ + +#define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */ +#define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */ + +#define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */ +#define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */ + +/* MPU Region Number Register Definitions */ +#define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */ +#define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */ + +/* MPU Region Base Address Register Definitions */ +#define MPU_RBAR_ADDR_Pos 5U /*!< MPU RBAR: ADDR Position */ +#define MPU_RBAR_ADDR_Msk (0x7FFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */ + +#define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */ +#define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */ + +#define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */ +#define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */ + +/* MPU Region Attribute and Size Register Definitions */ +#define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */ +#define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */ + +#define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */ +#define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */ + +#define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */ +#define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */ + +#define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */ +#define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */ + +#define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */ +#define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */ + +#define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */ +#define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */ + +#define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */ +#define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */ + +#define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */ +#define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */ + +#define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */ +#define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */ + +#define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */ +#define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */ + +/*@} end of group CMSIS_MPU */ +#endif + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug) + \brief Type definitions for the Core Debug Registers + @{ + */ + +/** + \brief Structure type to access the Core Debug Register (CoreDebug). + */ +typedef struct +{ + __IOM uint32_t DHCSR; /*!< Offset: 0x000 (R/W) Debug Halting Control and Status Register */ + __OM uint32_t DCRSR; /*!< Offset: 0x004 ( /W) Debug Core Register Selector Register */ + __IOM uint32_t DCRDR; /*!< Offset: 0x008 (R/W) Debug Core Register Data Register */ + __IOM uint32_t DEMCR; /*!< Offset: 0x00C (R/W) Debug Exception and Monitor Control Register */ +} CoreDebug_Type; + +/* Debug Halting Control and Status Register Definitions */ +#define CoreDebug_DHCSR_DBGKEY_Pos 16U /*!< CoreDebug DHCSR: DBGKEY Position */ +#define CoreDebug_DHCSR_DBGKEY_Msk (0xFFFFUL << CoreDebug_DHCSR_DBGKEY_Pos) /*!< CoreDebug DHCSR: DBGKEY Mask */ + +#define CoreDebug_DHCSR_S_RESET_ST_Pos 25U /*!< CoreDebug DHCSR: S_RESET_ST Position */ +#define CoreDebug_DHCSR_S_RESET_ST_Msk (1UL << CoreDebug_DHCSR_S_RESET_ST_Pos) /*!< CoreDebug DHCSR: S_RESET_ST Mask */ + +#define CoreDebug_DHCSR_S_RETIRE_ST_Pos 24U /*!< CoreDebug DHCSR: S_RETIRE_ST Position */ +#define CoreDebug_DHCSR_S_RETIRE_ST_Msk (1UL << CoreDebug_DHCSR_S_RETIRE_ST_Pos) /*!< CoreDebug DHCSR: S_RETIRE_ST Mask */ + +#define CoreDebug_DHCSR_S_LOCKUP_Pos 19U /*!< CoreDebug DHCSR: S_LOCKUP Position */ +#define CoreDebug_DHCSR_S_LOCKUP_Msk (1UL << CoreDebug_DHCSR_S_LOCKUP_Pos) /*!< CoreDebug DHCSR: S_LOCKUP Mask */ + +#define CoreDebug_DHCSR_S_SLEEP_Pos 18U /*!< CoreDebug DHCSR: S_SLEEP Position */ +#define CoreDebug_DHCSR_S_SLEEP_Msk (1UL << CoreDebug_DHCSR_S_SLEEP_Pos) /*!< CoreDebug DHCSR: S_SLEEP Mask */ + +#define CoreDebug_DHCSR_S_HALT_Pos 17U /*!< CoreDebug DHCSR: S_HALT Position */ +#define CoreDebug_DHCSR_S_HALT_Msk (1UL << CoreDebug_DHCSR_S_HALT_Pos) /*!< CoreDebug DHCSR: S_HALT Mask */ + +#define CoreDebug_DHCSR_S_REGRDY_Pos 16U /*!< CoreDebug DHCSR: S_REGRDY Position */ +#define CoreDebug_DHCSR_S_REGRDY_Msk (1UL << CoreDebug_DHCSR_S_REGRDY_Pos) /*!< CoreDebug DHCSR: S_REGRDY Mask */ + +#define CoreDebug_DHCSR_C_SNAPSTALL_Pos 5U /*!< CoreDebug DHCSR: C_SNAPSTALL Position */ +#define CoreDebug_DHCSR_C_SNAPSTALL_Msk (1UL << CoreDebug_DHCSR_C_SNAPSTALL_Pos) /*!< CoreDebug DHCSR: C_SNAPSTALL Mask */ + +#define CoreDebug_DHCSR_C_MASKINTS_Pos 3U /*!< CoreDebug DHCSR: C_MASKINTS Position */ +#define CoreDebug_DHCSR_C_MASKINTS_Msk (1UL << CoreDebug_DHCSR_C_MASKINTS_Pos) /*!< CoreDebug DHCSR: C_MASKINTS Mask */ + +#define CoreDebug_DHCSR_C_STEP_Pos 2U /*!< CoreDebug DHCSR: C_STEP Position */ +#define CoreDebug_DHCSR_C_STEP_Msk (1UL << CoreDebug_DHCSR_C_STEP_Pos) /*!< CoreDebug DHCSR: C_STEP Mask */ + +#define CoreDebug_DHCSR_C_HALT_Pos 1U /*!< CoreDebug DHCSR: C_HALT Position */ +#define CoreDebug_DHCSR_C_HALT_Msk (1UL << CoreDebug_DHCSR_C_HALT_Pos) /*!< CoreDebug DHCSR: C_HALT Mask */ + +#define CoreDebug_DHCSR_C_DEBUGEN_Pos 0U /*!< CoreDebug DHCSR: C_DEBUGEN Position */ +#define CoreDebug_DHCSR_C_DEBUGEN_Msk (1UL /*<< CoreDebug_DHCSR_C_DEBUGEN_Pos*/) /*!< CoreDebug DHCSR: C_DEBUGEN Mask */ + +/* Debug Core Register Selector Register Definitions */ +#define CoreDebug_DCRSR_REGWnR_Pos 16U /*!< CoreDebug DCRSR: REGWnR Position */ +#define CoreDebug_DCRSR_REGWnR_Msk (1UL << CoreDebug_DCRSR_REGWnR_Pos) /*!< CoreDebug DCRSR: REGWnR Mask */ + +#define CoreDebug_DCRSR_REGSEL_Pos 0U /*!< CoreDebug DCRSR: REGSEL Position */ +#define CoreDebug_DCRSR_REGSEL_Msk (0x1FUL /*<< CoreDebug_DCRSR_REGSEL_Pos*/) /*!< CoreDebug DCRSR: REGSEL Mask */ + +/* Debug Exception and Monitor Control Register Definitions */ +#define CoreDebug_DEMCR_TRCENA_Pos 24U /*!< CoreDebug DEMCR: TRCENA Position */ +#define CoreDebug_DEMCR_TRCENA_Msk (1UL << CoreDebug_DEMCR_TRCENA_Pos) /*!< CoreDebug DEMCR: TRCENA Mask */ + +#define CoreDebug_DEMCR_MON_REQ_Pos 19U /*!< CoreDebug DEMCR: MON_REQ Position */ +#define CoreDebug_DEMCR_MON_REQ_Msk (1UL << CoreDebug_DEMCR_MON_REQ_Pos) /*!< CoreDebug DEMCR: MON_REQ Mask */ + +#define CoreDebug_DEMCR_MON_STEP_Pos 18U /*!< CoreDebug DEMCR: MON_STEP Position */ +#define CoreDebug_DEMCR_MON_STEP_Msk (1UL << CoreDebug_DEMCR_MON_STEP_Pos) /*!< CoreDebug DEMCR: MON_STEP Mask */ + +#define CoreDebug_DEMCR_MON_PEND_Pos 17U /*!< CoreDebug DEMCR: MON_PEND Position */ +#define CoreDebug_DEMCR_MON_PEND_Msk (1UL << CoreDebug_DEMCR_MON_PEND_Pos) /*!< CoreDebug DEMCR: MON_PEND Mask */ + +#define CoreDebug_DEMCR_MON_EN_Pos 16U /*!< CoreDebug DEMCR: MON_EN Position */ +#define CoreDebug_DEMCR_MON_EN_Msk (1UL << CoreDebug_DEMCR_MON_EN_Pos) /*!< CoreDebug DEMCR: MON_EN Mask */ + +#define CoreDebug_DEMCR_VC_HARDERR_Pos 10U /*!< CoreDebug DEMCR: VC_HARDERR Position */ +#define CoreDebug_DEMCR_VC_HARDERR_Msk (1UL << CoreDebug_DEMCR_VC_HARDERR_Pos) /*!< CoreDebug DEMCR: VC_HARDERR Mask */ + +#define CoreDebug_DEMCR_VC_INTERR_Pos 9U /*!< CoreDebug DEMCR: VC_INTERR Position */ +#define CoreDebug_DEMCR_VC_INTERR_Msk (1UL << CoreDebug_DEMCR_VC_INTERR_Pos) /*!< CoreDebug DEMCR: VC_INTERR Mask */ + +#define CoreDebug_DEMCR_VC_BUSERR_Pos 8U /*!< CoreDebug DEMCR: VC_BUSERR Position */ +#define CoreDebug_DEMCR_VC_BUSERR_Msk (1UL << CoreDebug_DEMCR_VC_BUSERR_Pos) /*!< CoreDebug DEMCR: VC_BUSERR Mask */ + +#define CoreDebug_DEMCR_VC_STATERR_Pos 7U /*!< CoreDebug DEMCR: VC_STATERR Position */ +#define CoreDebug_DEMCR_VC_STATERR_Msk (1UL << CoreDebug_DEMCR_VC_STATERR_Pos) /*!< CoreDebug DEMCR: VC_STATERR Mask */ + +#define CoreDebug_DEMCR_VC_CHKERR_Pos 6U /*!< CoreDebug DEMCR: VC_CHKERR Position */ +#define CoreDebug_DEMCR_VC_CHKERR_Msk (1UL << CoreDebug_DEMCR_VC_CHKERR_Pos) /*!< CoreDebug DEMCR: VC_CHKERR Mask */ + +#define CoreDebug_DEMCR_VC_NOCPERR_Pos 5U /*!< CoreDebug DEMCR: VC_NOCPERR Position */ +#define CoreDebug_DEMCR_VC_NOCPERR_Msk (1UL << CoreDebug_DEMCR_VC_NOCPERR_Pos) /*!< CoreDebug DEMCR: VC_NOCPERR Mask */ + +#define CoreDebug_DEMCR_VC_MMERR_Pos 4U /*!< CoreDebug DEMCR: VC_MMERR Position */ +#define CoreDebug_DEMCR_VC_MMERR_Msk (1UL << CoreDebug_DEMCR_VC_MMERR_Pos) /*!< CoreDebug DEMCR: VC_MMERR Mask */ + +#define CoreDebug_DEMCR_VC_CORERESET_Pos 0U /*!< CoreDebug DEMCR: VC_CORERESET Position */ +#define CoreDebug_DEMCR_VC_CORERESET_Msk (1UL /*<< CoreDebug_DEMCR_VC_CORERESET_Pos*/) /*!< CoreDebug DEMCR: VC_CORERESET Mask */ + +/*@} end of group CMSIS_CoreDebug */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_bitfield Core register bit field macros + \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk). + @{ + */ + +/** + \brief Mask and shift a bit field value for use in a register bit range. + \param[in] field Name of the register bit field. + \param[in] value Value of the bit field. + \return Masked and shifted value. +*/ +#define _VAL2FLD(field, value) ((value << field ## _Pos) & field ## _Msk) + +/** + \brief Mask and shift a register value to extract a bit filed value. + \param[in] field Name of the register bit field. + \param[in] value Value of register. + \return Masked and shifted bit field value. +*/ +#define _FLD2VAL(field, value) ((value & field ## _Msk) >> field ## _Pos) + +/*@} end of group CMSIS_core_bitfield */ + + +/** + \ingroup CMSIS_core_register + \defgroup CMSIS_core_base Core Definitions + \brief Definitions for base addresses, unions, and structures. + @{ + */ + +/* Memory mapping of Cortex-M3 Hardware */ +#define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */ +#define ITM_BASE (0xE0000000UL) /*!< ITM Base Address */ +#define DWT_BASE (0xE0001000UL) /*!< DWT Base Address */ +#define TPI_BASE (0xE0040000UL) /*!< TPI Base Address */ +#define CoreDebug_BASE (0xE000EDF0UL) /*!< Core Debug Base Address */ +#define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */ +#define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */ +#define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */ + +#define SCnSCB ((SCnSCB_Type *) SCS_BASE ) /*!< System control Register not in SCB */ +#define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */ +#define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */ +#define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */ +#define ITM ((ITM_Type *) ITM_BASE ) /*!< ITM configuration struct */ +#define DWT ((DWT_Type *) DWT_BASE ) /*!< DWT configuration struct */ +#define TPI ((TPI_Type *) TPI_BASE ) /*!< TPI configuration struct */ +#define CoreDebug ((CoreDebug_Type *) CoreDebug_BASE) /*!< Core Debug configuration struct */ + +#if (__MPU_PRESENT == 1U) + #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */ + #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */ +#endif + +/*@} */ + + + +/******************************************************************************* + * Hardware Abstraction Layer + Core Function Interface contains: + - Core NVIC Functions + - Core SysTick Functions + - Core Debug Functions + - Core Register Access Functions + ******************************************************************************/ +/** + \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference +*/ + + + +/* ########################## NVIC functions #################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_NVICFunctions NVIC Functions + \brief Functions that manage interrupts and exceptions via the NVIC. + @{ + */ + +/** + \brief Set Priority Grouping + \details Sets the priority grouping field using the required unlock sequence. + The parameter PriorityGroup is assigned to the field SCB->AIRCR [10:8] PRIGROUP field. + Only values from 0..7 are used. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Priority grouping field. + */ +__STATIC_INLINE void NVIC_SetPriorityGrouping(uint32_t PriorityGroup) +{ + uint32_t reg_value; + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + + reg_value = SCB->AIRCR; /* read old register configuration */ + reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ + reg_value = (reg_value | + ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (PriorityGroupTmp << 8U) ); /* Insert write key and priorty group */ + SCB->AIRCR = reg_value; +} + + +/** + \brief Get Priority Grouping + \details Reads the priority grouping field from the NVIC Interrupt Controller. + \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). + */ +__STATIC_INLINE uint32_t NVIC_GetPriorityGrouping(void) +{ + return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); +} + + +/** + \brief Enable External Interrupt + \details Enables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) +{ + NVIC->ISER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Disable External Interrupt + \details Disables a device-specific interrupt in the NVIC interrupt controller. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn) +{ + NVIC->ICER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Pending Interrupt + \details Reads the pending register in the NVIC and returns the pending bit for the specified interrupt. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not pending. + \return 1 Interrupt status is pending. + */ +__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Pending Interrupt + \details Sets the pending bit of an external interrupt. + \param [in] IRQn Interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Clear Pending Interrupt + \details Clears the pending bit of an external interrupt. + \param [in] IRQn External interrupt number. Value cannot be negative. + */ +__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + NVIC->ICPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL)); +} + + +/** + \brief Get Active Interrupt + \details Reads the active register in NVIC and returns the active bit. + \param [in] IRQn Interrupt number. + \return 0 Interrupt status is not active. + \return 1 Interrupt status is active. + */ +__STATIC_INLINE uint32_t NVIC_GetActive(IRQn_Type IRQn) +{ + return((uint32_t)(((NVIC->IABR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL)); +} + + +/** + \brief Set Interrupt Priority + \details Sets the priority of an interrupt. + \note The priority cannot be set for every core interrupt. + \param [in] IRQn Interrupt number. + \param [in] priority Priority to set. + */ +__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) +{ + if ((int32_t)(IRQn) < 0) + { + SCB->SHP[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } + else + { + NVIC->IP[((uint32_t)(int32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + } +} + + +/** + \brief Get Interrupt Priority + \details Reads the priority of an interrupt. + The interrupt number can be positive to specify an external (device specific) interrupt, + or negative to specify an internal (core) interrupt. + \param [in] IRQn Interrupt number. + \return Interrupt Priority. + Value is aligned automatically to the implemented priority bits of the microcontroller. + */ +__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn) +{ + + if ((int32_t)(IRQn) < 0) + { + return(((uint32_t)SCB->SHP[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] >> (8U - __NVIC_PRIO_BITS))); + } + else + { + return(((uint32_t)NVIC->IP[((uint32_t)(int32_t)IRQn)] >> (8U - __NVIC_PRIO_BITS))); + } +} + + +/** + \brief Encode Priority + \details Encodes the priority for an interrupt with the given priority group, + preemptive priority value, and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. + \param [in] PriorityGroup Used priority group. + \param [in] PreemptPriority Preemptive priority value (starting from 0). + \param [in] SubPriority Subpriority value (starting from 0). + \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). + */ +__STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + return ( + ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | + ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) + ); +} + + +/** + \brief Decode Priority + \details Decodes an interrupt priority value with a given priority group to + preemptive priority value and subpriority value. + In case of a conflict between priority grouping and available + priority bits (__NVIC_PRIO_BITS) the smallest possible priority group is set. + \param [in] Priority Priority value, which can be retrieved with the function \ref NVIC_GetPriority(). + \param [in] PriorityGroup Used priority group. + \param [out] pPreemptPriority Preemptive priority value (starting from 0). + \param [out] pSubPriority Subpriority value (starting from 0). + */ +__STATIC_INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* const pPreemptPriority, uint32_t* const pSubPriority) +{ + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + uint32_t PreemptPriorityBits; + uint32_t SubPriorityBits; + + PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); + SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); + + *pPreemptPriority = (Priority >> SubPriorityBits) & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL); + *pSubPriority = (Priority ) & (uint32_t)((1UL << (SubPriorityBits )) - 1UL); +} + + +/** + \brief System Reset + \details Initiates a system reset request to reset the MCU. + */ +__STATIC_INLINE void NVIC_SystemReset(void) +{ + __DSB(); /* Ensure all outstanding memory accesses included + buffered write are completed before reset */ + SCB->AIRCR = (uint32_t)((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) | + SCB_AIRCR_SYSRESETREQ_Msk ); /* Keep priority group unchanged */ + __DSB(); /* Ensure completion of memory access */ + + for(;;) /* wait until reset */ + { + __NOP(); + } +} + +/*@} end of CMSIS_Core_NVICFunctions */ + + + +/* ################################## SysTick function ############################################ */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_Core_SysTickFunctions SysTick Functions + \brief Functions that configure the System. + @{ + */ + +#if (__Vendor_SysTickConfig == 0U) + +/** + \brief System Tick Configuration + \details Initializes the System Timer and its interrupt, and starts the System Tick Timer. + Counter is in free running mode to generate periodic interrupts. + \param [in] ticks Number of ticks between two interrupts. + \return 0 Function succeeded. + \return 1 Function failed. + \note When the variable __Vendor_SysTickConfig is set to 1, then the + 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) + { + return (1UL); /* Reload value impossible */ + } + + SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ + NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ + SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ + SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | + SysTick_CTRL_TICKINT_Msk | + SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + return (0UL); /* Function successful */ +} + +#endif + +/*@} end of CMSIS_Core_SysTickFunctions */ + + + +/* ##################################### Debug In/Output function ########################################### */ +/** + \ingroup CMSIS_Core_FunctionInterface + \defgroup CMSIS_core_DebugFunctions ITM Functions + \brief Functions that access the ITM debug interface. + @{ + */ + +extern volatile int32_t ITM_RxBuffer; /*!< External variable to receive characters. */ +#define ITM_RXBUFFER_EMPTY 0x5AA55AA5U /*!< Value identifying \ref ITM_RxBuffer is ready for next character. */ + + +/** + \brief ITM Send Character + \details Transmits a character via the ITM channel 0, and + \li Just returns when no debugger is connected that has booked the output. + \li Is blocking when a debugger is connected, but the previous character sent has not been transmitted. + \param [in] ch Character to transmit. + \returns Character to transmit. + */ +__STATIC_INLINE uint32_t ITM_SendChar (uint32_t ch) +{ + if (((ITM->TCR & ITM_TCR_ITMENA_Msk) != 0UL) && /* ITM enabled */ + ((ITM->TER & 1UL ) != 0UL) ) /* ITM Port #0 enabled */ + { + while (ITM->PORT[0U].u32 == 0UL) + { + __NOP(); + } + ITM->PORT[0U].u8 = (uint8_t)ch; + } + return (ch); +} + + +/** + \brief ITM Receive Character + \details Inputs a character via the external variable \ref ITM_RxBuffer. + \return Received character. + \return -1 No character pending. + */ +__STATIC_INLINE int32_t ITM_ReceiveChar (void) +{ + int32_t ch = -1; /* no character available */ + + if (ITM_RxBuffer != ITM_RXBUFFER_EMPTY) + { + ch = ITM_RxBuffer; + ITM_RxBuffer = ITM_RXBUFFER_EMPTY; /* ready for next character */ + } + + return (ch); +} + + +/** + \brief ITM Check Character + \details Checks whether a character is pending for reading in the variable \ref ITM_RxBuffer. + \return 0 No character available. + \return 1 Character available. + */ +__STATIC_INLINE int32_t ITM_CheckChar (void) +{ + + if (ITM_RxBuffer == ITM_RXBUFFER_EMPTY) + { + return (0); /* no character available */ + } + else + { + return (1); /* character available */ + } +} + +/*@} end of CMSIS_core_DebugFunctions */ + + + + +#ifdef __cplusplus +} +#endif + +#endif /* __CORE_SC300_H_DEPENDANT */ + +#endif /* __CMSIS_GENERIC */ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h new file mode 100644 index 0000000..d9e413f --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h @@ -0,0 +1,3149 @@ +/** + ****************************************************************************** + * @file stm32_hal_legacy.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief This file contains aliases definition for the STM32Cube HAL constants + * macros and functions maintained for legacy purpose. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32_HAL_LEGACY +#define __STM32_HAL_LEGACY + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +/* Exported types ------------------------------------------------------------*/ +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup HAL_AES_Aliased_Defines HAL CRYP Aliased Defines maintained for legacy purpose + * @{ + */ +#define AES_FLAG_RDERR CRYP_FLAG_RDERR +#define AES_FLAG_WRERR CRYP_FLAG_WRERR +#define AES_CLEARFLAG_CCF CRYP_CLEARFLAG_CCF +#define AES_CLEARFLAG_RDERR CRYP_CLEARFLAG_RDERR +#define AES_CLEARFLAG_WRERR CRYP_CLEARFLAG_WRERR + +/** + * @} + */ + +/** @defgroup HAL_ADC_Aliased_Defines HAL ADC Aliased Defines maintained for legacy purpose + * @{ + */ +#define ADC_RESOLUTION12b ADC_RESOLUTION_12B +#define ADC_RESOLUTION10b ADC_RESOLUTION_10B +#define ADC_RESOLUTION8b ADC_RESOLUTION_8B +#define ADC_RESOLUTION6b ADC_RESOLUTION_6B +#define OVR_DATA_OVERWRITTEN ADC_OVR_DATA_OVERWRITTEN +#define OVR_DATA_PRESERVED ADC_OVR_DATA_PRESERVED +#define EOC_SINGLE_CONV ADC_EOC_SINGLE_CONV +#define EOC_SEQ_CONV ADC_EOC_SEQ_CONV +#define EOC_SINGLE_SEQ_CONV ADC_EOC_SINGLE_SEQ_CONV +#define REGULAR_GROUP ADC_REGULAR_GROUP +#define INJECTED_GROUP ADC_INJECTED_GROUP +#define REGULAR_INJECTED_GROUP ADC_REGULAR_INJECTED_GROUP +#define AWD_EVENT ADC_AWD_EVENT +#define AWD1_EVENT ADC_AWD1_EVENT +#define AWD2_EVENT ADC_AWD2_EVENT +#define AWD3_EVENT ADC_AWD3_EVENT +#define OVR_EVENT ADC_OVR_EVENT +#define JQOVF_EVENT ADC_JQOVF_EVENT +#define ALL_CHANNELS ADC_ALL_CHANNELS +#define REGULAR_CHANNELS ADC_REGULAR_CHANNELS +#define INJECTED_CHANNELS ADC_INJECTED_CHANNELS +#define SYSCFG_FLAG_SENSOR_ADC ADC_FLAG_SENSOR +#define SYSCFG_FLAG_VREF_ADC ADC_FLAG_VREFINT +#define ADC_CLOCKPRESCALER_PCLK_DIV1 ADC_CLOCK_SYNC_PCLK_DIV1 +#define ADC_CLOCKPRESCALER_PCLK_DIV2 ADC_CLOCK_SYNC_PCLK_DIV2 +#define ADC_CLOCKPRESCALER_PCLK_DIV4 ADC_CLOCK_SYNC_PCLK_DIV4 +#define ADC_CLOCKPRESCALER_PCLK_DIV6 ADC_CLOCK_SYNC_PCLK_DIV6 +#define ADC_CLOCKPRESCALER_PCLK_DIV8 ADC_CLOCK_SYNC_PCLK_DIV8 +#define ADC_EXTERNALTRIG0_T6_TRGO ADC_EXTERNALTRIGCONV_T6_TRGO +#define ADC_EXTERNALTRIG1_T21_CC2 ADC_EXTERNALTRIGCONV_T21_CC2 +#define ADC_EXTERNALTRIG2_T2_TRGO ADC_EXTERNALTRIGCONV_T2_TRGO +#define ADC_EXTERNALTRIG3_T2_CC4 ADC_EXTERNALTRIGCONV_T2_CC4 +#define ADC_EXTERNALTRIG4_T22_TRGO ADC_EXTERNALTRIGCONV_T22_TRGO +#define ADC_EXTERNALTRIG7_EXT_IT11 ADC_EXTERNALTRIGCONV_EXT_IT11 +#define ADC_CLOCK_ASYNC ADC_CLOCK_ASYNC_DIV1 +#define ADC_EXTERNALTRIG_EDGE_NONE ADC_EXTERNALTRIGCONVEDGE_NONE +#define ADC_EXTERNALTRIG_EDGE_RISING ADC_EXTERNALTRIGCONVEDGE_RISING +#define ADC_EXTERNALTRIG_EDGE_FALLING ADC_EXTERNALTRIGCONVEDGE_FALLING +#define ADC_EXTERNALTRIG_EDGE_RISINGFALLING ADC_EXTERNALTRIGCONVEDGE_RISINGFALLING +#define ADC_SAMPLETIME_2CYCLE_5 ADC_SAMPLETIME_2CYCLES_5 + +#define HAL_ADC_STATE_BUSY_REG HAL_ADC_STATE_REG_BUSY +#define HAL_ADC_STATE_BUSY_INJ HAL_ADC_STATE_INJ_BUSY +#define HAL_ADC_STATE_EOC_REG HAL_ADC_STATE_REG_EOC +#define HAL_ADC_STATE_EOC_INJ HAL_ADC_STATE_INJ_EOC +#define HAL_ADC_STATE_ERROR HAL_ADC_STATE_ERROR_INTERNAL +#define HAL_ADC_STATE_BUSY HAL_ADC_STATE_BUSY_INTERNAL +#define HAL_ADC_STATE_AWD HAL_ADC_STATE_AWD1 +/** + * @} + */ + +/** @defgroup HAL_CEC_Aliased_Defines HAL CEC Aliased Defines maintained for legacy purpose + * @{ + */ + +#define __HAL_CEC_GET_IT __HAL_CEC_GET_FLAG + +/** + * @} + */ + +/** @defgroup HAL_COMP_Aliased_Defines HAL COMP Aliased Defines maintained for legacy purpose + * @{ + */ +#define COMP_WINDOWMODE_DISABLED COMP_WINDOWMODE_DISABLE +#define COMP_WINDOWMODE_ENABLED COMP_WINDOWMODE_ENABLE +#define COMP_EXTI_LINE_COMP1_EVENT COMP_EXTI_LINE_COMP1 +#define COMP_EXTI_LINE_COMP2_EVENT COMP_EXTI_LINE_COMP2 +#define COMP_EXTI_LINE_COMP3_EVENT COMP_EXTI_LINE_COMP3 +#define COMP_EXTI_LINE_COMP4_EVENT COMP_EXTI_LINE_COMP4 +#define COMP_EXTI_LINE_COMP5_EVENT COMP_EXTI_LINE_COMP5 +#define COMP_EXTI_LINE_COMP6_EVENT COMP_EXTI_LINE_COMP6 +#define COMP_EXTI_LINE_COMP7_EVENT COMP_EXTI_LINE_COMP7 +#define COMP_LPTIMCONNECTION_ENABLED COMP_LPTIMCONNECTION_IN1_ENABLED /*!< COMPX output is connected to LPTIM input 1 */ +#define COMP_OUTPUT_COMP6TIM2OCREFCLR COMP_OUTPUT_COMP6_TIM2OCREFCLR +#if defined(STM32F373xC) || defined(STM32F378xx) +#define COMP_OUTPUT_TIM3IC1 COMP_OUTPUT_COMP1_TIM3IC1 +#define COMP_OUTPUT_TIM3OCREFCLR COMP_OUTPUT_COMP1_TIM3OCREFCLR +#endif /* STM32F373xC || STM32F378xx */ + +#if defined(STM32L0) || defined(STM32L4) +#define COMP_WINDOWMODE_ENABLE COMP_WINDOWMODE_COMP1_INPUT_PLUS_COMMON + +#define COMP_NONINVERTINGINPUT_IO1 COMP_INPUT_PLUS_IO1 +#define COMP_NONINVERTINGINPUT_IO2 COMP_INPUT_PLUS_IO2 +#define COMP_NONINVERTINGINPUT_IO3 COMP_INPUT_PLUS_IO3 +#define COMP_NONINVERTINGINPUT_IO4 COMP_INPUT_PLUS_IO4 +#define COMP_NONINVERTINGINPUT_IO5 COMP_INPUT_PLUS_IO5 +#define COMP_NONINVERTINGINPUT_IO6 COMP_INPUT_PLUS_IO6 + +#define COMP_INVERTINGINPUT_1_4VREFINT COMP_INPUT_MINUS_1_4VREFINT +#define COMP_INVERTINGINPUT_1_2VREFINT COMP_INPUT_MINUS_1_2VREFINT +#define COMP_INVERTINGINPUT_3_4VREFINT COMP_INPUT_MINUS_3_4VREFINT +#define COMP_INVERTINGINPUT_VREFINT COMP_INPUT_MINUS_VREFINT +#define COMP_INVERTINGINPUT_DAC1_CH1 COMP_INPUT_MINUS_DAC1_CH1 +#define COMP_INVERTINGINPUT_DAC1_CH2 COMP_INPUT_MINUS_DAC1_CH2 +#define COMP_INVERTINGINPUT_DAC1 COMP_INPUT_MINUS_DAC1_CH1 +#define COMP_INVERTINGINPUT_DAC2 COMP_INPUT_MINUS_DAC1_CH2 +#define COMP_INVERTINGINPUT_IO1 COMP_INPUT_MINUS_IO1 +#if defined(STM32L0) +/* Issue fixed on STM32L0 COMP driver: only 2 dedicated IO (IO1 and IO2), */ +/* IO2 was wrongly assigned to IO shared with DAC and IO3 was corresponding */ +/* to the second dedicated IO (only for COMP2). */ +#define COMP_INVERTINGINPUT_IO2 COMP_INPUT_MINUS_DAC1_CH2 +#define COMP_INVERTINGINPUT_IO3 COMP_INPUT_MINUS_IO2 +#else +#define COMP_INVERTINGINPUT_IO2 COMP_INPUT_MINUS_IO2 +#define COMP_INVERTINGINPUT_IO3 COMP_INPUT_MINUS_IO3 +#endif +#define COMP_INVERTINGINPUT_IO4 COMP_INPUT_MINUS_IO4 +#define COMP_INVERTINGINPUT_IO5 COMP_INPUT_MINUS_IO5 + +#define COMP_OUTPUTLEVEL_LOW COMP_OUTPUT_LEVEL_LOW +#define COMP_OUTPUTLEVEL_HIGH COMP_OUTPUT_LEVEL_HIGH + +/* Note: Literal "COMP_FLAG_LOCK" kept for legacy purpose. */ +/* To check COMP lock state, use macro "__HAL_COMP_IS_LOCKED()". */ +#if defined(COMP_CSR_LOCK) +#define COMP_FLAG_LOCK COMP_CSR_LOCK +#elif defined(COMP_CSR_COMP1LOCK) +#define COMP_FLAG_LOCK COMP_CSR_COMP1LOCK +#elif defined(COMP_CSR_COMPxLOCK) +#define COMP_FLAG_LOCK COMP_CSR_COMPxLOCK +#endif + +#if defined(STM32L4) +#define COMP_BLANKINGSRCE_TIM1OC5 COMP_BLANKINGSRC_TIM1_OC5_COMP1 +#define COMP_BLANKINGSRCE_TIM2OC3 COMP_BLANKINGSRC_TIM2_OC3_COMP1 +#define COMP_BLANKINGSRCE_TIM3OC3 COMP_BLANKINGSRC_TIM3_OC3_COMP1 +#define COMP_BLANKINGSRCE_TIM3OC4 COMP_BLANKINGSRC_TIM3_OC4_COMP2 +#define COMP_BLANKINGSRCE_TIM8OC5 COMP_BLANKINGSRC_TIM8_OC5_COMP2 +#define COMP_BLANKINGSRCE_TIM15OC1 COMP_BLANKINGSRC_TIM15_OC1_COMP2 +#define COMP_BLANKINGSRCE_NONE COMP_BLANKINGSRC_NONE +#endif + +#if defined(STM32L0) +#define COMP_MODE_HIGHSPEED COMP_POWERMODE_MEDIUMSPEED +#define COMP_MODE_LOWSPEED COMP_POWERMODE_ULTRALOWPOWER +#else +#define COMP_MODE_HIGHSPEED COMP_POWERMODE_HIGHSPEED +#define COMP_MODE_MEDIUMSPEED COMP_POWERMODE_MEDIUMSPEED +#define COMP_MODE_LOWPOWER COMP_POWERMODE_LOWPOWER +#define COMP_MODE_ULTRALOWPOWER COMP_POWERMODE_ULTRALOWPOWER +#endif + +#endif +/** + * @} + */ + +/** @defgroup HAL_CORTEX_Aliased_Defines HAL CORTEX Aliased Defines maintained for legacy purpose + * @{ + */ +#define __HAL_CORTEX_SYSTICKCLK_CONFIG HAL_SYSTICK_CLKSourceConfig +/** + * @} + */ + +/** @defgroup HAL_CRC_Aliased_Defines HAL CRC Aliased Defines maintained for legacy purpose + * @{ + */ + +#define CRC_OUTPUTDATA_INVERSION_DISABLED CRC_OUTPUTDATA_INVERSION_DISABLE +#define CRC_OUTPUTDATA_INVERSION_ENABLED CRC_OUTPUTDATA_INVERSION_ENABLE + +/** + * @} + */ + +/** @defgroup HAL_DAC_Aliased_Defines HAL DAC Aliased Defines maintained for legacy purpose + * @{ + */ + +#define DAC1_CHANNEL_1 DAC_CHANNEL_1 +#define DAC1_CHANNEL_2 DAC_CHANNEL_2 +#define DAC2_CHANNEL_1 DAC_CHANNEL_1 +#define DAC_WAVE_NONE ((uint32_t)0x00000000U) +#define DAC_WAVE_NOISE ((uint32_t)DAC_CR_WAVE1_0) +#define DAC_WAVE_TRIANGLE ((uint32_t)DAC_CR_WAVE1_1) +#define DAC_WAVEGENERATION_NONE DAC_WAVE_NONE +#define DAC_WAVEGENERATION_NOISE DAC_WAVE_NOISE +#define DAC_WAVEGENERATION_TRIANGLE DAC_WAVE_TRIANGLE + +/** + * @} + */ + +/** @defgroup HAL_DMA_Aliased_Defines HAL DMA Aliased Defines maintained for legacy purpose + * @{ + */ +#define HAL_REMAPDMA_ADC_DMA_CH2 DMA_REMAP_ADC_DMA_CH2 +#define HAL_REMAPDMA_USART1_TX_DMA_CH4 DMA_REMAP_USART1_TX_DMA_CH4 +#define HAL_REMAPDMA_USART1_RX_DMA_CH5 DMA_REMAP_USART1_RX_DMA_CH5 +#define HAL_REMAPDMA_TIM16_DMA_CH4 DMA_REMAP_TIM16_DMA_CH4 +#define HAL_REMAPDMA_TIM17_DMA_CH2 DMA_REMAP_TIM17_DMA_CH2 +#define HAL_REMAPDMA_USART3_DMA_CH32 DMA_REMAP_USART3_DMA_CH32 +#define HAL_REMAPDMA_TIM16_DMA_CH6 DMA_REMAP_TIM16_DMA_CH6 +#define HAL_REMAPDMA_TIM17_DMA_CH7 DMA_REMAP_TIM17_DMA_CH7 +#define HAL_REMAPDMA_SPI2_DMA_CH67 DMA_REMAP_SPI2_DMA_CH67 +#define HAL_REMAPDMA_USART2_DMA_CH67 DMA_REMAP_USART2_DMA_CH67 +#define HAL_REMAPDMA_USART3_DMA_CH32 DMA_REMAP_USART3_DMA_CH32 +#define HAL_REMAPDMA_I2C1_DMA_CH76 DMA_REMAP_I2C1_DMA_CH76 +#define HAL_REMAPDMA_TIM1_DMA_CH6 DMA_REMAP_TIM1_DMA_CH6 +#define HAL_REMAPDMA_TIM2_DMA_CH7 DMA_REMAP_TIM2_DMA_CH7 +#define HAL_REMAPDMA_TIM3_DMA_CH6 DMA_REMAP_TIM3_DMA_CH6 + +#define IS_HAL_REMAPDMA IS_DMA_REMAP +#define __HAL_REMAPDMA_CHANNEL_ENABLE __HAL_DMA_REMAP_CHANNEL_ENABLE +#define __HAL_REMAPDMA_CHANNEL_DISABLE __HAL_DMA_REMAP_CHANNEL_DISABLE + + + +/** + * @} + */ + +/** @defgroup HAL_FLASH_Aliased_Defines HAL FLASH Aliased Defines maintained for legacy purpose + * @{ + */ + +#define TYPEPROGRAM_BYTE FLASH_TYPEPROGRAM_BYTE +#define TYPEPROGRAM_HALFWORD FLASH_TYPEPROGRAM_HALFWORD +#define TYPEPROGRAM_WORD FLASH_TYPEPROGRAM_WORD +#define TYPEPROGRAM_DOUBLEWORD FLASH_TYPEPROGRAM_DOUBLEWORD +#define TYPEERASE_SECTORS FLASH_TYPEERASE_SECTORS +#define TYPEERASE_PAGES FLASH_TYPEERASE_PAGES +#define TYPEERASE_PAGEERASE FLASH_TYPEERASE_PAGES +#define TYPEERASE_MASSERASE FLASH_TYPEERASE_MASSERASE +#define WRPSTATE_DISABLE OB_WRPSTATE_DISABLE +#define WRPSTATE_ENABLE OB_WRPSTATE_ENABLE +#define HAL_FLASH_TIMEOUT_VALUE FLASH_TIMEOUT_VALUE +#define OBEX_PCROP OPTIONBYTE_PCROP +#define OBEX_BOOTCONFIG OPTIONBYTE_BOOTCONFIG +#define PCROPSTATE_DISABLE OB_PCROP_STATE_DISABLE +#define PCROPSTATE_ENABLE OB_PCROP_STATE_ENABLE +#define TYPEERASEDATA_BYTE FLASH_TYPEERASEDATA_BYTE +#define TYPEERASEDATA_HALFWORD FLASH_TYPEERASEDATA_HALFWORD +#define TYPEERASEDATA_WORD FLASH_TYPEERASEDATA_WORD +#define TYPEPROGRAMDATA_BYTE FLASH_TYPEPROGRAMDATA_BYTE +#define TYPEPROGRAMDATA_HALFWORD FLASH_TYPEPROGRAMDATA_HALFWORD +#define TYPEPROGRAMDATA_WORD FLASH_TYPEPROGRAMDATA_WORD +#define TYPEPROGRAMDATA_FASTBYTE FLASH_TYPEPROGRAMDATA_FASTBYTE +#define TYPEPROGRAMDATA_FASTHALFWORD FLASH_TYPEPROGRAMDATA_FASTHALFWORD +#define TYPEPROGRAMDATA_FASTWORD FLASH_TYPEPROGRAMDATA_FASTWORD +#define PAGESIZE FLASH_PAGE_SIZE +#define TYPEPROGRAM_FASTBYTE FLASH_TYPEPROGRAM_BYTE +#define TYPEPROGRAM_FASTHALFWORD FLASH_TYPEPROGRAM_HALFWORD +#define TYPEPROGRAM_FASTWORD FLASH_TYPEPROGRAM_WORD +#define VOLTAGE_RANGE_1 FLASH_VOLTAGE_RANGE_1 +#define VOLTAGE_RANGE_2 FLASH_VOLTAGE_RANGE_2 +#define VOLTAGE_RANGE_3 FLASH_VOLTAGE_RANGE_3 +#define VOLTAGE_RANGE_4 FLASH_VOLTAGE_RANGE_4 +#define TYPEPROGRAM_FAST FLASH_TYPEPROGRAM_FAST +#define TYPEPROGRAM_FAST_AND_LAST FLASH_TYPEPROGRAM_FAST_AND_LAST +#define WRPAREA_BANK1_AREAA OB_WRPAREA_BANK1_AREAA +#define WRPAREA_BANK1_AREAB OB_WRPAREA_BANK1_AREAB +#define WRPAREA_BANK2_AREAA OB_WRPAREA_BANK2_AREAA +#define WRPAREA_BANK2_AREAB OB_WRPAREA_BANK2_AREAB +#define IWDG_STDBY_FREEZE OB_IWDG_STDBY_FREEZE +#define IWDG_STDBY_ACTIVE OB_IWDG_STDBY_RUN +#define IWDG_STOP_FREEZE OB_IWDG_STOP_FREEZE +#define IWDG_STOP_ACTIVE OB_IWDG_STOP_RUN +#define FLASH_ERROR_NONE HAL_FLASH_ERROR_NONE +#define FLASH_ERROR_RD HAL_FLASH_ERROR_RD +#define FLASH_ERROR_PG HAL_FLASH_ERROR_PROG +#define FLASH_ERROR_PGP HAL_FLASH_ERROR_PGS +#define FLASH_ERROR_WRP HAL_FLASH_ERROR_WRP +#define FLASH_ERROR_OPTV HAL_FLASH_ERROR_OPTV +#define FLASH_ERROR_OPTVUSR HAL_FLASH_ERROR_OPTVUSR +#define FLASH_ERROR_PROG HAL_FLASH_ERROR_PROG +#define FLASH_ERROR_OP HAL_FLASH_ERROR_OPERATION +#define FLASH_ERROR_PGA HAL_FLASH_ERROR_PGA +#define FLASH_ERROR_SIZE HAL_FLASH_ERROR_SIZE +#define FLASH_ERROR_SIZ HAL_FLASH_ERROR_SIZE +#define FLASH_ERROR_PGS HAL_FLASH_ERROR_PGS +#define FLASH_ERROR_MIS HAL_FLASH_ERROR_MIS +#define FLASH_ERROR_FAST HAL_FLASH_ERROR_FAST +#define FLASH_ERROR_FWWERR HAL_FLASH_ERROR_FWWERR +#define FLASH_ERROR_NOTZERO HAL_FLASH_ERROR_NOTZERO +#define FLASH_ERROR_OPERATION HAL_FLASH_ERROR_OPERATION +#define FLASH_ERROR_ERS HAL_FLASH_ERROR_ERS +#define OB_WDG_SW OB_IWDG_SW +#define OB_WDG_HW OB_IWDG_HW +#define OB_SDADC12_VDD_MONITOR_SET OB_SDACD_VDD_MONITOR_SET +#define OB_SDADC12_VDD_MONITOR_RESET OB_SDACD_VDD_MONITOR_RESET +#define OB_RAM_PARITY_CHECK_SET OB_SRAM_PARITY_SET +#define OB_RAM_PARITY_CHECK_RESET OB_SRAM_PARITY_RESET +#define IS_OB_SDADC12_VDD_MONITOR IS_OB_SDACD_VDD_MONITOR +#define OB_RDP_LEVEL0 OB_RDP_LEVEL_0 +#define OB_RDP_LEVEL1 OB_RDP_LEVEL_1 +#define OB_RDP_LEVEL2 OB_RDP_LEVEL_2 + +/** + * @} + */ + +/** @defgroup HAL_SYSCFG_Aliased_Defines HAL SYSCFG Aliased Defines maintained for legacy purpose + * @{ + */ + +#define HAL_SYSCFG_FASTMODEPLUS_I2C_PA9 I2C_FASTMODEPLUS_PA9 +#define HAL_SYSCFG_FASTMODEPLUS_I2C_PA10 I2C_FASTMODEPLUS_PA10 +#define HAL_SYSCFG_FASTMODEPLUS_I2C_PB6 I2C_FASTMODEPLUS_PB6 +#define HAL_SYSCFG_FASTMODEPLUS_I2C_PB7 I2C_FASTMODEPLUS_PB7 +#define HAL_SYSCFG_FASTMODEPLUS_I2C_PB8 I2C_FASTMODEPLUS_PB8 +#define HAL_SYSCFG_FASTMODEPLUS_I2C_PB9 I2C_FASTMODEPLUS_PB9 +#define HAL_SYSCFG_FASTMODEPLUS_I2C1 I2C_FASTMODEPLUS_I2C1 +#define HAL_SYSCFG_FASTMODEPLUS_I2C2 I2C_FASTMODEPLUS_I2C2 +#define HAL_SYSCFG_FASTMODEPLUS_I2C3 I2C_FASTMODEPLUS_I2C3 +/** + * @} + */ + + +/** @defgroup LL_FMC_Aliased_Defines LL FMC Aliased Defines maintained for compatibility purpose + * @{ + */ +#if defined(STM32L4) || defined(STM32F7) +#define FMC_NAND_PCC_WAIT_FEATURE_DISABLE FMC_NAND_WAIT_FEATURE_DISABLE +#define FMC_NAND_PCC_WAIT_FEATURE_ENABLE FMC_NAND_WAIT_FEATURE_ENABLE +#define FMC_NAND_PCC_MEM_BUS_WIDTH_8 FMC_NAND_MEM_BUS_WIDTH_8 +#define FMC_NAND_PCC_MEM_BUS_WIDTH_16 FMC_NAND_MEM_BUS_WIDTH_16 +#else +#define FMC_NAND_WAIT_FEATURE_DISABLE FMC_NAND_PCC_WAIT_FEATURE_DISABLE +#define FMC_NAND_WAIT_FEATURE_ENABLE FMC_NAND_PCC_WAIT_FEATURE_ENABLE +#define FMC_NAND_MEM_BUS_WIDTH_8 FMC_NAND_PCC_MEM_BUS_WIDTH_8 +#define FMC_NAND_MEM_BUS_WIDTH_16 FMC_NAND_PCC_MEM_BUS_WIDTH_16 +#endif +/** + * @} + */ + +/** @defgroup LL_FSMC_Aliased_Defines LL FSMC Aliased Defines maintained for legacy purpose + * @{ + */ + +#define FSMC_NORSRAM_TYPEDEF FSMC_NORSRAM_TypeDef +#define FSMC_NORSRAM_EXTENDED_TYPEDEF FSMC_NORSRAM_EXTENDED_TypeDef +/** + * @} + */ + +/** @defgroup HAL_GPIO_Aliased_Macros HAL GPIO Aliased Macros maintained for legacy purpose + * @{ + */ +#define GET_GPIO_SOURCE GPIO_GET_INDEX +#define GET_GPIO_INDEX GPIO_GET_INDEX + +#if defined(STM32F4) +#define GPIO_AF12_SDMMC GPIO_AF12_SDIO +#define GPIO_AF12_SDMMC1 GPIO_AF12_SDIO +#endif + +#if defined(STM32F7) +#define GPIO_AF12_SDIO GPIO_AF12_SDMMC1 +#define GPIO_AF12_SDMMC GPIO_AF12_SDMMC1 +#endif + +#if defined(STM32L4) +#define GPIO_AF12_SDIO GPIO_AF12_SDMMC1 +#define GPIO_AF12_SDMMC GPIO_AF12_SDMMC1 +#endif + +#define GPIO_AF0_LPTIM GPIO_AF0_LPTIM1 +#define GPIO_AF1_LPTIM GPIO_AF1_LPTIM1 +#define GPIO_AF2_LPTIM GPIO_AF2_LPTIM1 + +#if defined(STM32L0) || defined(STM32L4) || defined(STM32F4) || defined(STM32F2) || defined(STM32F7) +#define GPIO_SPEED_LOW GPIO_SPEED_FREQ_LOW +#define GPIO_SPEED_MEDIUM GPIO_SPEED_FREQ_MEDIUM +#define GPIO_SPEED_FAST GPIO_SPEED_FREQ_HIGH +#define GPIO_SPEED_HIGH GPIO_SPEED_FREQ_VERY_HIGH +#endif /* STM32L0 || STM32L4 || STM32F4 || STM32F2 || STM32F7 */ + +#if defined(STM32L1) + #define GPIO_SPEED_VERY_LOW GPIO_SPEED_FREQ_LOW + #define GPIO_SPEED_LOW GPIO_SPEED_FREQ_MEDIUM + #define GPIO_SPEED_MEDIUM GPIO_SPEED_FREQ_HIGH + #define GPIO_SPEED_HIGH GPIO_SPEED_FREQ_VERY_HIGH +#endif /* STM32L1 */ + +#if defined(STM32F0) || defined(STM32F3) || defined(STM32F1) + #define GPIO_SPEED_LOW GPIO_SPEED_FREQ_LOW + #define GPIO_SPEED_MEDIUM GPIO_SPEED_FREQ_MEDIUM + #define GPIO_SPEED_HIGH GPIO_SPEED_FREQ_HIGH +#endif /* STM32F0 || STM32F3 || STM32F1 */ + +#define GPIO_AF6_DFSDM GPIO_AF6_DFSDM1 +/** + * @} + */ + +/** @defgroup HAL_HRTIM_Aliased_Macros HAL HRTIM Aliased Macros maintained for legacy purpose + * @{ + */ +#define HRTIM_TIMDELAYEDPROTECTION_DISABLED HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_DISABLED +#define HRTIM_TIMDELAYEDPROTECTION_DELAYEDOUT1_EEV68 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_DELAYEDOUT1_EEV6 +#define HRTIM_TIMDELAYEDPROTECTION_DELAYEDOUT2_EEV68 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_DELAYEDOUT2_EEV6 +#define HRTIM_TIMDELAYEDPROTECTION_DELAYEDBOTH_EEV68 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_DELAYEDBOTH_EEV6 +#define HRTIM_TIMDELAYEDPROTECTION_BALANCED_EEV68 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_BALANCED_EEV6 +#define HRTIM_TIMDELAYEDPROTECTION_DELAYEDOUT1_DEEV79 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_DELAYEDOUT1_DEEV7 +#define HRTIM_TIMDELAYEDPROTECTION_DELAYEDOUT2_DEEV79 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_DELAYEDOUT2_DEEV7 +#define HRTIM_TIMDELAYEDPROTECTION_DELAYEDBOTH_EEV79 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_DELAYEDBOTH_EEV7 +#define HRTIM_TIMDELAYEDPROTECTION_BALANCED_EEV79 HRTIM_TIMER_A_B_C_DELAYEDPROTECTION_BALANCED_EEV7 + +#define __HAL_HRTIM_SetCounter __HAL_HRTIM_SETCOUNTER +#define __HAL_HRTIM_GetCounter __HAL_HRTIM_GETCOUNTER +#define __HAL_HRTIM_SetPeriod __HAL_HRTIM_SETPERIOD +#define __HAL_HRTIM_GetPeriod __HAL_HRTIM_GETPERIOD +#define __HAL_HRTIM_SetClockPrescaler __HAL_HRTIM_SETCLOCKPRESCALER +#define __HAL_HRTIM_GetClockPrescaler __HAL_HRTIM_GETCLOCKPRESCALER +#define __HAL_HRTIM_SetCompare __HAL_HRTIM_SETCOMPARE +#define __HAL_HRTIM_GetCompare __HAL_HRTIM_GETCOMPARE +/** + * @} + */ + +/** @defgroup HAL_I2C_Aliased_Defines HAL I2C Aliased Defines maintained for legacy purpose + * @{ + */ +#define I2C_DUALADDRESS_DISABLED I2C_DUALADDRESS_DISABLE +#define I2C_DUALADDRESS_ENABLED I2C_DUALADDRESS_ENABLE +#define I2C_GENERALCALL_DISABLED I2C_GENERALCALL_DISABLE +#define I2C_GENERALCALL_ENABLED I2C_GENERALCALL_ENABLE +#define I2C_NOSTRETCH_DISABLED I2C_NOSTRETCH_DISABLE +#define I2C_NOSTRETCH_ENABLED I2C_NOSTRETCH_ENABLE +#define I2C_ANALOGFILTER_ENABLED I2C_ANALOGFILTER_ENABLE +#define I2C_ANALOGFILTER_DISABLED I2C_ANALOGFILTER_DISABLE +#if defined(STM32F0) || defined(STM32F1) || defined(STM32F3) || defined(STM32G0) || defined(STM32L4) || defined(STM32L1) || defined(STM32F7) +#define HAL_I2C_STATE_MEM_BUSY_TX HAL_I2C_STATE_BUSY_TX +#define HAL_I2C_STATE_MEM_BUSY_RX HAL_I2C_STATE_BUSY_RX +#define HAL_I2C_STATE_MASTER_BUSY_TX HAL_I2C_STATE_BUSY_TX +#define HAL_I2C_STATE_MASTER_BUSY_RX HAL_I2C_STATE_BUSY_RX +#define HAL_I2C_STATE_SLAVE_BUSY_TX HAL_I2C_STATE_BUSY_TX +#define HAL_I2C_STATE_SLAVE_BUSY_RX HAL_I2C_STATE_BUSY_RX +#endif +/** + * @} + */ + +/** @defgroup HAL_IRDA_Aliased_Defines HAL IRDA Aliased Defines maintained for legacy purpose + * @{ + */ +#define IRDA_ONE_BIT_SAMPLE_DISABLED IRDA_ONE_BIT_SAMPLE_DISABLE +#define IRDA_ONE_BIT_SAMPLE_ENABLED IRDA_ONE_BIT_SAMPLE_ENABLE + +/** + * @} + */ + +/** @defgroup HAL_IWDG_Aliased_Defines HAL IWDG Aliased Defines maintained for legacy purpose + * @{ + */ +#define KR_KEY_RELOAD IWDG_KEY_RELOAD +#define KR_KEY_ENABLE IWDG_KEY_ENABLE +#define KR_KEY_EWA IWDG_KEY_WRITE_ACCESS_ENABLE +#define KR_KEY_DWA IWDG_KEY_WRITE_ACCESS_DISABLE +/** + * @} + */ + +/** @defgroup HAL_LPTIM_Aliased_Defines HAL LPTIM Aliased Defines maintained for legacy purpose + * @{ + */ + +#define LPTIM_CLOCKSAMPLETIME_DIRECTTRANSISTION LPTIM_CLOCKSAMPLETIME_DIRECTTRANSITION +#define LPTIM_CLOCKSAMPLETIME_2TRANSISTIONS LPTIM_CLOCKSAMPLETIME_2TRANSITIONS +#define LPTIM_CLOCKSAMPLETIME_4TRANSISTIONS LPTIM_CLOCKSAMPLETIME_4TRANSITIONS +#define LPTIM_CLOCKSAMPLETIME_8TRANSISTIONS LPTIM_CLOCKSAMPLETIME_8TRANSITIONS + +#define LPTIM_CLOCKPOLARITY_RISINGEDGE LPTIM_CLOCKPOLARITY_RISING +#define LPTIM_CLOCKPOLARITY_FALLINGEDGE LPTIM_CLOCKPOLARITY_FALLING +#define LPTIM_CLOCKPOLARITY_BOTHEDGES LPTIM_CLOCKPOLARITY_RISING_FALLING + +#define LPTIM_TRIGSAMPLETIME_DIRECTTRANSISTION LPTIM_TRIGSAMPLETIME_DIRECTTRANSITION +#define LPTIM_TRIGSAMPLETIME_2TRANSISTIONS LPTIM_TRIGSAMPLETIME_2TRANSITIONS +#define LPTIM_TRIGSAMPLETIME_4TRANSISTIONS LPTIM_TRIGSAMPLETIME_4TRANSITIONS +#define LPTIM_TRIGSAMPLETIME_8TRANSISTIONS LPTIM_TRIGSAMPLETIME_8TRANSITIONS + +/* The following 3 definition have also been present in a temporary version of lptim.h */ +/* They need to be renamed also to the right name, just in case */ +#define LPTIM_TRIGSAMPLETIME_2TRANSITION LPTIM_TRIGSAMPLETIME_2TRANSITIONS +#define LPTIM_TRIGSAMPLETIME_4TRANSITION LPTIM_TRIGSAMPLETIME_4TRANSITIONS +#define LPTIM_TRIGSAMPLETIME_8TRANSITION LPTIM_TRIGSAMPLETIME_8TRANSITIONS + +/** + * @} + */ + +/** @defgroup HAL_NAND_Aliased_Defines HAL NAND Aliased Defines maintained for legacy purpose + * @{ + */ +#define HAL_NAND_Read_Page HAL_NAND_Read_Page_8b +#define HAL_NAND_Write_Page HAL_NAND_Write_Page_8b +#define HAL_NAND_Read_SpareArea HAL_NAND_Read_SpareArea_8b +#define HAL_NAND_Write_SpareArea HAL_NAND_Write_SpareArea_8b + +#define NAND_AddressTypedef NAND_AddressTypeDef + +#define __ARRAY_ADDRESS ARRAY_ADDRESS +#define __ADDR_1st_CYCLE ADDR_1ST_CYCLE +#define __ADDR_2nd_CYCLE ADDR_2ND_CYCLE +#define __ADDR_3rd_CYCLE ADDR_3RD_CYCLE +#define __ADDR_4th_CYCLE ADDR_4TH_CYCLE +/** + * @} + */ + +/** @defgroup HAL_NOR_Aliased_Defines HAL NOR Aliased Defines maintained for legacy purpose + * @{ + */ +#define NOR_StatusTypedef HAL_NOR_StatusTypeDef +#define NOR_SUCCESS HAL_NOR_STATUS_SUCCESS +#define NOR_ONGOING HAL_NOR_STATUS_ONGOING +#define NOR_ERROR HAL_NOR_STATUS_ERROR +#define NOR_TIMEOUT HAL_NOR_STATUS_TIMEOUT + +#define __NOR_WRITE NOR_WRITE +#define __NOR_ADDR_SHIFT NOR_ADDR_SHIFT +/** + * @} + */ + +/** @defgroup HAL_OPAMP_Aliased_Defines HAL OPAMP Aliased Defines maintained for legacy purpose + * @{ + */ + +#define OPAMP_NONINVERTINGINPUT_VP0 OPAMP_NONINVERTINGINPUT_IO0 +#define OPAMP_NONINVERTINGINPUT_VP1 OPAMP_NONINVERTINGINPUT_IO1 +#define OPAMP_NONINVERTINGINPUT_VP2 OPAMP_NONINVERTINGINPUT_IO2 +#define OPAMP_NONINVERTINGINPUT_VP3 OPAMP_NONINVERTINGINPUT_IO3 + +#define OPAMP_SEC_NONINVERTINGINPUT_VP0 OPAMP_SEC_NONINVERTINGINPUT_IO0 +#define OPAMP_SEC_NONINVERTINGINPUT_VP1 OPAMP_SEC_NONINVERTINGINPUT_IO1 +#define OPAMP_SEC_NONINVERTINGINPUT_VP2 OPAMP_SEC_NONINVERTINGINPUT_IO2 +#define OPAMP_SEC_NONINVERTINGINPUT_VP3 OPAMP_SEC_NONINVERTINGINPUT_IO3 + +#define OPAMP_INVERTINGINPUT_VM0 OPAMP_INVERTINGINPUT_IO0 +#define OPAMP_INVERTINGINPUT_VM1 OPAMP_INVERTINGINPUT_IO1 + +#define IOPAMP_INVERTINGINPUT_VM0 OPAMP_INVERTINGINPUT_IO0 +#define IOPAMP_INVERTINGINPUT_VM1 OPAMP_INVERTINGINPUT_IO1 + +#define OPAMP_SEC_INVERTINGINPUT_VM0 OPAMP_SEC_INVERTINGINPUT_IO0 +#define OPAMP_SEC_INVERTINGINPUT_VM1 OPAMP_SEC_INVERTINGINPUT_IO1 + +#define OPAMP_INVERTINGINPUT_VINM OPAMP_SEC_INVERTINGINPUT_IO1 + +#define OPAMP_PGACONNECT_NO OPAMP_PGA_CONNECT_INVERTINGINPUT_NO +#define OPAMP_PGACONNECT_VM0 OPAMP_PGA_CONNECT_INVERTINGINPUT_IO0 +#define OPAMP_PGACONNECT_VM1 OPAMP_PGA_CONNECT_INVERTINGINPUT_IO1 + +/** + * @} + */ + +/** @defgroup HAL_I2S_Aliased_Defines HAL I2S Aliased Defines maintained for legacy purpose + * @{ + */ +#define I2S_STANDARD_PHILLIPS I2S_STANDARD_PHILIPS +#if defined(STM32F7) + #define I2S_CLOCK_SYSCLK I2S_CLOCK_PLL +#endif +/** + * @} + */ + +/** @defgroup HAL_PCCARD_Aliased_Defines HAL PCCARD Aliased Defines maintained for legacy purpose + * @{ + */ + +/* Compact Flash-ATA registers description */ +#define CF_DATA ATA_DATA +#define CF_SECTOR_COUNT ATA_SECTOR_COUNT +#define CF_SECTOR_NUMBER ATA_SECTOR_NUMBER +#define CF_CYLINDER_LOW ATA_CYLINDER_LOW +#define CF_CYLINDER_HIGH ATA_CYLINDER_HIGH +#define CF_CARD_HEAD ATA_CARD_HEAD +#define CF_STATUS_CMD ATA_STATUS_CMD +#define CF_STATUS_CMD_ALTERNATE ATA_STATUS_CMD_ALTERNATE +#define CF_COMMON_DATA_AREA ATA_COMMON_DATA_AREA + +/* Compact Flash-ATA commands */ +#define CF_READ_SECTOR_CMD ATA_READ_SECTOR_CMD +#define CF_WRITE_SECTOR_CMD ATA_WRITE_SECTOR_CMD +#define CF_ERASE_SECTOR_CMD ATA_ERASE_SECTOR_CMD +#define CF_IDENTIFY_CMD ATA_IDENTIFY_CMD + +#define PCCARD_StatusTypedef HAL_PCCARD_StatusTypeDef +#define PCCARD_SUCCESS HAL_PCCARD_STATUS_SUCCESS +#define PCCARD_ONGOING HAL_PCCARD_STATUS_ONGOING +#define PCCARD_ERROR HAL_PCCARD_STATUS_ERROR +#define PCCARD_TIMEOUT HAL_PCCARD_STATUS_TIMEOUT +/** + * @} + */ + +/** @defgroup HAL_RTC_Aliased_Defines HAL RTC Aliased Defines maintained for legacy purpose + * @{ + */ + +#define FORMAT_BIN RTC_FORMAT_BIN +#define FORMAT_BCD RTC_FORMAT_BCD + +#define RTC_ALARMSUBSECONDMASK_None RTC_ALARMSUBSECONDMASK_NONE +#define RTC_TAMPERERASEBACKUP_ENABLED RTC_TAMPER_ERASE_BACKUP_ENABLE +#define RTC_TAMPERERASEBACKUP_DISABLED RTC_TAMPER_ERASE_BACKUP_DISABLE +#define RTC_TAMPERMASK_FLAG_DISABLED RTC_TAMPERMASK_FLAG_DISABLE +#define RTC_TAMPERMASK_FLAG_ENABLED RTC_TAMPERMASK_FLAG_ENABLE + +#define RTC_MASKTAMPERFLAG_DISABLED RTC_TAMPERMASK_FLAG_DISABLE +#define RTC_MASKTAMPERFLAG_ENABLED RTC_TAMPERMASK_FLAG_ENABLE +#define RTC_TAMPERERASEBACKUP_ENABLED RTC_TAMPER_ERASE_BACKUP_ENABLE +#define RTC_TAMPERERASEBACKUP_DISABLED RTC_TAMPER_ERASE_BACKUP_DISABLE +#define RTC_MASKTAMPERFLAG_DISABLED RTC_TAMPERMASK_FLAG_DISABLE +#define RTC_MASKTAMPERFLAG_ENABLED RTC_TAMPERMASK_FLAG_ENABLE +#define RTC_TAMPER1_2_INTERRUPT RTC_ALL_TAMPER_INTERRUPT +#define RTC_TAMPER1_2_3_INTERRUPT RTC_ALL_TAMPER_INTERRUPT + +#define RTC_TIMESTAMPPIN_PC13 RTC_TIMESTAMPPIN_DEFAULT +#define RTC_TIMESTAMPPIN_PA0 RTC_TIMESTAMPPIN_POS1 +#define RTC_TIMESTAMPPIN_PI8 RTC_TIMESTAMPPIN_POS1 +#define RTC_TIMESTAMPPIN_PC1 RTC_TIMESTAMPPIN_POS2 + +#define RTC_OUTPUT_REMAP_PC13 RTC_OUTPUT_REMAP_NONE +#define RTC_OUTPUT_REMAP_PB14 RTC_OUTPUT_REMAP_POS1 +#define RTC_OUTPUT_REMAP_PB2 RTC_OUTPUT_REMAP_POS1 + +#define RTC_TAMPERPIN_PC13 RTC_TAMPERPIN_DEFAULT +#define RTC_TAMPERPIN_PA0 RTC_TAMPERPIN_POS1 +#define RTC_TAMPERPIN_PI8 RTC_TAMPERPIN_POS1 + +/** + * @} + */ + + +/** @defgroup HAL_SMARTCARD_Aliased_Defines HAL SMARTCARD Aliased Defines maintained for legacy purpose + * @{ + */ +#define SMARTCARD_NACK_ENABLED SMARTCARD_NACK_ENABLE +#define SMARTCARD_NACK_DISABLED SMARTCARD_NACK_DISABLE + +#define SMARTCARD_ONEBIT_SAMPLING_DISABLED SMARTCARD_ONE_BIT_SAMPLE_DISABLE +#define SMARTCARD_ONEBIT_SAMPLING_ENABLED SMARTCARD_ONE_BIT_SAMPLE_ENABLE +#define SMARTCARD_ONEBIT_SAMPLING_DISABLE SMARTCARD_ONE_BIT_SAMPLE_DISABLE +#define SMARTCARD_ONEBIT_SAMPLING_ENABLE SMARTCARD_ONE_BIT_SAMPLE_ENABLE + +#define SMARTCARD_TIMEOUT_DISABLED SMARTCARD_TIMEOUT_DISABLE +#define SMARTCARD_TIMEOUT_ENABLED SMARTCARD_TIMEOUT_ENABLE + +#define SMARTCARD_LASTBIT_DISABLED SMARTCARD_LASTBIT_DISABLE +#define SMARTCARD_LASTBIT_ENABLED SMARTCARD_LASTBIT_ENABLE +/** + * @} + */ + + +/** @defgroup HAL_SMBUS_Aliased_Defines HAL SMBUS Aliased Defines maintained for legacy purpose + * @{ + */ +#define SMBUS_DUALADDRESS_DISABLED SMBUS_DUALADDRESS_DISABLE +#define SMBUS_DUALADDRESS_ENABLED SMBUS_DUALADDRESS_ENABLE +#define SMBUS_GENERALCALL_DISABLED SMBUS_GENERALCALL_DISABLE +#define SMBUS_GENERALCALL_ENABLED SMBUS_GENERALCALL_ENABLE +#define SMBUS_NOSTRETCH_DISABLED SMBUS_NOSTRETCH_DISABLE +#define SMBUS_NOSTRETCH_ENABLED SMBUS_NOSTRETCH_ENABLE +#define SMBUS_ANALOGFILTER_ENABLED SMBUS_ANALOGFILTER_ENABLE +#define SMBUS_ANALOGFILTER_DISABLED SMBUS_ANALOGFILTER_DISABLE +#define SMBUS_PEC_DISABLED SMBUS_PEC_DISABLE +#define SMBUS_PEC_ENABLED SMBUS_PEC_ENABLE +#define HAL_SMBUS_STATE_SLAVE_LISTEN HAL_SMBUS_STATE_LISTEN +/** + * @} + */ + +/** @defgroup HAL_SPI_Aliased_Defines HAL SPI Aliased Defines maintained for legacy purpose + * @{ + */ +#define SPI_TIMODE_DISABLED SPI_TIMODE_DISABLE +#define SPI_TIMODE_ENABLED SPI_TIMODE_ENABLE + +#define SPI_CRCCALCULATION_DISABLED SPI_CRCCALCULATION_DISABLE +#define SPI_CRCCALCULATION_ENABLED SPI_CRCCALCULATION_ENABLE + +#define SPI_NSS_PULSE_DISABLED SPI_NSS_PULSE_DISABLE +#define SPI_NSS_PULSE_ENABLED SPI_NSS_PULSE_ENABLE + +/** + * @} + */ + +/** @defgroup HAL_TIM_Aliased_Defines HAL TIM Aliased Defines maintained for legacy purpose + * @{ + */ +#define CCER_CCxE_MASK TIM_CCER_CCxE_MASK +#define CCER_CCxNE_MASK TIM_CCER_CCxNE_MASK + +#define TIM_DMABase_CR1 TIM_DMABASE_CR1 +#define TIM_DMABase_CR2 TIM_DMABASE_CR2 +#define TIM_DMABase_SMCR TIM_DMABASE_SMCR +#define TIM_DMABase_DIER TIM_DMABASE_DIER +#define TIM_DMABase_SR TIM_DMABASE_SR +#define TIM_DMABase_EGR TIM_DMABASE_EGR +#define TIM_DMABase_CCMR1 TIM_DMABASE_CCMR1 +#define TIM_DMABase_CCMR2 TIM_DMABASE_CCMR2 +#define TIM_DMABase_CCER TIM_DMABASE_CCER +#define TIM_DMABase_CNT TIM_DMABASE_CNT +#define TIM_DMABase_PSC TIM_DMABASE_PSC +#define TIM_DMABase_ARR TIM_DMABASE_ARR +#define TIM_DMABase_RCR TIM_DMABASE_RCR +#define TIM_DMABase_CCR1 TIM_DMABASE_CCR1 +#define TIM_DMABase_CCR2 TIM_DMABASE_CCR2 +#define TIM_DMABase_CCR3 TIM_DMABASE_CCR3 +#define TIM_DMABase_CCR4 TIM_DMABASE_CCR4 +#define TIM_DMABase_BDTR TIM_DMABASE_BDTR +#define TIM_DMABase_DCR TIM_DMABASE_DCR +#define TIM_DMABase_DMAR TIM_DMABASE_DMAR +#define TIM_DMABase_OR1 TIM_DMABASE_OR1 +#define TIM_DMABase_CCMR3 TIM_DMABASE_CCMR3 +#define TIM_DMABase_CCR5 TIM_DMABASE_CCR5 +#define TIM_DMABase_CCR6 TIM_DMABASE_CCR6 +#define TIM_DMABase_OR2 TIM_DMABASE_OR2 +#define TIM_DMABase_OR3 TIM_DMABASE_OR3 +#define TIM_DMABase_OR TIM_DMABASE_OR + +#define TIM_EventSource_Update TIM_EVENTSOURCE_UPDATE +#define TIM_EventSource_CC1 TIM_EVENTSOURCE_CC1 +#define TIM_EventSource_CC2 TIM_EVENTSOURCE_CC2 +#define TIM_EventSource_CC3 TIM_EVENTSOURCE_CC3 +#define TIM_EventSource_CC4 TIM_EVENTSOURCE_CC4 +#define TIM_EventSource_COM TIM_EVENTSOURCE_COM +#define TIM_EventSource_Trigger TIM_EVENTSOURCE_TRIGGER +#define TIM_EventSource_Break TIM_EVENTSOURCE_BREAK +#define TIM_EventSource_Break2 TIM_EVENTSOURCE_BREAK2 + +#define TIM_DMABurstLength_1Transfer TIM_DMABURSTLENGTH_1TRANSFER +#define TIM_DMABurstLength_2Transfers TIM_DMABURSTLENGTH_2TRANSFERS +#define TIM_DMABurstLength_3Transfers TIM_DMABURSTLENGTH_3TRANSFERS +#define TIM_DMABurstLength_4Transfers TIM_DMABURSTLENGTH_4TRANSFERS +#define TIM_DMABurstLength_5Transfers TIM_DMABURSTLENGTH_5TRANSFERS +#define TIM_DMABurstLength_6Transfers TIM_DMABURSTLENGTH_6TRANSFERS +#define TIM_DMABurstLength_7Transfers TIM_DMABURSTLENGTH_7TRANSFERS +#define TIM_DMABurstLength_8Transfers TIM_DMABURSTLENGTH_8TRANSFERS +#define TIM_DMABurstLength_9Transfers TIM_DMABURSTLENGTH_9TRANSFERS +#define TIM_DMABurstLength_10Transfers TIM_DMABURSTLENGTH_10TRANSFERS +#define TIM_DMABurstLength_11Transfers TIM_DMABURSTLENGTH_11TRANSFERS +#define TIM_DMABurstLength_12Transfers TIM_DMABURSTLENGTH_12TRANSFERS +#define TIM_DMABurstLength_13Transfers TIM_DMABURSTLENGTH_13TRANSFERS +#define TIM_DMABurstLength_14Transfers TIM_DMABURSTLENGTH_14TRANSFERS +#define TIM_DMABurstLength_15Transfers TIM_DMABURSTLENGTH_15TRANSFERS +#define TIM_DMABurstLength_16Transfers TIM_DMABURSTLENGTH_16TRANSFERS +#define TIM_DMABurstLength_17Transfers TIM_DMABURSTLENGTH_17TRANSFERS +#define TIM_DMABurstLength_18Transfers TIM_DMABURSTLENGTH_18TRANSFERS + +/** + * @} + */ + +/** @defgroup HAL_TSC_Aliased_Defines HAL TSC Aliased Defines maintained for legacy purpose + * @{ + */ +#define TSC_SYNC_POL_FALL TSC_SYNC_POLARITY_FALLING +#define TSC_SYNC_POL_RISE_HIGH TSC_SYNC_POLARITY_RISING +/** + * @} + */ + +/** @defgroup HAL_UART_Aliased_Defines HAL UART Aliased Defines maintained for legacy purpose + * @{ + */ +#define UART_ONEBIT_SAMPLING_DISABLED UART_ONE_BIT_SAMPLE_DISABLE +#define UART_ONEBIT_SAMPLING_ENABLED UART_ONE_BIT_SAMPLE_ENABLE +#define UART_ONE_BIT_SAMPLE_DISABLED UART_ONE_BIT_SAMPLE_DISABLE +#define UART_ONE_BIT_SAMPLE_ENABLED UART_ONE_BIT_SAMPLE_ENABLE + +#define __HAL_UART_ONEBIT_ENABLE __HAL_UART_ONE_BIT_SAMPLE_ENABLE +#define __HAL_UART_ONEBIT_DISABLE __HAL_UART_ONE_BIT_SAMPLE_DISABLE + +#define __DIV_SAMPLING16 UART_DIV_SAMPLING16 +#define __DIVMANT_SAMPLING16 UART_DIVMANT_SAMPLING16 +#define __DIVFRAQ_SAMPLING16 UART_DIVFRAQ_SAMPLING16 +#define __UART_BRR_SAMPLING16 UART_BRR_SAMPLING16 + +#define __DIV_SAMPLING8 UART_DIV_SAMPLING8 +#define __DIVMANT_SAMPLING8 UART_DIVMANT_SAMPLING8 +#define __DIVFRAQ_SAMPLING8 UART_DIVFRAQ_SAMPLING8 +#define __UART_BRR_SAMPLING8 UART_BRR_SAMPLING8 + +#define __DIV_LPUART UART_DIV_LPUART + +#define UART_WAKEUPMETHODE_IDLELINE UART_WAKEUPMETHOD_IDLELINE +#define UART_WAKEUPMETHODE_ADDRESSMARK UART_WAKEUPMETHOD_ADDRESSMARK + +/** + * @} + */ + + +/** @defgroup HAL_USART_Aliased_Defines HAL USART Aliased Defines maintained for legacy purpose + * @{ + */ + +#define USART_CLOCK_DISABLED USART_CLOCK_DISABLE +#define USART_CLOCK_ENABLED USART_CLOCK_ENABLE + +#define USARTNACK_ENABLED USART_NACK_ENABLE +#define USARTNACK_DISABLED USART_NACK_DISABLE +/** + * @} + */ + +/** @defgroup HAL_WWDG_Aliased_Defines HAL WWDG Aliased Defines maintained for legacy purpose + * @{ + */ +#define CFR_BASE WWDG_CFR_BASE + +/** + * @} + */ + +/** @defgroup HAL_CAN_Aliased_Defines HAL CAN Aliased Defines maintained for legacy purpose + * @{ + */ +#define CAN_FilterFIFO0 CAN_FILTER_FIFO0 +#define CAN_FilterFIFO1 CAN_FILTER_FIFO1 +#define CAN_IT_RQCP0 CAN_IT_TME +#define CAN_IT_RQCP1 CAN_IT_TME +#define CAN_IT_RQCP2 CAN_IT_TME +#define INAK_TIMEOUT CAN_TIMEOUT_VALUE +#define SLAK_TIMEOUT CAN_TIMEOUT_VALUE +#define CAN_TXSTATUS_FAILED ((uint8_t)0x00U) +#define CAN_TXSTATUS_OK ((uint8_t)0x01U) +#define CAN_TXSTATUS_PENDING ((uint8_t)0x02U) + +/** + * @} + */ + +/** @defgroup HAL_ETH_Aliased_Defines HAL ETH Aliased Defines maintained for legacy purpose + * @{ + */ + +#define VLAN_TAG ETH_VLAN_TAG +#define MIN_ETH_PAYLOAD ETH_MIN_ETH_PAYLOAD +#define MAX_ETH_PAYLOAD ETH_MAX_ETH_PAYLOAD +#define JUMBO_FRAME_PAYLOAD ETH_JUMBO_FRAME_PAYLOAD +#define MACMIIAR_CR_MASK ETH_MACMIIAR_CR_MASK +#define MACCR_CLEAR_MASK ETH_MACCR_CLEAR_MASK +#define MACFCR_CLEAR_MASK ETH_MACFCR_CLEAR_MASK +#define DMAOMR_CLEAR_MASK ETH_DMAOMR_CLEAR_MASK + +#define ETH_MMCCR ((uint32_t)0x00000100U) +#define ETH_MMCRIR ((uint32_t)0x00000104U) +#define ETH_MMCTIR ((uint32_t)0x00000108U) +#define ETH_MMCRIMR ((uint32_t)0x0000010CU) +#define ETH_MMCTIMR ((uint32_t)0x00000110U) +#define ETH_MMCTGFSCCR ((uint32_t)0x0000014CU) +#define ETH_MMCTGFMSCCR ((uint32_t)0x00000150U) +#define ETH_MMCTGFCR ((uint32_t)0x00000168U) +#define ETH_MMCRFCECR ((uint32_t)0x00000194U) +#define ETH_MMCRFAECR ((uint32_t)0x00000198U) +#define ETH_MMCRGUFCR ((uint32_t)0x000001C4U) + +#define ETH_MAC_TXFIFO_FULL ((uint32_t)0x02000000) /* Tx FIFO full */ +#define ETH_MAC_TXFIFONOT_EMPTY ((uint32_t)0x01000000) /* Tx FIFO not empty */ +#define ETH_MAC_TXFIFO_WRITE_ACTIVE ((uint32_t)0x00400000) /* Tx FIFO write active */ +#define ETH_MAC_TXFIFO_IDLE ((uint32_t)0x00000000) /* Tx FIFO read status: Idle */ +#define ETH_MAC_TXFIFO_READ ((uint32_t)0x00100000) /* Tx FIFO read status: Read (transferring data to the MAC transmitter) */ +#define ETH_MAC_TXFIFO_WAITING ((uint32_t)0x00200000) /* Tx FIFO read status: Waiting for TxStatus from MAC transmitter */ +#define ETH_MAC_TXFIFO_WRITING ((uint32_t)0x00300000) /* Tx FIFO read status: Writing the received TxStatus or flushing the TxFIFO */ +#define ETH_MAC_TRANSMISSION_PAUSE ((uint32_t)0x00080000) /* MAC transmitter in pause */ +#define ETH_MAC_TRANSMITFRAMECONTROLLER_IDLE ((uint32_t)0x00000000) /* MAC transmit frame controller: Idle */ +#define ETH_MAC_TRANSMITFRAMECONTROLLER_WAITING ((uint32_t)0x00020000) /* MAC transmit frame controller: Waiting for Status of previous frame or IFG/backoff period to be over */ +#define ETH_MAC_TRANSMITFRAMECONTROLLER_GENRATING_PCF ((uint32_t)0x00040000) /* MAC transmit frame controller: Generating and transmitting a Pause control frame (in full duplex mode) */ +#define ETH_MAC_TRANSMITFRAMECONTROLLER_TRANSFERRING ((uint32_t)0x00060000) /* MAC transmit frame controller: Transferring input frame for transmission */ +#define ETH_MAC_MII_TRANSMIT_ACTIVE ((uint32_t)0x00010000) /* MAC MII transmit engine active */ +#define ETH_MAC_RXFIFO_EMPTY ((uint32_t)0x00000000) /* Rx FIFO fill level: empty */ +#define ETH_MAC_RXFIFO_BELOW_THRESHOLD ((uint32_t)0x00000100) /* Rx FIFO fill level: fill-level below flow-control de-activate threshold */ +#define ETH_MAC_RXFIFO_ABOVE_THRESHOLD ((uint32_t)0x00000200) /* Rx FIFO fill level: fill-level above flow-control activate threshold */ +#define ETH_MAC_RXFIFO_FULL ((uint32_t)0x00000300) /* Rx FIFO fill level: full */ +#if defined(STM32F1) +#else +#define ETH_MAC_READCONTROLLER_IDLE ((uint32_t)0x00000000) /* Rx FIFO read controller IDLE state */ +#define ETH_MAC_READCONTROLLER_READING_DATA ((uint32_t)0x00000020) /* Rx FIFO read controller Reading frame data */ +#define ETH_MAC_READCONTROLLER_READING_STATUS ((uint32_t)0x00000040) /* Rx FIFO read controller Reading frame status (or time-stamp) */ +#endif +#define ETH_MAC_READCONTROLLER_FLUSHING ((uint32_t)0x00000060) /* Rx FIFO read controller Flushing the frame data and status */ +#define ETH_MAC_RXFIFO_WRITE_ACTIVE ((uint32_t)0x00000010) /* Rx FIFO write controller active */ +#define ETH_MAC_SMALL_FIFO_NOTACTIVE ((uint32_t)0x00000000) /* MAC small FIFO read / write controllers not active */ +#define ETH_MAC_SMALL_FIFO_READ_ACTIVE ((uint32_t)0x00000002) /* MAC small FIFO read controller active */ +#define ETH_MAC_SMALL_FIFO_WRITE_ACTIVE ((uint32_t)0x00000004) /* MAC small FIFO write controller active */ +#define ETH_MAC_SMALL_FIFO_RW_ACTIVE ((uint32_t)0x00000006) /* MAC small FIFO read / write controllers active */ +#define ETH_MAC_MII_RECEIVE_PROTOCOL_ACTIVE ((uint32_t)0x00000001) /* MAC MII receive protocol engine active */ + +/** + * @} + */ + +/** @defgroup HAL_DCMI_Aliased_Defines HAL DCMI Aliased Defines maintained for legacy purpose + * @{ + */ +#define HAL_DCMI_ERROR_OVF HAL_DCMI_ERROR_OVR +#define DCMI_IT_OVF DCMI_IT_OVR +#define DCMI_FLAG_OVFRI DCMI_FLAG_OVRRI +#define DCMI_FLAG_OVFMI DCMI_FLAG_OVRMI + +#define HAL_DCMI_ConfigCROP HAL_DCMI_ConfigCrop +#define HAL_DCMI_EnableCROP HAL_DCMI_EnableCrop +#define HAL_DCMI_DisableCROP HAL_DCMI_DisableCrop + +/** + * @} + */ + +#if defined(STM32L4xx) || defined(STM32F7) || defined(STM32F427xx) || defined(STM32F437xx) ||\ + defined(STM32F429xx) || defined(STM32F439xx) || defined(STM32F469xx) || defined(STM32F479xx) +/** @defgroup HAL_DMA2D_Aliased_Defines HAL DMA2D Aliased Defines maintained for legacy purpose + * @{ + */ +#define DMA2D_ARGB8888 DMA2D_OUTPUT_ARGB8888 +#define DMA2D_RGB888 DMA2D_OUTPUT_RGB888 +#define DMA2D_RGB565 DMA2D_OUTPUT_RGB565 +#define DMA2D_ARGB1555 DMA2D_OUTPUT_ARGB1555 +#define DMA2D_ARGB4444 DMA2D_OUTPUT_ARGB4444 + +#define CM_ARGB8888 DMA2D_INPUT_ARGB8888 +#define CM_RGB888 DMA2D_INPUT_RGB888 +#define CM_RGB565 DMA2D_INPUT_RGB565 +#define CM_ARGB1555 DMA2D_INPUT_ARGB1555 +#define CM_ARGB4444 DMA2D_INPUT_ARGB4444 +#define CM_L8 DMA2D_INPUT_L8 +#define CM_AL44 DMA2D_INPUT_AL44 +#define CM_AL88 DMA2D_INPUT_AL88 +#define CM_L4 DMA2D_INPUT_L4 +#define CM_A8 DMA2D_INPUT_A8 +#define CM_A4 DMA2D_INPUT_A4 +/** + * @} + */ +#endif /* STM32L4xx || STM32F7*/ + +/** @defgroup HAL_PPP_Aliased_Defines HAL PPP Aliased Defines maintained for legacy purpose + * @{ + */ + +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** @defgroup HAL_CRYP_Aliased_Functions HAL CRYP Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_CRYP_ComputationCpltCallback HAL_CRYPEx_ComputationCpltCallback +/** + * @} + */ + +/** @defgroup HAL_HASH_Aliased_Functions HAL HASH Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_HASH_STATETypeDef HAL_HASH_StateTypeDef +#define HAL_HASHPhaseTypeDef HAL_HASH_PhaseTypeDef +#define HAL_HMAC_MD5_Finish HAL_HASH_MD5_Finish +#define HAL_HMAC_SHA1_Finish HAL_HASH_SHA1_Finish +#define HAL_HMAC_SHA224_Finish HAL_HASH_SHA224_Finish +#define HAL_HMAC_SHA256_Finish HAL_HASH_SHA256_Finish + +/*HASH Algorithm Selection*/ + +#define HASH_AlgoSelection_SHA1 HASH_ALGOSELECTION_SHA1 +#define HASH_AlgoSelection_SHA224 HASH_ALGOSELECTION_SHA224 +#define HASH_AlgoSelection_SHA256 HASH_ALGOSELECTION_SHA256 +#define HASH_AlgoSelection_MD5 HASH_ALGOSELECTION_MD5 + +#define HASH_AlgoMode_HASH HASH_ALGOMODE_HASH +#define HASH_AlgoMode_HMAC HASH_ALGOMODE_HMAC + +#define HASH_HMACKeyType_ShortKey HASH_HMAC_KEYTYPE_SHORTKEY +#define HASH_HMACKeyType_LongKey HASH_HMAC_KEYTYPE_LONGKEY +/** + * @} + */ + +/** @defgroup HAL_Aliased_Functions HAL Generic Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_EnableDBGSleepMode HAL_DBGMCU_EnableDBGSleepMode +#define HAL_DisableDBGSleepMode HAL_DBGMCU_DisableDBGSleepMode +#define HAL_EnableDBGStopMode HAL_DBGMCU_EnableDBGStopMode +#define HAL_DisableDBGStopMode HAL_DBGMCU_DisableDBGStopMode +#define HAL_EnableDBGStandbyMode HAL_DBGMCU_EnableDBGStandbyMode +#define HAL_DisableDBGStandbyMode HAL_DBGMCU_DisableDBGStandbyMode +#define HAL_DBG_LowPowerConfig(Periph, cmd) (((cmd)==ENABLE)? HAL_DBGMCU_DBG_EnableLowPowerConfig(Periph) : HAL_DBGMCU_DBG_DisableLowPowerConfig(Periph)) +#define HAL_VREFINT_OutputSelect HAL_SYSCFG_VREFINT_OutputSelect +#define HAL_Lock_Cmd(cmd) (((cmd)==ENABLE) ? HAL_SYSCFG_Enable_Lock_VREFINT() : HAL_SYSCFG_Disable_Lock_VREFINT()) +#if defined(STM32L0) +#else +#define HAL_VREFINT_Cmd(cmd) (((cmd)==ENABLE)? HAL_SYSCFG_EnableVREFINT() : HAL_SYSCFG_DisableVREFINT()) +#endif +#define HAL_ADC_EnableBuffer_Cmd(cmd) (((cmd)==ENABLE) ? HAL_ADCEx_EnableVREFINT() : HAL_ADCEx_DisableVREFINT()) +#define HAL_ADC_EnableBufferSensor_Cmd(cmd) (((cmd)==ENABLE) ? HAL_ADCEx_EnableVREFINTTempSensor() : HAL_ADCEx_DisableVREFINTTempSensor()) +/** + * @} + */ + +/** @defgroup HAL_FLASH_Aliased_Functions HAL FLASH Aliased Functions maintained for legacy purpose + * @{ + */ +#define FLASH_HalfPageProgram HAL_FLASHEx_HalfPageProgram +#define FLASH_EnableRunPowerDown HAL_FLASHEx_EnableRunPowerDown +#define FLASH_DisableRunPowerDown HAL_FLASHEx_DisableRunPowerDown +#define HAL_DATA_EEPROMEx_Unlock HAL_FLASHEx_DATAEEPROM_Unlock +#define HAL_DATA_EEPROMEx_Lock HAL_FLASHEx_DATAEEPROM_Lock +#define HAL_DATA_EEPROMEx_Erase HAL_FLASHEx_DATAEEPROM_Erase +#define HAL_DATA_EEPROMEx_Program HAL_FLASHEx_DATAEEPROM_Program + + /** + * @} + */ + +/** @defgroup HAL_I2C_Aliased_Functions HAL I2C Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_I2CEx_AnalogFilter_Config HAL_I2CEx_ConfigAnalogFilter +#define HAL_I2CEx_DigitalFilter_Config HAL_I2CEx_ConfigDigitalFilter +#define HAL_FMPI2CEx_AnalogFilter_Config HAL_FMPI2CEx_ConfigAnalogFilter +#define HAL_FMPI2CEx_DigitalFilter_Config HAL_FMPI2CEx_ConfigDigitalFilter + +#define HAL_I2CFastModePlusConfig(SYSCFG_I2CFastModePlus, cmd) (((cmd)==ENABLE)? HAL_I2CEx_EnableFastModePlus(SYSCFG_I2CFastModePlus): HAL_I2CEx_DisableFastModePlus(SYSCFG_I2CFastModePlus)) + /** + * @} + */ + +/** @defgroup HAL_PWR_Aliased HAL PWR Aliased maintained for legacy purpose + * @{ + */ +#define HAL_PWR_PVDConfig HAL_PWR_ConfigPVD +#define HAL_PWR_DisableBkUpReg HAL_PWREx_DisableBkUpReg +#define HAL_PWR_DisableFlashPowerDown HAL_PWREx_DisableFlashPowerDown +#define HAL_PWR_DisableVddio2Monitor HAL_PWREx_DisableVddio2Monitor +#define HAL_PWR_EnableBkUpReg HAL_PWREx_EnableBkUpReg +#define HAL_PWR_EnableFlashPowerDown HAL_PWREx_EnableFlashPowerDown +#define HAL_PWR_EnableVddio2Monitor HAL_PWREx_EnableVddio2Monitor +#define HAL_PWR_PVD_PVM_IRQHandler HAL_PWREx_PVD_PVM_IRQHandler +#define HAL_PWR_PVDLevelConfig HAL_PWR_ConfigPVD +#define HAL_PWR_Vddio2Monitor_IRQHandler HAL_PWREx_Vddio2Monitor_IRQHandler +#define HAL_PWR_Vddio2MonitorCallback HAL_PWREx_Vddio2MonitorCallback +#define HAL_PWREx_ActivateOverDrive HAL_PWREx_EnableOverDrive +#define HAL_PWREx_DeactivateOverDrive HAL_PWREx_DisableOverDrive +#define HAL_PWREx_DisableSDADCAnalog HAL_PWREx_DisableSDADC +#define HAL_PWREx_EnableSDADCAnalog HAL_PWREx_EnableSDADC +#define HAL_PWREx_PVMConfig HAL_PWREx_ConfigPVM + +#define PWR_MODE_NORMAL PWR_PVD_MODE_NORMAL +#define PWR_MODE_IT_RISING PWR_PVD_MODE_IT_RISING +#define PWR_MODE_IT_FALLING PWR_PVD_MODE_IT_FALLING +#define PWR_MODE_IT_RISING_FALLING PWR_PVD_MODE_IT_RISING_FALLING +#define PWR_MODE_EVENT_RISING PWR_PVD_MODE_EVENT_RISING +#define PWR_MODE_EVENT_FALLING PWR_PVD_MODE_EVENT_FALLING +#define PWR_MODE_EVENT_RISING_FALLING PWR_PVD_MODE_EVENT_RISING_FALLING + +#define CR_OFFSET_BB PWR_CR_OFFSET_BB +#define CSR_OFFSET_BB PWR_CSR_OFFSET_BB + +#define DBP_BitNumber DBP_BIT_NUMBER +#define PVDE_BitNumber PVDE_BIT_NUMBER +#define PMODE_BitNumber PMODE_BIT_NUMBER +#define EWUP_BitNumber EWUP_BIT_NUMBER +#define FPDS_BitNumber FPDS_BIT_NUMBER +#define ODEN_BitNumber ODEN_BIT_NUMBER +#define ODSWEN_BitNumber ODSWEN_BIT_NUMBER +#define MRLVDS_BitNumber MRLVDS_BIT_NUMBER +#define LPLVDS_BitNumber LPLVDS_BIT_NUMBER +#define BRE_BitNumber BRE_BIT_NUMBER + +#define PWR_MODE_EVT PWR_PVD_MODE_NORMAL + + /** + * @} + */ + +/** @defgroup HAL_SMBUS_Aliased_Functions HAL SMBUS Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_SMBUS_Slave_Listen_IT HAL_SMBUS_EnableListen_IT +#define HAL_SMBUS_SlaveAddrCallback HAL_SMBUS_AddrCallback +#define HAL_SMBUS_SlaveListenCpltCallback HAL_SMBUS_ListenCpltCallback +/** + * @} + */ + +/** @defgroup HAL_SPI_Aliased_Functions HAL SPI Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_SPI_FlushRxFifo HAL_SPIEx_FlushRxFifo +/** + * @} + */ + +/** @defgroup HAL_TIM_Aliased_Functions HAL TIM Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_TIM_DMADelayPulseCplt TIM_DMADelayPulseCplt +#define HAL_TIM_DMAError TIM_DMAError +#define HAL_TIM_DMACaptureCplt TIM_DMACaptureCplt +#define HAL_TIMEx_DMACommutationCplt TIMEx_DMACommutationCplt +/** + * @} + */ + +/** @defgroup HAL_UART_Aliased_Functions HAL UART Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_UART_WakeupCallback HAL_UARTEx_WakeupCallback +/** + * @} + */ + +/** @defgroup HAL_LTDC_Aliased_Functions HAL LTDC Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_LTDC_LineEvenCallback HAL_LTDC_LineEventCallback +/** + * @} + */ + + +/** @defgroup HAL_PPP_Aliased_Functions HAL PPP Aliased Functions maintained for legacy purpose + * @{ + */ + +/** + * @} + */ + +/* Exported macros ------------------------------------------------------------*/ + +/** @defgroup HAL_AES_Aliased_Macros HAL CRYP Aliased Macros maintained for legacy purpose + * @{ + */ +#define AES_IT_CC CRYP_IT_CC +#define AES_IT_ERR CRYP_IT_ERR +#define AES_FLAG_CCF CRYP_FLAG_CCF +/** + * @} + */ + +/** @defgroup HAL_Aliased_Macros HAL Generic Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_GET_BOOT_MODE __HAL_SYSCFG_GET_BOOT_MODE +#define __HAL_REMAPMEMORY_FLASH __HAL_SYSCFG_REMAPMEMORY_FLASH +#define __HAL_REMAPMEMORY_SYSTEMFLASH __HAL_SYSCFG_REMAPMEMORY_SYSTEMFLASH +#define __HAL_REMAPMEMORY_SRAM __HAL_SYSCFG_REMAPMEMORY_SRAM +#define __HAL_REMAPMEMORY_FMC __HAL_SYSCFG_REMAPMEMORY_FMC +#define __HAL_REMAPMEMORY_FMC_SDRAM __HAL_SYSCFG_REMAPMEMORY_FMC_SDRAM +#define __HAL_REMAPMEMORY_FSMC __HAL_SYSCFG_REMAPMEMORY_FSMC +#define __HAL_REMAPMEMORY_QUADSPI __HAL_SYSCFG_REMAPMEMORY_QUADSPI +#define __HAL_FMC_BANK __HAL_SYSCFG_FMC_BANK +#define __HAL_GET_FLAG __HAL_SYSCFG_GET_FLAG +#define __HAL_CLEAR_FLAG __HAL_SYSCFG_CLEAR_FLAG +#define __HAL_VREFINT_OUT_ENABLE __HAL_SYSCFG_VREFINT_OUT_ENABLE +#define __HAL_VREFINT_OUT_DISABLE __HAL_SYSCFG_VREFINT_OUT_DISABLE + +#define SYSCFG_FLAG_VREF_READY SYSCFG_FLAG_VREFINT_READY +#define SYSCFG_FLAG_RC48 RCC_FLAG_HSI48 +#define IS_SYSCFG_FASTMODEPLUS_CONFIG IS_I2C_FASTMODEPLUS +#define UFB_MODE_BitNumber UFB_MODE_BIT_NUMBER +#define CMP_PD_BitNumber CMP_PD_BIT_NUMBER + +/** + * @} + */ + + +/** @defgroup HAL_ADC_Aliased_Macros HAL ADC Aliased Macros maintained for legacy purpose + * @{ + */ +#define __ADC_ENABLE __HAL_ADC_ENABLE +#define __ADC_DISABLE __HAL_ADC_DISABLE +#define __HAL_ADC_ENABLING_CONDITIONS ADC_ENABLING_CONDITIONS +#define __HAL_ADC_DISABLING_CONDITIONS ADC_DISABLING_CONDITIONS +#define __HAL_ADC_IS_ENABLED ADC_IS_ENABLE +#define __ADC_IS_ENABLED ADC_IS_ENABLE +#define __HAL_ADC_IS_SOFTWARE_START_REGULAR ADC_IS_SOFTWARE_START_REGULAR +#define __HAL_ADC_IS_SOFTWARE_START_INJECTED ADC_IS_SOFTWARE_START_INJECTED +#define __HAL_ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED ADC_IS_CONVERSION_ONGOING_REGULAR_INJECTED +#define __HAL_ADC_IS_CONVERSION_ONGOING_REGULAR ADC_IS_CONVERSION_ONGOING_REGULAR +#define __HAL_ADC_IS_CONVERSION_ONGOING_INJECTED ADC_IS_CONVERSION_ONGOING_INJECTED +#define __HAL_ADC_IS_CONVERSION_ONGOING ADC_IS_CONVERSION_ONGOING +#define __HAL_ADC_CLEAR_ERRORCODE ADC_CLEAR_ERRORCODE + +#define __HAL_ADC_GET_RESOLUTION ADC_GET_RESOLUTION +#define __HAL_ADC_JSQR_RK ADC_JSQR_RK +#define __HAL_ADC_CFGR_AWD1CH ADC_CFGR_AWD1CH_SHIFT +#define __HAL_ADC_CFGR_AWD23CR ADC_CFGR_AWD23CR +#define __HAL_ADC_CFGR_INJECT_AUTO_CONVERSION ADC_CFGR_INJECT_AUTO_CONVERSION +#define __HAL_ADC_CFGR_INJECT_CONTEXT_QUEUE ADC_CFGR_INJECT_CONTEXT_QUEUE +#define __HAL_ADC_CFGR_INJECT_DISCCONTINUOUS ADC_CFGR_INJECT_DISCCONTINUOUS +#define __HAL_ADC_CFGR_REG_DISCCONTINUOUS ADC_CFGR_REG_DISCCONTINUOUS +#define __HAL_ADC_CFGR_DISCONTINUOUS_NUM ADC_CFGR_DISCONTINUOUS_NUM +#define __HAL_ADC_CFGR_AUTOWAIT ADC_CFGR_AUTOWAIT +#define __HAL_ADC_CFGR_CONTINUOUS ADC_CFGR_CONTINUOUS +#define __HAL_ADC_CFGR_OVERRUN ADC_CFGR_OVERRUN +#define __HAL_ADC_CFGR_DMACONTREQ ADC_CFGR_DMACONTREQ +#define __HAL_ADC_CFGR_EXTSEL ADC_CFGR_EXTSEL_SET +#define __HAL_ADC_JSQR_JEXTSEL ADC_JSQR_JEXTSEL_SET +#define __HAL_ADC_OFR_CHANNEL ADC_OFR_CHANNEL +#define __HAL_ADC_DIFSEL_CHANNEL ADC_DIFSEL_CHANNEL +#define __HAL_ADC_CALFACT_DIFF_SET ADC_CALFACT_DIFF_SET +#define __HAL_ADC_CALFACT_DIFF_GET ADC_CALFACT_DIFF_GET +#define __HAL_ADC_TRX_HIGHTHRESHOLD ADC_TRX_HIGHTHRESHOLD + +#define __HAL_ADC_OFFSET_SHIFT_RESOLUTION ADC_OFFSET_SHIFT_RESOLUTION +#define __HAL_ADC_AWD1THRESHOLD_SHIFT_RESOLUTION ADC_AWD1THRESHOLD_SHIFT_RESOLUTION +#define __HAL_ADC_AWD23THRESHOLD_SHIFT_RESOLUTION ADC_AWD23THRESHOLD_SHIFT_RESOLUTION +#define __HAL_ADC_COMMON_REGISTER ADC_COMMON_REGISTER +#define __HAL_ADC_COMMON_CCR_MULTI ADC_COMMON_CCR_MULTI +#define __HAL_ADC_MULTIMODE_IS_ENABLED ADC_MULTIMODE_IS_ENABLE +#define __ADC_MULTIMODE_IS_ENABLED ADC_MULTIMODE_IS_ENABLE +#define __HAL_ADC_NONMULTIMODE_OR_MULTIMODEMASTER ADC_NONMULTIMODE_OR_MULTIMODEMASTER +#define __HAL_ADC_COMMON_ADC_OTHER ADC_COMMON_ADC_OTHER +#define __HAL_ADC_MULTI_SLAVE ADC_MULTI_SLAVE + +#define __HAL_ADC_SQR1_L ADC_SQR1_L_SHIFT +#define __HAL_ADC_JSQR_JL ADC_JSQR_JL_SHIFT +#define __HAL_ADC_JSQR_RK_JL ADC_JSQR_RK_JL +#define __HAL_ADC_CR1_DISCONTINUOUS_NUM ADC_CR1_DISCONTINUOUS_NUM +#define __HAL_ADC_CR1_SCAN ADC_CR1_SCAN_SET +#define __HAL_ADC_CONVCYCLES_MAX_RANGE ADC_CONVCYCLES_MAX_RANGE +#define __HAL_ADC_CLOCK_PRESCALER_RANGE ADC_CLOCK_PRESCALER_RANGE +#define __HAL_ADC_GET_CLOCK_PRESCALER ADC_GET_CLOCK_PRESCALER + +#define __HAL_ADC_SQR1 ADC_SQR1 +#define __HAL_ADC_SMPR1 ADC_SMPR1 +#define __HAL_ADC_SMPR2 ADC_SMPR2 +#define __HAL_ADC_SQR3_RK ADC_SQR3_RK +#define __HAL_ADC_SQR2_RK ADC_SQR2_RK +#define __HAL_ADC_SQR1_RK ADC_SQR1_RK +#define __HAL_ADC_CR2_CONTINUOUS ADC_CR2_CONTINUOUS +#define __HAL_ADC_CR1_DISCONTINUOUS ADC_CR1_DISCONTINUOUS +#define __HAL_ADC_CR1_SCANCONV ADC_CR1_SCANCONV +#define __HAL_ADC_CR2_EOCSelection ADC_CR2_EOCSelection +#define __HAL_ADC_CR2_DMAContReq ADC_CR2_DMAContReq +#define __HAL_ADC_GET_RESOLUTION ADC_GET_RESOLUTION +#define __HAL_ADC_JSQR ADC_JSQR + +#define __HAL_ADC_CHSELR_CHANNEL ADC_CHSELR_CHANNEL +#define __HAL_ADC_CFGR1_REG_DISCCONTINUOUS ADC_CFGR1_REG_DISCCONTINUOUS +#define __HAL_ADC_CFGR1_AUTOOFF ADC_CFGR1_AUTOOFF +#define __HAL_ADC_CFGR1_AUTOWAIT ADC_CFGR1_AUTOWAIT +#define __HAL_ADC_CFGR1_CONTINUOUS ADC_CFGR1_CONTINUOUS +#define __HAL_ADC_CFGR1_OVERRUN ADC_CFGR1_OVERRUN +#define __HAL_ADC_CFGR1_SCANDIR ADC_CFGR1_SCANDIR +#define __HAL_ADC_CFGR1_DMACONTREQ ADC_CFGR1_DMACONTREQ + +/** + * @} + */ + +/** @defgroup HAL_DAC_Aliased_Macros HAL DAC Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_DHR12R1_ALIGNEMENT DAC_DHR12R1_ALIGNMENT +#define __HAL_DHR12R2_ALIGNEMENT DAC_DHR12R2_ALIGNMENT +#define __HAL_DHR12RD_ALIGNEMENT DAC_DHR12RD_ALIGNMENT +#define IS_DAC_GENERATE_WAVE IS_DAC_WAVE + +/** + * @} + */ + +/** @defgroup HAL_DBGMCU_Aliased_Macros HAL DBGMCU Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_FREEZE_TIM1_DBGMCU __HAL_DBGMCU_FREEZE_TIM1 +#define __HAL_UNFREEZE_TIM1_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM1 +#define __HAL_FREEZE_TIM2_DBGMCU __HAL_DBGMCU_FREEZE_TIM2 +#define __HAL_UNFREEZE_TIM2_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM2 +#define __HAL_FREEZE_TIM3_DBGMCU __HAL_DBGMCU_FREEZE_TIM3 +#define __HAL_UNFREEZE_TIM3_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM3 +#define __HAL_FREEZE_TIM4_DBGMCU __HAL_DBGMCU_FREEZE_TIM4 +#define __HAL_UNFREEZE_TIM4_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM4 +#define __HAL_FREEZE_TIM5_DBGMCU __HAL_DBGMCU_FREEZE_TIM5 +#define __HAL_UNFREEZE_TIM5_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM5 +#define __HAL_FREEZE_TIM6_DBGMCU __HAL_DBGMCU_FREEZE_TIM6 +#define __HAL_UNFREEZE_TIM6_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM6 +#define __HAL_FREEZE_TIM7_DBGMCU __HAL_DBGMCU_FREEZE_TIM7 +#define __HAL_UNFREEZE_TIM7_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM7 +#define __HAL_FREEZE_TIM8_DBGMCU __HAL_DBGMCU_FREEZE_TIM8 +#define __HAL_UNFREEZE_TIM8_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM8 + +#define __HAL_FREEZE_TIM9_DBGMCU __HAL_DBGMCU_FREEZE_TIM9 +#define __HAL_UNFREEZE_TIM9_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM9 +#define __HAL_FREEZE_TIM10_DBGMCU __HAL_DBGMCU_FREEZE_TIM10 +#define __HAL_UNFREEZE_TIM10_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM10 +#define __HAL_FREEZE_TIM11_DBGMCU __HAL_DBGMCU_FREEZE_TIM11 +#define __HAL_UNFREEZE_TIM11_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM11 +#define __HAL_FREEZE_TIM12_DBGMCU __HAL_DBGMCU_FREEZE_TIM12 +#define __HAL_UNFREEZE_TIM12_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM12 +#define __HAL_FREEZE_TIM13_DBGMCU __HAL_DBGMCU_FREEZE_TIM13 +#define __HAL_UNFREEZE_TIM13_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM13 +#define __HAL_FREEZE_TIM14_DBGMCU __HAL_DBGMCU_FREEZE_TIM14 +#define __HAL_UNFREEZE_TIM14_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM14 +#define __HAL_FREEZE_CAN2_DBGMCU __HAL_DBGMCU_FREEZE_CAN2 +#define __HAL_UNFREEZE_CAN2_DBGMCU __HAL_DBGMCU_UNFREEZE_CAN2 + + +#define __HAL_FREEZE_TIM15_DBGMCU __HAL_DBGMCU_FREEZE_TIM15 +#define __HAL_UNFREEZE_TIM15_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM15 +#define __HAL_FREEZE_TIM16_DBGMCU __HAL_DBGMCU_FREEZE_TIM16 +#define __HAL_UNFREEZE_TIM16_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM16 +#define __HAL_FREEZE_TIM17_DBGMCU __HAL_DBGMCU_FREEZE_TIM17 +#define __HAL_UNFREEZE_TIM17_DBGMCU __HAL_DBGMCU_UNFREEZE_TIM17 +#define __HAL_FREEZE_RTC_DBGMCU __HAL_DBGMCU_FREEZE_RTC +#define __HAL_UNFREEZE_RTC_DBGMCU __HAL_DBGMCU_UNFREEZE_RTC +#define __HAL_FREEZE_WWDG_DBGMCU __HAL_DBGMCU_FREEZE_WWDG +#define __HAL_UNFREEZE_WWDG_DBGMCU __HAL_DBGMCU_UNFREEZE_WWDG +#define __HAL_FREEZE_IWDG_DBGMCU __HAL_DBGMCU_FREEZE_IWDG +#define __HAL_UNFREEZE_IWDG_DBGMCU __HAL_DBGMCU_UNFREEZE_IWDG +#define __HAL_FREEZE_I2C1_TIMEOUT_DBGMCU __HAL_DBGMCU_FREEZE_I2C1_TIMEOUT +#define __HAL_UNFREEZE_I2C1_TIMEOUT_DBGMCU __HAL_DBGMCU_UNFREEZE_I2C1_TIMEOUT +#define __HAL_FREEZE_I2C2_TIMEOUT_DBGMCU __HAL_DBGMCU_FREEZE_I2C2_TIMEOUT +#define __HAL_UNFREEZE_I2C2_TIMEOUT_DBGMCU __HAL_DBGMCU_UNFREEZE_I2C2_TIMEOUT +#define __HAL_FREEZE_I2C3_TIMEOUT_DBGMCU __HAL_DBGMCU_FREEZE_I2C3_TIMEOUT +#define __HAL_UNFREEZE_I2C3_TIMEOUT_DBGMCU __HAL_DBGMCU_UNFREEZE_I2C3_TIMEOUT +#define __HAL_FREEZE_CAN1_DBGMCU __HAL_DBGMCU_FREEZE_CAN1 +#define __HAL_UNFREEZE_CAN1_DBGMCU __HAL_DBGMCU_UNFREEZE_CAN1 +#define __HAL_FREEZE_LPTIM1_DBGMCU __HAL_DBGMCU_FREEZE_LPTIM1 +#define __HAL_UNFREEZE_LPTIM1_DBGMCU __HAL_DBGMCU_UNFREEZE_LPTIM1 +#define __HAL_FREEZE_LPTIM2_DBGMCU __HAL_DBGMCU_FREEZE_LPTIM2 +#define __HAL_UNFREEZE_LPTIM2_DBGMCU __HAL_DBGMCU_UNFREEZE_LPTIM2 + +/** + * @} + */ + +/** @defgroup HAL_COMP_Aliased_Macros HAL COMP Aliased Macros maintained for legacy purpose + * @{ + */ +#if defined(STM32F3) +#define COMP_START __HAL_COMP_ENABLE +#define COMP_STOP __HAL_COMP_DISABLE +#define COMP_LOCK __HAL_COMP_LOCK + +#if defined(STM32F301x8) || defined(STM32F302x8) || defined(STM32F318xx) || defined(STM32F303x8) || defined(STM32F334x8) || defined(STM32F328xx) +#define __HAL_COMP_EXTI_RISING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_RISING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_ENABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_RISING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_RISING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_DISABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_ENABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_DISABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_ENABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_IT() : \ + __HAL_COMP_COMP6_EXTI_ENABLE_IT()) +#define __HAL_COMP_EXTI_DISABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_IT() : \ + __HAL_COMP_COMP6_EXTI_DISABLE_IT()) +#define __HAL_COMP_EXTI_GET_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_GET_FLAG() : \ + __HAL_COMP_COMP6_EXTI_GET_FLAG()) +#define __HAL_COMP_EXTI_CLEAR_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_CLEAR_FLAG() : \ + __HAL_COMP_COMP6_EXTI_CLEAR_FLAG()) +# endif +# if defined(STM32F302xE) || defined(STM32F302xC) +#define __HAL_COMP_EXTI_RISING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_RISING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_ENABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_RISING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_RISING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_DISABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_ENABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP6_EXTI_DISABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_ENABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_IT() : \ + __HAL_COMP_COMP6_EXTI_ENABLE_IT()) +#define __HAL_COMP_EXTI_DISABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_IT() : \ + __HAL_COMP_COMP6_EXTI_DISABLE_IT()) +#define __HAL_COMP_EXTI_GET_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_GET_FLAG() : \ + __HAL_COMP_COMP6_EXTI_GET_FLAG()) +#define __HAL_COMP_EXTI_CLEAR_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_CLEAR_FLAG() : \ + __HAL_COMP_COMP6_EXTI_CLEAR_FLAG()) +# endif +# if defined(STM32F303xE) || defined(STM32F398xx) || defined(STM32F303xC) || defined(STM32F358xx) +#define __HAL_COMP_EXTI_RISING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_ENABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_ENABLE_RISING_EDGE() : \ + __HAL_COMP_COMP7_EXTI_ENABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_RISING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_DISABLE_RISING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_DISABLE_RISING_EDGE() : \ + __HAL_COMP_COMP7_EXTI_DISABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_ENABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_ENABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP7_EXTI_ENABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_DISABLE_FALLING_EDGE() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_DISABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP7_EXTI_DISABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_ENABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_ENABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_ENABLE_IT() : \ + __HAL_COMP_COMP7_EXTI_ENABLE_IT()) +#define __HAL_COMP_EXTI_DISABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_DISABLE_IT() : \ + ((__EXTILINE__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_DISABLE_IT() : \ + __HAL_COMP_COMP7_EXTI_DISABLE_IT()) +#define __HAL_COMP_EXTI_GET_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_GET_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_GET_FLAG() : \ + __HAL_COMP_COMP7_EXTI_GET_FLAG()) +#define __HAL_COMP_EXTI_CLEAR_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP2) ? __HAL_COMP_COMP2_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP3) ? __HAL_COMP_COMP3_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP4) ? __HAL_COMP_COMP4_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP5) ? __HAL_COMP_COMP5_EXTI_CLEAR_FLAG() : \ + ((__FLAG__) == COMP_EXTI_LINE_COMP6) ? __HAL_COMP_COMP6_EXTI_CLEAR_FLAG() : \ + __HAL_COMP_COMP7_EXTI_CLEAR_FLAG()) +# endif +# if defined(STM32F373xC) ||defined(STM32F378xx) +#define __HAL_COMP_EXTI_RISING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_RISING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_ENABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_RISING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_RISING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_DISABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_ENABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_DISABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_ENABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_IT() : \ + __HAL_COMP_COMP2_EXTI_ENABLE_IT()) +#define __HAL_COMP_EXTI_DISABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_IT() : \ + __HAL_COMP_COMP2_EXTI_DISABLE_IT()) +#define __HAL_COMP_EXTI_GET_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_GET_FLAG() : \ + __HAL_COMP_COMP2_EXTI_GET_FLAG()) +#define __HAL_COMP_EXTI_CLEAR_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_CLEAR_FLAG() : \ + __HAL_COMP_COMP2_EXTI_CLEAR_FLAG()) +# endif +#else +#define __HAL_COMP_EXTI_RISING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_RISING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_ENABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_RISING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_RISING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_DISABLE_RISING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_ENABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_ENABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_FALLING_IT_DISABLE(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_FALLING_EDGE() : \ + __HAL_COMP_COMP2_EXTI_DISABLE_FALLING_EDGE()) +#define __HAL_COMP_EXTI_ENABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_ENABLE_IT() : \ + __HAL_COMP_COMP2_EXTI_ENABLE_IT()) +#define __HAL_COMP_EXTI_DISABLE_IT(__EXTILINE__) (((__EXTILINE__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_DISABLE_IT() : \ + __HAL_COMP_COMP2_EXTI_DISABLE_IT()) +#define __HAL_COMP_EXTI_GET_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_GET_FLAG() : \ + __HAL_COMP_COMP2_EXTI_GET_FLAG()) +#define __HAL_COMP_EXTI_CLEAR_FLAG(__FLAG__) (((__FLAG__) == COMP_EXTI_LINE_COMP1) ? __HAL_COMP_COMP1_EXTI_CLEAR_FLAG() : \ + __HAL_COMP_COMP2_EXTI_CLEAR_FLAG()) +#endif + +#define __HAL_COMP_GET_EXTI_LINE COMP_GET_EXTI_LINE + +#if defined(STM32L0) || defined(STM32L4) +/* Note: On these STM32 families, the only argument of this macro */ +/* is COMP_FLAG_LOCK. */ +/* This macro is replaced by __HAL_COMP_IS_LOCKED with only HAL handle */ +/* argument. */ +#define __HAL_COMP_GET_FLAG(__HANDLE__, __FLAG__) (__HAL_COMP_IS_LOCKED(__HANDLE__)) +#endif +/** + * @} + */ + +#if defined(STM32L0) || defined(STM32L4) +/** @defgroup HAL_COMP_Aliased_Functions HAL COMP Aliased Functions maintained for legacy purpose + * @{ + */ +#define HAL_COMP_Start_IT HAL_COMP_Start /* Function considered as legacy as EXTI event or IT configuration is done into HAL_COMP_Init() */ +#define HAL_COMP_Stop_IT HAL_COMP_Stop /* Function considered as legacy as EXTI event or IT configuration is done into HAL_COMP_Init() */ +/** + * @} + */ +#endif + +/** @defgroup HAL_DAC_Aliased_Macros HAL DAC Aliased Macros maintained for legacy purpose + * @{ + */ + +#define IS_DAC_WAVE(WAVE) (((WAVE) == DAC_WAVE_NONE) || \ + ((WAVE) == DAC_WAVE_NOISE)|| \ + ((WAVE) == DAC_WAVE_TRIANGLE)) + +/** + * @} + */ + +/** @defgroup HAL_FLASH_Aliased_Macros HAL FLASH Aliased Macros maintained for legacy purpose + * @{ + */ + +#define IS_WRPAREA IS_OB_WRPAREA +#define IS_TYPEPROGRAM IS_FLASH_TYPEPROGRAM +#define IS_TYPEPROGRAMFLASH IS_FLASH_TYPEPROGRAM +#define IS_TYPEERASE IS_FLASH_TYPEERASE +#define IS_NBSECTORS IS_FLASH_NBSECTORS +#define IS_OB_WDG_SOURCE IS_OB_IWDG_SOURCE + +/** + * @} + */ + +/** @defgroup HAL_I2C_Aliased_Macros HAL I2C Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __HAL_I2C_RESET_CR2 I2C_RESET_CR2 +#define __HAL_I2C_GENERATE_START I2C_GENERATE_START +#define __HAL_I2C_FREQ_RANGE I2C_FREQ_RANGE +#define __HAL_I2C_RISE_TIME I2C_RISE_TIME +#define __HAL_I2C_SPEED_STANDARD I2C_SPEED_STANDARD +#define __HAL_I2C_SPEED_FAST I2C_SPEED_FAST +#define __HAL_I2C_SPEED I2C_SPEED +#define __HAL_I2C_7BIT_ADD_WRITE I2C_7BIT_ADD_WRITE +#define __HAL_I2C_7BIT_ADD_READ I2C_7BIT_ADD_READ +#define __HAL_I2C_10BIT_ADDRESS I2C_10BIT_ADDRESS +#define __HAL_I2C_10BIT_HEADER_WRITE I2C_10BIT_HEADER_WRITE +#define __HAL_I2C_10BIT_HEADER_READ I2C_10BIT_HEADER_READ +#define __HAL_I2C_MEM_ADD_MSB I2C_MEM_ADD_MSB +#define __HAL_I2C_MEM_ADD_LSB I2C_MEM_ADD_LSB +#define __HAL_I2C_FREQRANGE I2C_FREQRANGE +/** + * @} + */ + +/** @defgroup HAL_I2S_Aliased_Macros HAL I2S Aliased Macros maintained for legacy purpose + * @{ + */ + +#define IS_I2S_INSTANCE IS_I2S_ALL_INSTANCE +#define IS_I2S_INSTANCE_EXT IS_I2S_ALL_INSTANCE_EXT + +/** + * @} + */ + +/** @defgroup HAL_IRDA_Aliased_Macros HAL IRDA Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __IRDA_DISABLE __HAL_IRDA_DISABLE +#define __IRDA_ENABLE __HAL_IRDA_ENABLE + +#define __HAL_IRDA_GETCLOCKSOURCE IRDA_GETCLOCKSOURCE +#define __HAL_IRDA_MASK_COMPUTATION IRDA_MASK_COMPUTATION +#define __IRDA_GETCLOCKSOURCE IRDA_GETCLOCKSOURCE +#define __IRDA_MASK_COMPUTATION IRDA_MASK_COMPUTATION + +#define IS_IRDA_ONEBIT_SAMPLE IS_IRDA_ONE_BIT_SAMPLE + + +/** + * @} + */ + + +/** @defgroup HAL_IWDG_Aliased_Macros HAL IWDG Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_IWDG_ENABLE_WRITE_ACCESS IWDG_ENABLE_WRITE_ACCESS +#define __HAL_IWDG_DISABLE_WRITE_ACCESS IWDG_DISABLE_WRITE_ACCESS +/** + * @} + */ + + +/** @defgroup HAL_LPTIM_Aliased_Macros HAL LPTIM Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __HAL_LPTIM_ENABLE_INTERRUPT __HAL_LPTIM_ENABLE_IT +#define __HAL_LPTIM_DISABLE_INTERRUPT __HAL_LPTIM_DISABLE_IT +#define __HAL_LPTIM_GET_ITSTATUS __HAL_LPTIM_GET_IT_SOURCE + +/** + * @} + */ + + +/** @defgroup HAL_OPAMP_Aliased_Macros HAL OPAMP Aliased Macros maintained for legacy purpose + * @{ + */ +#define __OPAMP_CSR_OPAXPD OPAMP_CSR_OPAXPD +#define __OPAMP_CSR_S3SELX OPAMP_CSR_S3SELX +#define __OPAMP_CSR_S4SELX OPAMP_CSR_S4SELX +#define __OPAMP_CSR_S5SELX OPAMP_CSR_S5SELX +#define __OPAMP_CSR_S6SELX OPAMP_CSR_S6SELX +#define __OPAMP_CSR_OPAXCAL_L OPAMP_CSR_OPAXCAL_L +#define __OPAMP_CSR_OPAXCAL_H OPAMP_CSR_OPAXCAL_H +#define __OPAMP_CSR_OPAXLPM OPAMP_CSR_OPAXLPM +#define __OPAMP_CSR_ALL_SWITCHES OPAMP_CSR_ALL_SWITCHES +#define __OPAMP_CSR_ANAWSELX OPAMP_CSR_ANAWSELX +#define __OPAMP_CSR_OPAXCALOUT OPAMP_CSR_OPAXCALOUT +#define __OPAMP_OFFSET_TRIM_BITSPOSITION OPAMP_OFFSET_TRIM_BITSPOSITION +#define __OPAMP_OFFSET_TRIM_SET OPAMP_OFFSET_TRIM_SET + +/** + * @} + */ + + +/** @defgroup HAL_PWR_Aliased_Macros HAL PWR Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_PVD_EVENT_DISABLE __HAL_PWR_PVD_EXTI_DISABLE_EVENT +#define __HAL_PVD_EVENT_ENABLE __HAL_PWR_PVD_EXTI_ENABLE_EVENT +#define __HAL_PVD_EXTI_FALLINGTRIGGER_DISABLE __HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE +#define __HAL_PVD_EXTI_FALLINGTRIGGER_ENABLE __HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE +#define __HAL_PVD_EXTI_RISINGTRIGGER_DISABLE __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE +#define __HAL_PVD_EXTI_RISINGTRIGGER_ENABLE __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE +#define __HAL_PVM_EVENT_DISABLE __HAL_PWR_PVM_EVENT_DISABLE +#define __HAL_PVM_EVENT_ENABLE __HAL_PWR_PVM_EVENT_ENABLE +#define __HAL_PVM_EXTI_FALLINGTRIGGER_DISABLE __HAL_PWR_PVM_EXTI_FALLINGTRIGGER_DISABLE +#define __HAL_PVM_EXTI_FALLINGTRIGGER_ENABLE __HAL_PWR_PVM_EXTI_FALLINGTRIGGER_ENABLE +#define __HAL_PVM_EXTI_RISINGTRIGGER_DISABLE __HAL_PWR_PVM_EXTI_RISINGTRIGGER_DISABLE +#define __HAL_PVM_EXTI_RISINGTRIGGER_ENABLE __HAL_PWR_PVM_EXTI_RISINGTRIGGER_ENABLE +#define __HAL_PWR_INTERNALWAKEUP_DISABLE HAL_PWREx_DisableInternalWakeUpLine +#define __HAL_PWR_INTERNALWAKEUP_ENABLE HAL_PWREx_EnableInternalWakeUpLine +#define __HAL_PWR_PULL_UP_DOWN_CONFIG_DISABLE HAL_PWREx_DisablePullUpPullDownConfig +#define __HAL_PWR_PULL_UP_DOWN_CONFIG_ENABLE HAL_PWREx_EnablePullUpPullDownConfig +#define __HAL_PWR_PVD_EXTI_CLEAR_EGDE_TRIGGER() do { __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE();__HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE(); } while(0) +#define __HAL_PWR_PVD_EXTI_EVENT_DISABLE __HAL_PWR_PVD_EXTI_DISABLE_EVENT +#define __HAL_PWR_PVD_EXTI_EVENT_ENABLE __HAL_PWR_PVD_EXTI_ENABLE_EVENT +#define __HAL_PWR_PVD_EXTI_FALLINGTRIGGER_DISABLE __HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE +#define __HAL_PWR_PVD_EXTI_FALLINGTRIGGER_ENABLE __HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE +#define __HAL_PWR_PVD_EXTI_RISINGTRIGGER_DISABLE __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE +#define __HAL_PWR_PVD_EXTI_RISINGTRIGGER_ENABLE __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE +#define __HAL_PWR_PVD_EXTI_SET_FALLING_EGDE_TRIGGER __HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE +#define __HAL_PWR_PVD_EXTI_SET_RISING_EDGE_TRIGGER __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE +#define __HAL_PWR_PVM_DISABLE() do { HAL_PWREx_DisablePVM1();HAL_PWREx_DisablePVM2();HAL_PWREx_DisablePVM3();HAL_PWREx_DisablePVM4(); } while(0) +#define __HAL_PWR_PVM_ENABLE() do { HAL_PWREx_EnablePVM1();HAL_PWREx_EnablePVM2();HAL_PWREx_EnablePVM3();HAL_PWREx_EnablePVM4(); } while(0) +#define __HAL_PWR_SRAM2CONTENT_PRESERVE_DISABLE HAL_PWREx_DisableSRAM2ContentRetention +#define __HAL_PWR_SRAM2CONTENT_PRESERVE_ENABLE HAL_PWREx_EnableSRAM2ContentRetention +#define __HAL_PWR_VDDIO2_DISABLE HAL_PWREx_DisableVddIO2 +#define __HAL_PWR_VDDIO2_ENABLE HAL_PWREx_EnableVddIO2 +#define __HAL_PWR_VDDIO2_EXTI_CLEAR_EGDE_TRIGGER __HAL_PWR_VDDIO2_EXTI_DISABLE_FALLING_EDGE +#define __HAL_PWR_VDDIO2_EXTI_SET_FALLING_EGDE_TRIGGER __HAL_PWR_VDDIO2_EXTI_ENABLE_FALLING_EDGE +#define __HAL_PWR_VDDUSB_DISABLE HAL_PWREx_DisableVddUSB +#define __HAL_PWR_VDDUSB_ENABLE HAL_PWREx_EnableVddUSB + +#if defined (STM32F4) +#define __HAL_PVD_EXTI_ENABLE_IT(PWR_EXTI_LINE_PVD) __HAL_PWR_PVD_EXTI_ENABLE_IT() +#define __HAL_PVD_EXTI_DISABLE_IT(PWR_EXTI_LINE_PVD) __HAL_PWR_PVD_EXTI_DISABLE_IT() +#define __HAL_PVD_EXTI_GET_FLAG(PWR_EXTI_LINE_PVD) __HAL_PWR_PVD_EXTI_GET_FLAG() +#define __HAL_PVD_EXTI_CLEAR_FLAG(PWR_EXTI_LINE_PVD) __HAL_PWR_PVD_EXTI_CLEAR_FLAG() +#define __HAL_PVD_EXTI_GENERATE_SWIT(PWR_EXTI_LINE_PVD) __HAL_PWR_PVD_EXTI_GENERATE_SWIT() +#else +#define __HAL_PVD_EXTI_CLEAR_FLAG __HAL_PWR_PVD_EXTI_CLEAR_FLAG +#define __HAL_PVD_EXTI_DISABLE_IT __HAL_PWR_PVD_EXTI_DISABLE_IT +#define __HAL_PVD_EXTI_ENABLE_IT __HAL_PWR_PVD_EXTI_ENABLE_IT +#define __HAL_PVD_EXTI_GENERATE_SWIT __HAL_PWR_PVD_EXTI_GENERATE_SWIT +#define __HAL_PVD_EXTI_GET_FLAG __HAL_PWR_PVD_EXTI_GET_FLAG +#endif /* STM32F4 */ +/** + * @} + */ + + +/** @defgroup HAL_RCC_Aliased HAL RCC Aliased maintained for legacy purpose + * @{ + */ + +#define RCC_StopWakeUpClock_MSI RCC_STOP_WAKEUPCLOCK_MSI +#define RCC_StopWakeUpClock_HSI RCC_STOP_WAKEUPCLOCK_HSI + +#define HAL_RCC_CCSCallback HAL_RCC_CSSCallback +#define HAL_RC48_EnableBuffer_Cmd(cmd) (((cmd)==ENABLE) ? HAL_RCCEx_EnableHSI48_VREFINT() : HAL_RCCEx_DisableHSI48_VREFINT()) + +#define __ADC_CLK_DISABLE __HAL_RCC_ADC_CLK_DISABLE +#define __ADC_CLK_ENABLE __HAL_RCC_ADC_CLK_ENABLE +#define __ADC_CLK_SLEEP_DISABLE __HAL_RCC_ADC_CLK_SLEEP_DISABLE +#define __ADC_CLK_SLEEP_ENABLE __HAL_RCC_ADC_CLK_SLEEP_ENABLE +#define __ADC_FORCE_RESET __HAL_RCC_ADC_FORCE_RESET +#define __ADC_RELEASE_RESET __HAL_RCC_ADC_RELEASE_RESET +#define __ADC1_CLK_DISABLE __HAL_RCC_ADC1_CLK_DISABLE +#define __ADC1_CLK_ENABLE __HAL_RCC_ADC1_CLK_ENABLE +#define __ADC1_FORCE_RESET __HAL_RCC_ADC1_FORCE_RESET +#define __ADC1_RELEASE_RESET __HAL_RCC_ADC1_RELEASE_RESET +#define __ADC1_CLK_SLEEP_ENABLE __HAL_RCC_ADC1_CLK_SLEEP_ENABLE +#define __ADC1_CLK_SLEEP_DISABLE __HAL_RCC_ADC1_CLK_SLEEP_DISABLE +#define __ADC2_CLK_DISABLE __HAL_RCC_ADC2_CLK_DISABLE +#define __ADC2_CLK_ENABLE __HAL_RCC_ADC2_CLK_ENABLE +#define __ADC2_FORCE_RESET __HAL_RCC_ADC2_FORCE_RESET +#define __ADC2_RELEASE_RESET __HAL_RCC_ADC2_RELEASE_RESET +#define __ADC3_CLK_DISABLE __HAL_RCC_ADC3_CLK_DISABLE +#define __ADC3_CLK_ENABLE __HAL_RCC_ADC3_CLK_ENABLE +#define __ADC3_FORCE_RESET __HAL_RCC_ADC3_FORCE_RESET +#define __ADC3_RELEASE_RESET __HAL_RCC_ADC3_RELEASE_RESET +#define __AES_CLK_DISABLE __HAL_RCC_AES_CLK_DISABLE +#define __AES_CLK_ENABLE __HAL_RCC_AES_CLK_ENABLE +#define __AES_CLK_SLEEP_DISABLE __HAL_RCC_AES_CLK_SLEEP_DISABLE +#define __AES_CLK_SLEEP_ENABLE __HAL_RCC_AES_CLK_SLEEP_ENABLE +#define __AES_FORCE_RESET __HAL_RCC_AES_FORCE_RESET +#define __AES_RELEASE_RESET __HAL_RCC_AES_RELEASE_RESET +#define __CRYP_CLK_SLEEP_ENABLE __HAL_RCC_CRYP_CLK_SLEEP_ENABLE +#define __CRYP_CLK_SLEEP_DISABLE __HAL_RCC_CRYP_CLK_SLEEP_DISABLE +#define __CRYP_CLK_ENABLE __HAL_RCC_CRYP_CLK_ENABLE +#define __CRYP_CLK_DISABLE __HAL_RCC_CRYP_CLK_DISABLE +#define __CRYP_FORCE_RESET __HAL_RCC_CRYP_FORCE_RESET +#define __CRYP_RELEASE_RESET __HAL_RCC_CRYP_RELEASE_RESET +#define __AFIO_CLK_DISABLE __HAL_RCC_AFIO_CLK_DISABLE +#define __AFIO_CLK_ENABLE __HAL_RCC_AFIO_CLK_ENABLE +#define __AFIO_FORCE_RESET __HAL_RCC_AFIO_FORCE_RESET +#define __AFIO_RELEASE_RESET __HAL_RCC_AFIO_RELEASE_RESET +#define __AHB_FORCE_RESET __HAL_RCC_AHB_FORCE_RESET +#define __AHB_RELEASE_RESET __HAL_RCC_AHB_RELEASE_RESET +#define __AHB1_FORCE_RESET __HAL_RCC_AHB1_FORCE_RESET +#define __AHB1_RELEASE_RESET __HAL_RCC_AHB1_RELEASE_RESET +#define __AHB2_FORCE_RESET __HAL_RCC_AHB2_FORCE_RESET +#define __AHB2_RELEASE_RESET __HAL_RCC_AHB2_RELEASE_RESET +#define __AHB3_FORCE_RESET __HAL_RCC_AHB3_FORCE_RESET +#define __AHB3_RELEASE_RESET __HAL_RCC_AHB3_RELEASE_RESET +#define __APB1_FORCE_RESET __HAL_RCC_APB1_FORCE_RESET +#define __APB1_RELEASE_RESET __HAL_RCC_APB1_RELEASE_RESET +#define __APB2_FORCE_RESET __HAL_RCC_APB2_FORCE_RESET +#define __APB2_RELEASE_RESET __HAL_RCC_APB2_RELEASE_RESET +#define __BKP_CLK_DISABLE __HAL_RCC_BKP_CLK_DISABLE +#define __BKP_CLK_ENABLE __HAL_RCC_BKP_CLK_ENABLE +#define __BKP_FORCE_RESET __HAL_RCC_BKP_FORCE_RESET +#define __BKP_RELEASE_RESET __HAL_RCC_BKP_RELEASE_RESET +#define __CAN1_CLK_DISABLE __HAL_RCC_CAN1_CLK_DISABLE +#define __CAN1_CLK_ENABLE __HAL_RCC_CAN1_CLK_ENABLE +#define __CAN1_CLK_SLEEP_DISABLE __HAL_RCC_CAN1_CLK_SLEEP_DISABLE +#define __CAN1_CLK_SLEEP_ENABLE __HAL_RCC_CAN1_CLK_SLEEP_ENABLE +#define __CAN1_FORCE_RESET __HAL_RCC_CAN1_FORCE_RESET +#define __CAN1_RELEASE_RESET __HAL_RCC_CAN1_RELEASE_RESET +#define __CAN_CLK_DISABLE __HAL_RCC_CAN1_CLK_DISABLE +#define __CAN_CLK_ENABLE __HAL_RCC_CAN1_CLK_ENABLE +#define __CAN_FORCE_RESET __HAL_RCC_CAN1_FORCE_RESET +#define __CAN_RELEASE_RESET __HAL_RCC_CAN1_RELEASE_RESET +#define __CAN2_CLK_DISABLE __HAL_RCC_CAN2_CLK_DISABLE +#define __CAN2_CLK_ENABLE __HAL_RCC_CAN2_CLK_ENABLE +#define __CAN2_FORCE_RESET __HAL_RCC_CAN2_FORCE_RESET +#define __CAN2_RELEASE_RESET __HAL_RCC_CAN2_RELEASE_RESET +#define __CEC_CLK_DISABLE __HAL_RCC_CEC_CLK_DISABLE +#define __CEC_CLK_ENABLE __HAL_RCC_CEC_CLK_ENABLE +#define __COMP_CLK_DISABLE __HAL_RCC_COMP_CLK_DISABLE +#define __COMP_CLK_ENABLE __HAL_RCC_COMP_CLK_ENABLE +#define __COMP_FORCE_RESET __HAL_RCC_COMP_FORCE_RESET +#define __COMP_RELEASE_RESET __HAL_RCC_COMP_RELEASE_RESET +#define __COMP_CLK_SLEEP_ENABLE __HAL_RCC_COMP_CLK_SLEEP_ENABLE +#define __COMP_CLK_SLEEP_DISABLE __HAL_RCC_COMP_CLK_SLEEP_DISABLE +#define __CEC_FORCE_RESET __HAL_RCC_CEC_FORCE_RESET +#define __CEC_RELEASE_RESET __HAL_RCC_CEC_RELEASE_RESET +#define __CRC_CLK_DISABLE __HAL_RCC_CRC_CLK_DISABLE +#define __CRC_CLK_ENABLE __HAL_RCC_CRC_CLK_ENABLE +#define __CRC_CLK_SLEEP_DISABLE __HAL_RCC_CRC_CLK_SLEEP_DISABLE +#define __CRC_CLK_SLEEP_ENABLE __HAL_RCC_CRC_CLK_SLEEP_ENABLE +#define __CRC_FORCE_RESET __HAL_RCC_CRC_FORCE_RESET +#define __CRC_RELEASE_RESET __HAL_RCC_CRC_RELEASE_RESET +#define __DAC_CLK_DISABLE __HAL_RCC_DAC_CLK_DISABLE +#define __DAC_CLK_ENABLE __HAL_RCC_DAC_CLK_ENABLE +#define __DAC_FORCE_RESET __HAL_RCC_DAC_FORCE_RESET +#define __DAC_RELEASE_RESET __HAL_RCC_DAC_RELEASE_RESET +#define __DAC1_CLK_DISABLE __HAL_RCC_DAC1_CLK_DISABLE +#define __DAC1_CLK_ENABLE __HAL_RCC_DAC1_CLK_ENABLE +#define __DAC1_CLK_SLEEP_DISABLE __HAL_RCC_DAC1_CLK_SLEEP_DISABLE +#define __DAC1_CLK_SLEEP_ENABLE __HAL_RCC_DAC1_CLK_SLEEP_ENABLE +#define __DAC1_FORCE_RESET __HAL_RCC_DAC1_FORCE_RESET +#define __DAC1_RELEASE_RESET __HAL_RCC_DAC1_RELEASE_RESET +#define __DBGMCU_CLK_ENABLE __HAL_RCC_DBGMCU_CLK_ENABLE +#define __DBGMCU_CLK_DISABLE __HAL_RCC_DBGMCU_CLK_DISABLE +#define __DBGMCU_FORCE_RESET __HAL_RCC_DBGMCU_FORCE_RESET +#define __DBGMCU_RELEASE_RESET __HAL_RCC_DBGMCU_RELEASE_RESET +#define __DFSDM_CLK_DISABLE __HAL_RCC_DFSDM_CLK_DISABLE +#define __DFSDM_CLK_ENABLE __HAL_RCC_DFSDM_CLK_ENABLE +#define __DFSDM_CLK_SLEEP_DISABLE __HAL_RCC_DFSDM_CLK_SLEEP_DISABLE +#define __DFSDM_CLK_SLEEP_ENABLE __HAL_RCC_DFSDM_CLK_SLEEP_ENABLE +#define __DFSDM_FORCE_RESET __HAL_RCC_DFSDM_FORCE_RESET +#define __DFSDM_RELEASE_RESET __HAL_RCC_DFSDM_RELEASE_RESET +#define __DMA1_CLK_DISABLE __HAL_RCC_DMA1_CLK_DISABLE +#define __DMA1_CLK_ENABLE __HAL_RCC_DMA1_CLK_ENABLE +#define __DMA1_CLK_SLEEP_DISABLE __HAL_RCC_DMA1_CLK_SLEEP_DISABLE +#define __DMA1_CLK_SLEEP_ENABLE __HAL_RCC_DMA1_CLK_SLEEP_ENABLE +#define __DMA1_FORCE_RESET __HAL_RCC_DMA1_FORCE_RESET +#define __DMA1_RELEASE_RESET __HAL_RCC_DMA1_RELEASE_RESET +#define __DMA2_CLK_DISABLE __HAL_RCC_DMA2_CLK_DISABLE +#define __DMA2_CLK_ENABLE __HAL_RCC_DMA2_CLK_ENABLE +#define __DMA2_CLK_SLEEP_DISABLE __HAL_RCC_DMA2_CLK_SLEEP_DISABLE +#define __DMA2_CLK_SLEEP_ENABLE __HAL_RCC_DMA2_CLK_SLEEP_ENABLE +#define __DMA2_FORCE_RESET __HAL_RCC_DMA2_FORCE_RESET +#define __DMA2_RELEASE_RESET __HAL_RCC_DMA2_RELEASE_RESET +#define __ETHMAC_CLK_DISABLE __HAL_RCC_ETHMAC_CLK_DISABLE +#define __ETHMAC_CLK_ENABLE __HAL_RCC_ETHMAC_CLK_ENABLE +#define __ETHMAC_FORCE_RESET __HAL_RCC_ETHMAC_FORCE_RESET +#define __ETHMAC_RELEASE_RESET __HAL_RCC_ETHMAC_RELEASE_RESET +#define __ETHMACRX_CLK_DISABLE __HAL_RCC_ETHMACRX_CLK_DISABLE +#define __ETHMACRX_CLK_ENABLE __HAL_RCC_ETHMACRX_CLK_ENABLE +#define __ETHMACTX_CLK_DISABLE __HAL_RCC_ETHMACTX_CLK_DISABLE +#define __ETHMACTX_CLK_ENABLE __HAL_RCC_ETHMACTX_CLK_ENABLE +#define __FIREWALL_CLK_DISABLE __HAL_RCC_FIREWALL_CLK_DISABLE +#define __FIREWALL_CLK_ENABLE __HAL_RCC_FIREWALL_CLK_ENABLE +#define __FLASH_CLK_DISABLE __HAL_RCC_FLASH_CLK_DISABLE +#define __FLASH_CLK_ENABLE __HAL_RCC_FLASH_CLK_ENABLE +#define __FLASH_CLK_SLEEP_DISABLE __HAL_RCC_FLASH_CLK_SLEEP_DISABLE +#define __FLASH_CLK_SLEEP_ENABLE __HAL_RCC_FLASH_CLK_SLEEP_ENABLE +#define __FLASH_FORCE_RESET __HAL_RCC_FLASH_FORCE_RESET +#define __FLASH_RELEASE_RESET __HAL_RCC_FLASH_RELEASE_RESET +#define __FLITF_CLK_DISABLE __HAL_RCC_FLITF_CLK_DISABLE +#define __FLITF_CLK_ENABLE __HAL_RCC_FLITF_CLK_ENABLE +#define __FLITF_FORCE_RESET __HAL_RCC_FLITF_FORCE_RESET +#define __FLITF_RELEASE_RESET __HAL_RCC_FLITF_RELEASE_RESET +#define __FLITF_CLK_SLEEP_ENABLE __HAL_RCC_FLITF_CLK_SLEEP_ENABLE +#define __FLITF_CLK_SLEEP_DISABLE __HAL_RCC_FLITF_CLK_SLEEP_DISABLE +#define __FMC_CLK_DISABLE __HAL_RCC_FMC_CLK_DISABLE +#define __FMC_CLK_ENABLE __HAL_RCC_FMC_CLK_ENABLE +#define __FMC_CLK_SLEEP_DISABLE __HAL_RCC_FMC_CLK_SLEEP_DISABLE +#define __FMC_CLK_SLEEP_ENABLE __HAL_RCC_FMC_CLK_SLEEP_ENABLE +#define __FMC_FORCE_RESET __HAL_RCC_FMC_FORCE_RESET +#define __FMC_RELEASE_RESET __HAL_RCC_FMC_RELEASE_RESET +#define __FSMC_CLK_DISABLE __HAL_RCC_FSMC_CLK_DISABLE +#define __FSMC_CLK_ENABLE __HAL_RCC_FSMC_CLK_ENABLE +#define __GPIOA_CLK_DISABLE __HAL_RCC_GPIOA_CLK_DISABLE +#define __GPIOA_CLK_ENABLE __HAL_RCC_GPIOA_CLK_ENABLE +#define __GPIOA_CLK_SLEEP_DISABLE __HAL_RCC_GPIOA_CLK_SLEEP_DISABLE +#define __GPIOA_CLK_SLEEP_ENABLE __HAL_RCC_GPIOA_CLK_SLEEP_ENABLE +#define __GPIOA_FORCE_RESET __HAL_RCC_GPIOA_FORCE_RESET +#define __GPIOA_RELEASE_RESET __HAL_RCC_GPIOA_RELEASE_RESET +#define __GPIOB_CLK_DISABLE __HAL_RCC_GPIOB_CLK_DISABLE +#define __GPIOB_CLK_ENABLE __HAL_RCC_GPIOB_CLK_ENABLE +#define __GPIOB_CLK_SLEEP_DISABLE __HAL_RCC_GPIOB_CLK_SLEEP_DISABLE +#define __GPIOB_CLK_SLEEP_ENABLE __HAL_RCC_GPIOB_CLK_SLEEP_ENABLE +#define __GPIOB_FORCE_RESET __HAL_RCC_GPIOB_FORCE_RESET +#define __GPIOB_RELEASE_RESET __HAL_RCC_GPIOB_RELEASE_RESET +#define __GPIOC_CLK_DISABLE __HAL_RCC_GPIOC_CLK_DISABLE +#define __GPIOC_CLK_ENABLE __HAL_RCC_GPIOC_CLK_ENABLE +#define __GPIOC_CLK_SLEEP_DISABLE __HAL_RCC_GPIOC_CLK_SLEEP_DISABLE +#define __GPIOC_CLK_SLEEP_ENABLE __HAL_RCC_GPIOC_CLK_SLEEP_ENABLE +#define __GPIOC_FORCE_RESET __HAL_RCC_GPIOC_FORCE_RESET +#define __GPIOC_RELEASE_RESET __HAL_RCC_GPIOC_RELEASE_RESET +#define __GPIOD_CLK_DISABLE __HAL_RCC_GPIOD_CLK_DISABLE +#define __GPIOD_CLK_ENABLE __HAL_RCC_GPIOD_CLK_ENABLE +#define __GPIOD_CLK_SLEEP_DISABLE __HAL_RCC_GPIOD_CLK_SLEEP_DISABLE +#define __GPIOD_CLK_SLEEP_ENABLE __HAL_RCC_GPIOD_CLK_SLEEP_ENABLE +#define __GPIOD_FORCE_RESET __HAL_RCC_GPIOD_FORCE_RESET +#define __GPIOD_RELEASE_RESET __HAL_RCC_GPIOD_RELEASE_RESET +#define __GPIOE_CLK_DISABLE __HAL_RCC_GPIOE_CLK_DISABLE +#define __GPIOE_CLK_ENABLE __HAL_RCC_GPIOE_CLK_ENABLE +#define __GPIOE_CLK_SLEEP_DISABLE __HAL_RCC_GPIOE_CLK_SLEEP_DISABLE +#define __GPIOE_CLK_SLEEP_ENABLE __HAL_RCC_GPIOE_CLK_SLEEP_ENABLE +#define __GPIOE_FORCE_RESET __HAL_RCC_GPIOE_FORCE_RESET +#define __GPIOE_RELEASE_RESET __HAL_RCC_GPIOE_RELEASE_RESET +#define __GPIOF_CLK_DISABLE __HAL_RCC_GPIOF_CLK_DISABLE +#define __GPIOF_CLK_ENABLE __HAL_RCC_GPIOF_CLK_ENABLE +#define __GPIOF_CLK_SLEEP_DISABLE __HAL_RCC_GPIOF_CLK_SLEEP_DISABLE +#define __GPIOF_CLK_SLEEP_ENABLE __HAL_RCC_GPIOF_CLK_SLEEP_ENABLE +#define __GPIOF_FORCE_RESET __HAL_RCC_GPIOF_FORCE_RESET +#define __GPIOF_RELEASE_RESET __HAL_RCC_GPIOF_RELEASE_RESET +#define __GPIOG_CLK_DISABLE __HAL_RCC_GPIOG_CLK_DISABLE +#define __GPIOG_CLK_ENABLE __HAL_RCC_GPIOG_CLK_ENABLE +#define __GPIOG_CLK_SLEEP_DISABLE __HAL_RCC_GPIOG_CLK_SLEEP_DISABLE +#define __GPIOG_CLK_SLEEP_ENABLE __HAL_RCC_GPIOG_CLK_SLEEP_ENABLE +#define __GPIOG_FORCE_RESET __HAL_RCC_GPIOG_FORCE_RESET +#define __GPIOG_RELEASE_RESET __HAL_RCC_GPIOG_RELEASE_RESET +#define __GPIOH_CLK_DISABLE __HAL_RCC_GPIOH_CLK_DISABLE +#define __GPIOH_CLK_ENABLE __HAL_RCC_GPIOH_CLK_ENABLE +#define __GPIOH_CLK_SLEEP_DISABLE __HAL_RCC_GPIOH_CLK_SLEEP_DISABLE +#define __GPIOH_CLK_SLEEP_ENABLE __HAL_RCC_GPIOH_CLK_SLEEP_ENABLE +#define __GPIOH_FORCE_RESET __HAL_RCC_GPIOH_FORCE_RESET +#define __GPIOH_RELEASE_RESET __HAL_RCC_GPIOH_RELEASE_RESET +#define __I2C1_CLK_DISABLE __HAL_RCC_I2C1_CLK_DISABLE +#define __I2C1_CLK_ENABLE __HAL_RCC_I2C1_CLK_ENABLE +#define __I2C1_CLK_SLEEP_DISABLE __HAL_RCC_I2C1_CLK_SLEEP_DISABLE +#define __I2C1_CLK_SLEEP_ENABLE __HAL_RCC_I2C1_CLK_SLEEP_ENABLE +#define __I2C1_FORCE_RESET __HAL_RCC_I2C1_FORCE_RESET +#define __I2C1_RELEASE_RESET __HAL_RCC_I2C1_RELEASE_RESET +#define __I2C2_CLK_DISABLE __HAL_RCC_I2C2_CLK_DISABLE +#define __I2C2_CLK_ENABLE __HAL_RCC_I2C2_CLK_ENABLE +#define __I2C2_CLK_SLEEP_DISABLE __HAL_RCC_I2C2_CLK_SLEEP_DISABLE +#define __I2C2_CLK_SLEEP_ENABLE __HAL_RCC_I2C2_CLK_SLEEP_ENABLE +#define __I2C2_FORCE_RESET __HAL_RCC_I2C2_FORCE_RESET +#define __I2C2_RELEASE_RESET __HAL_RCC_I2C2_RELEASE_RESET +#define __I2C3_CLK_DISABLE __HAL_RCC_I2C3_CLK_DISABLE +#define __I2C3_CLK_ENABLE __HAL_RCC_I2C3_CLK_ENABLE +#define __I2C3_CLK_SLEEP_DISABLE __HAL_RCC_I2C3_CLK_SLEEP_DISABLE +#define __I2C3_CLK_SLEEP_ENABLE __HAL_RCC_I2C3_CLK_SLEEP_ENABLE +#define __I2C3_FORCE_RESET __HAL_RCC_I2C3_FORCE_RESET +#define __I2C3_RELEASE_RESET __HAL_RCC_I2C3_RELEASE_RESET +#define __LCD_CLK_DISABLE __HAL_RCC_LCD_CLK_DISABLE +#define __LCD_CLK_ENABLE __HAL_RCC_LCD_CLK_ENABLE +#define __LCD_CLK_SLEEP_DISABLE __HAL_RCC_LCD_CLK_SLEEP_DISABLE +#define __LCD_CLK_SLEEP_ENABLE __HAL_RCC_LCD_CLK_SLEEP_ENABLE +#define __LCD_FORCE_RESET __HAL_RCC_LCD_FORCE_RESET +#define __LCD_RELEASE_RESET __HAL_RCC_LCD_RELEASE_RESET +#define __LPTIM1_CLK_DISABLE __HAL_RCC_LPTIM1_CLK_DISABLE +#define __LPTIM1_CLK_ENABLE __HAL_RCC_LPTIM1_CLK_ENABLE +#define __LPTIM1_CLK_SLEEP_DISABLE __HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE +#define __LPTIM1_CLK_SLEEP_ENABLE __HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE +#define __LPTIM1_FORCE_RESET __HAL_RCC_LPTIM1_FORCE_RESET +#define __LPTIM1_RELEASE_RESET __HAL_RCC_LPTIM1_RELEASE_RESET +#define __LPTIM2_CLK_DISABLE __HAL_RCC_LPTIM2_CLK_DISABLE +#define __LPTIM2_CLK_ENABLE __HAL_RCC_LPTIM2_CLK_ENABLE +#define __LPTIM2_CLK_SLEEP_DISABLE __HAL_RCC_LPTIM2_CLK_SLEEP_DISABLE +#define __LPTIM2_CLK_SLEEP_ENABLE __HAL_RCC_LPTIM2_CLK_SLEEP_ENABLE +#define __LPTIM2_FORCE_RESET __HAL_RCC_LPTIM2_FORCE_RESET +#define __LPTIM2_RELEASE_RESET __HAL_RCC_LPTIM2_RELEASE_RESET +#define __LPUART1_CLK_DISABLE __HAL_RCC_LPUART1_CLK_DISABLE +#define __LPUART1_CLK_ENABLE __HAL_RCC_LPUART1_CLK_ENABLE +#define __LPUART1_CLK_SLEEP_DISABLE __HAL_RCC_LPUART1_CLK_SLEEP_DISABLE +#define __LPUART1_CLK_SLEEP_ENABLE __HAL_RCC_LPUART1_CLK_SLEEP_ENABLE +#define __LPUART1_FORCE_RESET __HAL_RCC_LPUART1_FORCE_RESET +#define __LPUART1_RELEASE_RESET __HAL_RCC_LPUART1_RELEASE_RESET +#define __OPAMP_CLK_DISABLE __HAL_RCC_OPAMP_CLK_DISABLE +#define __OPAMP_CLK_ENABLE __HAL_RCC_OPAMP_CLK_ENABLE +#define __OPAMP_CLK_SLEEP_DISABLE __HAL_RCC_OPAMP_CLK_SLEEP_DISABLE +#define __OPAMP_CLK_SLEEP_ENABLE __HAL_RCC_OPAMP_CLK_SLEEP_ENABLE +#define __OPAMP_FORCE_RESET __HAL_RCC_OPAMP_FORCE_RESET +#define __OPAMP_RELEASE_RESET __HAL_RCC_OPAMP_RELEASE_RESET +#define __OTGFS_CLK_DISABLE __HAL_RCC_OTGFS_CLK_DISABLE +#define __OTGFS_CLK_ENABLE __HAL_RCC_OTGFS_CLK_ENABLE +#define __OTGFS_CLK_SLEEP_DISABLE __HAL_RCC_OTGFS_CLK_SLEEP_DISABLE +#define __OTGFS_CLK_SLEEP_ENABLE __HAL_RCC_OTGFS_CLK_SLEEP_ENABLE +#define __OTGFS_FORCE_RESET __HAL_RCC_OTGFS_FORCE_RESET +#define __OTGFS_RELEASE_RESET __HAL_RCC_OTGFS_RELEASE_RESET +#define __PWR_CLK_DISABLE __HAL_RCC_PWR_CLK_DISABLE +#define __PWR_CLK_ENABLE __HAL_RCC_PWR_CLK_ENABLE +#define __PWR_CLK_SLEEP_DISABLE __HAL_RCC_PWR_CLK_SLEEP_DISABLE +#define __PWR_CLK_SLEEP_ENABLE __HAL_RCC_PWR_CLK_SLEEP_ENABLE +#define __PWR_FORCE_RESET __HAL_RCC_PWR_FORCE_RESET +#define __PWR_RELEASE_RESET __HAL_RCC_PWR_RELEASE_RESET +#define __QSPI_CLK_DISABLE __HAL_RCC_QSPI_CLK_DISABLE +#define __QSPI_CLK_ENABLE __HAL_RCC_QSPI_CLK_ENABLE +#define __QSPI_CLK_SLEEP_DISABLE __HAL_RCC_QSPI_CLK_SLEEP_DISABLE +#define __QSPI_CLK_SLEEP_ENABLE __HAL_RCC_QSPI_CLK_SLEEP_ENABLE +#define __QSPI_FORCE_RESET __HAL_RCC_QSPI_FORCE_RESET +#define __QSPI_RELEASE_RESET __HAL_RCC_QSPI_RELEASE_RESET +#define __RNG_CLK_DISABLE __HAL_RCC_RNG_CLK_DISABLE +#define __RNG_CLK_ENABLE __HAL_RCC_RNG_CLK_ENABLE +#define __RNG_CLK_SLEEP_DISABLE __HAL_RCC_RNG_CLK_SLEEP_DISABLE +#define __RNG_CLK_SLEEP_ENABLE __HAL_RCC_RNG_CLK_SLEEP_ENABLE +#define __RNG_FORCE_RESET __HAL_RCC_RNG_FORCE_RESET +#define __RNG_RELEASE_RESET __HAL_RCC_RNG_RELEASE_RESET +#define __SAI1_CLK_DISABLE __HAL_RCC_SAI1_CLK_DISABLE +#define __SAI1_CLK_ENABLE __HAL_RCC_SAI1_CLK_ENABLE +#define __SAI1_CLK_SLEEP_DISABLE __HAL_RCC_SAI1_CLK_SLEEP_DISABLE +#define __SAI1_CLK_SLEEP_ENABLE __HAL_RCC_SAI1_CLK_SLEEP_ENABLE +#define __SAI1_FORCE_RESET __HAL_RCC_SAI1_FORCE_RESET +#define __SAI1_RELEASE_RESET __HAL_RCC_SAI1_RELEASE_RESET +#define __SAI2_CLK_DISABLE __HAL_RCC_SAI2_CLK_DISABLE +#define __SAI2_CLK_ENABLE __HAL_RCC_SAI2_CLK_ENABLE +#define __SAI2_CLK_SLEEP_DISABLE __HAL_RCC_SAI2_CLK_SLEEP_DISABLE +#define __SAI2_CLK_SLEEP_ENABLE __HAL_RCC_SAI2_CLK_SLEEP_ENABLE +#define __SAI2_FORCE_RESET __HAL_RCC_SAI2_FORCE_RESET +#define __SAI2_RELEASE_RESET __HAL_RCC_SAI2_RELEASE_RESET +#define __SDIO_CLK_DISABLE __HAL_RCC_SDIO_CLK_DISABLE +#define __SDIO_CLK_ENABLE __HAL_RCC_SDIO_CLK_ENABLE +#define __SDMMC_CLK_DISABLE __HAL_RCC_SDMMC_CLK_DISABLE +#define __SDMMC_CLK_ENABLE __HAL_RCC_SDMMC_CLK_ENABLE +#define __SDMMC_CLK_SLEEP_DISABLE __HAL_RCC_SDMMC_CLK_SLEEP_DISABLE +#define __SDMMC_CLK_SLEEP_ENABLE __HAL_RCC_SDMMC_CLK_SLEEP_ENABLE +#define __SDMMC_FORCE_RESET __HAL_RCC_SDMMC_FORCE_RESET +#define __SDMMC_RELEASE_RESET __HAL_RCC_SDMMC_RELEASE_RESET +#define __SPI1_CLK_DISABLE __HAL_RCC_SPI1_CLK_DISABLE +#define __SPI1_CLK_ENABLE __HAL_RCC_SPI1_CLK_ENABLE +#define __SPI1_CLK_SLEEP_DISABLE __HAL_RCC_SPI1_CLK_SLEEP_DISABLE +#define __SPI1_CLK_SLEEP_ENABLE __HAL_RCC_SPI1_CLK_SLEEP_ENABLE +#define __SPI1_FORCE_RESET __HAL_RCC_SPI1_FORCE_RESET +#define __SPI1_RELEASE_RESET __HAL_RCC_SPI1_RELEASE_RESET +#define __SPI2_CLK_DISABLE __HAL_RCC_SPI2_CLK_DISABLE +#define __SPI2_CLK_ENABLE __HAL_RCC_SPI2_CLK_ENABLE +#define __SPI2_CLK_SLEEP_DISABLE __HAL_RCC_SPI2_CLK_SLEEP_DISABLE +#define __SPI2_CLK_SLEEP_ENABLE __HAL_RCC_SPI2_CLK_SLEEP_ENABLE +#define __SPI2_FORCE_RESET __HAL_RCC_SPI2_FORCE_RESET +#define __SPI2_RELEASE_RESET __HAL_RCC_SPI2_RELEASE_RESET +#define __SPI3_CLK_DISABLE __HAL_RCC_SPI3_CLK_DISABLE +#define __SPI3_CLK_ENABLE __HAL_RCC_SPI3_CLK_ENABLE +#define __SPI3_CLK_SLEEP_DISABLE __HAL_RCC_SPI3_CLK_SLEEP_DISABLE +#define __SPI3_CLK_SLEEP_ENABLE __HAL_RCC_SPI3_CLK_SLEEP_ENABLE +#define __SPI3_FORCE_RESET __HAL_RCC_SPI3_FORCE_RESET +#define __SPI3_RELEASE_RESET __HAL_RCC_SPI3_RELEASE_RESET +#define __SRAM_CLK_DISABLE __HAL_RCC_SRAM_CLK_DISABLE +#define __SRAM_CLK_ENABLE __HAL_RCC_SRAM_CLK_ENABLE +#define __SRAM1_CLK_SLEEP_DISABLE __HAL_RCC_SRAM1_CLK_SLEEP_DISABLE +#define __SRAM1_CLK_SLEEP_ENABLE __HAL_RCC_SRAM1_CLK_SLEEP_ENABLE +#define __SRAM2_CLK_SLEEP_DISABLE __HAL_RCC_SRAM2_CLK_SLEEP_DISABLE +#define __SRAM2_CLK_SLEEP_ENABLE __HAL_RCC_SRAM2_CLK_SLEEP_ENABLE +#define __SWPMI1_CLK_DISABLE __HAL_RCC_SWPMI1_CLK_DISABLE +#define __SWPMI1_CLK_ENABLE __HAL_RCC_SWPMI1_CLK_ENABLE +#define __SWPMI1_CLK_SLEEP_DISABLE __HAL_RCC_SWPMI1_CLK_SLEEP_DISABLE +#define __SWPMI1_CLK_SLEEP_ENABLE __HAL_RCC_SWPMI1_CLK_SLEEP_ENABLE +#define __SWPMI1_FORCE_RESET __HAL_RCC_SWPMI1_FORCE_RESET +#define __SWPMI1_RELEASE_RESET __HAL_RCC_SWPMI1_RELEASE_RESET +#define __SYSCFG_CLK_DISABLE __HAL_RCC_SYSCFG_CLK_DISABLE +#define __SYSCFG_CLK_ENABLE __HAL_RCC_SYSCFG_CLK_ENABLE +#define __SYSCFG_CLK_SLEEP_DISABLE __HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE +#define __SYSCFG_CLK_SLEEP_ENABLE __HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE +#define __SYSCFG_FORCE_RESET __HAL_RCC_SYSCFG_FORCE_RESET +#define __SYSCFG_RELEASE_RESET __HAL_RCC_SYSCFG_RELEASE_RESET +#define __TIM1_CLK_DISABLE __HAL_RCC_TIM1_CLK_DISABLE +#define __TIM1_CLK_ENABLE __HAL_RCC_TIM1_CLK_ENABLE +#define __TIM1_CLK_SLEEP_DISABLE __HAL_RCC_TIM1_CLK_SLEEP_DISABLE +#define __TIM1_CLK_SLEEP_ENABLE __HAL_RCC_TIM1_CLK_SLEEP_ENABLE +#define __TIM1_FORCE_RESET __HAL_RCC_TIM1_FORCE_RESET +#define __TIM1_RELEASE_RESET __HAL_RCC_TIM1_RELEASE_RESET +#define __TIM10_CLK_DISABLE __HAL_RCC_TIM10_CLK_DISABLE +#define __TIM10_CLK_ENABLE __HAL_RCC_TIM10_CLK_ENABLE +#define __TIM10_FORCE_RESET __HAL_RCC_TIM10_FORCE_RESET +#define __TIM10_RELEASE_RESET __HAL_RCC_TIM10_RELEASE_RESET +#define __TIM11_CLK_DISABLE __HAL_RCC_TIM11_CLK_DISABLE +#define __TIM11_CLK_ENABLE __HAL_RCC_TIM11_CLK_ENABLE +#define __TIM11_FORCE_RESET __HAL_RCC_TIM11_FORCE_RESET +#define __TIM11_RELEASE_RESET __HAL_RCC_TIM11_RELEASE_RESET +#define __TIM12_CLK_DISABLE __HAL_RCC_TIM12_CLK_DISABLE +#define __TIM12_CLK_ENABLE __HAL_RCC_TIM12_CLK_ENABLE +#define __TIM12_FORCE_RESET __HAL_RCC_TIM12_FORCE_RESET +#define __TIM12_RELEASE_RESET __HAL_RCC_TIM12_RELEASE_RESET +#define __TIM13_CLK_DISABLE __HAL_RCC_TIM13_CLK_DISABLE +#define __TIM13_CLK_ENABLE __HAL_RCC_TIM13_CLK_ENABLE +#define __TIM13_FORCE_RESET __HAL_RCC_TIM13_FORCE_RESET +#define __TIM13_RELEASE_RESET __HAL_RCC_TIM13_RELEASE_RESET +#define __TIM14_CLK_DISABLE __HAL_RCC_TIM14_CLK_DISABLE +#define __TIM14_CLK_ENABLE __HAL_RCC_TIM14_CLK_ENABLE +#define __TIM14_FORCE_RESET __HAL_RCC_TIM14_FORCE_RESET +#define __TIM14_RELEASE_RESET __HAL_RCC_TIM14_RELEASE_RESET +#define __TIM15_CLK_DISABLE __HAL_RCC_TIM15_CLK_DISABLE +#define __TIM15_CLK_ENABLE __HAL_RCC_TIM15_CLK_ENABLE +#define __TIM15_CLK_SLEEP_DISABLE __HAL_RCC_TIM15_CLK_SLEEP_DISABLE +#define __TIM15_CLK_SLEEP_ENABLE __HAL_RCC_TIM15_CLK_SLEEP_ENABLE +#define __TIM15_FORCE_RESET __HAL_RCC_TIM15_FORCE_RESET +#define __TIM15_RELEASE_RESET __HAL_RCC_TIM15_RELEASE_RESET +#define __TIM16_CLK_DISABLE __HAL_RCC_TIM16_CLK_DISABLE +#define __TIM16_CLK_ENABLE __HAL_RCC_TIM16_CLK_ENABLE +#define __TIM16_CLK_SLEEP_DISABLE __HAL_RCC_TIM16_CLK_SLEEP_DISABLE +#define __TIM16_CLK_SLEEP_ENABLE __HAL_RCC_TIM16_CLK_SLEEP_ENABLE +#define __TIM16_FORCE_RESET __HAL_RCC_TIM16_FORCE_RESET +#define __TIM16_RELEASE_RESET __HAL_RCC_TIM16_RELEASE_RESET +#define __TIM17_CLK_DISABLE __HAL_RCC_TIM17_CLK_DISABLE +#define __TIM17_CLK_ENABLE __HAL_RCC_TIM17_CLK_ENABLE +#define __TIM17_CLK_SLEEP_DISABLE __HAL_RCC_TIM17_CLK_SLEEP_DISABLE +#define __TIM17_CLK_SLEEP_ENABLE __HAL_RCC_TIM17_CLK_SLEEP_ENABLE +#define __TIM17_FORCE_RESET __HAL_RCC_TIM17_FORCE_RESET +#define __TIM17_RELEASE_RESET __HAL_RCC_TIM17_RELEASE_RESET +#define __TIM2_CLK_DISABLE __HAL_RCC_TIM2_CLK_DISABLE +#define __TIM2_CLK_ENABLE __HAL_RCC_TIM2_CLK_ENABLE +#define __TIM2_CLK_SLEEP_DISABLE __HAL_RCC_TIM2_CLK_SLEEP_DISABLE +#define __TIM2_CLK_SLEEP_ENABLE __HAL_RCC_TIM2_CLK_SLEEP_ENABLE +#define __TIM2_FORCE_RESET __HAL_RCC_TIM2_FORCE_RESET +#define __TIM2_RELEASE_RESET __HAL_RCC_TIM2_RELEASE_RESET +#define __TIM3_CLK_DISABLE __HAL_RCC_TIM3_CLK_DISABLE +#define __TIM3_CLK_ENABLE __HAL_RCC_TIM3_CLK_ENABLE +#define __TIM3_CLK_SLEEP_DISABLE __HAL_RCC_TIM3_CLK_SLEEP_DISABLE +#define __TIM3_CLK_SLEEP_ENABLE __HAL_RCC_TIM3_CLK_SLEEP_ENABLE +#define __TIM3_FORCE_RESET __HAL_RCC_TIM3_FORCE_RESET +#define __TIM3_RELEASE_RESET __HAL_RCC_TIM3_RELEASE_RESET +#define __TIM4_CLK_DISABLE __HAL_RCC_TIM4_CLK_DISABLE +#define __TIM4_CLK_ENABLE __HAL_RCC_TIM4_CLK_ENABLE +#define __TIM4_CLK_SLEEP_DISABLE __HAL_RCC_TIM4_CLK_SLEEP_DISABLE +#define __TIM4_CLK_SLEEP_ENABLE __HAL_RCC_TIM4_CLK_SLEEP_ENABLE +#define __TIM4_FORCE_RESET __HAL_RCC_TIM4_FORCE_RESET +#define __TIM4_RELEASE_RESET __HAL_RCC_TIM4_RELEASE_RESET +#define __TIM5_CLK_DISABLE __HAL_RCC_TIM5_CLK_DISABLE +#define __TIM5_CLK_ENABLE __HAL_RCC_TIM5_CLK_ENABLE +#define __TIM5_CLK_SLEEP_DISABLE __HAL_RCC_TIM5_CLK_SLEEP_DISABLE +#define __TIM5_CLK_SLEEP_ENABLE __HAL_RCC_TIM5_CLK_SLEEP_ENABLE +#define __TIM5_FORCE_RESET __HAL_RCC_TIM5_FORCE_RESET +#define __TIM5_RELEASE_RESET __HAL_RCC_TIM5_RELEASE_RESET +#define __TIM6_CLK_DISABLE __HAL_RCC_TIM6_CLK_DISABLE +#define __TIM6_CLK_ENABLE __HAL_RCC_TIM6_CLK_ENABLE +#define __TIM6_CLK_SLEEP_DISABLE __HAL_RCC_TIM6_CLK_SLEEP_DISABLE +#define __TIM6_CLK_SLEEP_ENABLE __HAL_RCC_TIM6_CLK_SLEEP_ENABLE +#define __TIM6_FORCE_RESET __HAL_RCC_TIM6_FORCE_RESET +#define __TIM6_RELEASE_RESET __HAL_RCC_TIM6_RELEASE_RESET +#define __TIM7_CLK_DISABLE __HAL_RCC_TIM7_CLK_DISABLE +#define __TIM7_CLK_ENABLE __HAL_RCC_TIM7_CLK_ENABLE +#define __TIM7_CLK_SLEEP_DISABLE __HAL_RCC_TIM7_CLK_SLEEP_DISABLE +#define __TIM7_CLK_SLEEP_ENABLE __HAL_RCC_TIM7_CLK_SLEEP_ENABLE +#define __TIM7_FORCE_RESET __HAL_RCC_TIM7_FORCE_RESET +#define __TIM7_RELEASE_RESET __HAL_RCC_TIM7_RELEASE_RESET +#define __TIM8_CLK_DISABLE __HAL_RCC_TIM8_CLK_DISABLE +#define __TIM8_CLK_ENABLE __HAL_RCC_TIM8_CLK_ENABLE +#define __TIM8_CLK_SLEEP_DISABLE __HAL_RCC_TIM8_CLK_SLEEP_DISABLE +#define __TIM8_CLK_SLEEP_ENABLE __HAL_RCC_TIM8_CLK_SLEEP_ENABLE +#define __TIM8_FORCE_RESET __HAL_RCC_TIM8_FORCE_RESET +#define __TIM8_RELEASE_RESET __HAL_RCC_TIM8_RELEASE_RESET +#define __TIM9_CLK_DISABLE __HAL_RCC_TIM9_CLK_DISABLE +#define __TIM9_CLK_ENABLE __HAL_RCC_TIM9_CLK_ENABLE +#define __TIM9_FORCE_RESET __HAL_RCC_TIM9_FORCE_RESET +#define __TIM9_RELEASE_RESET __HAL_RCC_TIM9_RELEASE_RESET +#define __TSC_CLK_DISABLE __HAL_RCC_TSC_CLK_DISABLE +#define __TSC_CLK_ENABLE __HAL_RCC_TSC_CLK_ENABLE +#define __TSC_CLK_SLEEP_DISABLE __HAL_RCC_TSC_CLK_SLEEP_DISABLE +#define __TSC_CLK_SLEEP_ENABLE __HAL_RCC_TSC_CLK_SLEEP_ENABLE +#define __TSC_FORCE_RESET __HAL_RCC_TSC_FORCE_RESET +#define __TSC_RELEASE_RESET __HAL_RCC_TSC_RELEASE_RESET +#define __UART4_CLK_DISABLE __HAL_RCC_UART4_CLK_DISABLE +#define __UART4_CLK_ENABLE __HAL_RCC_UART4_CLK_ENABLE +#define __UART4_CLK_SLEEP_DISABLE __HAL_RCC_UART4_CLK_SLEEP_DISABLE +#define __UART4_CLK_SLEEP_ENABLE __HAL_RCC_UART4_CLK_SLEEP_ENABLE +#define __UART4_FORCE_RESET __HAL_RCC_UART4_FORCE_RESET +#define __UART4_RELEASE_RESET __HAL_RCC_UART4_RELEASE_RESET +#define __UART5_CLK_DISABLE __HAL_RCC_UART5_CLK_DISABLE +#define __UART5_CLK_ENABLE __HAL_RCC_UART5_CLK_ENABLE +#define __UART5_CLK_SLEEP_DISABLE __HAL_RCC_UART5_CLK_SLEEP_DISABLE +#define __UART5_CLK_SLEEP_ENABLE __HAL_RCC_UART5_CLK_SLEEP_ENABLE +#define __UART5_FORCE_RESET __HAL_RCC_UART5_FORCE_RESET +#define __UART5_RELEASE_RESET __HAL_RCC_UART5_RELEASE_RESET +#define __USART1_CLK_DISABLE __HAL_RCC_USART1_CLK_DISABLE +#define __USART1_CLK_ENABLE __HAL_RCC_USART1_CLK_ENABLE +#define __USART1_CLK_SLEEP_DISABLE __HAL_RCC_USART1_CLK_SLEEP_DISABLE +#define __USART1_CLK_SLEEP_ENABLE __HAL_RCC_USART1_CLK_SLEEP_ENABLE +#define __USART1_FORCE_RESET __HAL_RCC_USART1_FORCE_RESET +#define __USART1_RELEASE_RESET __HAL_RCC_USART1_RELEASE_RESET +#define __USART2_CLK_DISABLE __HAL_RCC_USART2_CLK_DISABLE +#define __USART2_CLK_ENABLE __HAL_RCC_USART2_CLK_ENABLE +#define __USART2_CLK_SLEEP_DISABLE __HAL_RCC_USART2_CLK_SLEEP_DISABLE +#define __USART2_CLK_SLEEP_ENABLE __HAL_RCC_USART2_CLK_SLEEP_ENABLE +#define __USART2_FORCE_RESET __HAL_RCC_USART2_FORCE_RESET +#define __USART2_RELEASE_RESET __HAL_RCC_USART2_RELEASE_RESET +#define __USART3_CLK_DISABLE __HAL_RCC_USART3_CLK_DISABLE +#define __USART3_CLK_ENABLE __HAL_RCC_USART3_CLK_ENABLE +#define __USART3_CLK_SLEEP_DISABLE __HAL_RCC_USART3_CLK_SLEEP_DISABLE +#define __USART3_CLK_SLEEP_ENABLE __HAL_RCC_USART3_CLK_SLEEP_ENABLE +#define __USART3_FORCE_RESET __HAL_RCC_USART3_FORCE_RESET +#define __USART3_RELEASE_RESET __HAL_RCC_USART3_RELEASE_RESET +#define __USART4_CLK_DISABLE __HAL_RCC_UART4_CLK_DISABLE +#define __USART4_CLK_ENABLE __HAL_RCC_UART4_CLK_ENABLE +#define __USART4_CLK_SLEEP_ENABLE __HAL_RCC_UART4_CLK_SLEEP_ENABLE +#define __USART4_CLK_SLEEP_DISABLE __HAL_RCC_UART4_CLK_SLEEP_DISABLE +#define __USART4_FORCE_RESET __HAL_RCC_UART4_FORCE_RESET +#define __USART4_RELEASE_RESET __HAL_RCC_UART4_RELEASE_RESET +#define __USART5_CLK_DISABLE __HAL_RCC_UART5_CLK_DISABLE +#define __USART5_CLK_ENABLE __HAL_RCC_UART5_CLK_ENABLE +#define __USART5_CLK_SLEEP_ENABLE __HAL_RCC_UART5_CLK_SLEEP_ENABLE +#define __USART5_CLK_SLEEP_DISABLE __HAL_RCC_UART5_CLK_SLEEP_DISABLE +#define __USART5_FORCE_RESET __HAL_RCC_UART5_FORCE_RESET +#define __USART5_RELEASE_RESET __HAL_RCC_UART5_RELEASE_RESET +#define __USART7_CLK_DISABLE __HAL_RCC_UART7_CLK_DISABLE +#define __USART7_CLK_ENABLE __HAL_RCC_UART7_CLK_ENABLE +#define __USART7_FORCE_RESET __HAL_RCC_UART7_FORCE_RESET +#define __USART7_RELEASE_RESET __HAL_RCC_UART7_RELEASE_RESET +#define __USART8_CLK_DISABLE __HAL_RCC_UART8_CLK_DISABLE +#define __USART8_CLK_ENABLE __HAL_RCC_UART8_CLK_ENABLE +#define __USART8_FORCE_RESET __HAL_RCC_UART8_FORCE_RESET +#define __USART8_RELEASE_RESET __HAL_RCC_UART8_RELEASE_RESET +#define __USB_CLK_DISABLE __HAL_RCC_USB_CLK_DISABLE +#define __USB_CLK_ENABLE __HAL_RCC_USB_CLK_ENABLE +#define __USB_FORCE_RESET __HAL_RCC_USB_FORCE_RESET +#define __USB_CLK_SLEEP_ENABLE __HAL_RCC_USB_CLK_SLEEP_ENABLE +#define __USB_CLK_SLEEP_DISABLE __HAL_RCC_USB_CLK_SLEEP_DISABLE +#define __USB_OTG_FS_CLK_DISABLE __HAL_RCC_USB_OTG_FS_CLK_DISABLE +#define __USB_OTG_FS_CLK_ENABLE __HAL_RCC_USB_OTG_FS_CLK_ENABLE +#define __USB_RELEASE_RESET __HAL_RCC_USB_RELEASE_RESET +#define __WWDG_CLK_DISABLE __HAL_RCC_WWDG_CLK_DISABLE +#define __WWDG_CLK_ENABLE __HAL_RCC_WWDG_CLK_ENABLE +#define __WWDG_CLK_SLEEP_DISABLE __HAL_RCC_WWDG_CLK_SLEEP_DISABLE +#define __WWDG_CLK_SLEEP_ENABLE __HAL_RCC_WWDG_CLK_SLEEP_ENABLE +#define __WWDG_FORCE_RESET __HAL_RCC_WWDG_FORCE_RESET +#define __WWDG_RELEASE_RESET __HAL_RCC_WWDG_RELEASE_RESET +#define __TIM21_CLK_ENABLE __HAL_RCC_TIM21_CLK_ENABLE +#define __TIM21_CLK_DISABLE __HAL_RCC_TIM21_CLK_DISABLE +#define __TIM21_FORCE_RESET __HAL_RCC_TIM21_FORCE_RESET +#define __TIM21_RELEASE_RESET __HAL_RCC_TIM21_RELEASE_RESET +#define __TIM21_CLK_SLEEP_ENABLE __HAL_RCC_TIM21_CLK_SLEEP_ENABLE +#define __TIM21_CLK_SLEEP_DISABLE __HAL_RCC_TIM21_CLK_SLEEP_DISABLE +#define __TIM22_CLK_ENABLE __HAL_RCC_TIM22_CLK_ENABLE +#define __TIM22_CLK_DISABLE __HAL_RCC_TIM22_CLK_DISABLE +#define __TIM22_FORCE_RESET __HAL_RCC_TIM22_FORCE_RESET +#define __TIM22_RELEASE_RESET __HAL_RCC_TIM22_RELEASE_RESET +#define __TIM22_CLK_SLEEP_ENABLE __HAL_RCC_TIM22_CLK_SLEEP_ENABLE +#define __TIM22_CLK_SLEEP_DISABLE __HAL_RCC_TIM22_CLK_SLEEP_DISABLE +#define __CRS_CLK_DISABLE __HAL_RCC_CRS_CLK_DISABLE +#define __CRS_CLK_ENABLE __HAL_RCC_CRS_CLK_ENABLE +#define __CRS_CLK_SLEEP_DISABLE __HAL_RCC_CRS_CLK_SLEEP_DISABLE +#define __CRS_CLK_SLEEP_ENABLE __HAL_RCC_CRS_CLK_SLEEP_ENABLE +#define __CRS_FORCE_RESET __HAL_RCC_CRS_FORCE_RESET +#define __CRS_RELEASE_RESET __HAL_RCC_CRS_RELEASE_RESET +#define __RCC_BACKUPRESET_FORCE __HAL_RCC_BACKUPRESET_FORCE +#define __RCC_BACKUPRESET_RELEASE __HAL_RCC_BACKUPRESET_RELEASE + +#define __USB_OTG_FS_FORCE_RESET __HAL_RCC_USB_OTG_FS_FORCE_RESET +#define __USB_OTG_FS_RELEASE_RESET __HAL_RCC_USB_OTG_FS_RELEASE_RESET +#define __USB_OTG_FS_CLK_SLEEP_ENABLE __HAL_RCC_USB_OTG_FS_CLK_SLEEP_ENABLE +#define __USB_OTG_FS_CLK_SLEEP_DISABLE __HAL_RCC_USB_OTG_FS_CLK_SLEEP_DISABLE +#define __USB_OTG_HS_CLK_DISABLE __HAL_RCC_USB_OTG_HS_CLK_DISABLE +#define __USB_OTG_HS_CLK_ENABLE __HAL_RCC_USB_OTG_HS_CLK_ENABLE +#define __USB_OTG_HS_ULPI_CLK_ENABLE __HAL_RCC_USB_OTG_HS_ULPI_CLK_ENABLE +#define __USB_OTG_HS_ULPI_CLK_DISABLE __HAL_RCC_USB_OTG_HS_ULPI_CLK_DISABLE +#define __TIM9_CLK_SLEEP_ENABLE __HAL_RCC_TIM9_CLK_SLEEP_ENABLE +#define __TIM9_CLK_SLEEP_DISABLE __HAL_RCC_TIM9_CLK_SLEEP_DISABLE +#define __TIM10_CLK_SLEEP_ENABLE __HAL_RCC_TIM10_CLK_SLEEP_ENABLE +#define __TIM10_CLK_SLEEP_DISABLE __HAL_RCC_TIM10_CLK_SLEEP_DISABLE +#define __TIM11_CLK_SLEEP_ENABLE __HAL_RCC_TIM11_CLK_SLEEP_ENABLE +#define __TIM11_CLK_SLEEP_DISABLE __HAL_RCC_TIM11_CLK_SLEEP_DISABLE +#define __ETHMACPTP_CLK_SLEEP_ENABLE __HAL_RCC_ETHMACPTP_CLK_SLEEP_ENABLE +#define __ETHMACPTP_CLK_SLEEP_DISABLE __HAL_RCC_ETHMACPTP_CLK_SLEEP_DISABLE +#define __ETHMACPTP_CLK_ENABLE __HAL_RCC_ETHMACPTP_CLK_ENABLE +#define __ETHMACPTP_CLK_DISABLE __HAL_RCC_ETHMACPTP_CLK_DISABLE +#define __HASH_CLK_ENABLE __HAL_RCC_HASH_CLK_ENABLE +#define __HASH_FORCE_RESET __HAL_RCC_HASH_FORCE_RESET +#define __HASH_RELEASE_RESET __HAL_RCC_HASH_RELEASE_RESET +#define __HASH_CLK_SLEEP_ENABLE __HAL_RCC_HASH_CLK_SLEEP_ENABLE +#define __HASH_CLK_SLEEP_DISABLE __HAL_RCC_HASH_CLK_SLEEP_DISABLE +#define __HASH_CLK_DISABLE __HAL_RCC_HASH_CLK_DISABLE +#define __SPI5_CLK_ENABLE __HAL_RCC_SPI5_CLK_ENABLE +#define __SPI5_CLK_DISABLE __HAL_RCC_SPI5_CLK_DISABLE +#define __SPI5_FORCE_RESET __HAL_RCC_SPI5_FORCE_RESET +#define __SPI5_RELEASE_RESET __HAL_RCC_SPI5_RELEASE_RESET +#define __SPI5_CLK_SLEEP_ENABLE __HAL_RCC_SPI5_CLK_SLEEP_ENABLE +#define __SPI5_CLK_SLEEP_DISABLE __HAL_RCC_SPI5_CLK_SLEEP_DISABLE +#define __SPI6_CLK_ENABLE __HAL_RCC_SPI6_CLK_ENABLE +#define __SPI6_CLK_DISABLE __HAL_RCC_SPI6_CLK_DISABLE +#define __SPI6_FORCE_RESET __HAL_RCC_SPI6_FORCE_RESET +#define __SPI6_RELEASE_RESET __HAL_RCC_SPI6_RELEASE_RESET +#define __SPI6_CLK_SLEEP_ENABLE __HAL_RCC_SPI6_CLK_SLEEP_ENABLE +#define __SPI6_CLK_SLEEP_DISABLE __HAL_RCC_SPI6_CLK_SLEEP_DISABLE +#define __LTDC_CLK_ENABLE __HAL_RCC_LTDC_CLK_ENABLE +#define __LTDC_CLK_DISABLE __HAL_RCC_LTDC_CLK_DISABLE +#define __LTDC_FORCE_RESET __HAL_RCC_LTDC_FORCE_RESET +#define __LTDC_RELEASE_RESET __HAL_RCC_LTDC_RELEASE_RESET +#define __LTDC_CLK_SLEEP_ENABLE __HAL_RCC_LTDC_CLK_SLEEP_ENABLE +#define __ETHMAC_CLK_SLEEP_ENABLE __HAL_RCC_ETHMAC_CLK_SLEEP_ENABLE +#define __ETHMAC_CLK_SLEEP_DISABLE __HAL_RCC_ETHMAC_CLK_SLEEP_DISABLE +#define __ETHMACTX_CLK_SLEEP_ENABLE __HAL_RCC_ETHMACTX_CLK_SLEEP_ENABLE +#define __ETHMACTX_CLK_SLEEP_DISABLE __HAL_RCC_ETHMACTX_CLK_SLEEP_DISABLE +#define __ETHMACRX_CLK_SLEEP_ENABLE __HAL_RCC_ETHMACRX_CLK_SLEEP_ENABLE +#define __ETHMACRX_CLK_SLEEP_DISABLE __HAL_RCC_ETHMACRX_CLK_SLEEP_DISABLE +#define __TIM12_CLK_SLEEP_ENABLE __HAL_RCC_TIM12_CLK_SLEEP_ENABLE +#define __TIM12_CLK_SLEEP_DISABLE __HAL_RCC_TIM12_CLK_SLEEP_DISABLE +#define __TIM13_CLK_SLEEP_ENABLE __HAL_RCC_TIM13_CLK_SLEEP_ENABLE +#define __TIM13_CLK_SLEEP_DISABLE __HAL_RCC_TIM13_CLK_SLEEP_DISABLE +#define __TIM14_CLK_SLEEP_ENABLE __HAL_RCC_TIM14_CLK_SLEEP_ENABLE +#define __TIM14_CLK_SLEEP_DISABLE __HAL_RCC_TIM14_CLK_SLEEP_DISABLE +#define __BKPSRAM_CLK_ENABLE __HAL_RCC_BKPSRAM_CLK_ENABLE +#define __BKPSRAM_CLK_DISABLE __HAL_RCC_BKPSRAM_CLK_DISABLE +#define __BKPSRAM_CLK_SLEEP_ENABLE __HAL_RCC_BKPSRAM_CLK_SLEEP_ENABLE +#define __BKPSRAM_CLK_SLEEP_DISABLE __HAL_RCC_BKPSRAM_CLK_SLEEP_DISABLE +#define __CCMDATARAMEN_CLK_ENABLE __HAL_RCC_CCMDATARAMEN_CLK_ENABLE +#define __CCMDATARAMEN_CLK_DISABLE __HAL_RCC_CCMDATARAMEN_CLK_DISABLE +#define __USART6_CLK_ENABLE __HAL_RCC_USART6_CLK_ENABLE +#define __USART6_CLK_DISABLE __HAL_RCC_USART6_CLK_DISABLE +#define __USART6_FORCE_RESET __HAL_RCC_USART6_FORCE_RESET +#define __USART6_RELEASE_RESET __HAL_RCC_USART6_RELEASE_RESET +#define __USART6_CLK_SLEEP_ENABLE __HAL_RCC_USART6_CLK_SLEEP_ENABLE +#define __USART6_CLK_SLEEP_DISABLE __HAL_RCC_USART6_CLK_SLEEP_DISABLE +#define __SPI4_CLK_ENABLE __HAL_RCC_SPI4_CLK_ENABLE +#define __SPI4_CLK_DISABLE __HAL_RCC_SPI4_CLK_DISABLE +#define __SPI4_FORCE_RESET __HAL_RCC_SPI4_FORCE_RESET +#define __SPI4_RELEASE_RESET __HAL_RCC_SPI4_RELEASE_RESET +#define __SPI4_CLK_SLEEP_ENABLE __HAL_RCC_SPI4_CLK_SLEEP_ENABLE +#define __SPI4_CLK_SLEEP_DISABLE __HAL_RCC_SPI4_CLK_SLEEP_DISABLE +#define __GPIOI_CLK_ENABLE __HAL_RCC_GPIOI_CLK_ENABLE +#define __GPIOI_CLK_DISABLE __HAL_RCC_GPIOI_CLK_DISABLE +#define __GPIOI_FORCE_RESET __HAL_RCC_GPIOI_FORCE_RESET +#define __GPIOI_RELEASE_RESET __HAL_RCC_GPIOI_RELEASE_RESET +#define __GPIOI_CLK_SLEEP_ENABLE __HAL_RCC_GPIOI_CLK_SLEEP_ENABLE +#define __GPIOI_CLK_SLEEP_DISABLE __HAL_RCC_GPIOI_CLK_SLEEP_DISABLE +#define __GPIOJ_CLK_ENABLE __HAL_RCC_GPIOJ_CLK_ENABLE +#define __GPIOJ_CLK_DISABLE __HAL_RCC_GPIOJ_CLK_DISABLE +#define __GPIOJ_FORCE_RESET __HAL_RCC_GPIOJ_FORCE_RESET +#define __GPIOJ_RELEASE_RESET __HAL_RCC_GPIOJ_RELEASE_RESET +#define __GPIOJ_CLK_SLEEP_ENABLE __HAL_RCC_GPIOJ_CLK_SLEEP_ENABLE +#define __GPIOJ_CLK_SLEEP_DISABLE __HAL_RCC_GPIOJ_CLK_SLEEP_DISABLE +#define __GPIOK_CLK_ENABLE __HAL_RCC_GPIOK_CLK_ENABLE +#define __GPIOK_CLK_DISABLE __HAL_RCC_GPIOK_CLK_DISABLE +#define __GPIOK_RELEASE_RESET __HAL_RCC_GPIOK_RELEASE_RESET +#define __GPIOK_CLK_SLEEP_ENABLE __HAL_RCC_GPIOK_CLK_SLEEP_ENABLE +#define __GPIOK_CLK_SLEEP_DISABLE __HAL_RCC_GPIOK_CLK_SLEEP_DISABLE +#define __ETH_CLK_ENABLE __HAL_RCC_ETH_CLK_ENABLE +#define __ETH_CLK_DISABLE __HAL_RCC_ETH_CLK_DISABLE +#define __DCMI_CLK_ENABLE __HAL_RCC_DCMI_CLK_ENABLE +#define __DCMI_CLK_DISABLE __HAL_RCC_DCMI_CLK_DISABLE +#define __DCMI_FORCE_RESET __HAL_RCC_DCMI_FORCE_RESET +#define __DCMI_RELEASE_RESET __HAL_RCC_DCMI_RELEASE_RESET +#define __DCMI_CLK_SLEEP_ENABLE __HAL_RCC_DCMI_CLK_SLEEP_ENABLE +#define __DCMI_CLK_SLEEP_DISABLE __HAL_RCC_DCMI_CLK_SLEEP_DISABLE +#define __UART7_CLK_ENABLE __HAL_RCC_UART7_CLK_ENABLE +#define __UART7_CLK_DISABLE __HAL_RCC_UART7_CLK_DISABLE +#define __UART7_RELEASE_RESET __HAL_RCC_UART7_RELEASE_RESET +#define __UART7_FORCE_RESET __HAL_RCC_UART7_FORCE_RESET +#define __UART7_CLK_SLEEP_ENABLE __HAL_RCC_UART7_CLK_SLEEP_ENABLE +#define __UART7_CLK_SLEEP_DISABLE __HAL_RCC_UART7_CLK_SLEEP_DISABLE +#define __UART8_CLK_ENABLE __HAL_RCC_UART8_CLK_ENABLE +#define __UART8_CLK_DISABLE __HAL_RCC_UART8_CLK_DISABLE +#define __UART8_FORCE_RESET __HAL_RCC_UART8_FORCE_RESET +#define __UART8_RELEASE_RESET __HAL_RCC_UART8_RELEASE_RESET +#define __UART8_CLK_SLEEP_ENABLE __HAL_RCC_UART8_CLK_SLEEP_ENABLE +#define __UART8_CLK_SLEEP_DISABLE __HAL_RCC_UART8_CLK_SLEEP_DISABLE +#define __OTGHS_CLK_SLEEP_ENABLE __HAL_RCC_USB_OTG_HS_CLK_SLEEP_ENABLE +#define __OTGHS_CLK_SLEEP_DISABLE __HAL_RCC_USB_OTG_HS_CLK_SLEEP_DISABLE +#define __OTGHS_FORCE_RESET __HAL_RCC_USB_OTG_HS_FORCE_RESET +#define __OTGHS_RELEASE_RESET __HAL_RCC_USB_OTG_HS_RELEASE_RESET +#define __OTGHSULPI_CLK_SLEEP_ENABLE __HAL_RCC_USB_OTG_HS_ULPI_CLK_SLEEP_ENABLE +#define __OTGHSULPI_CLK_SLEEP_DISABLE __HAL_RCC_USB_OTG_HS_ULPI_CLK_SLEEP_DISABLE +#define __HAL_RCC_OTGHS_CLK_SLEEP_ENABLE __HAL_RCC_USB_OTG_HS_CLK_SLEEP_ENABLE +#define __HAL_RCC_OTGHS_CLK_SLEEP_DISABLE __HAL_RCC_USB_OTG_HS_CLK_SLEEP_DISABLE +#define __HAL_RCC_OTGHS_IS_CLK_SLEEP_ENABLED __HAL_RCC_USB_OTG_HS_IS_CLK_SLEEP_ENABLED +#define __HAL_RCC_OTGHS_IS_CLK_SLEEP_DISABLED __HAL_RCC_USB_OTG_HS_IS_CLK_SLEEP_DISABLED +#define __HAL_RCC_OTGHS_FORCE_RESET __HAL_RCC_USB_OTG_HS_FORCE_RESET +#define __HAL_RCC_OTGHS_RELEASE_RESET __HAL_RCC_USB_OTG_HS_RELEASE_RESET +#define __HAL_RCC_OTGHSULPI_CLK_SLEEP_ENABLE __HAL_RCC_USB_OTG_HS_ULPI_CLK_SLEEP_ENABLE +#define __HAL_RCC_OTGHSULPI_CLK_SLEEP_DISABLE __HAL_RCC_USB_OTG_HS_ULPI_CLK_SLEEP_DISABLE +#define __HAL_RCC_OTGHSULPI_IS_CLK_SLEEP_ENABLED __HAL_RCC_USB_OTG_HS_ULPI_IS_CLK_SLEEP_ENABLED +#define __HAL_RCC_OTGHSULPI_IS_CLK_SLEEP_DISABLED __HAL_RCC_USB_OTG_HS_ULPI_IS_CLK_SLEEP_DISABLED +#define __CRYP_FORCE_RESET __HAL_RCC_CRYP_FORCE_RESET +#define __SRAM3_CLK_SLEEP_ENABLE __HAL_RCC_SRAM3_CLK_SLEEP_ENABLE +#define __CAN2_CLK_SLEEP_ENABLE __HAL_RCC_CAN2_CLK_SLEEP_ENABLE +#define __CAN2_CLK_SLEEP_DISABLE __HAL_RCC_CAN2_CLK_SLEEP_DISABLE +#define __DAC_CLK_SLEEP_ENABLE __HAL_RCC_DAC_CLK_SLEEP_ENABLE +#define __DAC_CLK_SLEEP_DISABLE __HAL_RCC_DAC_CLK_SLEEP_DISABLE +#define __ADC2_CLK_SLEEP_ENABLE __HAL_RCC_ADC2_CLK_SLEEP_ENABLE +#define __ADC2_CLK_SLEEP_DISABLE __HAL_RCC_ADC2_CLK_SLEEP_DISABLE +#define __ADC3_CLK_SLEEP_ENABLE __HAL_RCC_ADC3_CLK_SLEEP_ENABLE +#define __ADC3_CLK_SLEEP_DISABLE __HAL_RCC_ADC3_CLK_SLEEP_DISABLE +#define __FSMC_FORCE_RESET __HAL_RCC_FSMC_FORCE_RESET +#define __FSMC_RELEASE_RESET __HAL_RCC_FSMC_RELEASE_RESET +#define __FSMC_CLK_SLEEP_ENABLE __HAL_RCC_FSMC_CLK_SLEEP_ENABLE +#define __FSMC_CLK_SLEEP_DISABLE __HAL_RCC_FSMC_CLK_SLEEP_DISABLE +#define __SDIO_FORCE_RESET __HAL_RCC_SDIO_FORCE_RESET +#define __SDIO_RELEASE_RESET __HAL_RCC_SDIO_RELEASE_RESET +#define __SDIO_CLK_SLEEP_DISABLE __HAL_RCC_SDIO_CLK_SLEEP_DISABLE +#define __SDIO_CLK_SLEEP_ENABLE __HAL_RCC_SDIO_CLK_SLEEP_ENABLE +#define __DMA2D_CLK_ENABLE __HAL_RCC_DMA2D_CLK_ENABLE +#define __DMA2D_CLK_DISABLE __HAL_RCC_DMA2D_CLK_DISABLE +#define __DMA2D_FORCE_RESET __HAL_RCC_DMA2D_FORCE_RESET +#define __DMA2D_RELEASE_RESET __HAL_RCC_DMA2D_RELEASE_RESET +#define __DMA2D_CLK_SLEEP_ENABLE __HAL_RCC_DMA2D_CLK_SLEEP_ENABLE +#define __DMA2D_CLK_SLEEP_DISABLE __HAL_RCC_DMA2D_CLK_SLEEP_DISABLE + +/* alias define maintained for legacy */ +#define __HAL_RCC_OTGFS_FORCE_RESET __HAL_RCC_USB_OTG_FS_FORCE_RESET +#define __HAL_RCC_OTGFS_RELEASE_RESET __HAL_RCC_USB_OTG_FS_RELEASE_RESET + +#define __ADC12_CLK_ENABLE __HAL_RCC_ADC12_CLK_ENABLE +#define __ADC12_CLK_DISABLE __HAL_RCC_ADC12_CLK_DISABLE +#define __ADC34_CLK_ENABLE __HAL_RCC_ADC34_CLK_ENABLE +#define __ADC34_CLK_DISABLE __HAL_RCC_ADC34_CLK_DISABLE +#define __ADC12_CLK_ENABLE __HAL_RCC_ADC12_CLK_ENABLE +#define __ADC12_CLK_DISABLE __HAL_RCC_ADC12_CLK_DISABLE +#define __DAC2_CLK_ENABLE __HAL_RCC_DAC2_CLK_ENABLE +#define __DAC2_CLK_DISABLE __HAL_RCC_DAC2_CLK_DISABLE +#define __TIM18_CLK_ENABLE __HAL_RCC_TIM18_CLK_ENABLE +#define __TIM18_CLK_DISABLE __HAL_RCC_TIM18_CLK_DISABLE +#define __TIM19_CLK_ENABLE __HAL_RCC_TIM19_CLK_ENABLE +#define __TIM19_CLK_DISABLE __HAL_RCC_TIM19_CLK_DISABLE +#define __TIM20_CLK_ENABLE __HAL_RCC_TIM20_CLK_ENABLE +#define __TIM20_CLK_DISABLE __HAL_RCC_TIM20_CLK_DISABLE +#define __HRTIM1_CLK_ENABLE __HAL_RCC_HRTIM1_CLK_ENABLE +#define __HRTIM1_CLK_DISABLE __HAL_RCC_HRTIM1_CLK_DISABLE +#define __SDADC1_CLK_ENABLE __HAL_RCC_SDADC1_CLK_ENABLE +#define __SDADC2_CLK_ENABLE __HAL_RCC_SDADC2_CLK_ENABLE +#define __SDADC3_CLK_ENABLE __HAL_RCC_SDADC3_CLK_ENABLE +#define __SDADC1_CLK_DISABLE __HAL_RCC_SDADC1_CLK_DISABLE +#define __SDADC2_CLK_DISABLE __HAL_RCC_SDADC2_CLK_DISABLE +#define __SDADC3_CLK_DISABLE __HAL_RCC_SDADC3_CLK_DISABLE + +#define __ADC12_FORCE_RESET __HAL_RCC_ADC12_FORCE_RESET +#define __ADC12_RELEASE_RESET __HAL_RCC_ADC12_RELEASE_RESET +#define __ADC34_FORCE_RESET __HAL_RCC_ADC34_FORCE_RESET +#define __ADC34_RELEASE_RESET __HAL_RCC_ADC34_RELEASE_RESET +#define __ADC12_FORCE_RESET __HAL_RCC_ADC12_FORCE_RESET +#define __ADC12_RELEASE_RESET __HAL_RCC_ADC12_RELEASE_RESET +#define __DAC2_FORCE_RESET __HAL_RCC_DAC2_FORCE_RESET +#define __DAC2_RELEASE_RESET __HAL_RCC_DAC2_RELEASE_RESET +#define __TIM18_FORCE_RESET __HAL_RCC_TIM18_FORCE_RESET +#define __TIM18_RELEASE_RESET __HAL_RCC_TIM18_RELEASE_RESET +#define __TIM19_FORCE_RESET __HAL_RCC_TIM19_FORCE_RESET +#define __TIM19_RELEASE_RESET __HAL_RCC_TIM19_RELEASE_RESET +#define __TIM20_FORCE_RESET __HAL_RCC_TIM20_FORCE_RESET +#define __TIM20_RELEASE_RESET __HAL_RCC_TIM20_RELEASE_RESET +#define __HRTIM1_FORCE_RESET __HAL_RCC_HRTIM1_FORCE_RESET +#define __HRTIM1_RELEASE_RESET __HAL_RCC_HRTIM1_RELEASE_RESET +#define __SDADC1_FORCE_RESET __HAL_RCC_SDADC1_FORCE_RESET +#define __SDADC2_FORCE_RESET __HAL_RCC_SDADC2_FORCE_RESET +#define __SDADC3_FORCE_RESET __HAL_RCC_SDADC3_FORCE_RESET +#define __SDADC1_RELEASE_RESET __HAL_RCC_SDADC1_RELEASE_RESET +#define __SDADC2_RELEASE_RESET __HAL_RCC_SDADC2_RELEASE_RESET +#define __SDADC3_RELEASE_RESET __HAL_RCC_SDADC3_RELEASE_RESET + +#define __ADC1_IS_CLK_ENABLED __HAL_RCC_ADC1_IS_CLK_ENABLED +#define __ADC1_IS_CLK_DISABLED __HAL_RCC_ADC1_IS_CLK_DISABLED +#define __ADC12_IS_CLK_ENABLED __HAL_RCC_ADC12_IS_CLK_ENABLED +#define __ADC12_IS_CLK_DISABLED __HAL_RCC_ADC12_IS_CLK_DISABLED +#define __ADC34_IS_CLK_ENABLED __HAL_RCC_ADC34_IS_CLK_ENABLED +#define __ADC34_IS_CLK_DISABLED __HAL_RCC_ADC34_IS_CLK_DISABLED +#define __CEC_IS_CLK_ENABLED __HAL_RCC_CEC_IS_CLK_ENABLED +#define __CEC_IS_CLK_DISABLED __HAL_RCC_CEC_IS_CLK_DISABLED +#define __CRC_IS_CLK_ENABLED __HAL_RCC_CRC_IS_CLK_ENABLED +#define __CRC_IS_CLK_DISABLED __HAL_RCC_CRC_IS_CLK_DISABLED +#define __DAC1_IS_CLK_ENABLED __HAL_RCC_DAC1_IS_CLK_ENABLED +#define __DAC1_IS_CLK_DISABLED __HAL_RCC_DAC1_IS_CLK_DISABLED +#define __DAC2_IS_CLK_ENABLED __HAL_RCC_DAC2_IS_CLK_ENABLED +#define __DAC2_IS_CLK_DISABLED __HAL_RCC_DAC2_IS_CLK_DISABLED +#define __DMA1_IS_CLK_ENABLED __HAL_RCC_DMA1_IS_CLK_ENABLED +#define __DMA1_IS_CLK_DISABLED __HAL_RCC_DMA1_IS_CLK_DISABLED +#define __DMA2_IS_CLK_ENABLED __HAL_RCC_DMA2_IS_CLK_ENABLED +#define __DMA2_IS_CLK_DISABLED __HAL_RCC_DMA2_IS_CLK_DISABLED +#define __FLITF_IS_CLK_ENABLED __HAL_RCC_FLITF_IS_CLK_ENABLED +#define __FLITF_IS_CLK_DISABLED __HAL_RCC_FLITF_IS_CLK_DISABLED +#define __FMC_IS_CLK_ENABLED __HAL_RCC_FMC_IS_CLK_ENABLED +#define __FMC_IS_CLK_DISABLED __HAL_RCC_FMC_IS_CLK_DISABLED +#define __GPIOA_IS_CLK_ENABLED __HAL_RCC_GPIOA_IS_CLK_ENABLED +#define __GPIOA_IS_CLK_DISABLED __HAL_RCC_GPIOA_IS_CLK_DISABLED +#define __GPIOB_IS_CLK_ENABLED __HAL_RCC_GPIOB_IS_CLK_ENABLED +#define __GPIOB_IS_CLK_DISABLED __HAL_RCC_GPIOB_IS_CLK_DISABLED +#define __GPIOC_IS_CLK_ENABLED __HAL_RCC_GPIOC_IS_CLK_ENABLED +#define __GPIOC_IS_CLK_DISABLED __HAL_RCC_GPIOC_IS_CLK_DISABLED +#define __GPIOD_IS_CLK_ENABLED __HAL_RCC_GPIOD_IS_CLK_ENABLED +#define __GPIOD_IS_CLK_DISABLED __HAL_RCC_GPIOD_IS_CLK_DISABLED +#define __GPIOE_IS_CLK_ENABLED __HAL_RCC_GPIOE_IS_CLK_ENABLED +#define __GPIOE_IS_CLK_DISABLED __HAL_RCC_GPIOE_IS_CLK_DISABLED +#define __GPIOF_IS_CLK_ENABLED __HAL_RCC_GPIOF_IS_CLK_ENABLED +#define __GPIOF_IS_CLK_DISABLED __HAL_RCC_GPIOF_IS_CLK_DISABLED +#define __GPIOG_IS_CLK_ENABLED __HAL_RCC_GPIOG_IS_CLK_ENABLED +#define __GPIOG_IS_CLK_DISABLED __HAL_RCC_GPIOG_IS_CLK_DISABLED +#define __GPIOH_IS_CLK_ENABLED __HAL_RCC_GPIOH_IS_CLK_ENABLED +#define __GPIOH_IS_CLK_DISABLED __HAL_RCC_GPIOH_IS_CLK_DISABLED +#define __HRTIM1_IS_CLK_ENABLED __HAL_RCC_HRTIM1_IS_CLK_ENABLED +#define __HRTIM1_IS_CLK_DISABLED __HAL_RCC_HRTIM1_IS_CLK_DISABLED +#define __I2C1_IS_CLK_ENABLED __HAL_RCC_I2C1_IS_CLK_ENABLED +#define __I2C1_IS_CLK_DISABLED __HAL_RCC_I2C1_IS_CLK_DISABLED +#define __I2C2_IS_CLK_ENABLED __HAL_RCC_I2C2_IS_CLK_ENABLED +#define __I2C2_IS_CLK_DISABLED __HAL_RCC_I2C2_IS_CLK_DISABLED +#define __I2C3_IS_CLK_ENABLED __HAL_RCC_I2C3_IS_CLK_ENABLED +#define __I2C3_IS_CLK_DISABLED __HAL_RCC_I2C3_IS_CLK_DISABLED +#define __PWR_IS_CLK_ENABLED __HAL_RCC_PWR_IS_CLK_ENABLED +#define __PWR_IS_CLK_DISABLED __HAL_RCC_PWR_IS_CLK_DISABLED +#define __SYSCFG_IS_CLK_ENABLED __HAL_RCC_SYSCFG_IS_CLK_ENABLED +#define __SYSCFG_IS_CLK_DISABLED __HAL_RCC_SYSCFG_IS_CLK_DISABLED +#define __SPI1_IS_CLK_ENABLED __HAL_RCC_SPI1_IS_CLK_ENABLED +#define __SPI1_IS_CLK_DISABLED __HAL_RCC_SPI1_IS_CLK_DISABLED +#define __SPI2_IS_CLK_ENABLED __HAL_RCC_SPI2_IS_CLK_ENABLED +#define __SPI2_IS_CLK_DISABLED __HAL_RCC_SPI2_IS_CLK_DISABLED +#define __SPI3_IS_CLK_ENABLED __HAL_RCC_SPI3_IS_CLK_ENABLED +#define __SPI3_IS_CLK_DISABLED __HAL_RCC_SPI3_IS_CLK_DISABLED +#define __SPI4_IS_CLK_ENABLED __HAL_RCC_SPI4_IS_CLK_ENABLED +#define __SPI4_IS_CLK_DISABLED __HAL_RCC_SPI4_IS_CLK_DISABLED +#define __SDADC1_IS_CLK_ENABLED __HAL_RCC_SDADC1_IS_CLK_ENABLED +#define __SDADC1_IS_CLK_DISABLED __HAL_RCC_SDADC1_IS_CLK_DISABLED +#define __SDADC2_IS_CLK_ENABLED __HAL_RCC_SDADC2_IS_CLK_ENABLED +#define __SDADC2_IS_CLK_DISABLED __HAL_RCC_SDADC2_IS_CLK_DISABLED +#define __SDADC3_IS_CLK_ENABLED __HAL_RCC_SDADC3_IS_CLK_ENABLED +#define __SDADC3_IS_CLK_DISABLED __HAL_RCC_SDADC3_IS_CLK_DISABLED +#define __SRAM_IS_CLK_ENABLED __HAL_RCC_SRAM_IS_CLK_ENABLED +#define __SRAM_IS_CLK_DISABLED __HAL_RCC_SRAM_IS_CLK_DISABLED +#define __TIM1_IS_CLK_ENABLED __HAL_RCC_TIM1_IS_CLK_ENABLED +#define __TIM1_IS_CLK_DISABLED __HAL_RCC_TIM1_IS_CLK_DISABLED +#define __TIM2_IS_CLK_ENABLED __HAL_RCC_TIM2_IS_CLK_ENABLED +#define __TIM2_IS_CLK_DISABLED __HAL_RCC_TIM2_IS_CLK_DISABLED +#define __TIM3_IS_CLK_ENABLED __HAL_RCC_TIM3_IS_CLK_ENABLED +#define __TIM3_IS_CLK_DISABLED __HAL_RCC_TIM3_IS_CLK_DISABLED +#define __TIM4_IS_CLK_ENABLED __HAL_RCC_TIM4_IS_CLK_ENABLED +#define __TIM4_IS_CLK_DISABLED __HAL_RCC_TIM4_IS_CLK_DISABLED +#define __TIM5_IS_CLK_ENABLED __HAL_RCC_TIM5_IS_CLK_ENABLED +#define __TIM5_IS_CLK_DISABLED __HAL_RCC_TIM5_IS_CLK_DISABLED +#define __TIM6_IS_CLK_ENABLED __HAL_RCC_TIM6_IS_CLK_ENABLED +#define __TIM6_IS_CLK_DISABLED __HAL_RCC_TIM6_IS_CLK_DISABLED +#define __TIM7_IS_CLK_ENABLED __HAL_RCC_TIM7_IS_CLK_ENABLED +#define __TIM7_IS_CLK_DISABLED __HAL_RCC_TIM7_IS_CLK_DISABLED +#define __TIM8_IS_CLK_ENABLED __HAL_RCC_TIM8_IS_CLK_ENABLED +#define __TIM8_IS_CLK_DISABLED __HAL_RCC_TIM8_IS_CLK_DISABLED +#define __TIM12_IS_CLK_ENABLED __HAL_RCC_TIM12_IS_CLK_ENABLED +#define __TIM12_IS_CLK_DISABLED __HAL_RCC_TIM12_IS_CLK_DISABLED +#define __TIM13_IS_CLK_ENABLED __HAL_RCC_TIM13_IS_CLK_ENABLED +#define __TIM13_IS_CLK_DISABLED __HAL_RCC_TIM13_IS_CLK_DISABLED +#define __TIM14_IS_CLK_ENABLED __HAL_RCC_TIM14_IS_CLK_ENABLED +#define __TIM14_IS_CLK_DISABLED __HAL_RCC_TIM14_IS_CLK_DISABLED +#define __TIM15_IS_CLK_ENABLED __HAL_RCC_TIM15_IS_CLK_ENABLED +#define __TIM15_IS_CLK_DISABLED __HAL_RCC_TIM15_IS_CLK_DISABLED +#define __TIM16_IS_CLK_ENABLED __HAL_RCC_TIM16_IS_CLK_ENABLED +#define __TIM16_IS_CLK_DISABLED __HAL_RCC_TIM16_IS_CLK_DISABLED +#define __TIM17_IS_CLK_ENABLED __HAL_RCC_TIM17_IS_CLK_ENABLED +#define __TIM17_IS_CLK_DISABLED __HAL_RCC_TIM17_IS_CLK_DISABLED +#define __TIM18_IS_CLK_ENABLED __HAL_RCC_TIM18_IS_CLK_ENABLED +#define __TIM18_IS_CLK_DISABLED __HAL_RCC_TIM18_IS_CLK_DISABLED +#define __TIM19_IS_CLK_ENABLED __HAL_RCC_TIM19_IS_CLK_ENABLED +#define __TIM19_IS_CLK_DISABLED __HAL_RCC_TIM19_IS_CLK_DISABLED +#define __TIM20_IS_CLK_ENABLED __HAL_RCC_TIM20_IS_CLK_ENABLED +#define __TIM20_IS_CLK_DISABLED __HAL_RCC_TIM20_IS_CLK_DISABLED +#define __TSC_IS_CLK_ENABLED __HAL_RCC_TSC_IS_CLK_ENABLED +#define __TSC_IS_CLK_DISABLED __HAL_RCC_TSC_IS_CLK_DISABLED +#define __UART4_IS_CLK_ENABLED __HAL_RCC_UART4_IS_CLK_ENABLED +#define __UART4_IS_CLK_DISABLED __HAL_RCC_UART4_IS_CLK_DISABLED +#define __UART5_IS_CLK_ENABLED __HAL_RCC_UART5_IS_CLK_ENABLED +#define __UART5_IS_CLK_DISABLED __HAL_RCC_UART5_IS_CLK_DISABLED +#define __USART1_IS_CLK_ENABLED __HAL_RCC_USART1_IS_CLK_ENABLED +#define __USART1_IS_CLK_DISABLED __HAL_RCC_USART1_IS_CLK_DISABLED +#define __USART2_IS_CLK_ENABLED __HAL_RCC_USART2_IS_CLK_ENABLED +#define __USART2_IS_CLK_DISABLED __HAL_RCC_USART2_IS_CLK_DISABLED +#define __USART3_IS_CLK_ENABLED __HAL_RCC_USART3_IS_CLK_ENABLED +#define __USART3_IS_CLK_DISABLED __HAL_RCC_USART3_IS_CLK_DISABLED +#define __USB_IS_CLK_ENABLED __HAL_RCC_USB_IS_CLK_ENABLED +#define __USB_IS_CLK_DISABLED __HAL_RCC_USB_IS_CLK_DISABLED +#define __WWDG_IS_CLK_ENABLED __HAL_RCC_WWDG_IS_CLK_ENABLED +#define __WWDG_IS_CLK_DISABLED __HAL_RCC_WWDG_IS_CLK_DISABLED + +#if defined(STM32F4) +#define __HAL_RCC_SDMMC1_FORCE_RESET __HAL_RCC_SDIO_FORCE_RESET +#define __HAL_RCC_SDMMC1_RELEASE_RESET __HAL_RCC_SDIO_RELEASE_RESET +#define __HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE __HAL_RCC_SDIO_CLK_SLEEP_ENABLE +#define __HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE __HAL_RCC_SDIO_CLK_SLEEP_DISABLE +#define __HAL_RCC_SDMMC1_CLK_ENABLE __HAL_RCC_SDIO_CLK_ENABLE +#define __HAL_RCC_SDMMC1_CLK_DISABLE __HAL_RCC_SDIO_CLK_DISABLE +#define __HAL_RCC_SDMMC1_IS_CLK_ENABLED __HAL_RCC_SDIO_IS_CLK_ENABLED +#define __HAL_RCC_SDMMC1_IS_CLK_DISABLED __HAL_RCC_SDIO_IS_CLK_DISABLED +#define Sdmmc1ClockSelection SdioClockSelection +#define RCC_PERIPHCLK_SDMMC1 RCC_PERIPHCLK_SDIO +#define RCC_SDMMC1CLKSOURCE_CLK48 RCC_SDIOCLKSOURCE_CK48 +#define RCC_SDMMC1CLKSOURCE_SYSCLK RCC_SDIOCLKSOURCE_SYSCLK +#define __HAL_RCC_SDMMC1_CONFIG __HAL_RCC_SDIO_CONFIG +#define __HAL_RCC_GET_SDMMC1_SOURCE __HAL_RCC_GET_SDIO_SOURCE +#endif + +#if defined(STM32F7) || defined(STM32L4) +#define __HAL_RCC_SDIO_FORCE_RESET __HAL_RCC_SDMMC1_FORCE_RESET +#define __HAL_RCC_SDIO_RELEASE_RESET __HAL_RCC_SDMMC1_RELEASE_RESET +#define __HAL_RCC_SDIO_CLK_SLEEP_ENABLE __HAL_RCC_SDMMC1_CLK_SLEEP_ENABLE +#define __HAL_RCC_SDIO_CLK_SLEEP_DISABLE __HAL_RCC_SDMMC1_CLK_SLEEP_DISABLE +#define __HAL_RCC_SDIO_CLK_ENABLE __HAL_RCC_SDMMC1_CLK_ENABLE +#define __HAL_RCC_SDIO_CLK_DISABLE __HAL_RCC_SDMMC1_CLK_DISABLE +#define __HAL_RCC_SDIO_IS_CLK_ENABLED __HAL_RCC_SDMMC1_IS_CLK_ENABLED +#define __HAL_RCC_SDIO_IS_CLK_DISABLED __HAL_RCC_SDMMC1_IS_CLK_DISABLED +#define SdioClockSelection Sdmmc1ClockSelection +#define RCC_PERIPHCLK_SDIO RCC_PERIPHCLK_SDMMC1 +#define __HAL_RCC_SDIO_CONFIG __HAL_RCC_SDMMC1_CONFIG +#define __HAL_RCC_GET_SDIO_SOURCE __HAL_RCC_GET_SDMMC1_SOURCE +#endif + +#if defined(STM32F7) +#define RCC_SDIOCLKSOURCE_CLK48 RCC_SDMMC1CLKSOURCE_CLK48 +#define RCC_SDIOCLKSOURCE_SYSCLK RCC_SDMMC1CLKSOURCE_SYSCLK +#endif + +#define __HAL_RCC_I2SCLK __HAL_RCC_I2S_CONFIG +#define __HAL_RCC_I2SCLK_CONFIG __HAL_RCC_I2S_CONFIG + +#define __RCC_PLLSRC RCC_GET_PLL_OSCSOURCE + +#define IS_RCC_MSIRANGE IS_RCC_MSI_CLOCK_RANGE +#define IS_RCC_RTCCLK_SOURCE IS_RCC_RTCCLKSOURCE +#define IS_RCC_SYSCLK_DIV IS_RCC_HCLK +#define IS_RCC_HCLK_DIV IS_RCC_PCLK +#define IS_RCC_PERIPHCLK IS_RCC_PERIPHCLOCK + +#define RCC_IT_HSI14 RCC_IT_HSI14RDY + +#define RCC_IT_CSSLSE RCC_IT_LSECSS +#define RCC_IT_CSSHSE RCC_IT_CSS + +#define RCC_PLLMUL_3 RCC_PLL_MUL3 +#define RCC_PLLMUL_4 RCC_PLL_MUL4 +#define RCC_PLLMUL_6 RCC_PLL_MUL6 +#define RCC_PLLMUL_8 RCC_PLL_MUL8 +#define RCC_PLLMUL_12 RCC_PLL_MUL12 +#define RCC_PLLMUL_16 RCC_PLL_MUL16 +#define RCC_PLLMUL_24 RCC_PLL_MUL24 +#define RCC_PLLMUL_32 RCC_PLL_MUL32 +#define RCC_PLLMUL_48 RCC_PLL_MUL48 + +#define RCC_PLLDIV_2 RCC_PLL_DIV2 +#define RCC_PLLDIV_3 RCC_PLL_DIV3 +#define RCC_PLLDIV_4 RCC_PLL_DIV4 + +#define IS_RCC_MCOSOURCE IS_RCC_MCO1SOURCE +#define __HAL_RCC_MCO_CONFIG __HAL_RCC_MCO1_CONFIG +#define RCC_MCO_NODIV RCC_MCODIV_1 +#define RCC_MCO_DIV1 RCC_MCODIV_1 +#define RCC_MCO_DIV2 RCC_MCODIV_2 +#define RCC_MCO_DIV4 RCC_MCODIV_4 +#define RCC_MCO_DIV8 RCC_MCODIV_8 +#define RCC_MCO_DIV16 RCC_MCODIV_16 +#define RCC_MCO_DIV32 RCC_MCODIV_32 +#define RCC_MCO_DIV64 RCC_MCODIV_64 +#define RCC_MCO_DIV128 RCC_MCODIV_128 +#define RCC_MCOSOURCE_NONE RCC_MCO1SOURCE_NOCLOCK +#define RCC_MCOSOURCE_LSI RCC_MCO1SOURCE_LSI +#define RCC_MCOSOURCE_LSE RCC_MCO1SOURCE_LSE +#define RCC_MCOSOURCE_SYSCLK RCC_MCO1SOURCE_SYSCLK +#define RCC_MCOSOURCE_HSI RCC_MCO1SOURCE_HSI +#define RCC_MCOSOURCE_HSI14 RCC_MCO1SOURCE_HSI14 +#define RCC_MCOSOURCE_HSI48 RCC_MCO1SOURCE_HSI48 +#define RCC_MCOSOURCE_HSE RCC_MCO1SOURCE_HSE +#define RCC_MCOSOURCE_PLLCLK_DIV1 RCC_MCO1SOURCE_PLLCLK +#define RCC_MCOSOURCE_PLLCLK_NODIV RCC_MCO1SOURCE_PLLCLK +#define RCC_MCOSOURCE_PLLCLK_DIV2 RCC_MCO1SOURCE_PLLCLK_DIV2 + +#define RCC_RTCCLKSOURCE_NONE RCC_RTCCLKSOURCE_NO_CLK + +#define RCC_USBCLK_PLLSAI1 RCC_USBCLKSOURCE_PLLSAI1 +#define RCC_USBCLK_PLL RCC_USBCLKSOURCE_PLL +#define RCC_USBCLK_MSI RCC_USBCLKSOURCE_MSI +#define RCC_USBCLKSOURCE_PLLCLK RCC_USBCLKSOURCE_PLL +#define RCC_USBPLLCLK_DIV1 RCC_USBCLKSOURCE_PLL +#define RCC_USBPLLCLK_DIV1_5 RCC_USBCLKSOURCE_PLL_DIV1_5 +#define RCC_USBPLLCLK_DIV2 RCC_USBCLKSOURCE_PLL_DIV2 +#define RCC_USBPLLCLK_DIV3 RCC_USBCLKSOURCE_PLL_DIV3 + +#define HSION_BitNumber RCC_HSION_BIT_NUMBER +#define HSION_BITNUMBER RCC_HSION_BIT_NUMBER +#define HSEON_BitNumber RCC_HSEON_BIT_NUMBER +#define HSEON_BITNUMBER RCC_HSEON_BIT_NUMBER +#define MSION_BITNUMBER RCC_MSION_BIT_NUMBER +#define CSSON_BitNumber RCC_CSSON_BIT_NUMBER +#define CSSON_BITNUMBER RCC_CSSON_BIT_NUMBER +#define PLLON_BitNumber RCC_PLLON_BIT_NUMBER +#define PLLON_BITNUMBER RCC_PLLON_BIT_NUMBER +#define PLLI2SON_BitNumber RCC_PLLI2SON_BIT_NUMBER +#define I2SSRC_BitNumber RCC_I2SSRC_BIT_NUMBER +#define RTCEN_BitNumber RCC_RTCEN_BIT_NUMBER +#define RTCEN_BITNUMBER RCC_RTCEN_BIT_NUMBER +#define BDRST_BitNumber RCC_BDRST_BIT_NUMBER +#define BDRST_BITNUMBER RCC_BDRST_BIT_NUMBER +#define RTCRST_BITNUMBER RCC_RTCRST_BIT_NUMBER +#define LSION_BitNumber RCC_LSION_BIT_NUMBER +#define LSION_BITNUMBER RCC_LSION_BIT_NUMBER +#define LSEON_BitNumber RCC_LSEON_BIT_NUMBER +#define LSEON_BITNUMBER RCC_LSEON_BIT_NUMBER +#define LSEBYP_BITNUMBER RCC_LSEBYP_BIT_NUMBER +#define PLLSAION_BitNumber RCC_PLLSAION_BIT_NUMBER +#define TIMPRE_BitNumber RCC_TIMPRE_BIT_NUMBER +#define RMVF_BitNumber RCC_RMVF_BIT_NUMBER +#define RMVF_BITNUMBER RCC_RMVF_BIT_NUMBER +#define RCC_CR2_HSI14TRIM_BitNumber RCC_HSI14TRIM_BIT_NUMBER +#define CR_BYTE2_ADDRESS RCC_CR_BYTE2_ADDRESS +#define CIR_BYTE1_ADDRESS RCC_CIR_BYTE1_ADDRESS +#define CIR_BYTE2_ADDRESS RCC_CIR_BYTE2_ADDRESS +#define BDCR_BYTE0_ADDRESS RCC_BDCR_BYTE0_ADDRESS +#define DBP_TIMEOUT_VALUE RCC_DBP_TIMEOUT_VALUE +#define LSE_TIMEOUT_VALUE RCC_LSE_TIMEOUT_VALUE + +#define CR_HSION_BB RCC_CR_HSION_BB +#define CR_CSSON_BB RCC_CR_CSSON_BB +#define CR_PLLON_BB RCC_CR_PLLON_BB +#define CR_PLLI2SON_BB RCC_CR_PLLI2SON_BB +#define CR_MSION_BB RCC_CR_MSION_BB +#define CSR_LSION_BB RCC_CSR_LSION_BB +#define CSR_LSEON_BB RCC_CSR_LSEON_BB +#define CSR_LSEBYP_BB RCC_CSR_LSEBYP_BB +#define CSR_RTCEN_BB RCC_CSR_RTCEN_BB +#define CSR_RTCRST_BB RCC_CSR_RTCRST_BB +#define CFGR_I2SSRC_BB RCC_CFGR_I2SSRC_BB +#define BDCR_RTCEN_BB RCC_BDCR_RTCEN_BB +#define BDCR_BDRST_BB RCC_BDCR_BDRST_BB +#define CR_HSEON_BB RCC_CR_HSEON_BB +#define CSR_RMVF_BB RCC_CSR_RMVF_BB +#define CR_PLLSAION_BB RCC_CR_PLLSAION_BB +#define DCKCFGR_TIMPRE_BB RCC_DCKCFGR_TIMPRE_BB + +#define __HAL_RCC_CRS_ENABLE_FREQ_ERROR_COUNTER __HAL_RCC_CRS_FREQ_ERROR_COUNTER_ENABLE +#define __HAL_RCC_CRS_DISABLE_FREQ_ERROR_COUNTER __HAL_RCC_CRS_FREQ_ERROR_COUNTER_DISABLE +#define __HAL_RCC_CRS_ENABLE_AUTOMATIC_CALIB __HAL_RCC_CRS_AUTOMATIC_CALIB_ENABLE +#define __HAL_RCC_CRS_DISABLE_AUTOMATIC_CALIB __HAL_RCC_CRS_AUTOMATIC_CALIB_DISABLE +#define __HAL_RCC_CRS_CALCULATE_RELOADVALUE __HAL_RCC_CRS_RELOADVALUE_CALCULATE + +#define __HAL_RCC_GET_IT_SOURCE __HAL_RCC_GET_IT + +#define RCC_CRS_SYNCWARM RCC_CRS_SYNCWARN +#define RCC_CRS_TRIMOV RCC_CRS_TRIMOVF + +#define RCC_PERIPHCLK_CK48 RCC_PERIPHCLK_CLK48 +#define RCC_CK48CLKSOURCE_PLLQ RCC_CLK48CLKSOURCE_PLLQ +#define RCC_CK48CLKSOURCE_PLLSAIP RCC_CLK48CLKSOURCE_PLLSAIP +#define RCC_CK48CLKSOURCE_PLLI2SQ RCC_CLK48CLKSOURCE_PLLI2SQ +#define IS_RCC_CK48CLKSOURCE IS_RCC_CLK48CLKSOURCE +#define RCC_SDIOCLKSOURCE_CK48 RCC_SDIOCLKSOURCE_CLK48 + +#define __HAL_RCC_DFSDM_CLK_ENABLE __HAL_RCC_DFSDM1_CLK_ENABLE +#define __HAL_RCC_DFSDM_CLK_DISABLE __HAL_RCC_DFSDM1_CLK_DISABLE +#define __HAL_RCC_DFSDM_IS_CLK_ENABLED __HAL_RCC_DFSDM1_IS_CLK_ENABLED +#define __HAL_RCC_DFSDM_IS_CLK_DISABLED __HAL_RCC_DFSDM1_IS_CLK_DISABLED +#define __HAL_RCC_DFSDM_FORCE_RESET __HAL_RCC_DFSDM1_FORCE_RESET +#define __HAL_RCC_DFSDM_RELEASE_RESET __HAL_RCC_DFSDM1_RELEASE_RESET +#define __HAL_RCC_DFSDM_CLK_SLEEP_ENABLE __HAL_RCC_DFSDM1_CLK_SLEEP_ENABLE +#define __HAL_RCC_DFSDM_CLK_SLEEP_DISABLE __HAL_RCC_DFSDM1_CLK_SLEEP_DISABLE +#define __HAL_RCC_DFSDM_IS_CLK_SLEEP_ENABLED __HAL_RCC_DFSDM1_IS_CLK_SLEEP_ENABLED +#define __HAL_RCC_DFSDM_IS_CLK_SLEEP_DISABLED __HAL_RCC_DFSDM1_IS_CLK_SLEEP_DISABLED +#define DfsdmClockSelection Dfsdm1ClockSelection +#define RCC_PERIPHCLK_DFSDM RCC_PERIPHCLK_DFSDM1 +#define RCC_DFSDMCLKSOURCE_PCLK RCC_DFSDM1CLKSOURCE_PCLK +#define RCC_DFSDMCLKSOURCE_SYSCLK RCC_DFSDM1CLKSOURCE_SYSCLK +#define __HAL_RCC_DFSDM_CONFIG __HAL_RCC_DFSDM1_CONFIG +#define __HAL_RCC_GET_DFSDM_SOURCE __HAL_RCC_GET_DFSDM1_SOURCE +/** + * @} + */ + +/** @defgroup HAL_RNG_Aliased_Macros HAL RNG Aliased Macros maintained for legacy purpose + * @{ + */ +#define HAL_RNG_ReadyCallback(__HANDLE__) HAL_RNG_ReadyDataCallback((__HANDLE__), uint32_t random32bit) + +/** + * @} + */ + +/** @defgroup HAL_RTC_Aliased_Macros HAL RTC Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __HAL_RTC_CLEAR_FLAG __HAL_RTC_EXTI_CLEAR_FLAG +#define __HAL_RTC_DISABLE_IT __HAL_RTC_EXTI_DISABLE_IT +#define __HAL_RTC_ENABLE_IT __HAL_RTC_EXTI_ENABLE_IT + +#if defined (STM32F1) +#define __HAL_RTC_EXTI_CLEAR_FLAG(RTC_EXTI_LINE_ALARM_EVENT) __HAL_RTC_ALARM_EXTI_CLEAR_FLAG() + +#define __HAL_RTC_EXTI_ENABLE_IT(RTC_EXTI_LINE_ALARM_EVENT) __HAL_RTC_ALARM_EXTI_ENABLE_IT() + +#define __HAL_RTC_EXTI_DISABLE_IT(RTC_EXTI_LINE_ALARM_EVENT) __HAL_RTC_ALARM_EXTI_DISABLE_IT() + +#define __HAL_RTC_EXTI_GET_FLAG(RTC_EXTI_LINE_ALARM_EVENT) __HAL_RTC_ALARM_EXTI_GET_FLAG() + +#define __HAL_RTC_EXTI_GENERATE_SWIT(RTC_EXTI_LINE_ALARM_EVENT) __HAL_RTC_ALARM_EXTI_GENERATE_SWIT() +#else +#define __HAL_RTC_EXTI_CLEAR_FLAG(__EXTI_LINE__) (((__EXTI_LINE__) == RTC_EXTI_LINE_ALARM_EVENT) ? __HAL_RTC_ALARM_EXTI_CLEAR_FLAG() : \ + (((__EXTI_LINE__) == RTC_EXTI_LINE_WAKEUPTIMER_EVENT) ? __HAL_RTC_WAKEUPTIMER_EXTI_CLEAR_FLAG() : \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_CLEAR_FLAG())) +#define __HAL_RTC_EXTI_ENABLE_IT(__EXTI_LINE__) (((__EXTI_LINE__) == RTC_EXTI_LINE_ALARM_EVENT) ? __HAL_RTC_ALARM_EXTI_ENABLE_IT() : \ + (((__EXTI_LINE__) == RTC_EXTI_LINE_WAKEUPTIMER_EVENT) ? __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_IT() : \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_IT())) +#define __HAL_RTC_EXTI_DISABLE_IT(__EXTI_LINE__) (((__EXTI_LINE__) == RTC_EXTI_LINE_ALARM_EVENT) ? __HAL_RTC_ALARM_EXTI_DISABLE_IT() : \ + (((__EXTI_LINE__) == RTC_EXTI_LINE_WAKEUPTIMER_EVENT) ? __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_IT() : \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_IT())) +#define __HAL_RTC_EXTI_GET_FLAG(__EXTI_LINE__) (((__EXTI_LINE__) == RTC_EXTI_LINE_ALARM_EVENT) ? __HAL_RTC_ALARM_EXTI_GET_FLAG() : \ + (((__EXTI_LINE__) == RTC_EXTI_LINE_WAKEUPTIMER_EVENT) ? __HAL_RTC_WAKEUPTIMER_EXTI_GET_FLAG() : \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_GET_FLAG())) +#define __HAL_RTC_EXTI_GENERATE_SWIT(__EXTI_LINE__) (((__EXTI_LINE__) == RTC_EXTI_LINE_ALARM_EVENT) ? __HAL_RTC_ALARM_EXTI_GENERATE_SWIT() : \ + (((__EXTI_LINE__) == RTC_EXTI_LINE_WAKEUPTIMER_EVENT) ? __HAL_RTC_WAKEUPTIMER_EXTI_GENERATE_SWIT() : \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_GENERATE_SWIT())) +#endif /* STM32F1 */ + +#define IS_ALARM IS_RTC_ALARM +#define IS_ALARM_MASK IS_RTC_ALARM_MASK +#define IS_TAMPER IS_RTC_TAMPER +#define IS_TAMPER_ERASE_MODE IS_RTC_TAMPER_ERASE_MODE +#define IS_TAMPER_FILTER IS_RTC_TAMPER_FILTER +#define IS_TAMPER_INTERRUPT IS_RTC_TAMPER_INTERRUPT +#define IS_TAMPER_MASKFLAG_STATE IS_RTC_TAMPER_MASKFLAG_STATE +#define IS_TAMPER_PRECHARGE_DURATION IS_RTC_TAMPER_PRECHARGE_DURATION +#define IS_TAMPER_PULLUP_STATE IS_RTC_TAMPER_PULLUP_STATE +#define IS_TAMPER_SAMPLING_FREQ IS_RTC_TAMPER_SAMPLING_FREQ +#define IS_TAMPER_TIMESTAMPONTAMPER_DETECTION IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION +#define IS_TAMPER_TRIGGER IS_RTC_TAMPER_TRIGGER +#define IS_WAKEUP_CLOCK IS_RTC_WAKEUP_CLOCK +#define IS_WAKEUP_COUNTER IS_RTC_WAKEUP_COUNTER + +#define __RTC_WRITEPROTECTION_ENABLE __HAL_RTC_WRITEPROTECTION_ENABLE +#define __RTC_WRITEPROTECTION_DISABLE __HAL_RTC_WRITEPROTECTION_DISABLE + +/** + * @} + */ + +/** @defgroup HAL_SD_Aliased_Macros HAL SD Aliased Macros maintained for legacy purpose + * @{ + */ + +#define SD_OCR_CID_CSD_OVERWRIETE SD_OCR_CID_CSD_OVERWRITE +#define SD_CMD_SD_APP_STAUS SD_CMD_SD_APP_STATUS + +#if defined(STM32F4) +#define SD_SDMMC_DISABLED SD_SDIO_DISABLED +#define SD_SDMMC_FUNCTION_BUSY SD_SDIO_FUNCTION_BUSY +#define SD_SDMMC_FUNCTION_FAILED SD_SDIO_FUNCTION_FAILED +#define SD_SDMMC_UNKNOWN_FUNCTION SD_SDIO_UNKNOWN_FUNCTION +#define SD_CMD_SDMMC_SEN_OP_COND SD_CMD_SDIO_SEN_OP_COND +#define SD_CMD_SDMMC_RW_DIRECT SD_CMD_SDIO_RW_DIRECT +#define SD_CMD_SDMMC_RW_EXTENDED SD_CMD_SDIO_RW_EXTENDED +#define __HAL_SD_SDMMC_ENABLE __HAL_SD_SDIO_ENABLE +#define __HAL_SD_SDMMC_DISABLE __HAL_SD_SDIO_DISABLE +#define __HAL_SD_SDMMC_DMA_ENABLE __HAL_SD_SDIO_DMA_ENABLE +#define __HAL_SD_SDMMC_DMA_DISABLE __HAL_SD_SDIO_DMA_DISABL +#define __HAL_SD_SDMMC_ENABLE_IT __HAL_SD_SDIO_ENABLE_IT +#define __HAL_SD_SDMMC_DISABLE_IT __HAL_SD_SDIO_DISABLE_IT +#define __HAL_SD_SDMMC_GET_FLAG __HAL_SD_SDIO_GET_FLAG +#define __HAL_SD_SDMMC_CLEAR_FLAG __HAL_SD_SDIO_CLEAR_FLAG +#define __HAL_SD_SDMMC_GET_IT __HAL_SD_SDIO_GET_IT +#define __HAL_SD_SDMMC_CLEAR_IT __HAL_SD_SDIO_CLEAR_IT +#define SDMMC_STATIC_FLAGS SDIO_STATIC_FLAGS +#define SDMMC_CMD0TIMEOUT SDIO_CMD0TIMEOUT +#define SD_SDMMC_SEND_IF_COND SD_SDIO_SEND_IF_COND +/* alias CMSIS */ +#define SDMMC1_IRQn SDIO_IRQn +#define SDMMC1_IRQHandler SDIO_IRQHandler +#endif + +#if defined(STM32F7) || defined(STM32L4) +#define SD_SDIO_DISABLED SD_SDMMC_DISABLED +#define SD_SDIO_FUNCTION_BUSY SD_SDMMC_FUNCTION_BUSY +#define SD_SDIO_FUNCTION_FAILED SD_SDMMC_FUNCTION_FAILED +#define SD_SDIO_UNKNOWN_FUNCTION SD_SDMMC_UNKNOWN_FUNCTION +#define SD_CMD_SDIO_SEN_OP_COND SD_CMD_SDMMC_SEN_OP_COND +#define SD_CMD_SDIO_RW_DIRECT SD_CMD_SDMMC_RW_DIRECT +#define SD_CMD_SDIO_RW_EXTENDED SD_CMD_SDMMC_RW_EXTENDED +#define __HAL_SD_SDIO_ENABLE __HAL_SD_SDMMC_ENABLE +#define __HAL_SD_SDIO_DISABLE __HAL_SD_SDMMC_DISABLE +#define __HAL_SD_SDIO_DMA_ENABLE __HAL_SD_SDMMC_DMA_ENABLE +#define __HAL_SD_SDIO_DMA_DISABL __HAL_SD_SDMMC_DMA_DISABLE +#define __HAL_SD_SDIO_ENABLE_IT __HAL_SD_SDMMC_ENABLE_IT +#define __HAL_SD_SDIO_DISABLE_IT __HAL_SD_SDMMC_DISABLE_IT +#define __HAL_SD_SDIO_GET_FLAG __HAL_SD_SDMMC_GET_FLAG +#define __HAL_SD_SDIO_CLEAR_FLAG __HAL_SD_SDMMC_CLEAR_FLAG +#define __HAL_SD_SDIO_GET_IT __HAL_SD_SDMMC_GET_IT +#define __HAL_SD_SDIO_CLEAR_IT __HAL_SD_SDMMC_CLEAR_IT +#define SDIO_STATIC_FLAGS SDMMC_STATIC_FLAGS +#define SDIO_CMD0TIMEOUT SDMMC_CMD0TIMEOUT +#define SD_SDIO_SEND_IF_COND SD_SDMMC_SEND_IF_COND +/* alias CMSIS for compatibilities */ +#define SDIO_IRQn SDMMC1_IRQn +#define SDIO_IRQHandler SDMMC1_IRQHandler +#endif +/** + * @} + */ + +/** @defgroup HAL_SMARTCARD_Aliased_Macros HAL SMARTCARD Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __SMARTCARD_ENABLE_IT __HAL_SMARTCARD_ENABLE_IT +#define __SMARTCARD_DISABLE_IT __HAL_SMARTCARD_DISABLE_IT +#define __SMARTCARD_ENABLE __HAL_SMARTCARD_ENABLE +#define __SMARTCARD_DISABLE __HAL_SMARTCARD_DISABLE +#define __SMARTCARD_DMA_REQUEST_ENABLE __HAL_SMARTCARD_DMA_REQUEST_ENABLE +#define __SMARTCARD_DMA_REQUEST_DISABLE __HAL_SMARTCARD_DMA_REQUEST_DISABLE + +#define __HAL_SMARTCARD_GETCLOCKSOURCE SMARTCARD_GETCLOCKSOURCE +#define __SMARTCARD_GETCLOCKSOURCE SMARTCARD_GETCLOCKSOURCE + +#define IS_SMARTCARD_ONEBIT_SAMPLING IS_SMARTCARD_ONE_BIT_SAMPLE + +/** + * @} + */ + +/** @defgroup HAL_SMBUS_Aliased_Macros HAL SMBUS Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_SMBUS_RESET_CR1 SMBUS_RESET_CR1 +#define __HAL_SMBUS_RESET_CR2 SMBUS_RESET_CR2 +#define __HAL_SMBUS_GENERATE_START SMBUS_GENERATE_START +#define __HAL_SMBUS_GET_ADDR_MATCH SMBUS_GET_ADDR_MATCH +#define __HAL_SMBUS_GET_DIR SMBUS_GET_DIR +#define __HAL_SMBUS_GET_STOP_MODE SMBUS_GET_STOP_MODE +#define __HAL_SMBUS_GET_PEC_MODE SMBUS_GET_PEC_MODE +#define __HAL_SMBUS_GET_ALERT_ENABLED SMBUS_GET_ALERT_ENABLED +/** + * @} + */ + +/** @defgroup HAL_SPI_Aliased_Macros HAL SPI Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __HAL_SPI_1LINE_TX SPI_1LINE_TX +#define __HAL_SPI_1LINE_RX SPI_1LINE_RX +#define __HAL_SPI_RESET_CRC SPI_RESET_CRC + +/** + * @} + */ + +/** @defgroup HAL_UART_Aliased_Macros HAL UART Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __HAL_UART_GETCLOCKSOURCE UART_GETCLOCKSOURCE +#define __HAL_UART_MASK_COMPUTATION UART_MASK_COMPUTATION +#define __UART_GETCLOCKSOURCE UART_GETCLOCKSOURCE +#define __UART_MASK_COMPUTATION UART_MASK_COMPUTATION + +#define IS_UART_WAKEUPMETHODE IS_UART_WAKEUPMETHOD + +#define IS_UART_ONEBIT_SAMPLE IS_UART_ONE_BIT_SAMPLE +#define IS_UART_ONEBIT_SAMPLING IS_UART_ONE_BIT_SAMPLE + +/** + * @} + */ + + +/** @defgroup HAL_USART_Aliased_Macros HAL USART Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __USART_ENABLE_IT __HAL_USART_ENABLE_IT +#define __USART_DISABLE_IT __HAL_USART_DISABLE_IT +#define __USART_ENABLE __HAL_USART_ENABLE +#define __USART_DISABLE __HAL_USART_DISABLE + +#define __HAL_USART_GETCLOCKSOURCE USART_GETCLOCKSOURCE +#define __USART_GETCLOCKSOURCE USART_GETCLOCKSOURCE + +/** + * @} + */ + +/** @defgroup HAL_USB_Aliased_Macros HAL USB Aliased Macros maintained for legacy purpose + * @{ + */ +#define USB_EXTI_LINE_WAKEUP USB_WAKEUP_EXTI_LINE + +#define USB_FS_EXTI_TRIGGER_RISING_EDGE USB_OTG_FS_WAKEUP_EXTI_RISING_EDGE +#define USB_FS_EXTI_TRIGGER_FALLING_EDGE USB_OTG_FS_WAKEUP_EXTI_FALLING_EDGE +#define USB_FS_EXTI_TRIGGER_BOTH_EDGE USB_OTG_FS_WAKEUP_EXTI_RISING_FALLING_EDGE +#define USB_FS_EXTI_LINE_WAKEUP USB_OTG_FS_WAKEUP_EXTI_LINE + +#define USB_HS_EXTI_TRIGGER_RISING_EDGE USB_OTG_HS_WAKEUP_EXTI_RISING_EDGE +#define USB_HS_EXTI_TRIGGER_FALLING_EDGE USB_OTG_HS_WAKEUP_EXTI_FALLING_EDGE +#define USB_HS_EXTI_TRIGGER_BOTH_EDGE USB_OTG_HS_WAKEUP_EXTI_RISING_FALLING_EDGE +#define USB_HS_EXTI_LINE_WAKEUP USB_OTG_HS_WAKEUP_EXTI_LINE + +#define __HAL_USB_EXTI_ENABLE_IT __HAL_USB_WAKEUP_EXTI_ENABLE_IT +#define __HAL_USB_EXTI_DISABLE_IT __HAL_USB_WAKEUP_EXTI_DISABLE_IT +#define __HAL_USB_EXTI_GET_FLAG __HAL_USB_WAKEUP_EXTI_GET_FLAG +#define __HAL_USB_EXTI_CLEAR_FLAG __HAL_USB_WAKEUP_EXTI_CLEAR_FLAG +#define __HAL_USB_EXTI_SET_RISING_EDGE_TRIGGER __HAL_USB_WAKEUP_EXTI_ENABLE_RISING_EDGE +#define __HAL_USB_EXTI_SET_FALLING_EDGE_TRIGGER __HAL_USB_WAKEUP_EXTI_ENABLE_FALLING_EDGE +#define __HAL_USB_EXTI_SET_FALLINGRISING_TRIGGER __HAL_USB_WAKEUP_EXTI_ENABLE_RISING_FALLING_EDGE + +#define __HAL_USB_FS_EXTI_ENABLE_IT __HAL_USB_OTG_FS_WAKEUP_EXTI_ENABLE_IT +#define __HAL_USB_FS_EXTI_DISABLE_IT __HAL_USB_OTG_FS_WAKEUP_EXTI_DISABLE_IT +#define __HAL_USB_FS_EXTI_GET_FLAG __HAL_USB_OTG_FS_WAKEUP_EXTI_GET_FLAG +#define __HAL_USB_FS_EXTI_CLEAR_FLAG __HAL_USB_OTG_FS_WAKEUP_EXTI_CLEAR_FLAG +#define __HAL_USB_FS_EXTI_SET_RISING_EGDE_TRIGGER __HAL_USB_OTG_FS_WAKEUP_EXTI_ENABLE_RISING_EDGE +#define __HAL_USB_FS_EXTI_SET_FALLING_EGDE_TRIGGER __HAL_USB_OTG_FS_WAKEUP_EXTI_ENABLE_FALLING_EDGE +#define __HAL_USB_FS_EXTI_SET_FALLINGRISING_TRIGGER __HAL_USB_OTG_FS_WAKEUP_EXTI_ENABLE_RISING_FALLING_EDGE +#define __HAL_USB_FS_EXTI_GENERATE_SWIT __HAL_USB_OTG_FS_WAKEUP_EXTI_GENERATE_SWIT + +#define __HAL_USB_HS_EXTI_ENABLE_IT __HAL_USB_OTG_HS_WAKEUP_EXTI_ENABLE_IT +#define __HAL_USB_HS_EXTI_DISABLE_IT __HAL_USB_OTG_HS_WAKEUP_EXTI_DISABLE_IT +#define __HAL_USB_HS_EXTI_GET_FLAG __HAL_USB_OTG_HS_WAKEUP_EXTI_GET_FLAG +#define __HAL_USB_HS_EXTI_CLEAR_FLAG __HAL_USB_OTG_HS_WAKEUP_EXTI_CLEAR_FLAG +#define __HAL_USB_HS_EXTI_SET_RISING_EGDE_TRIGGER __HAL_USB_OTG_HS_WAKEUP_EXTI_ENABLE_RISING_EDGE +#define __HAL_USB_HS_EXTI_SET_FALLING_EGDE_TRIGGER __HAL_USB_OTG_HS_WAKEUP_EXTI_ENABLE_FALLING_EDGE +#define __HAL_USB_HS_EXTI_SET_FALLINGRISING_TRIGGER __HAL_USB_OTG_HS_WAKEUP_EXTI_ENABLE_RISING_FALLING_EDGE +#define __HAL_USB_HS_EXTI_GENERATE_SWIT __HAL_USB_OTG_HS_WAKEUP_EXTI_GENERATE_SWIT + +#define HAL_PCD_ActiveRemoteWakeup HAL_PCD_ActivateRemoteWakeup +#define HAL_PCD_DeActiveRemoteWakeup HAL_PCD_DeActivateRemoteWakeup + +#define HAL_PCD_SetTxFiFo HAL_PCDEx_SetTxFiFo +#define HAL_PCD_SetRxFiFo HAL_PCDEx_SetRxFiFo +/** + * @} + */ + +/** @defgroup HAL_TIM_Aliased_Macros HAL TIM Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_TIM_SetICPrescalerValue TIM_SET_ICPRESCALERVALUE +#define __HAL_TIM_ResetICPrescalerValue TIM_RESET_ICPRESCALERVALUE + +#define TIM_GET_ITSTATUS __HAL_TIM_GET_IT_SOURCE +#define TIM_GET_CLEAR_IT __HAL_TIM_CLEAR_IT + +#define __HAL_TIM_GET_ITSTATUS __HAL_TIM_GET_IT_SOURCE + +#define __HAL_TIM_DIRECTION_STATUS __HAL_TIM_IS_TIM_COUNTING_DOWN +#define __HAL_TIM_PRESCALER __HAL_TIM_SET_PRESCALER +#define __HAL_TIM_SetCounter __HAL_TIM_SET_COUNTER +#define __HAL_TIM_GetCounter __HAL_TIM_GET_COUNTER +#define __HAL_TIM_SetAutoreload __HAL_TIM_SET_AUTORELOAD +#define __HAL_TIM_GetAutoreload __HAL_TIM_GET_AUTORELOAD +#define __HAL_TIM_SetClockDivision __HAL_TIM_SET_CLOCKDIVISION +#define __HAL_TIM_GetClockDivision __HAL_TIM_GET_CLOCKDIVISION +#define __HAL_TIM_SetICPrescaler __HAL_TIM_SET_ICPRESCALER +#define __HAL_TIM_GetICPrescaler __HAL_TIM_GET_ICPRESCALER +#define __HAL_TIM_SetCompare __HAL_TIM_SET_COMPARE +#define __HAL_TIM_GetCompare __HAL_TIM_GET_COMPARE + +#define TIM_BREAKINPUTSOURCE_DFSDM TIM_BREAKINPUTSOURCE_DFSDM1 +/** + * @} + */ + +/** @defgroup HAL_ETH_Aliased_Macros HAL ETH Aliased Macros maintained for legacy purpose + * @{ + */ + +#define __HAL_ETH_EXTI_ENABLE_IT __HAL_ETH_WAKEUP_EXTI_ENABLE_IT +#define __HAL_ETH_EXTI_DISABLE_IT __HAL_ETH_WAKEUP_EXTI_DISABLE_IT +#define __HAL_ETH_EXTI_GET_FLAG __HAL_ETH_WAKEUP_EXTI_GET_FLAG +#define __HAL_ETH_EXTI_CLEAR_FLAG __HAL_ETH_WAKEUP_EXTI_CLEAR_FLAG +#define __HAL_ETH_EXTI_SET_RISING_EGDE_TRIGGER __HAL_ETH_WAKEUP_EXTI_ENABLE_RISING_EDGE_TRIGGER +#define __HAL_ETH_EXTI_SET_FALLING_EGDE_TRIGGER __HAL_ETH_WAKEUP_EXTI_ENABLE_FALLING_EDGE_TRIGGER +#define __HAL_ETH_EXTI_SET_FALLINGRISING_TRIGGER __HAL_ETH_WAKEUP_EXTI_ENABLE_FALLINGRISING_TRIGGER + +#define ETH_PROMISCIOUSMODE_ENABLE ETH_PROMISCUOUS_MODE_ENABLE +#define ETH_PROMISCIOUSMODE_DISABLE ETH_PROMISCUOUS_MODE_DISABLE +#define IS_ETH_PROMISCIOUS_MODE IS_ETH_PROMISCUOUS_MODE +/** + * @} + */ + +/** @defgroup HAL_LTDC_Aliased_Macros HAL LTDC Aliased Macros maintained for legacy purpose + * @{ + */ +#define __HAL_LTDC_LAYER LTDC_LAYER +/** + * @} + */ + +/** @defgroup HAL_SAI_Aliased_Macros HAL SAI Aliased Macros maintained for legacy purpose + * @{ + */ +#define SAI_OUTPUTDRIVE_DISABLED SAI_OUTPUTDRIVE_DISABLE +#define SAI_OUTPUTDRIVE_ENABLED SAI_OUTPUTDRIVE_ENABLE +#define SAI_MASTERDIVIDER_ENABLED SAI_MASTERDIVIDER_ENABLE +#define SAI_MASTERDIVIDER_DISABLED SAI_MASTERDIVIDER_DISABLE +#define SAI_STREOMODE SAI_STEREOMODE +#define SAI_FIFOStatus_Empty SAI_FIFOSTATUS_EMPTY +#define SAI_FIFOStatus_Less1QuarterFull SAI_FIFOSTATUS_LESS1QUARTERFULL +#define SAI_FIFOStatus_1QuarterFull SAI_FIFOSTATUS_1QUARTERFULL +#define SAI_FIFOStatus_HalfFull SAI_FIFOSTATUS_HALFFULL +#define SAI_FIFOStatus_3QuartersFull SAI_FIFOSTATUS_3QUARTERFULL +#define SAI_FIFOStatus_Full SAI_FIFOSTATUS_FULL +#define IS_SAI_BLOCK_MONO_STREO_MODE IS_SAI_BLOCK_MONO_STEREO_MODE +#define SAI_SYNCHRONOUS_EXT SAI_SYNCHRONOUS_EXT_SAI1 +#define SAI_SYNCEXT_IN_ENABLE SAI_SYNCEXT_OUTBLOCKA_ENABLE +/** + * @} + */ + + +/** @defgroup HAL_PPP_Aliased_Macros HAL PPP Aliased Macros maintained for legacy purpose + * @{ + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* ___STM32_HAL_LEGACY */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h new file mode 100644 index 0000000..e162f9b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h @@ -0,0 +1,442 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief This file contains all the functions prototypes for the HAL + * module driver. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_H +#define __STM32L0xx_HAL_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_conf.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup HAL HAL + * @{ + */ +/** @defgroup HAL_Exported_Constants HAL Exported Constants + * @{ + */ + +/** @defgroup SYSCFG_BootMode Boot Mode + * @{ + */ +#define SYSCFG_BOOT_MAINFLASH ((uint32_t)0x00000000U) +#define SYSCFG_BOOT_SYSTEMFLASH ((uint32_t)SYSCFG_CFGR1_BOOT_MODE_0) +#define SYSCFG_BOOT_SRAM ((uint32_t)SYSCFG_CFGR1_BOOT_MODE) + +/** + * @} + */ + +/** @defgroup DBGMCU_Low_Power_Config DBGMCU Low Power Configuration + * @{ + */ +#define DBGMCU_SLEEP DBGMCU_CR_DBG_SLEEP +#define DBGMCU_STOP DBGMCU_CR_DBG_STOP +#define DBGMCU_STANDBY DBGMCU_CR_DBG_STANDBY +#define IS_DBGMCU_PERIPH(__PERIPH__) ((((__PERIPH__) & (~(DBGMCU_CR_DBG))) == 0x00U) && ((__PERIPH__) != 0x00U)) + + +/** + * @} + */ + +#if defined (LCD_BASE) /* STM32L0x3xx only */ +/** @defgroup SYSCFG_LCD_EXT_CAPA SYSCFG LCD External Capacitors + * @{ + */ +#define SYSCFG_LCD_EXT_CAPA SYSCFG_CFGR2_CAPA /*!< Connection of internal Vlcd rail to external capacitors */ +#define SYSCFG_VLCD_PB2_EXT_CAPA_ON SYSCFG_CFGR2_CAPA_0 /*!< Connection on PB2 */ +#define SYSCFG_VLCD_PB12_EXT_CAPA_ON SYSCFG_CFGR2_CAPA_1 /*!< Connection on PB12 */ +#define SYSCFG_VLCD_PB0_EXT_CAPA_ON SYSCFG_CFGR2_CAPA_2 /*!< Connection on PB0 */ +#if defined (SYSCFG_CFGR2_CAPA_3) +#define SYSCFG_VLCD_PE11_EXT_CAPA_ON SYSCFG_CFGR2_CAPA_3 /*!< Connection on PE11 */ +#endif +#if defined (SYSCFG_CFGR2_CAPA_4) +#define SYSCFG_VLCD_PE12_EXT_CAPA_ON SYSCFG_CFGR2_CAPA_4 /*!< Connection on PE12 */ +#endif + +/** + * @} + */ +#endif + +/** @defgroup SYSCFG_VREFINT_OUT_SELECT SYSCFG VREFINT Out Selection + * @{ + */ +#define SYSCFG_VREFINT_OUT_NONE ((uint32_t)0x00000000U) /* no pad connected */ +#define SYSCFG_VREFINT_OUT_PB0 SYSCFG_CFGR3_VREF_OUT_0 /* Selects PBO as output for the Vrefint */ +#define SYSCFG_VREFINT_OUT_PB1 SYSCFG_CFGR3_VREF_OUT_1 /* Selects PB1 as output for the Vrefint */ +#define SYSCFG_VREFINT_OUT_PB0_PB1 SYSCFG_CFGR3_VREF_OUT /* Selects PBO and PB1 as output for the Vrefint */ + +#define IS_SYSCFG_VREFINT_OUT_SELECT(OUTPUT) (((OUTPUT) == SYSCFG_VREFINT_OUT_NONE) || \ + ((OUTPUT) == SYSCFG_VREFINT_OUT_PB0) || \ + ((OUTPUT) == SYSCFG_VREFINT_OUT_PB1) || \ + ((OUTPUT) == SYSCFG_VREFINT_OUT_PB0_PB1)) +/** + * @} + */ + +/** @defgroup SYSCFG_flags_definition SYSCFG Flags Definition + * @{ + */ +#define SYSCFG_FLAG_VREFINT_READY SYSCFG_CFGR3_VREFINT_RDYF + +#define IS_SYSCFG_FLAG(FLAG) ((FLAG) == SYSCFG_FLAG_VREFINT_READY)) + +/** + * @} + */ + +/** @defgroup SYSCFG_FastModePlus_GPIO Fast Mode Plus on GPIO + * @{ + */ +/** @brief Fast mode Plus driving capability on a specific GPIO + */ +#if defined (SYSCFG_CFGR2_I2C_PB6_FMP) +#define SYSCFG_FASTMODEPLUS_PB6 SYSCFG_CFGR2_I2C_PB6_FMP /* Enable Fast Mode Plus on PB6 */ +#endif +#if defined (SYSCFG_CFGR2_I2C_PB7_FMP) +#define SYSCFG_FASTMODEPLUS_PB7 SYSCFG_CFGR2_I2C_PB7_FMP /* Enable Fast Mode Plus on PB7 */ +#endif +#if defined (SYSCFG_CFGR2_I2C_PB8_FMP) +#define SYSCFG_FASTMODEPLUS_PB8 SYSCFG_CFGR2_I2C_PB8_FMP /* Enable Fast Mode Plus on PB8 */ +#endif +#if defined (SYSCFG_CFGR2_I2C_PB9_FMP) +#define SYSCFG_FASTMODEPLUS_PB9 SYSCFG_CFGR2_I2C_PB9_FMP /* Enable Fast Mode Plus on PB9 */ +#endif + +#define IS_SYSCFG_FASTMODEPLUS(PIN) ((((PIN) & (SYSCFG_FASTMODEPLUS_PB6)) == SYSCFG_FASTMODEPLUS_PB6) || \ + (((PIN) & (SYSCFG_FASTMODEPLUS_PB7)) == SYSCFG_FASTMODEPLUS_PB7) || \ + (((PIN) & (SYSCFG_FASTMODEPLUS_PB8)) == SYSCFG_FASTMODEPLUS_PB8) || \ + (((PIN) & (SYSCFG_FASTMODEPLUS_PB9)) == SYSCFG_FASTMODEPLUS_PB9) ) +/** + * @} + */ + /** + * @} + */ + + /** @defgroup HAL_Exported_Macros HAL Exported Macros + * @{ + */ + +/** @brief Freeze/Unfreeze Peripherals in Debug mode + */ +#if defined (DBGMCU_APB1_FZ_DBG_TIM2_STOP) +/** + * @brief TIM2 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_TIM2() SET_BIT(DBGMCU->APB1FZ,DBGMCU_APB1_FZ_DBG_TIM2_STOP) +#define __HAL_DBGMCU_UNFREEZE_TIM2() CLEAR_BIT(DBGMCU->APB1FZ,DBGMCU_APB1_FZ_DBG_TIM2_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_TIM3_STOP) +/** + * @brief TIM3 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_TIM3() SET_BIT(DBGMCU->APB1FZ,DBGMCU_APB1_FZ_DBG_TIM3_STOP) +#define __HAL_DBGMCU_UNFREEZE_TIM3() CLEAR_BIT(DBGMCU->APB1FZ,DBGMCU_APB1_FZ_DBG_TIM3_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_TIM6_STOP) +/** + * @brief TIM6 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_TIM6() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_TIM6_STOP) +#define __HAL_DBGMCU_UNFREEZE_TIM6() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_TIM6_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_TIM7_STOP) +/** + * @brief TIM7 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_TIM7() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_TIM7_STOP) +#define __HAL_DBGMCU_UNFREEZE_TIM7() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_TIM7_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_RTC_STOP) +/** + * @brief RTC Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_RTC() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_RTC_STOP) +#define __HAL_DBGMCU_UNFREEZE_RTC() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_RTC_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_WWDG_STOP) +/** + * @brief WWDG Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_WWDG() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_WWDG_STOP) +#define __HAL_DBGMCU_UNFREEZE_WWDG() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_WWDG_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_IWDG_STOP) +/** + * @brief IWDG Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_IWDG() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_IWDG_STOP) +#define __HAL_DBGMCU_UNFREEZE_IWDG() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_IWDG_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_I2C1_STOP) +/** + * @brief I2C1 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_I2C1_TIMEOUT() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_I2C1_STOP) +#define __HAL_DBGMCU_UNFREEZE_I2C1_TIMEOUT_DBGMCU() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_I2C1_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_I2C2_STOP) +/** + * @brief I2C2 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_I2C2_TIMEOUT_DBGMCU() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_I2C2_STOP) +#define __HAL_DBGMCU_UNFREEZE_I2C2_TIMEOUT_DBGMCU() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_I2C2_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_I2C3_STOP) +/** + * @brief I2C3 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_I2C3_TIMEOUT() SET_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_I2C3_STOP) +#define __HAL_DBGMCU_UNFREEZE_I2C3_TIMEOUT() CLEAR_BIT(DBGMCU->APB1FZ, DBGMCU_APB1_FZ_DBG_I2C3_STOP) +#endif + +#if defined (DBGMCU_APB1_FZ_DBG_LPTIMER_STOP) +/** + * @brief LPTIMER Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_LPTIMER() SET_BIT(DBGMCU->APB1FZ ,DBGMCU_APB1_FZ_DBG_LPTIMER_STOP) +#define __HAL_DBGMCU_UNFREEZE_LPTIMER() CLEAR_BIT(DBGMCU->APB1FZ ,DBGMCU_APB1_FZ_DBG_LPTIMER_STOP) +#endif + +#if defined (DBGMCU_APB2_FZ_DBG_TIM22_STOP) +/** + * @brief TIM22 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_TIM22() SET_BIT(DBGMCU->APB2FZ, DBGMCU_APB2_FZ_DBG_TIM22_STOP) +#define __HAL_DBGMCU_UNFREEZE_TIM22() CLEAR_BIT(DBGMCU->APB2FZ, DBGMCU_APB2_FZ_DBG_TIM22_STOP) +#endif + +#if defined (DBGMCU_APB2_FZ_DBG_TIM21_STOP) +/** + * @brief TIM21 Peripherals Debug mode + */ +#define __HAL_DBGMCU_FREEZE_TIM21() SET_BIT(DBGMCU->APB2FZ, DBGMCU_APB2_FZ_DBG_TIM21_STOP) +#define __HAL_DBGMCU_UNFREEZE_TIM21() CLEAR_BIT(DBGMCU->APB2FZ, DBGMCU_APB2_FZ_DBG_TIM21_STOP) +#endif + +/** @brief Main Flash memory mapped at 0x00000000 + */ +#define __HAL_SYSCFG_REMAPMEMORY_FLASH() CLEAR_BIT(SYSCFG->CFGR1, SYSCFG_CFGR1_MEM_MODE) + +/** @brief System Flash memory mapped at 0x00000000 + */ +#define __HAL_SYSCFG_REMAPMEMORY_SYSTEMFLASH() MODIFY_REG(SYSCFG->CFGR1, SYSCFG_CFGR1_MEM_MODE, SYSCFG_CFGR1_MEM_MODE_0) + + +/** @brief Embedded SRAM mapped at 0x00000000 + */ +#define __HAL_SYSCFG_REMAPMEMORY_SRAM() MODIFY_REG(SYSCFG->CFGR1, SYSCFG_CFGR1_MEM_MODE, SYSCFG_CFGR1_MEM_MODE_0 | SYSCFG_CFGR1_MEM_MODE_1) + +/** @brief Configuration of the DBG Low Power mode. + * @param __DBGLPMODE__: bit field to indicate in wich Low Power mode DBG is still active. + * This parameter can be a value of + * - DBGMCU_SLEEP + * - DBGMCU_STOP + * - DBGMCU_STANDBY + */ +#define __HAL_SYSCFG_DBG_LP_CONFIG(__DBGLPMODE__) do {assert_param(IS_DBGMCU_PERIPH(__DBGLPMODE__)); \ + MODIFY_REG(DBGMCU->CR, DBGMCU_CR_DBG, (__DBGLPMODE__)); \ + } while (0) + +#if defined (LCD_BASE) /* STM32L0x3xx only */ + +/** @brief Macro to configure the VLCD Decoupling capacitance connection. + * + * @param __SYSCFG_VLCD_CAPA__: specifies the decoupling of LCD capacitance for rails connection on GPIO. + * This parameter can be a combination of following values (when available): + * @arg SYSCFG_VLCD_PB2_EXT_CAPA_ON: Connection on PB2 + * @arg SYSCFG_VLCD_PB12_EXT_CAPA_ON: Connection on PB12 + * @arg SYSCFG_VLCD_PB0_EXT_CAPA_ON: Connection on PB0 + * @arg SYSCFG_VLCD_PE11_EXT_CAPA_ON: Connection on PE11 + * @arg SYSCFG_VLCD_PE12_EXT_CAPA_ON: Connection on PE12 + * @retval None + */ +#define __HAL_SYSCFG_VLCD_CAPA_CONFIG(__SYSCFG_VLCD_CAPA__) \ + MODIFY_REG(SYSCFG->CFGR2, SYSCFG_LCD_EXT_CAPA, (uint32_t)(__SYSCFG_VLCD_CAPA__)) + +/** + * @brief Returns the decoupling of LCD capacitance configured by user. + * @retval The LCD capacitance connection as configured by user. The returned can be a combination of : + * SYSCFG_VLCD_PB2_EXT_CAPA_ON: Connection on PB2 + * SYSCFG_VLCD_PB12_EXT_CAPA_ON: Connection on PB12 + * SYSCFG_VLCD_PB0_EXT_CAPA_ON: Connection on PB0 + * SYSCFG_VLCD_PE11_EXT_CAPA_ON: Connection on PE11 + * SYSCFG_VLCD_PE12_EXT_CAPA_ON: Connection on PE12 + */ +#define __HAL_SYSCFG_GET_VLCD_CAPA_CONFIG() READ_BIT(SYSCFG->CFGR2, SYSCFG_LCD_EXT_CAPA) + +#endif + +/** + * @brief Returns the boot mode as configured by user. + * @retval The boot mode as configured by user. The returned can be a value of : + * - SYSCFG_BOOT_MAINFLASH + * - SYSCFG_BOOT_SYSTEMFLASH + * - SYSCFG_BOOT_SRAM + */ +#define __HAL_SYSCFG_GET_BOOT_MODE() READ_BIT(SYSCFG->CFGR1, SYSCFG_CFGR1_BOOT_MODE) + + +/** @brief Check whether the specified SYSCFG flag is set or not. + * @param __FLAG__: specifies the flag to check. + * The only parameter supported is SYSCFG_FLAG_VREFINT_READY + * @retval The new state of __FLAG__ (TRUE or FALSE). + */ +#define __HAL_SYSCFG_GET_FLAG(__FLAG__) (((SYSCFG->CFGR3) & (__FLAG__)) == (__FLAG__)) + +/** @brief Fast mode Plus driving capability enable macro + * @param __FASTMODEPLUS__: This parameter can be a value of : + * @arg SYSCFG_FASTMODEPLUS_PB6 + * @arg SYSCFG_FASTMODEPLUS_PB7 + * @arg SYSCFG_FASTMODEPLUS_PB8 + * @arg SYSCFG_FASTMODEPLUS_PB9 + */ +#define __HAL_SYSCFG_FASTMODEPLUS_ENABLE(__FASTMODEPLUS__) do {assert_param(IS_SYSCFG_FASTMODEPLUS((__FASTMODEPLUS__))); \ + SET_BIT(SYSCFG->CFGR2, (__FASTMODEPLUS__)); \ + }while(0) +/** @brief Fast mode Plus driving capability disable macro + * @param __FASTMODEPLUS__: This parameter can be a value of : + * @arg SYSCFG_FASTMODEPLUS_PB6 + * @arg SYSCFG_FASTMODEPLUS_PB7 + * @arg SYSCFG_FASTMODEPLUS_PB8 + * @arg SYSCFG_FASTMODEPLUS_PB9 + */ +#define __HAL_SYSCFG_FASTMODEPLUS_DISABLE(__FASTMODEPLUS__) do {assert_param(IS_SYSCFG_FASTMODEPLUS((__FASTMODEPLUS__))); \ + CLEAR_BIT(SYSCFG->CFGR2, (__FASTMODEPLUS__)); \ + }while(0) + + +/** + * @} + */ + +/** @defgroup HAL_Exported_Functions HAL Exported Functions + * @{ + */ +/** @defgroup HAL_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Initialization and de-initialization functions + * @{ + */ +HAL_StatusTypeDef HAL_Init(void); +HAL_StatusTypeDef HAL_DeInit(void); +void HAL_MspInit(void); +void HAL_MspDeInit(void); +HAL_StatusTypeDef HAL_InitTick (uint32_t TickPriority); + +/** + * @} + */ + + /** @defgroup HAL_Exported_Functions_Group2 Peripheral Control functions + * @brief Peripheral Control functions + * @{ + */ +void HAL_IncTick(void); +void HAL_Delay(__IO uint32_t Delay); +uint32_t HAL_GetTick(void); +void HAL_SuspendTick(void); +void HAL_ResumeTick(void); +uint32_t HAL_GetHalVersion(void); +uint32_t HAL_GetREVID(void); +uint32_t HAL_GetDEVID(void); +void HAL_DBGMCU_EnableDBGSleepMode(void); +void HAL_DBGMCU_DisableDBGSleepMode(void); +void HAL_DBGMCU_EnableDBGStopMode(void); +void HAL_DBGMCU_DisableDBGStopMode(void); +void HAL_DBGMCU_EnableDBGStandbyMode(void); +void HAL_DBGMCU_DisableDBGStandbyMode(void); +void HAL_DBGMCU_DBG_EnableLowPowerConfig(uint32_t Periph); +void HAL_DBGMCU_DBG_DisableLowPowerConfig(uint32_t Periph); +uint32_t HAL_SYSCFG_GetBootMode(void); +void HAL_SYSCFG_Enable_Lock_VREFINT(void); +void HAL_SYSCFG_Disable_Lock_VREFINT(void); +void HAL_SYSCFG_VREFINT_OutputSelect(uint32_t SYSCFG_Vrefint_OUTPUT); + +/** + * @} + */ +/** + * @} + */ + +/* Define the private group ***********************************/ +/**************************************************************/ +/** @defgroup HAL_Private HAL Private + * @{ + */ +/** + * @} + */ +/**************************************************************/ + + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h new file mode 100644 index 0000000..52ce7cf --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h @@ -0,0 +1,418 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_cortex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of CORTEX HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_CORTEX_H +#define __STM32L0xx_HAL_CORTEX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup CORTEX CORTEX + * @{ + */ +/* Exported types ------------------------------------------------------------*/ + +/** @defgroup CORTEX_Exported_Types CORTEX Exported Types + * @{ + */ + +#if (__MPU_PRESENT == 1) +/** @defgroup CORTEX_MPU_Region_Initialization_Structure_definition MPU Region Initialization Structure Definition + * @{ + */ +typedef struct +{ + uint32_t BaseAddress; /*!< Specifies the base address of the region to protect. */ + + uint8_t Enable; /*!< Specifies the status of the region. + This parameter can be a value of @ref CORTEX_MPU_Region_Enable */ + uint8_t Number; /*!< Specifies the number of the region to protect. + This parameter can be a value of @ref CORTEX_MPU_Region_Number */ + + uint8_t Size; /*!< Specifies the size of the region to protect. + This parameter can be a value of @ref CORTEX_MPU_Region_Size */ + uint8_t SubRegionDisable; /*!< Specifies the number of the subregion protection to disable. + This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF */ + uint8_t TypeExtField; /*!< This parameter is NOT used but is kept to keep API unified through all families*/ + + uint8_t AccessPermission; /*!< Specifies the region access permission type. + This parameter can be a value of @ref CORTEX_MPU_Region_Permission_Attributes */ + uint8_t DisableExec; /*!< Specifies the instruction access status. + This parameter can be a value of @ref CORTEX_MPU_Instruction_Access */ + uint8_t IsShareable; /*!< Specifies the shareability status of the protected region. + This parameter can be a value of @ref CORTEX_MPU_Access_Shareable */ + uint8_t IsCacheable; /*!< Specifies the cacheable status of the region protected. + This parameter can be a value of @ref CORTEX_MPU_Access_Cacheable */ + uint8_t IsBufferable; /*!< Specifies the bufferable status of the protected region. + This parameter can be a value of @ref CORTEX_MPU_Access_Bufferable */ +}MPU_Region_InitTypeDef; +/** + * @} + */ +#endif /* __MPU_PRESENT */ + +/** + * @} + */ + + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup CORTEX_Exported_Constants CORTEx Exported Constants + * @{ + */ + + +#define IS_NVIC_PREEMPTION_PRIORITY(__PRIORITY__) ((__PRIORITY__) < 0x4U) + +#define IS_NVIC_DEVICE_IRQ(IRQ) ((IRQ) >= 0x0) + +/** @defgroup CORTEX_SysTick_clock_source CORTEX SysTick Clock Source + * @{ + */ +#define SYSTICK_CLKSOURCE_HCLK_DIV8 ((uint32_t)0x00000000U) +#define SYSTICK_CLKSOURCE_HCLK ((uint32_t)0x00000004U) +#define IS_SYSTICK_CLK_SOURCE(__SOURCE__) (((__SOURCE__) == SYSTICK_CLKSOURCE_HCLK) || \ + ((__SOURCE__) == SYSTICK_CLKSOURCE_HCLK_DIV8)) +/** + * @} + */ + +#if (__MPU_PRESENT == 1) +/** @defgroup CORTEX_MPU_HFNMI_PRIVDEF_Control CORTEX MPU HFNMI and PRIVILEGED Access control + * @{ + */ +#define MPU_HFNMI_PRIVDEF_NONE ((uint32_t)0x00000000U) +#define MPU_HARDFAULT_NMI ((uint32_t)0x00000002U) +#define MPU_PRIVILEGED_DEFAULT ((uint32_t)0x00000004U) +#define MPU_HFNMI_PRIVDEF ((uint32_t)0x00000006U) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Region_Enable CORTEX MPU Region Enable + * @{ + */ +#define MPU_REGION_ENABLE ((uint8_t)0x01U) +#define MPU_REGION_DISABLE ((uint8_t)0x00U) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Instruction_Access CORTEX MPU Instruction Access + * @{ + */ +#define MPU_INSTRUCTION_ACCESS_ENABLE ((uint8_t)0x00U) +#define MPU_INSTRUCTION_ACCESS_DISABLE ((uint8_t)0x01U) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Access_Shareable CORTEX MPU Instruction Access Shareable + * @{ + */ +#define MPU_ACCESS_SHAREABLE ((uint8_t)0x01U) +#define MPU_ACCESS_NOT_SHAREABLE ((uint8_t)0x00U) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Access_Cacheable CORTEX MPU Instruction Access Cacheable + * @{ + */ +#define MPU_ACCESS_CACHEABLE ((uint8_t)0x01U) +#define MPU_ACCESS_NOT_CACHEABLE ((uint8_t)0x00U) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Access_Bufferable CORTEX MPU Instruction Access Bufferable + * @{ + */ +#define MPU_ACCESS_BUFFERABLE ((uint8_t)0x01U) +#define MPU_ACCESS_NOT_BUFFERABLE ((uint8_t)0x00U) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Region_Size CORTEX MPU Region Size + * @{ + */ +#define MPU_REGION_SIZE_32B ((uint8_t)0x04U) +#define MPU_REGION_SIZE_64B ((uint8_t)0x05U) +#define MPU_REGION_SIZE_128B ((uint8_t)0x06U) +#define MPU_REGION_SIZE_256B ((uint8_t)0x07U) +#define MPU_REGION_SIZE_512B ((uint8_t)0x08U) +#define MPU_REGION_SIZE_1KB ((uint8_t)0x09U) +#define MPU_REGION_SIZE_2KB ((uint8_t)0x0AU) +#define MPU_REGION_SIZE_4KB ((uint8_t)0x0BU) +#define MPU_REGION_SIZE_8KB ((uint8_t)0x0CU) +#define MPU_REGION_SIZE_16KB ((uint8_t)0x0DU) +#define MPU_REGION_SIZE_32KB ((uint8_t)0x0EU) +#define MPU_REGION_SIZE_64KB ((uint8_t)0x0FU) +#define MPU_REGION_SIZE_128KB ((uint8_t)0x10U) +#define MPU_REGION_SIZE_256KB ((uint8_t)0x11U) +#define MPU_REGION_SIZE_512KB ((uint8_t)0x12U) +#define MPU_REGION_SIZE_1MB ((uint8_t)0x13U) +#define MPU_REGION_SIZE_2MB ((uint8_t)0x14U) +#define MPU_REGION_SIZE_4MB ((uint8_t)0x15U) +#define MPU_REGION_SIZE_8MB ((uint8_t)0x16U) +#define MPU_REGION_SIZE_16MB ((uint8_t)0x17U) +#define MPU_REGION_SIZE_32MB ((uint8_t)0x18U) +#define MPU_REGION_SIZE_64MB ((uint8_t)0x19U) +#define MPU_REGION_SIZE_128MB ((uint8_t)0x1AU) +#define MPU_REGION_SIZE_256MB ((uint8_t)0x1BU) +#define MPU_REGION_SIZE_512MB ((uint8_t)0x1CU) +#define MPU_REGION_SIZE_1GB ((uint8_t)0x1DU) +#define MPU_REGION_SIZE_2GB ((uint8_t)0x1EU) +#define MPU_REGION_SIZE_4GB ((uint8_t)0x1FU) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Region_Permission_Attributes CORTEX MPU Region Permission Attributes + * @{ + */ +#define MPU_REGION_NO_ACCESS ((uint8_t)0x00U) +#define MPU_REGION_PRIV_RW ((uint8_t)0x01U) +#define MPU_REGION_PRIV_RW_URO ((uint8_t)0x02U) +#define MPU_REGION_FULL_ACCESS ((uint8_t)0x03U) +#define MPU_REGION_PRIV_RO ((uint8_t)0x05U) +#define MPU_REGION_PRIV_RO_URO ((uint8_t)0x06U) +/** + * @} + */ + +/** @defgroup CORTEX_MPU_Region_Number CORTEX MPU Region Number + * @{ + */ +#define MPU_REGION_NUMBER0 ((uint8_t)0x00U) +#define MPU_REGION_NUMBER1 ((uint8_t)0x01U) +#define MPU_REGION_NUMBER2 ((uint8_t)0x02U) +#define MPU_REGION_NUMBER3 ((uint8_t)0x03U) +#define MPU_REGION_NUMBER4 ((uint8_t)0x04U) +#define MPU_REGION_NUMBER5 ((uint8_t)0x05U) +#define MPU_REGION_NUMBER6 ((uint8_t)0x06U) +#define MPU_REGION_NUMBER7 ((uint8_t)0x07U) +/** + * @} + */ +#endif /* __MPU_PRESENT */ + + +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ +/** @defgroup CORTEX_Exported_Functions CORTEX Exported Functions + * @{ + */ + +/** @defgroup CORTEX_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Initialization and Configuration functions + * @{ + */ +void HAL_NVIC_SetPriority(IRQn_Type IRQn, uint32_t PreemptPriority, uint32_t SubPriority); +void HAL_NVIC_EnableIRQ(IRQn_Type IRQn); +void HAL_NVIC_DisableIRQ(IRQn_Type IRQn); +void HAL_NVIC_SystemReset(void); +uint32_t HAL_SYSTICK_Config(uint32_t TicksNumb); +#if (__MPU_PRESENT == 1) +/** + * @brief Disable the MPU. + * @retval None + */ +__STATIC_INLINE void HAL_MPU_Disable(void) +{ + + /*Data Memory Barrier setup */ + __DMB(); + /* Disable the MPU */ + MPU->CTRL = 0; +} + +/** + * @brief Enable the MPU. + * @param MPU_Control: Specifies the control mode of the MPU during hard fault, + * NMI, FAULTMASK and privileged access to the default memory + * This parameter can be one of the following values: + * @arg MPU_HFNMI_PRIVDEF_NONE + * @arg MPU_HARDFAULT_NMI + * @arg MPU_PRIVILEGED_DEFAULT + * @arg MPU_HFNMI_PRIVDEF + * @retval None + */ + +__STATIC_INLINE void HAL_MPU_Enable(uint32_t MPU_Control) +{ + /* Enable the MPU */ + MPU->CTRL = MPU_Control | MPU_CTRL_ENABLE_Msk; + /* Data Synchronization Barrier setup */ + __DSB(); + /* Instruction Synchronization Barrier setup */ + __ISB(); + +} +#endif /* __MPU_PRESENT */ +/** + * @} + */ + +/** @defgroup CORTEX_Exported_Functions_Group2 Peripheral Control functions + * @brief Cortex control functions + * @{ + */ + +uint32_t HAL_NVIC_GetPriority(IRQn_Type IRQn); +uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type IRQn); +void HAL_NVIC_SetPendingIRQ(IRQn_Type IRQn); +void HAL_NVIC_ClearPendingIRQ(IRQn_Type IRQn); +void HAL_SYSTICK_CLKSourceConfig(uint32_t CLKSource); +void HAL_SYSTICK_IRQHandler(void); +void HAL_SYSTICK_Callback(void); +#if (__MPU_PRESENT == 1) +void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *MPU_Init); +#endif /* __MPU_PRESENT */ +/** + * @} + */ + + /** + * @} + */ + +/* Private types -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private constants ---------------------------------------------------------*/ +/* Private macros ------------------------------------------------------------*/ +/** @defgroup CORTEX_Private_Macros CORTEX Private Macros + * @{ + */ + +#if (__MPU_PRESENT == 1) +#define IS_MPU_REGION_ENABLE(STATE) (((STATE) == MPU_REGION_ENABLE) || \ + ((STATE) == MPU_REGION_DISABLE)) + +#define IS_MPU_INSTRUCTION_ACCESS(STATE) (((STATE) == MPU_INSTRUCTION_ACCESS_ENABLE) || \ + ((STATE) == MPU_INSTRUCTION_ACCESS_DISABLE)) + +#define IS_MPU_ACCESS_SHAREABLE(STATE) (((STATE) == MPU_ACCESS_SHAREABLE) || \ + ((STATE) == MPU_ACCESS_NOT_SHAREABLE)) + +#define IS_MPU_ACCESS_CACHEABLE(STATE) (((STATE) == MPU_ACCESS_CACHEABLE) || \ + ((STATE) == MPU_ACCESS_NOT_CACHEABLE)) + +#define IS_MPU_ACCESS_BUFFERABLE(STATE) (((STATE) == MPU_ACCESS_BUFFERABLE) || \ + ((STATE) == MPU_ACCESS_NOT_BUFFERABLE)) + +#define IS_MPU_REGION_PERMISSION_ATTRIBUTE(TYPE) (((TYPE) == MPU_REGION_NO_ACCESS) || \ + ((TYPE) == MPU_REGION_PRIV_RW) || \ + ((TYPE) == MPU_REGION_PRIV_RW_URO) || \ + ((TYPE) == MPU_REGION_FULL_ACCESS) || \ + ((TYPE) == MPU_REGION_PRIV_RO) || \ + ((TYPE) == MPU_REGION_PRIV_RO_URO)) + +#define IS_MPU_REGION_NUMBER(NUMBER) (((NUMBER) == MPU_REGION_NUMBER0) || \ + ((NUMBER) == MPU_REGION_NUMBER1) || \ + ((NUMBER) == MPU_REGION_NUMBER2) || \ + ((NUMBER) == MPU_REGION_NUMBER3) || \ + ((NUMBER) == MPU_REGION_NUMBER4) || \ + ((NUMBER) == MPU_REGION_NUMBER5) || \ + ((NUMBER) == MPU_REGION_NUMBER6) || \ + ((NUMBER) == MPU_REGION_NUMBER7)) + +#define IS_MPU_REGION_SIZE(SIZE) (((SIZE) == MPU_REGION_SIZE_256B) || \ + ((SIZE) == MPU_REGION_SIZE_512B) || \ + ((SIZE) == MPU_REGION_SIZE_1KB) || \ + ((SIZE) == MPU_REGION_SIZE_2KB) || \ + ((SIZE) == MPU_REGION_SIZE_4KB) || \ + ((SIZE) == MPU_REGION_SIZE_8KB) || \ + ((SIZE) == MPU_REGION_SIZE_16KB) || \ + ((SIZE) == MPU_REGION_SIZE_32KB) || \ + ((SIZE) == MPU_REGION_SIZE_64KB) || \ + ((SIZE) == MPU_REGION_SIZE_128KB) || \ + ((SIZE) == MPU_REGION_SIZE_256KB) || \ + ((SIZE) == MPU_REGION_SIZE_512KB) || \ + ((SIZE) == MPU_REGION_SIZE_1MB) || \ + ((SIZE) == MPU_REGION_SIZE_2MB) || \ + ((SIZE) == MPU_REGION_SIZE_4MB) || \ + ((SIZE) == MPU_REGION_SIZE_8MB) || \ + ((SIZE) == MPU_REGION_SIZE_16MB) || \ + ((SIZE) == MPU_REGION_SIZE_32MB) || \ + ((SIZE) == MPU_REGION_SIZE_64MB) || \ + ((SIZE) == MPU_REGION_SIZE_128MB) || \ + ((SIZE) == MPU_REGION_SIZE_256MB) || \ + ((SIZE) == MPU_REGION_SIZE_512MB) || \ + ((SIZE) == MPU_REGION_SIZE_1GB) || \ + ((SIZE) == MPU_REGION_SIZE_2GB) || \ + ((SIZE) == MPU_REGION_SIZE_4GB)) + +#define IS_MPU_SUB_REGION_DISABLE(SUBREGION) ((SUBREGION) < (uint16_t)0x00FFU) +#endif /* __MPU_PRESENT */ + + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_CORTEX_H */ + + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h new file mode 100644 index 0000000..c8bdd7b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h @@ -0,0 +1,208 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_def.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief This file contains HAL common defines, enumeration, macros and + * structures definitions. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_DEF +#define __STM32L0xx_HAL_DEF + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx.h" +#include "Legacy/stm32_hal_legacy.h" +#include + +/* Exported types ------------------------------------------------------------*/ + +/** + * @brief HAL Status structures definition + */ +typedef enum +{ + HAL_OK = 0x00U, + HAL_ERROR = 0x01U, + HAL_BUSY = 0x02U, + HAL_TIMEOUT = 0x03U +} HAL_StatusTypeDef; + +/** + * @brief HAL Lock structures definition + */ +typedef enum +{ + HAL_UNLOCKED = 0x00U, + HAL_LOCKED = 0x01U +} HAL_LockTypeDef; + +/* Exported macro ------------------------------------------------------------*/ + +#define UNUSED(x) ((void)(x)) + +#define HAL_MAX_DELAY 0xFFFFFFFFU + +#define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) != RESET) +#define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == RESET) + +#define __HAL_LINKDMA(__HANDLE__, __PPP_DMA_FIELD__, __DMA_HANDLE__) \ + do{ \ + (__HANDLE__)->__PPP_DMA_FIELD__ = &(__DMA_HANDLE__); \ + (__DMA_HANDLE__).Parent = (__HANDLE__); \ + } while(0) + +/** @brief Reset the Handle's State field. + * @param __HANDLE__: specifies the Peripheral Handle. + * @note This macro can be used for the following purpose: + * - When the Handle is declared as local variable; before passing it as parameter + * to HAL_PPP_Init() for the first time, it is mandatory to use this macro + * to set to 0 the Handle's "State" field. + * Otherwise, "State" field may have any random value and the first time the function + * HAL_PPP_Init() is called, the low level hardware initialization will be missed + * (i.e. HAL_PPP_MspInit() will not be executed). + * - When there is a need to reconfigure the low level hardware: instead of calling + * HAL_PPP_DeInit() then HAL_PPP_Init(), user can make a call to this macro then HAL_PPP_Init(). + * In this later function, when the Handle's "State" field is set to 0, it will execute the function + * HAL_PPP_MspInit() which will reconfigure the low level hardware. + * @retval None + */ +#define __HAL_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = 0U) + +#if (USE_RTOS == 1) + + /* Reserved for future use */ + #error "USE_RTOS should be 0 in the current HAL release" + +#else + #define __HAL_LOCK(__HANDLE__) \ + do{ \ + if((__HANDLE__)->Lock == HAL_LOCKED) \ + { \ + return HAL_BUSY; \ + } \ + else \ + { \ + (__HANDLE__)->Lock = HAL_LOCKED; \ + } \ + }while (0) + + #define __HAL_UNLOCK(__HANDLE__) \ + do{ \ + (__HANDLE__)->Lock = HAL_UNLOCKED; \ + }while (0) +#endif /* USE_RTOS */ + +#if defined ( __GNUC__ ) + #ifndef __weak + #define __weak __attribute__((weak)) + #endif /* __weak */ + #ifndef __packed + #define __packed __attribute__((__packed__)) + #endif /* __packed */ + + #define __NOINLINE __attribute__ ( (noinline) ) + +#endif /* __GNUC__ */ + + +/* Macro to get variable aligned on 4-bytes, for __ICCARM__ the directive "#pragma data_alignment=4" must be used instead */ +#if defined (__GNUC__) /* GNU Compiler */ + #ifndef __ALIGN_END + #define __ALIGN_END __attribute__ ((aligned (4))) + #endif /* __ALIGN_END */ + #ifndef __ALIGN_BEGIN + #define __ALIGN_BEGIN + #endif /* __ALIGN_BEGIN */ +#else + #ifndef __ALIGN_END + #define __ALIGN_END + #endif /* __ALIGN_END */ + #ifndef __ALIGN_BEGIN + #if defined (__CC_ARM) /* ARM Compiler */ + #define __ALIGN_BEGIN __align(4) + #elif defined (__ICCARM__) /* IAR Compiler */ + #define __ALIGN_BEGIN + #endif /* __CC_ARM */ + #endif /* __ALIGN_BEGIN */ +#endif /* __GNUC__ */ + +/** + * @brief __RAM_FUNC definition + */ +#if defined ( __CC_ARM ) +/* ARM Compiler + ------------ + RAM functions are defined using the toolchain options. + Functions that are executed in RAM should reside in a separate source module. + Using the 'Options for File' dialog you can simply change the 'Code / Const' + area of a module to a memory space in physical RAM. + Available memory areas are declared in the 'Target' tab of the 'Options for Target' + dialog. +*/ +#define __RAM_FUNC HAL_StatusTypeDef + +#define __NOINLINE __attribute__ ( (noinline) ) + + +#elif defined ( __ICCARM__ ) +/* ICCARM Compiler + --------------- + RAM functions are defined using a specific toolchain keyword "__ramfunc". +*/ +#define __RAM_FUNC __ramfunc HAL_StatusTypeDef + +#define __NOINLINE _Pragma("optimize = no_inline") + +#elif defined ( __GNUC__ ) +/* GNU Compiler + ------------ + RAM functions are defined using a specific toolchain attribute + "__attribute__((section(".RamFunc")))". +*/ +#define __RAM_FUNC HAL_StatusTypeDef __attribute__((section(".RamFunc"))) + +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* ___STM32L0xx_HAL_DEF */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h new file mode 100644 index 0000000..50e9718 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h @@ -0,0 +1,696 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_dma.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of DMA HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_DMA_H +#define __STM32L0xx_HAL_DMA_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup DMA DMA + * @{ + */ + + /** @defgroup DMA_Exported_Types DMA Exported Types + * @{ + */ +/* Exported types ------------------------------------------------------------*/ + +/** + * @brief DMA Configuration Structure definition + */ +typedef struct +{ + uint32_t Request; /*!< Specifies the request selected for the specified channel. + This parameter can be a value of @ref DMA_request */ + + uint32_t Direction; /*!< Specifies if the data will be transferred from memory to peripheral, + from memory to memory or from peripheral to memory. + This parameter can be a value of @ref DMA_Data_transfer_direction */ + + uint32_t PeriphInc; /*!< Specifies whether the Peripheral address register should be incremented or not. + When Memory to Memory transfer is used, this is the Source Increment mode + This parameter can be a value of @ref DMA_Peripheral_incremented_mode */ + + uint32_t MemInc; /*!< Specifies whether the memory address register should be incremented or not. + When Memory to Memory transfer is used, this is the Destination Increment mode + This parameter can be a value of @ref DMA_Memory_incremented_mode */ + + uint32_t PeriphDataAlignment; /*!< Specifies the Peripheral data width. + When Memory to Memory transfer is used, this is the Source Alignment format + This parameter can be a value of @ref DMA_Peripheral_data_size */ + + uint32_t MemDataAlignment; /*!< Specifies the Memory data width. + When Memory to Memory transfer is used, this is the Destination Alignment format + This parameter can be a value of @ref DMA_Memory_data_size */ + + uint32_t Mode; /*!< Specifies the operation mode of the DMAy Channelx (Normal or Circular). + This parameter can be a value of @ref DMA_mode + @note The circular buffer mode cannot be used if the memory-to-memory + data transfer is configured on the selected Channel */ + + uint32_t Priority; /*!< Specifies the software priority for the DMAy Channelx. + This parameter can be a value of @ref DMA_Priority_level */ +} DMA_InitTypeDef; + +/** + * @brief DMA Configuration enumeration values definition + */ +typedef enum +{ + DMA_MODE = 0U, /*!< Control related DMA mode Parameter in DMA_InitTypeDef */ + DMA_PRIORITY = 1U, /*!< Control related priority level Parameter in DMA_InitTypeDef */ + +} DMA_ControlTypeDef; + +/** + * @brief HAL DMA State structures definition + */ +typedef enum +{ + HAL_DMA_STATE_RESET = 0x00U, /*!< DMA not yet initialized or disabled */ + HAL_DMA_STATE_READY = 0x01U, /*!< DMA process success and ready for use */ + HAL_DMA_STATE_BUSY = 0x02U, /*!< DMA process is ongoing */ + HAL_DMA_STATE_TIMEOUT = 0x03U, /*!< DMA timeout state */ + HAL_DMA_STATE_ERROR = 0x04U, /*!< DMA error state */ + HAL_DMA_STATE_READY_HALF = 0x05U, /*!< DMA Half process success */ +}HAL_DMA_StateTypeDef; + +/** + * @brief HAL DMA Error Code structure definition + */ +typedef enum +{ + HAL_DMA_FULL_TRANSFER = 0x00U, /*!< Full transfer */ + HAL_DMA_HALF_TRANSFER = 0x01U, /*!< Half Transfer */ + +}HAL_DMA_LevelCompleteTypeDef; + + +/** + * @brief DMA handle Structure definition + */ +typedef struct __DMA_HandleTypeDef +{ + DMA_Channel_TypeDef *Instance; /*!< Register base address */ + + DMA_InitTypeDef Init; /*!< DMA communication parameters */ + + HAL_LockTypeDef Lock; /*!< DMA locking object */ + + __IO HAL_DMA_StateTypeDef State; /*!< DMA transfer state */ + + void *Parent; /*!< Parent object state */ + + void (* XferCpltCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer complete callback */ + + void (* XferHalfCpltCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA Half transfer complete callback */ + + void (* XferErrorCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer error callback */ + + void (* XferAbortCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer abort callback */ + +__IO uint32_t ErrorCode; /*!< DMA Error code */ + +} DMA_HandleTypeDef; + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup DMA_Exported_Constants DMA Exported Constants + * @{ + */ + +/** @defgroup DMA_Error_Code DMA Error Codes + * @{ + */ +#define HAL_DMA_ERROR_NONE ((uint32_t)0x00000000U) /*!< No error */ +#define HAL_DMA_ERROR_TE ((uint32_t)0x00000001U) /*!< Transfer error */ +#define HAL_DMA_ERROR_NO_XFER ((uint32_t)0x00000004U) /*!< no ongoing transfer */ +#define HAL_DMA_ERROR_TIMEOUT ((uint32_t)0x00000020U) /*!< Timeout error */ + +#if defined (STM32L011xx) || defined (STM32L021xx) +#define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \ + ((INSTANCE) == DMA1_Channel2) || \ + ((INSTANCE) == DMA1_Channel3) || \ + ((INSTANCE) == DMA1_Channel4) || \ + ((INSTANCE) == DMA1_Channel5)) +#else +#define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \ + ((INSTANCE) == DMA1_Channel2) || \ + ((INSTANCE) == DMA1_Channel3) || \ + ((INSTANCE) == DMA1_Channel4) || \ + ((INSTANCE) == DMA1_Channel5) || \ + ((INSTANCE) == DMA1_Channel6) || \ + ((INSTANCE) == DMA1_Channel7)) + +#endif +#define IS_DMA_ALL_CONTROLLER(CONTROLLER) (((CONTROLLER) == DMA1)) + +/** + * @} + */ + +/** @defgroup DMA_request DMA request defintiions + * @{ + */ + +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) + +#define DMA_REQUEST_0 ((uint32_t)0x00000000U) +#define DMA_REQUEST_1 ((uint32_t)0x00000001U) +#define DMA_REQUEST_2 ((uint32_t)0x00000002U) +#define DMA_REQUEST_3 ((uint32_t)0x00000003U) +#define DMA_REQUEST_4 ((uint32_t)0x00000004U) +#define DMA_REQUEST_5 ((uint32_t)0x00000005U) +#define DMA_REQUEST_6 ((uint32_t)0x00000006U) +#define DMA_REQUEST_7 ((uint32_t)0x00000007U) +#define DMA_REQUEST_8 ((uint32_t)0x00000008U) +#define DMA_REQUEST_9 ((uint32_t)0x00000009U) +#define DMA_REQUEST_10 ((uint32_t)0x0000000AU) +#define DMA_REQUEST_11 ((uint32_t)0x0000000BU) +#define DMA_REQUEST_12 ((uint32_t)0x0000000CU) +#define DMA_REQUEST_13 ((uint32_t)0x0000000DU) +#define DMA_REQUEST_14 ((uint32_t)0x0000000EU) +#define DMA_REQUEST_15 ((uint32_t)0x0000000FU) + +#define IS_DMA_ALL_REQUEST(REQUEST) (((REQUEST) == DMA_REQUEST_0) || \ + ((REQUEST) == DMA_REQUEST_1) || \ + ((REQUEST) == DMA_REQUEST_2) || \ + ((REQUEST) == DMA_REQUEST_3) || \ + ((REQUEST) == DMA_REQUEST_4) || \ + ((REQUEST) == DMA_REQUEST_5) || \ + ((REQUEST) == DMA_REQUEST_6) || \ + ((REQUEST) == DMA_REQUEST_7) || \ + ((REQUEST) == DMA_REQUEST_8) || \ + ((REQUEST) == DMA_REQUEST_9) || \ + ((REQUEST) == DMA_REQUEST_10) || \ + ((REQUEST) == DMA_REQUEST_11) || \ + ((REQUEST) == DMA_REQUEST_12) || \ + ((REQUEST) == DMA_REQUEST_13) || \ + ((REQUEST) == DMA_REQUEST_14) || \ + ((REQUEST) == DMA_REQUEST_15)) + +#else /* #if STM32L071xx || STM32L072xx || STM32L073xx || STM32L081xx || STM32L082xx || STM32L083xx */ + +#define DMA_REQUEST_0 ((uint32_t)0x00000000U) +#define DMA_REQUEST_1 ((uint32_t)0x00000001U) +#define DMA_REQUEST_2 ((uint32_t)0x00000002U) +#define DMA_REQUEST_3 ((uint32_t)0x00000003U) +#define DMA_REQUEST_4 ((uint32_t)0x00000004U) +#define DMA_REQUEST_5 ((uint32_t)0x00000005U) +#define DMA_REQUEST_6 ((uint32_t)0x00000006U) +#define DMA_REQUEST_7 ((uint32_t)0x00000007U) +#define DMA_REQUEST_8 ((uint32_t)0x00000008U) +#define DMA_REQUEST_9 ((uint32_t)0x00000009U) +#define DMA_REQUEST_11 ((uint32_t)0x0000000BU) + +#define IS_DMA_ALL_REQUEST(REQUEST) (((REQUEST) == DMA_REQUEST_0) || \ + ((REQUEST) == DMA_REQUEST_1) || \ + ((REQUEST) == DMA_REQUEST_2) || \ + ((REQUEST) == DMA_REQUEST_3) || \ + ((REQUEST) == DMA_REQUEST_4) || \ + ((REQUEST) == DMA_REQUEST_5) || \ + ((REQUEST) == DMA_REQUEST_6) || \ + ((REQUEST) == DMA_REQUEST_7) || \ + ((REQUEST) == DMA_REQUEST_8) || \ + ((REQUEST) == DMA_REQUEST_9) || \ + ((REQUEST) == DMA_REQUEST_11)) +#endif /* #if defined (STM32L072xx) || defined (STM32L073xx) || defined (STM32L082xx) || defined (STM32L083xx) */ + +/** + * @} + */ + +/** @defgroup DMA_Data_transfer_direction DMA Data Transfer directions + * @{ + */ +#define DMA_PERIPH_TO_MEMORY ((uint32_t)0x00000000U) /*!< Peripheral to memory direction */ +#define DMA_MEMORY_TO_PERIPH ((uint32_t)DMA_CCR_DIR) /*!< Memory to peripheral direction */ +#define DMA_MEMORY_TO_MEMORY ((uint32_t)(DMA_CCR_MEM2MEM)) /*!< Memory to memory direction */ + +#define IS_DMA_DIRECTION(DIRECTION) (((DIRECTION) == DMA_PERIPH_TO_MEMORY ) || \ + ((DIRECTION) == DMA_MEMORY_TO_PERIPH) || \ + ((DIRECTION) == DMA_MEMORY_TO_MEMORY)) +/** + * @} + */ + +/** @defgroup DMA_Data_buffer_size DMA Data Buffer Size Check + * @{ + */ +#define IS_DMA_BUFFER_SIZE(SIZE) (((SIZE) >= 0x1) && ((SIZE) < 0x10000)) +/** + * @} + */ + +/** @defgroup DMA_Peripheral_incremented_mode DMA Peripheral Incremented Mode + * @{ + */ +#define DMA_PINC_ENABLE ((uint32_t)DMA_CCR_PINC) /*!< Peripheral increment mode Enable */ +#define DMA_PINC_DISABLE ((uint32_t)0x00000000U) /*!< Peripheral increment mode Disable */ + +#define IS_DMA_PERIPHERAL_INC_STATE(STATE) (((STATE) == DMA_PINC_ENABLE) || \ + ((STATE) == DMA_PINC_DISABLE)) +/** + * @} + */ + +/** @defgroup DMA_Memory_incremented_mode DMA Memory Incremented Mode + * @{ + */ +#define DMA_MINC_ENABLE ((uint32_t)DMA_CCR_MINC) /*!< Memory increment mode Enable */ +#define DMA_MINC_DISABLE ((uint32_t)0x00000000U) /*!< Memory increment mode Disable */ + +#define IS_DMA_MEMORY_INC_STATE(STATE) (((STATE) == DMA_MINC_ENABLE) || \ + ((STATE) == DMA_MINC_DISABLE)) +/** + * @} + */ + +/** @defgroup DMA_Peripheral_data_size DMA Peripheral Data Size Alignment + * @{ + */ +#define DMA_PDATAALIGN_BYTE ((uint32_t)0x00000000U) /*!< Peripheral data alignment : Byte */ +#define DMA_PDATAALIGN_HALFWORD ((uint32_t)DMA_CCR_PSIZE_0) /*!< Peripheral data alignment : HalfWord */ +#define DMA_PDATAALIGN_WORD ((uint32_t)DMA_CCR_PSIZE_1) /*!< Peripheral data alignment : Word */ + +#define IS_DMA_PERIPHERAL_DATA_SIZE(SIZE) (((SIZE) == DMA_PDATAALIGN_BYTE) || \ + ((SIZE) == DMA_PDATAALIGN_HALFWORD) || \ + ((SIZE) == DMA_PDATAALIGN_WORD)) +/** + * @} + */ + + +/** @defgroup DMA_Memory_data_size DMA Memory Data Size Alignment + * @{ + */ +#define DMA_MDATAALIGN_BYTE ((uint32_t)0x00000000U) /*!< Memory data alignment : Byte */ +#define DMA_MDATAALIGN_HALFWORD ((uint32_t)DMA_CCR_MSIZE_0) /*!< Memory data alignment : HalfWord */ +#define DMA_MDATAALIGN_WORD ((uint32_t)DMA_CCR_MSIZE_1) /*!< Memory data alignment : Word */ + +#define IS_DMA_MEMORY_DATA_SIZE(SIZE) (((SIZE) == DMA_MDATAALIGN_BYTE) || \ + ((SIZE) == DMA_MDATAALIGN_HALFWORD) || \ + ((SIZE) == DMA_MDATAALIGN_WORD )) +/** + * @} + */ + +/** @defgroup DMA_mode DMA Mode + * @{ + */ +#define DMA_NORMAL ((uint32_t)0x00000000U) /*!< Normal Mode */ +#define DMA_CIRCULAR ((uint32_t)DMA_CCR_CIRC) /*!< Circular Mode */ + +#define IS_DMA_MODE(MODE) (((MODE) == DMA_NORMAL ) || \ + ((MODE) == DMA_CIRCULAR)) +/** + * @} + */ + +/** @defgroup DMA_Priority_level DMA Priority Level + * @{ + */ +#define DMA_PRIORITY_LOW ((uint32_t)0x00000000U) /*!< Priority level : Low */ +#define DMA_PRIORITY_MEDIUM ((uint32_t)DMA_CCR_PL_0) /*!< Priority level : Medium */ +#define DMA_PRIORITY_HIGH ((uint32_t)DMA_CCR_PL_1) /*!< Priority level : High */ +#define DMA_PRIORITY_VERY_HIGH ((uint32_t)DMA_CCR_PL) /*!< Priority level : Very_High */ + +#define IS_DMA_PRIORITY(PRIORITY) (((PRIORITY) == DMA_PRIORITY_LOW ) || \ + ((PRIORITY) == DMA_PRIORITY_MEDIUM) || \ + ((PRIORITY) == DMA_PRIORITY_HIGH) || \ + ((PRIORITY) == DMA_PRIORITY_VERY_HIGH)) +/** + * @} + */ + + +/** @defgroup DMA_interrupt_enable_definitions DMA Interrupt Definitions + * @{ + */ + +#define DMA_IT_TC ((uint32_t)DMA_CCR_TCIE) +#define DMA_IT_HT ((uint32_t)DMA_CCR_HTIE) +#define DMA_IT_TE ((uint32_t)DMA_CCR_TEIE) + +/** + * @} + */ + +/** @defgroup DMA_flag_definitions DMA Flag Definitions + * @{ + */ + +#define DMA_FLAG_GL1 ((uint32_t)0x00000001U) +#define DMA_FLAG_TC1 ((uint32_t)0x00000002U) +#define DMA_FLAG_HT1 ((uint32_t)0x00000004U) +#define DMA_FLAG_TE1 ((uint32_t)0x00000008U) +#define DMA_FLAG_GL2 ((uint32_t)0x00000010U) +#define DMA_FLAG_TC2 ((uint32_t)0x00000020U) +#define DMA_FLAG_HT2 ((uint32_t)0x00000040U) +#define DMA_FLAG_TE2 ((uint32_t)0x00000080U) +#define DMA_FLAG_GL3 ((uint32_t)0x00000100U) +#define DMA_FLAG_TC3 ((uint32_t)0x00000200U) +#define DMA_FLAG_HT3 ((uint32_t)0x00000400U) +#define DMA_FLAG_TE3 ((uint32_t)0x00000800U) +#define DMA_FLAG_GL4 ((uint32_t)0x00001000U) +#define DMA_FLAG_TC4 ((uint32_t)0x00002000U) +#define DMA_FLAG_HT4 ((uint32_t)0x00004000U) +#define DMA_FLAG_TE4 ((uint32_t)0x00008000U) +#define DMA_FLAG_GL5 ((uint32_t)0x00010000U) +#define DMA_FLAG_TC5 ((uint32_t)0x00020000U) +#define DMA_FLAG_HT5 ((uint32_t)0x00040000U) +#define DMA_FLAG_TE5 ((uint32_t)0x00080000U) +#define DMA_FLAG_GL6 ((uint32_t)0x00100000U) +#define DMA_FLAG_TC6 ((uint32_t)0x00200000U) +#define DMA_FLAG_HT6 ((uint32_t)0x00400000U) +#define DMA_FLAG_TE6 ((uint32_t)0x00800000U) +#define DMA_FLAG_GL7 ((uint32_t)0x01000000U) +#define DMA_FLAG_TC7 ((uint32_t)0x02000000U) +#define DMA_FLAG_HT7 ((uint32_t)0x04000000U) +#define DMA_FLAG_TE7 ((uint32_t)0x08000000U) + + +/** + * @} + */ + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ + +/** @defgroup DMA_Exported_Macros DMA Exported Macros + * @{ + */ + +/** @brief Reset DMA handle state + * @param __HANDLE__: DMA handle + * @retval None + */ +#define __HAL_DMA_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DMA_STATE_RESET) + +/** + * @brief Enable the specified DMA Channel. + * @param __HANDLE__: DMA handle + * @retval None. + */ +#define __HAL_DMA_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CCR |= DMA_CCR_EN) + +/** + * @brief Disable the specified DMA Channel. + * @param __HANDLE__: DMA handle + * @retval None. + */ +#define __HAL_DMA_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CCR &= ~DMA_CCR_EN) + + +/* Interrupt & Flag management */ + +/** + * @brief Returns the current DMA Channel transfer complete flag. + * @param __HANDLE__: DMA handle + * @retval The specified transfer complete flag index. + */ + +#if defined (STM32L011xx) || defined (STM32L021xx) +#define __HAL_DMA_GET_TC_FLAG_INDEX(__HANDLE__) \ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_FLAG_TC1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_FLAG_TC2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_FLAG_TC3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_FLAG_TC4 :\ + DMA_FLAG_TC5) +#else +#define __HAL_DMA_GET_TC_FLAG_INDEX(__HANDLE__) \ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_FLAG_TC1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_FLAG_TC2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_FLAG_TC3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_FLAG_TC4 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel5))? DMA_FLAG_TC5 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel6))? DMA_FLAG_TC6 :\ + DMA_FLAG_TC7) +#endif +/** + * @brief Returns the current DMA Channel half transfer complete flag. + * @param __HANDLE__: DMA handle + * @retval The specified half transfer complete flag index. + */ +#if defined (STM32L011xx) || defined (STM32L021xx) +#define __HAL_DMA_GET_HT_FLAG_INDEX(__HANDLE__)\ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_FLAG_HT1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_FLAG_HT2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_FLAG_HT3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_FLAG_HT4 :\ + DMA_FLAG_HT5) +#else +#define __HAL_DMA_GET_HT_FLAG_INDEX(__HANDLE__)\ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_FLAG_HT1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_FLAG_HT2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_FLAG_HT3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_FLAG_HT4 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel5))? DMA_FLAG_HT5 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel6))? DMA_FLAG_HT6 :\ + DMA_FLAG_HT7) +#endif +/** + * @brief Returns the current DMA Channel transfer error flag. + * @param __HANDLE__: DMA handle + * @retval The specified transfer error flag index. + */ +#if defined (STM32L011xx) || defined (STM32L021xx) +#define __HAL_DMA_GET_TE_FLAG_INDEX(__HANDLE__)\ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_FLAG_TE1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_FLAG_TE2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_FLAG_TE3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_FLAG_TE4 :\ + DMA_FLAG_TE5) +#else +#define __HAL_DMA_GET_TE_FLAG_INDEX(__HANDLE__)\ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_FLAG_TE1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_FLAG_TE2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_FLAG_TE3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_FLAG_TE4 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel5))? DMA_FLAG_TE5 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel6))? DMA_FLAG_TE6 :\ + DMA_FLAG_TE7) +#endif +/** + * @brief Returns the current DMA Channel Global interrupt flag. + * @param __HANDLE__: DMA handle + * @retval The specified transfer error flag index. + */ +#if defined (STM32L011xx) || defined (STM32L021xx) +#define __HAL_DMA_GET_GI_FLAG_INDEX(__HANDLE__)\ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_ISR_GIF1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_ISR_GIF2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_ISR_GIF3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_ISR_GIF4 :\ + DMA_ISR_GIF5) +#else +#define __HAL_DMA_GET_GI_FLAG_INDEX(__HANDLE__)\ +(((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel1))? DMA_ISR_GIF1 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel2))? DMA_ISR_GIF2 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel3))? DMA_ISR_GIF3 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel4))? DMA_ISR_GIF4 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel5))? DMA_ISR_GIF5 :\ + ((uint32_t)((__HANDLE__)->Instance) == ((uint32_t)DMA1_Channel6))? DMA_ISR_GIF6 :\ + DMA_ISR_GIF7) +#endif +/** + * @brief Get the DMA Channel pending flags. + * @param __HANDLE__: DMA handle + * @param __FLAG__: Get the specified flag. + * This parameter can be any combination of the following values: + * @arg DMA_FLAG_TCIFx: Transfer complete flag + * @arg DMA_FLAG_HTIFx: Half transfer complete flag + * @arg DMA_FLAG_TEIFx: Transfer error flag + * @arg DMA_ISR_GIFx: Global interrupt flag + * Where x can be 0_4, 1_5, 2_6 or 3_7 to select the DMA Channel flag. + * @retval The state of FLAG (SET or RESET). + */ +#define __HAL_DMA_GET_FLAG(__HANDLE__, __FLAG__) (DMA1->ISR & (__FLAG__)) + +/** + * @brief Clears the DMA Channel pending flags. + * @param __HANDLE__: DMA handle + * @param __FLAG__: specifies the flag to clear. + * This parameter can be any combination of the following values: + * @arg DMA_FLAG_TCIFx: Transfer complete flag + * @arg DMA_FLAG_HTIFx: Half transfer complete flag + * @arg DMA_FLAG_TEIFx: Transfer error flag + * @arg DMA_ISR_GIFx: Global interrupt flag + * Where x can be 0_4, 1_5, 2_6 or 3_7 to select the DMA Channel flag. + * @retval None + */ +#define __HAL_DMA_CLEAR_FLAG(__HANDLE__, __FLAG__) (DMA1->IFCR = (__FLAG__)) + +/** + * @brief Enables the specified DMA Channel interrupts. + * @param __HANDLE__: DMA handle + * @param __INTERRUPT__: specifies the DMA interrupt sources to be enabled or disabled. + * This parameter can be any combination of the following values: + * @arg DMA_IT_TC: Transfer complete interrupt mask + * @arg DMA_IT_HT: Half transfer complete interrupt mask + * @arg DMA_IT_TE: Transfer error interrupt mask + * @retval None + */ +#define __HAL_DMA_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CCR |= (__INTERRUPT__)) + +/** + * @brief Disables the specified DMA Channel interrupts. + * @param __HANDLE__: DMA handle + * @param __INTERRUPT__: specifies the DMA interrupt sources to be enabled or disabled. + * This parameter can be any combination of the following values: + * @arg DMA_IT_TC: Transfer complete interrupt mask + * @arg DMA_IT_HT: Half transfer complete interrupt mask + * @arg DMA_IT_TE: Transfer error interrupt mask + * @retval None + */ +#define __HAL_DMA_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CCR &= ~(__INTERRUPT__)) + +/** + * @brief Checks whether the specified DMA Channel interrupt is enabled or not. + * @param __HANDLE__: DMA handle + * @param __INTERRUPT__: specifies the DMA interrupt source to check. + * This parameter can be one of the following values: + * @arg DMA_IT_TC: Transfer complete interrupt mask + * @arg DMA_IT_HT: Half transfer complete interrupt mask + * @arg DMA_IT_TE: Transfer error interrupt mask + * @retval The state of DMA_IT (SET or RESET). + */ +#define __HAL_DMA_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CCR & (__INTERRUPT__))) + +/** + * @brief Returns the number of remaining data units in the current DMAy Channelx transfer. + * @param __HANDLE__: DMA handle + * + * @retval The number of remaining data units in the current DMA Channel transfer. + */ +#define __HAL_DMA_GET_COUNTER(__HANDLE__) ((__HANDLE__)->Instance->CNDTR) + +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** @defgroup DMA_Exported_Functions DMA Exported Functions + * @{ + */ + +/** @defgroup DMA_Exported_Functions_Group1 Initialization/de-initialization functions + * @{ + */ + +/* Initialization and de-initialization functions *****************************/ +HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *hdma); +HAL_StatusTypeDef HAL_DMA_DeInit (DMA_HandleTypeDef *hdma); + +/** + * @} + */ + +/** @defgroup DMA_Exported_Functions_Group2 I/O operation functions + * @{ + */ + +/* IO operation functions *****************************************************/ +HAL_StatusTypeDef HAL_DMA_Start (DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength); +HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength); +HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma); +HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma); +HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *hdma, uint32_t CompleteLevel, uint32_t Timeout); +void HAL_DMA_IRQHandler(DMA_HandleTypeDef *hdma); +/** + * @} + */ + +/** @defgroup DMA_Exported_Functions_Group3 Peripheral State functions + * @{ + */ + +/* Peripheral State and Error functions ***************************************/ +HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *hdma); +uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *hdma); + +/** + * @} + */ + +/** + * @} + */ +/* Define the private group ***********************************/ +/**************************************************************/ +/** @defgroup DMA_Private DMA Private + * @{ + */ +/** + * @} + */ +/**************************************************************/ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_DMA_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h new file mode 100644 index 0000000..ca360e3 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h @@ -0,0 +1,388 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_flash.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of Flash HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_FLASH_H +#define __STM32L0xx_HAL_FLASH_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup FLASH + * @{ + */ + +/** @addtogroup FLASH_Private_Constants + * @{ + */ +#define FLASH_TIMEOUT_VALUE (50000U) /* 50 s */ +#define FLASH_SIZE_DATA_REGISTER FLASHSIZE_BASE +/** + * @} + */ + +/** @addtogroup FLASH_Private_Macros + * @{ + */ + +#define IS_FLASH_TYPEPROGRAM(_VALUE_) ((_VALUE_) == FLASH_TYPEPROGRAM_WORD) + +#define IS_FLASH_LATENCY(__LATENCY__) (((__LATENCY__) == FLASH_LATENCY_0) || \ + ((__LATENCY__) == FLASH_LATENCY_1)) + +/** + * @} + */ + +/* Exported types ------------------------------------------------------------*/ +/** @defgroup FLASH_Exported_Types FLASH Exported Types + * @{ + */ + +/** + * @brief FLASH Procedure structure definition + */ +typedef enum +{ + FLASH_PROC_NONE = 0, + FLASH_PROC_PAGEERASE = 1, + FLASH_PROC_PROGRAM = 2, +} FLASH_ProcedureTypeDef; + +/** + * @brief FLASH handle Structure definition + */ +typedef struct +{ + __IO FLASH_ProcedureTypeDef ProcedureOnGoing; /*!< Internal variable to indicate which procedure is ongoing or not in IT context */ + + __IO uint32_t NbPagesToErase; /*!< Internal variable to save the remaining sectors to erase in IT context*/ + + __IO uint32_t Address; /*!< Internal variable to save address selected for program or erase */ + + __IO uint32_t Page; /*!< Internal variable to define the current page which is erasing */ + + HAL_LockTypeDef Lock; /*!< FLASH locking object */ + + __IO uint32_t ErrorCode; /*!< FLASH error code + This parameter can be a value of @ref FLASH_Error_Codes */ +} FLASH_ProcessTypeDef; + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup FLASH_Exported_Constants FLASH Exported Constants + * @{ + */ + +/** @defgroup FLASH_Error_Codes FLASH Error Codes + * @{ + */ + +#define HAL_FLASH_ERROR_NONE 0x00U /*!< No error */ +#define HAL_FLASH_ERROR_PGA 0x01U /*!< Programming alignment error */ +#define HAL_FLASH_ERROR_WRP 0x02U /*!< Write protection error */ +#define HAL_FLASH_ERROR_OPTV 0x04U /*!< Option validity error */ +#define HAL_FLASH_ERROR_SIZE 0x08U /*!< */ +#define HAL_FLASH_ERROR_RD 0x10U /*!< Read protected error */ +#define HAL_FLASH_ERROR_FWWERR 0x20U /*!< FLASH Write or Erase operation aborted */ +#define HAL_FLASH_ERROR_NOTZERO 0x40U /*!< FLASH Write operation is done in a not-erased region */ + +/** + * @} + */ + +/** @defgroup FLASH_Page_Size FLASH size information + * @{ + */ + +#define FLASH_SIZE (uint32_t)((*((uint32_t *)FLASHSIZE_BASE)&0xFFFF) * 1024U) +#define FLASH_PAGE_SIZE ((uint32_t)128U) /*!< FLASH Page Size in bytes */ + +/** + * @} + */ + +/** @defgroup FLASH_Type_Program FLASH Type Program + * @{ + */ +#define FLASH_TYPEPROGRAM_WORD ((uint32_t)0x02U) /*!PECR), (__INTERRUPT__)) + +/** + * @brief Disable the specified FLASH interrupt. + * @param __INTERRUPT__ FLASH interrupt + * This parameter can be any combination of the following values: + * @arg @ref FLASH_IT_EOP End of FLASH Operation Interrupt + * @arg @ref FLASH_IT_ERR Error Interrupt + * @retval none + */ +#define __HAL_FLASH_DISABLE_IT(__INTERRUPT__) CLEAR_BIT((FLASH->PECR), (uint32_t)(__INTERRUPT__)) + +/** + * @brief Get the specified FLASH flag status. + * @param __FLAG__ specifies the FLASH flag to check. + * This parameter can be one of the following values: + * @arg @ref FLASH_FLAG_BSY FLASH Busy flag + * @arg @ref FLASH_FLAG_EOP FLASH End of Operation flag + * @arg @ref FLASH_FLAG_ENDHV FLASH End of High Voltage flag + * @arg @ref FLASH_FLAG_READY FLASH Ready flag after low power mode + * @arg @ref FLASH_FLAG_PGAERR FLASH Programming Alignment error flag + * @arg @ref FLASH_FLAG_SIZERR FLASH Size error flag + * @arg @ref FLASH_FLAG_OPTVERR FLASH Option validity error flag (not valid with STM32L031xx/STM32L041xx) + * @arg @ref FLASH_FLAG_RDERR FLASH Read protected error flag + * @arg @ref FLASH_FLAG_WRPERR FLASH Write protected error flag + * @arg @ref FLASH_FLAG_FWWERR FLASH Fetch While Write Error flag + * @arg @ref FLASH_FLAG_NOTZEROERR Not Zero area error flag + * @retval The new state of __FLAG__ (SET or RESET). + */ +#define __HAL_FLASH_GET_FLAG(__FLAG__) (((FLASH->SR) & (__FLAG__)) == (__FLAG__)) + +/** + * @brief Clear the specified FLASH flag. + * @param __FLAG__ specifies the FLASH flags to clear. + * This parameter can be any combination of the following values: + * @arg @ref FLASH_FLAG_EOP FLASH End of Operation flag + * @arg @ref FLASH_FLAG_PGAERR FLASH Programming Alignment error flag + * @arg @ref FLASH_FLAG_SIZERR FLASH Size error flag + * @arg @ref FLASH_FLAG_OPTVERR FLASH Option validity error flag (not valid with STM32L031xx/STM32L041xx) + * @arg @ref FLASH_FLAG_RDERR FLASH Read protected error flag + * @arg @ref FLASH_FLAG_WRPERR FLASH Write protected error flag + * @arg @ref FLASH_FLAG_FWWERR FLASH Fetch While Write Error flag + * @arg @ref FLASH_FLAG_NOTZEROERR Not Zero area error flag + * @retval none + */ +#define __HAL_FLASH_CLEAR_FLAG(__FLAG__) ((FLASH->SR) = (__FLAG__)) + +/** + * @} + */ + +/** + * @} + */ + +/* Include FLASH HAL Extended module */ +#include "stm32l0xx_hal_flash_ex.h" +#include "stm32l0xx_hal_flash_ramfunc.h" + +/* Exported functions --------------------------------------------------------*/ +/** @addtogroup FLASH_Exported_Functions + * @{ + */ + +/** @addtogroup FLASH_Exported_Functions_Group1 + * @{ + */ +/* IO operation functions *****************************************************/ +HAL_StatusTypeDef HAL_FLASH_Program(uint32_t TypeProgram, uint32_t Address, uint32_t Data); +HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t TypeProgram, uint32_t Address, uint32_t Data); + +/* FLASH IRQ handler function */ +void HAL_FLASH_IRQHandler(void); +/* Callbacks in non blocking modes */ +void HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue); +void HAL_FLASH_OperationErrorCallback(uint32_t ReturnValue); + +/** + * @} + */ + +/** @addtogroup FLASH_Exported_Functions_Group2 + * @{ + */ +/* Peripheral Control functions ***********************************************/ +HAL_StatusTypeDef HAL_FLASH_Unlock(void); +HAL_StatusTypeDef HAL_FLASH_Lock(void); +HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void); +HAL_StatusTypeDef HAL_FLASH_OB_Lock(void); +HAL_StatusTypeDef HAL_FLASH_OB_Launch(void); + +/** + * @} + */ + +/** @addtogroup FLASH_Exported_Functions_Group3 + * @{ + */ +/* Peripheral State and Error functions ***************************************/ +uint32_t HAL_FLASH_GetError(void); + +/** + * @} + */ + +/** + * @} + */ + +/* Private function -------------------------------------------------*/ +/** @addtogroup FLASH_Private_Functions + * @{ + */ +HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t Timeout); + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_FLASH_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h new file mode 100644 index 0000000..5c2b54b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h @@ -0,0 +1,829 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_flash_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of Flash HAL Extended module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_FLASH_EX_H +#define __STM32L0xx_HAL_FLASH_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup FLASHEx + * @{ + */ + +/** @addtogroup FLASHEx_Private_Constants + * @{ + */ +#define FLASH_SIZE_DATA_REGISTER FLASHSIZE_BASE + +#define FLASH_NBPAGES_MAX (FLASH_SIZE / FLASH_PAGE_SIZE) + +#define WRP_MASK_LOW (0x0000FFFFU) +#define WRP_MASK_HIGH (0xFFFF0000U) + +/** + * @} + */ + +/** @addtogroup FLASHEx_Private_Macros + * @{ + */ + +#define IS_FLASH_TYPEERASE(__VALUE__) (((__VALUE__) == FLASH_TYPEERASE_PAGES)) + +#define IS_OPTIONBYTE(__VALUE__) (((__VALUE__) <= (OPTIONBYTE_WRP | OPTIONBYTE_RDP | \ + OPTIONBYTE_USER | OPTIONBYTE_BOR | OPTIONBYTE_BOOT_BIT1))) + +#define IS_WRPSTATE(__VALUE__) (((__VALUE__) == OB_WRPSTATE_DISABLE) || \ + ((__VALUE__) == OB_WRPSTATE_ENABLE)) + +#define IS_OB_WRP(__PAGE__) (((__PAGE__) != 0x0000000U)) + +#define IS_OB_RDP(__LEVEL__) (((__LEVEL__) == OB_RDP_LEVEL_0) ||\ + ((__LEVEL__) == OB_RDP_LEVEL_1) ||\ + ((__LEVEL__) == OB_RDP_LEVEL_2)) + +#define IS_OB_BOR_LEVEL(__LEVEL__) (((__LEVEL__) == OB_BOR_OFF) || \ + ((__LEVEL__) == OB_BOR_LEVEL1) || \ + ((__LEVEL__) == OB_BOR_LEVEL2) || \ + ((__LEVEL__) == OB_BOR_LEVEL3) || \ + ((__LEVEL__) == OB_BOR_LEVEL4) || \ + ((__LEVEL__) == OB_BOR_LEVEL5)) + +#define IS_OB_IWDG_SOURCE(__SOURCE__) (((__SOURCE__) == OB_IWDG_SW) || ((__SOURCE__) == OB_IWDG_HW)) + +#define IS_OB_STOP_SOURCE(__SOURCE__) (((__SOURCE__) == OB_STOP_NORST) || ((__SOURCE__) == OB_STOP_RST)) + +#define IS_OB_STDBY_SOURCE(__SOURCE__) (((__SOURCE__) == OB_STDBY_NORST) || ((__SOURCE__) == OB_STDBY_RST)) + +#if defined(FLASH_OPTR_WPRMOD) && defined(FLASH_OPTR_BFB2) + +#define IS_OBEX(__VALUE__) (((__VALUE__) == OPTIONBYTE_PCROP) || ((__VALUE__) == OPTIONBYTE_BOOTCONFIG)) + +#elif defined(FLASH_OPTR_WPRMOD) && !defined(FLASH_OPTR_BFB2) + +#define IS_OBEX(__VALUE__) ((__VALUE__) == OPTIONBYTE_PCROP) + +#elif !defined(FLASH_OPTR_WPRMOD) && defined(FLASH_OPTR_BFB2) + +#define IS_OBEX(__VALUE__) ((__VALUE__) == OPTIONBYTE_BOOTCONFIG) + +#endif /* FLASH_OPTR_WPRMOD && FLASH_OPTR_BFB2 */ + +#if defined(FLASH_OPTR_WPRMOD) + +#define IS_PCROPSTATE(__VALUE__) (((__VALUE__) == OB_PCROP_STATE_DISABLE) || \ + ((__VALUE__) == OB_PCROP_STATE_ENABLE)) + +#define IS_OB_PCROP(__PAGE__) (((__PAGE__) != 0x0000000U)) +#endif /* FLASH_OPTR_WPRMOD */ + +#if defined(FLASH_OPTR_BFB2) + +#define IS_OB_BOOT_BANK(__BANK__) (((__BANK__) == OB_BOOT_BANK2) || ((__BANK__) == OB_BOOT_BANK1)) + +#endif /* FLASH_OPTR_BFB2 */ + +#define IS_OB_BOOT1(__BOOT_BIT1__) (((__BOOT_BIT1__) == OB_BOOT_BIT1_RESET) || ((__BOOT_BIT1__) == OB_BOOT_BIT1_SET)) +#define IS_TYPEPROGRAMDATA(__VALUE__) (((__VALUE__) == FLASH_TYPEPROGRAMDATA_BYTE) || \ + ((__VALUE__) == FLASH_TYPEPROGRAMDATA_HALFWORD) || \ + ((__VALUE__) == FLASH_TYPEPROGRAMDATA_WORD)) + + +/** @defgroup FLASHEx_Address FLASHEx Address + * @{ + */ + +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) + +#define IS_FLASH_DATA_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= DATA_EEPROM_BASE) && ((__ADDRESS__) <= DATA_EEPROM_BANK2_END)) +#define IS_FLASH_DATA_BANK1_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= DATA_EEPROM_BASE) && ((__ADDRESS__) <= DATA_EEPROM_BANK1_END)) +#define IS_FLASH_DATA_BANK2_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= DATA_EEPROM_BANK2_BASE) && ((__ADDRESS__) <= DATA_EEPROM_BANK2_END)) +#define IS_FLASH_PROGRAM_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= FLASH_BASE) && ((__ADDRESS__) < (FLASH_BASE + FLASH_SIZE))) +#define IS_FLASH_PROGRAM_BANK1_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= FLASH_BASE) && ((__ADDRESS__) < (FLASH_BASE + (FLASH_SIZE >> 1)))) +#define IS_FLASH_PROGRAM_BANK2_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= FLASH_BANK2_BASE) && ((__ADDRESS__) < (FLASH_BASE + FLASH_SIZE))) +#else +#define IS_FLASH_DATA_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= DATA_EEPROM_BASE) && ((__ADDRESS__) <= DATA_EEPROM_END)) +#define IS_FLASH_PROGRAM_ADDRESS(__ADDRESS__) (((__ADDRESS__) >= FLASH_BASE) && ((__ADDRESS__) < (FLASH_BASE + FLASH_SIZE))) +#endif + +#define IS_NBPAGES(__PAGES__) (((__PAGES__) >= 1) && ((__PAGES__) <= FLASH_NBPAGES_MAX)) + +/** + * @} + */ + +/** + * @} + */ +/* Exported types ------------------------------------------------------------*/ + +/** @defgroup FLASHEx_Exported_Types FLASHEx Exported Types + * @{ + */ + +/** + * @brief FLASH Erase structure definition + */ +typedef struct +{ + uint32_t TypeErase; /*!< TypeErase: Page Erase only. + This parameter can be a value of @ref FLASHEx_Type_Erase */ + + uint32_t PageAddress; /*!< PageAddress: Initial FLASH address to be erased + This parameter must be a value belonging to FLASH Programm address (depending on the devices) */ + + uint32_t NbPages; /*!< NbPages: Number of pages to be erased. + This parameter must be a value between 1 and (max number of pages - value of Initial page)*/ + +} FLASH_EraseInitTypeDef; + +/** + * @brief FLASH Option Bytes PROGRAM structure definition + */ +typedef struct +{ + uint32_t OptionType; /*!< OptionType: Option byte to be configured. + This parameter can be a value of @ref FLASHEx_Option_Type */ + + uint32_t WRPState; /*!< WRPState: Write protection activation or deactivation. + This parameter can be a value of @ref FLASHEx_WRP_State */ + + uint32_t WRPSector; /*!< WRPSector: This bitfield specifies the sector (s) which are write protected. + This parameter can be a combination of @ref FLASHEx_Option_Bytes_Write_Protection */ + +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) + uint32_t WRPSector2; /*!< WRPSector2 : This bitfield specifies the sector(s) upper Sector31 which are write protected. + This parameter can be a combination of @ref FLASHEx_Option_Bytes_Write_Protection2 */ +#endif + + uint8_t RDPLevel; /*!< RDPLevel: Set the read protection level. + This parameter can be a value of @ref FLASHEx_Option_Bytes_Read_Protection */ + + uint8_t BORLevel; /*!< BORLevel: Set the BOR Level. + This parameter can be a value of @ref FLASHEx_Option_Bytes_BOR_Level */ + + uint8_t USERConfig; /*!< USERConfig: Program the FLASH User Option Byte: IWDG_SW / RST_STOP / RST_STDBY. + This parameter can be a combination of @ref FLASHEx_Option_Bytes_IWatchdog, + @ref FLASHEx_Option_Bytes_nRST_STOP and @ref FLASHEx_Option_Bytes_nRST_STDBY*/ + + uint8_t BOOTBit1Config; /*!< BOOT1Config: Together with input pad Boot0, this bit selects the boot source, flash, ram or system memory + This parameter can be a value of @ref FLASHEx_Option_Bytes_BOOTBit1 */ +} FLASH_OBProgramInitTypeDef; + +#if defined(FLASH_OPTR_WPRMOD) || defined(FLASH_OPTR_BFB2) +/** + * @brief FLASH Advanced Option Bytes Program structure definition + */ +typedef struct +{ + uint32_t OptionType; /*!< OptionType: Option byte to be configured for extension . + This parameter can be a value of @ref FLASHEx_OptionAdv_Type */ + +#if defined(FLASH_OPTR_WPRMOD) + uint32_t PCROPState; /*!< PCROPState: PCROP activation or deactivation. + This parameter can be a value of @ref FLASHEx_PCROP_State */ + + uint32_t PCROPSector; /*!< PCROPSector : This bitfield specifies the sector(s) which are read/write protected. + This parameter can be a combination of @ref FLASHEx_Option_Bytes_PC_ReadWrite_Protection */ + +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) + uint32_t PCROPSector2; /*!< PCROPSector : This bitfield specifies the sector(s) upper Sector31 which are read/write protected. + This parameter can be a combination of @ref FLASHEx_Option_Bytes_PC_ReadWrite_Protection2 */ +#endif /* STM32L071xx || STM32L072xx || STM32L073xx || STM32L081xx || STM32L082xx || STM32L083xx */ +#endif /* FLASH_OPTR_WPRMOD */ + +#if defined(FLASH_OPTR_BFB2) + uint16_t BootConfig; /*!< BootConfig: specifies Option bytes for boot config + This parameter can be a value of @ref FLASHEx_Option_Bytes_BOOT */ +#endif /* FLASH_OPTR_BFB2*/ +} FLASH_AdvOBProgramInitTypeDef; + +/** + * @} + */ +#endif /* FLASH_OPTR_WPRMOD || FLASH_OPTR_BFB2 */ + +/* Exported constants --------------------------------------------------------*/ + + +/** @defgroup FLASHEx_Exported_Constants FLASHEx Exported Constants + * @{ + */ + +/** @defgroup FLASHEx_Type_Erase FLASHEx_Type_Erase + * @{ + */ +#define FLASH_TYPEERASE_PAGES ((uint32_t)0x00U) /*!> 16)) /*!< At startup, if boot pin 0 and BOOT1 bit are set in boot from user Flash position + and this parameter is selected the device will boot from Bank 2 */ + +/** + * @} + */ +#endif /* FLASH_OPTR_BFB2 */ + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ + +/** @defgroup FLASHEx_Exported_Macros FLASHEx Exported Macros + * @{ + */ + +/** + * @brief Set the FLASH Latency. + * @param __LATENCY__ FLASH Latency + * This parameter can be one of the following values: + * @arg @ref FLASH_LATENCY_0 FLASH Zero Latency cycle + * @arg @ref FLASH_LATENCY_1 FLASH One Latency cycle + * @retval none + */ +#define __HAL_FLASH_SET_LATENCY(__LATENCY__) \ + MODIFY_REG(FLASH->ACR, FLASH_ACR_LATENCY, (uint32_t)(__LATENCY__)) + +/** + * @brief Get the FLASH Latency. + * @retval FLASH Latency + * This parameter can be one of the following values: + * @arg @ref FLASH_LATENCY_0 FLASH Zero Latency cycle + * @arg @ref FLASH_LATENCY_1 FLASH One Latency cycle + */ +#define __HAL_FLASH_GET_LATENCY() (READ_BIT((FLASH->ACR), FLASH_ACR_LATENCY)) + +/** + * @brief Enable the FLASH prefetch buffer. + * @retval none + */ +#define __HAL_FLASH_PREFETCH_BUFFER_ENABLE() SET_BIT((FLASH->ACR), FLASH_ACR_PRFTEN) + +/** + * @brief Disable the FLASH prefetch buffer. + * @retval none + */ +#define __HAL_FLASH_PREFETCH_BUFFER_DISABLE() CLEAR_BIT((FLASH->ACR), FLASH_ACR_PRFTEN) + +/** + * @brief Enable the FLASH Buffer cache. + * @retval none + */ +#define __HAL_FLASH_BUFFER_CACHE_ENABLE() SET_BIT((FLASH->ACR), FLASH_ACR_DISAB_BUF) + +/** + * @brief Disable the FLASH Buffer cache. + * @retval none + */ +#define __HAL_FLASH_BUFFER_CACHE_DISABLE() CLEAR_BIT((FLASH->ACR), FLASH_ACR_DISAB_BUF) + +/** + * @brief Enable the FLASH preread buffer. + * @retval none + */ +#define __HAL_FLASH_PREREAD_BUFFER_ENABLE() SET_BIT((FLASH->ACR), FLASH_ACR_PRE_READ) + +/** + * @brief Disable the FLASH preread buffer. + * @retval none + */ +#define __HAL_FLASH_PREREAD_BUFFER_DISABLE() CLEAR_BIT((FLASH->ACR), FLASH_ACR_PRE_READ) + +/** + * @brief Enable the FLASH power down during Sleep mode + * @retval none + */ +#define __HAL_FLASH_SLEEP_POWERDOWN_ENABLE() SET_BIT(FLASH->ACR, FLASH_ACR_SLEEP_PD) + +/** + * @brief Disable the FLASH power down during Sleep mode + * @retval none + */ +#define __HAL_FLASH_SLEEP_POWERDOWN_DISABLE() CLEAR_BIT(FLASH->ACR, FLASH_ACR_SLEEP_PD) + +/** + * @brief Enable the Flash Run power down mode. + * @note Writing this bit to 0 this bit, automatically the keys are + * loss and a new unlock sequence is necessary to re-write it to 1. + */ +#define __HAL_FLASH_POWER_DOWN_ENABLE() do { FLASH->PDKEYR = FLASH_PDKEY1; \ + FLASH->PDKEYR = FLASH_PDKEY2; \ + SET_BIT((FLASH->ACR), FLASH_ACR_RUN_PD); \ + } while (0) + +/** + * @brief Disable the Flash Run power down mode. + * @note Writing this bit to 0 this bit, automatically the keys are + * loss and a new unlock sequence is necessary to re-write it to 1. + */ +#define __HAL_FLASH_POWER_DOWN_DISABLE() do { FLASH->PDKEYR = FLASH_PDKEY1; \ + FLASH->PDKEYR = FLASH_PDKEY2; \ + CLEAR_BIT((FLASH->ACR), FLASH_ACR_RUN_PD); \ + } while (0) + +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** @addtogroup FLASHEx_Exported_Functions + * @{ + */ + +/** @addtogroup FLASHEx_Exported_Functions_Group1 + * @{ + */ + +HAL_StatusTypeDef HAL_FLASHEx_Erase(FLASH_EraseInitTypeDef *pEraseInit, uint32_t *PageError); +HAL_StatusTypeDef HAL_FLASHEx_Erase_IT(FLASH_EraseInitTypeDef *pEraseInit); + +/** + * @} + */ + +/** @addtogroup FLASHEx_Exported_Functions_Group2 + * @{ + */ + +HAL_StatusTypeDef HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *pOBInit); +void HAL_FLASHEx_OBGetConfig(FLASH_OBProgramInitTypeDef *pOBInit); + +#if defined(FLASH_OPTR_WPRMOD) || defined(FLASH_OPTR_BFB2) + +HAL_StatusTypeDef HAL_FLASHEx_AdvOBProgram (FLASH_AdvOBProgramInitTypeDef *pAdvOBInit); +void HAL_FLASHEx_AdvOBGetConfig(FLASH_AdvOBProgramInitTypeDef *pAdvOBInit); + +#endif /* FLASH_OPTR_WPRMOD || FLASH_OPTR_BFB2 */ + +#if defined(FLASH_OPTR_WPRMOD) + +HAL_StatusTypeDef HAL_FLASHEx_OB_SelectPCROP(void); +HAL_StatusTypeDef HAL_FLASHEx_OB_DeSelectPCROP(void); + +#endif /* FLASH_OPTR_WPRMOD */ + +/** + * @} + */ + +/** @addtogroup FLASHEx_Exported_Functions_Group3 + * @{ + */ + +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Unlock(void); +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Lock(void); + +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Erase(uint32_t Address); +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Program(uint32_t TypeProgram, uint32_t Address, uint32_t Data); +void HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram(void); +void HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram(void); + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_FLASH_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h new file mode 100644 index 0000000..385b02b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h @@ -0,0 +1,126 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_flash_ramfunc.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of FLASH RAMFUNC driver. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_FLASH_RAMFUNC_H +#define __STM32L0xx_FLASH_RAMFUNC_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup FLASH_RAMFUNC + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + + +/* Exported functions --------------------------------------------------------*/ + +/** @addtogroup FLASH_RAMFUNC_Exported_Functions + * @{ + */ + +/* + * @brief FLASH memory functions that should be executed from internal SRAM. + * These functions are defined inside the "stm32l0xx_hal_flash_ramfunc.c" + * file. + */ + +/** @addtogroup FLASH_RAMFUNC_Exported_Functions_Group1 + * @{ + */ + +__RAM_FUNC HAL_FLASHEx_EnableRunPowerDown(void); +__RAM_FUNC HAL_FLASHEx_DisableRunPowerDown(void); + +/** + * @} + */ + +/** @addtogroup FLASH_RAMFUNC_Exported_Functions_Group2 + * @{ + */ + +#if defined(FLASH_PECR_PARALLBANK) + +__RAM_FUNC HAL_FLASHEx_EraseParallelPage(uint32_t Page_Address1, uint32_t Page_Address2); +__RAM_FUNC HAL_FLASHEx_ProgramParallelHalfPage(uint32_t Address1, uint32_t* pBuffer1, uint32_t Address2, uint32_t* pBuffer2); + +#endif /* FLASH_PECR_PARALLBANK */ + +__RAM_FUNC HAL_FLASHEx_HalfPageProgram(uint32_t Address, uint32_t* pBuffer); + +/** + * @} + */ + +/** @addtogroup FLASH_RAMFUNC_Exported_Functions_Group3 + * @{ + */ +__RAM_FUNC HAL_FLASHEx_GetError(uint32_t *Error); +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_FLASH_RAMFUNC_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h new file mode 100644 index 0000000..da9d0ad --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h @@ -0,0 +1,344 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_gpio.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of GPIO HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_GPIO_H +#define __STM32L0xx_HAL_GPIO_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup GPIO GPIO + * @{ + */ +/******************************************************************************/ +/* Exported types ------------------------------------------------------------*/ +/******************************************************************************/ + +/** @defgroup GPIO_Exported_Types GPIO Exported Types + * @{ + */ + +/** @defgroup GPIO_Init_Configuration GPIO init configuration structure + * @{ + */ +/** + * @brief GPIO Init structure definition + */ +typedef struct +{ + uint32_t Pin; /*!< Specifies the GPIO pins to be configured. + This parameter can be a combination of @ref GPIO_pins_define */ + + uint32_t Mode; /*!< Specifies the operating mode for the selected pins. + This parameter can be a value of @ref GPIO_mode_define */ + + uint32_t Pull; /*!< Specifies the Pull-up or Pull-Down activation for the selected pins. + This parameter can be a value of @ref GPIO_pull_define */ + + uint32_t Speed; /*!< Specifies the speed for the selected pins. + This parameter can be a value of @ref GPIO_speed_define */ + + uint32_t Alternate; /*!< Peripheral to be connected to the selected pins + This parameter can be a value of @ref GPIOEx_Alternate_function_selection */ +}GPIO_InitTypeDef; +/** + * @} + */ + +/** @defgroup GPIO_SetReset_Definition GPIO set reset definition + * @{ + */ +/** + * @brief GPIO Bit SET and Bit RESET enumeration + */ +typedef enum +{ + GPIO_PIN_RESET = 0U, + GPIO_PIN_SET +}GPIO_PinState; +/** + * @} + */ + + +#define IS_GPIO_PIN_ACTION(__ACTION__) (((__ACTION__) == GPIO_PIN_RESET) || ((__ACTION__) == GPIO_PIN_SET)) + +/** + * @} + */ +/******************************************************************************/ +/* Exported constants --------------------------------------------------------*/ +/******************************************************************************/ + +/** @defgroup GPIO_Exported_Constants GPIO Exported Constants + * @{ + */ + +/** @defgroup GPIO_pins_define Pin definition + * @{ + */ +#define GPIO_PIN_0 ((uint16_t)0x0001U) /* Pin 0 selected */ +#define GPIO_PIN_1 ((uint16_t)0x0002U) /* Pin 1 selected */ +#define GPIO_PIN_2 ((uint16_t)0x0004U) /* Pin 2 selected */ +#define GPIO_PIN_3 ((uint16_t)0x0008U) /* Pin 3 selected */ +#define GPIO_PIN_4 ((uint16_t)0x0010U) /* Pin 4 selected */ +#define GPIO_PIN_5 ((uint16_t)0x0020U) /* Pin 5 selected */ +#define GPIO_PIN_6 ((uint16_t)0x0040U) /* Pin 6 selected */ +#define GPIO_PIN_7 ((uint16_t)0x0080U) /* Pin 7 selected */ +#define GPIO_PIN_8 ((uint16_t)0x0100U) /* Pin 8 selected */ +#define GPIO_PIN_9 ((uint16_t)0x0200U) /* Pin 9 selected */ +#define GPIO_PIN_10 ((uint16_t)0x0400U) /* Pin 10 selected */ +#define GPIO_PIN_11 ((uint16_t)0x0800U) /* Pin 11 selected */ +#define GPIO_PIN_12 ((uint16_t)0x1000U) /* Pin 12 selected */ +#define GPIO_PIN_13 ((uint16_t)0x2000U) /* Pin 13 selected */ +#define GPIO_PIN_14 ((uint16_t)0x4000U) /* Pin 14 selected */ +#define GPIO_PIN_15 ((uint16_t)0x8000U) /* Pin 15 selected */ +#define GPIO_PIN_All ((uint16_t)0xFFFFU) /* All pins selected */ +/** + * @} + */ + +#define GPIO_PIN_MASK ((uint32_t)0x0000FFFFU) /* PIN mask for assert test */ +#define IS_GPIO_PIN(__PIN__) ((((__PIN__) & GPIO_PIN_MASK) != (uint32_t)0x00) &&\ + (((__PIN__) & ~GPIO_PIN_MASK) == (uint32_t)0x00)) + +/** @defgroup GPIO_mode_define Mode definition + * @brief GPIO Configuration Mode + * Elements values convention: 0xX0yz00YZ + * - X : GPIO mode or EXTI Mode + * - y : External IT or Event trigger detection + * - z : IO configuration on External IT or Event + * - Y : Output type (Push Pull or Open Drain) + * - Z : IO Direction mode (Input, Output, Alternate or Analog) + * @{ + */ +#define GPIO_MODE_INPUT ((uint32_t)0x00000000U) /*!< Input Floating Mode */ +#define GPIO_MODE_OUTPUT_PP ((uint32_t)0x00000001U) /*!< Output Push Pull Mode */ +#define GPIO_MODE_OUTPUT_OD ((uint32_t)0x00000011U) /*!< Output Open Drain Mode */ +#define GPIO_MODE_AF_PP ((uint32_t)0x00000002U) /*!< Alternate Function Push Pull Mode */ +#define GPIO_MODE_AF_OD ((uint32_t)0x00000012U) /*!< Alternate Function Open Drain Mode */ + +#define GPIO_MODE_ANALOG ((uint32_t)0x00000003U) /*!< Analog Mode */ + +#define GPIO_MODE_IT_RISING ((uint32_t)0x10110000U) /*!< External Interrupt Mode with Rising edge trigger detection */ +#define GPIO_MODE_IT_FALLING ((uint32_t)0x10210000U) /*!< External Interrupt Mode with Falling edge trigger detection */ +#define GPIO_MODE_IT_RISING_FALLING ((uint32_t)0x10310000U) /*!< External Interrupt Mode with Rising/Falling edge trigger detection */ + +#define GPIO_MODE_EVT_RISING ((uint32_t)0x10120000U) /*!< External Event Mode with Rising edge trigger detection */ +#define GPIO_MODE_EVT_FALLING ((uint32_t)0x10220000U) /*!< External Event Mode with Falling edge trigger detection */ +#define GPIO_MODE_EVT_RISING_FALLING ((uint32_t)0x10320000U) /*!< External Event Mode with Rising/Falling edge trigger detection */ + +/** + * @} + */ + +#define IS_GPIO_MODE(__MODE__) (((__MODE__) == GPIO_MODE_INPUT) ||\ + ((__MODE__) == GPIO_MODE_OUTPUT_PP) ||\ + ((__MODE__) == GPIO_MODE_OUTPUT_OD) ||\ + ((__MODE__) == GPIO_MODE_AF_PP) ||\ + ((__MODE__) == GPIO_MODE_AF_OD) ||\ + ((__MODE__) == GPIO_MODE_IT_RISING) ||\ + ((__MODE__) == GPIO_MODE_IT_FALLING) ||\ + ((__MODE__) == GPIO_MODE_IT_RISING_FALLING) ||\ + ((__MODE__) == GPIO_MODE_EVT_RISING) ||\ + ((__MODE__) == GPIO_MODE_EVT_FALLING) ||\ + ((__MODE__) == GPIO_MODE_EVT_RISING_FALLING) ||\ + ((__MODE__) == GPIO_MODE_ANALOG)) + + +/** @defgroup GPIO_speed_define Speed definition + * @brief GPIO Output Maximum frequency + * @{ + */ +#define GPIO_SPEED_FREQ_LOW ((uint32_t)0x00000000U) /*!< range up to 0.4 MHz, please refer to the product datasheet */ +#define GPIO_SPEED_FREQ_MEDIUM ((uint32_t)0x00000001U) /*!< range 0.4 MHz to 2 MHz, please refer to the product datasheet */ +#define GPIO_SPEED_FREQ_HIGH ((uint32_t)0x00000002U) /*!< range 2 MHz to 10 MHz, please refer to the product datasheet */ +#define GPIO_SPEED_FREQ_VERY_HIGH ((uint32_t)0x00000003U) /*!< range 10 MHz to 35 MHz, please refer to the product datasheet */ + +/** + * @} + */ + +#define IS_GPIO_SPEED(__SPEED__) (((__SPEED__) == GPIO_SPEED_FREQ_LOW ) || ((__SPEED__) == GPIO_SPEED_FREQ_MEDIUM ) || \ + ((__SPEED__) == GPIO_SPEED_FREQ_HIGH ) || ((__SPEED__) == GPIO_SPEED_FREQ_VERY_HIGH)) + + + /** @defgroup GPIO_pull_define Pull definition + * @brief GPIO Pull-Up or Pull-Down Activation + * @{ + */ +#define GPIO_NOPULL ((uint32_t)0x00000000U) /*!< No Pull-up or Pull-down activation */ +#define GPIO_PULLUP ((uint32_t)0x00000001U) /*!< Pull-up activation */ +#define GPIO_PULLDOWN ((uint32_t)0x00000002U) /*!< Pull-down activation */ + +/** + * @} + */ + +#define IS_GPIO_PULL(__PULL__) (((__PULL__) == GPIO_NOPULL) || ((__PULL__) == GPIO_PULLUP) || \ + ((__PULL__) == GPIO_PULLDOWN)) + + +/** + * @} + */ +/******************************************************************************/ +/* Exported macro ------------------------------------------------------------*/ +/******************************************************************************/ +/* Exported macro ------------------------------------------------------------*/ +/** @defgroup GPIO_Exported_Macro GPIO Exported Macros + * @{ + */ +/** + * @brief Checks whether the specified EXTI line flag is set or not. + * @param __EXTI_LINE__: specifies the EXTI line flag to check. + * This parameter can be GPIO_PIN_x where x can be(0..15) + * @retval The new state of __EXTI_LINE__ (SET or RESET). + */ +#define __HAL_GPIO_EXTI_GET_FLAG(__EXTI_LINE__) (EXTI->PR & (__EXTI_LINE__)) + +/** + * @brief Clears the EXTI's line pending flags. + * @param __EXTI_LINE__: specifies the EXTI lines flags to clear. + * This parameter can be any combination of GPIO_PIN_x where x can be (0..15) + * @retval None + */ +#define __HAL_GPIO_EXTI_CLEAR_FLAG(__EXTI_LINE__) (EXTI->PR = (__EXTI_LINE__)) + +/** + * @brief Checks whether the specified EXTI line is asserted or not. + * @param __EXTI_LINE__: specifies the EXTI line to check. + * This parameter can be GPIO_PIN_x where x can be(0..15) + * @retval The new state of __EXTI_LINE__ (SET or RESET). + */ +#define __HAL_GPIO_EXTI_GET_IT(__EXTI_LINE__) (EXTI->PR & (__EXTI_LINE__)) + +/** + * @brief Clears the EXTI's line pending bits. + * @param __EXTI_LINE__: specifies the EXTI lines to clear. + * This parameter can be any combination of GPIO_PIN_x where x can be (0..15) + * @retval None + */ +#define __HAL_GPIO_EXTI_CLEAR_IT(__EXTI_LINE__) (EXTI->PR = (__EXTI_LINE__)) + +/** + * @brief Generates a Software interrupt on selected EXTI line. + * @param __EXTI_LINE__: specifies the EXTI line to check. + * This parameter can be GPIO_PIN_x where x can be(0..15) + * @retval None + */ +#define __HAL_GPIO_EXTI_GENERATE_SWIT(__EXTI_LINE__) (EXTI->SWIER |= (__EXTI_LINE__)) + +/** + * @} + */ +/* Include GPIO HAL Extension module */ +#include "stm32l0xx_hal_gpio_ex.h" + +/******************************************************************************/ +/* Exported functions --------------------------------------------------------*/ +/******************************************************************************/ + +/* Exported functions --------------------------------------------------------*/ +/** @defgroup GPIO_Exported_Functions GPIO Exported Functions + * @{ + */ + +/* Initialization and de-initialization functions *******************************/ +/** @defgroup GPIO_Exported_Functions_Group1 Initialization and de-initialization functions + * @{ + */ +void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init); +void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin); +/** + * @} + */ + +/* IO operation functions *******************************************************/ +/** @defgroup GPIO_Exported_Functions_Group2 IO operation functions + * @{ + */ +GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin); +void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState); +void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin); +HAL_StatusTypeDef HAL_GPIO_LockPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin); +void HAL_GPIO_EXTI_IRQHandler(uint16_t GPIO_Pin); +void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin); +/** + * @} + */ + +/** + * @} + */ + +/* Define the private group ***********************************/ +/**************************************************************/ +/** @defgroup GPIO_Private GPIO Private + * @{ + */ +/** + * @} + */ +/**************************************************************/ + + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_GPIO_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h new file mode 100644 index 0000000..40d5d88 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h @@ -0,0 +1,2284 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_gpio_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of GPIO HAL Extension module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_GPIO_EX_H +#define __STM32L0xx_HAL_GPIO_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup GPIOEx GPIOEx + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup GPIOEx_Exported_Constants GPIOEx Exported Constants + * @{ + */ + + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L083xx/STM32L073xx---------------------------*/ +/*----------------------------------------------------------------------------*/ + +#if defined (STM32L083xx) || defined (STM32L073xx) + +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + * + */ + +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________ + * PA0 | | |TIM2_C1 |TSC |USART2 |TIM2_TR |USART4 |COMP1 | + * PA1 |EVENTOUT|LCD |TIM2_C2 |TSC |USART2 |TIM21_TR|USART4 | | + * PA2 |TIM21_C1|LCD |TIM2_C3 |TSC |USART2 | |LPUART1 |COMP2 | + * PA3 |TIM21_C2|LCD |TIM2_C4 |TSC |USART2 | |LPUART1 | | + * PA4 |SPI1 | | |TSC |USART2 |TIM22_TR| | | + * PA5 |SPI1 | |TIM2_TR |TSC | |TIM2_C1 | | | + * PA6 |SPI1 |LCD |TIM3_C1 |TSC |LPUART1 |TIM22_C1|EVENTOUT|COMP1 | + * PA7 |SPI1 |LCD |TIM3_C2 |TSC | |TIM22_C2|EVENTOUT|COMP2 | + * PA8 |MCO |LCD |USB |EVENTOUT|USART1 | | |I2C3 | + * PA9 |MCO |LCD | |TSC |USART1 | |I2C1 |I2C3 | + * PA10| |LCD | |TSC |USART1 | |I2C1 | | + * PA11|SPI1 | |EVENTOUT|TSC |USART1 | |I2C2 |COMP1 | + * PA12|SPI1 | |EVENTOUT|TSC |USART1 | |I2C2 |COMP2 | + * PA13|SWDIO | |USB | | | |LPUART1 | | + * PA14|SWCLK | | | |USART2 | |LPUART1 | | + * PA15|SPI1 |LCD |TIM2_TR |EVENTOUT|USART2 |TIM2_C1 |USART4 | | + *______________________________________________________________________________ + * PB0 |EVENTOUT|LCD |TIM3_C3 |TSC | | | | | + * PB1 | |LCD |TIM3_C4 |TSC |LPUART1 | | | | + * PB2 | | |LPTIM1_O|TSC | | | |I2C3 | + * PB3 |SPI1 |LCD |TIM2_C2 |TSC |EVENTOUT|USART1 |USART5 | | + * PB4 |SPI1 |LCD |TIM3_C1 |TSC |TIM22_C1|USART1 |USART5 |I2C3 | + * PB5 |SPI1 |LCD |LPTIM1_I|I2C1 |TIM3_C2 |USART1 |USART5 | | + * | | | | |TIM22_C2| | | | + * PB6 |USART1 |I2C1 |LPTIM1_T|TSC | | | | | + * PB7 |USART1 |I2C1 |LPTIM1_I|TSC | | |USART4 | | + * PB8 | |LCD | |TSC |I2C1 | | | | + * PB9 | |LCD |EVENTOUT| |I2C1 |SPI2 | | | + * PB10| |LCD |TIM2_C3 |TSC |LPUART1 |SPI2 |I2C2 |LPUART1 | + * PB11|EVENTOUT|LCD |TIM2_C4 |TSC |LPUART1 | |I2C2 |LPUART1 | + * PB12|SPI2 |LCD |LPUART1 |TSC | |I2C2 |EVENTOUT| | + * PB13|SPI2 |LCD |MCO |TSC |LPUART1 |I2C2 |TIM21_C1| | + * PB14|SPI2 |LCD |RTC |TSC |LPUART1 |I2C2 |TIM21_C2| | + * PB15|SPI2 |LCD |RTC | | | | | | + *______________________________________________________________________________ + * PC0 |LPTIM1_I|LCD |EVENTOUT|TSC | | |LPUART1 |I2C3 | + * PC1 |LPTIM1_O|LCD |EVENTOUT|TSC | | |LPUART1 |I2C3 | + * PC2 |LPTIM1_I|LCD |SPI2 |TSC | | | | | + * PC3 |LPTIM1_T|LCD |SPI2 |TSC | | | | | + * PC4 |EVENTOUT|LCD |LPUART1 | | | | | | + * PC5 | |LCD |LPUART1 |TSC | | | | | + * PC6 |TIM22_C1|LCD |TIM3_C1 |TSC | | | | | + * PC7 |TIM22_C2|LCD |TIM3_C2 |TSC | | | | | + * PC8 |TIM22_TR|LCD |TIM3_C3 |TSC | | | | | + * PC9 |TIM21_TR|LCD |USB |TSC | | | |I2C3 | + * | | |TIM3_C4 | | | | | | + * PC10|LPUART1 |LCD | | | | |USART4 | | + * PC11|LPUART1 |LCD | | | | |USART4 | | + * PC12| |LCD |USART5 | | | |USART4 | | + * PC13| | | | | | | | | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *______________________________________________________________________________ + * PD0 |TIM21_C1|SPI2 | | | | | | | + * PD1 | |SPI2 | | | | | | | + * PD2 |LPUART1 |LCD |TIM3_TR | | | |USART5 | | + * PD3 |USART2 |LCD |SPI2 | | | | | | + * PD4 |USART2 |SPI2 | | | | | | | + * PD5 |USART2 | | | | | | | | + * PD6 |USART2 | | | | | | | | + * PD7 |USART2 |TIM21_C2| | | | | | | + * PD8 |LPUART1 |LCD | | | | | | | + * PD9 |LPUART1 |LCD | | | | | | | + * PD10| |LCD | | | | | | | + * PD11|LPUART1 |LCD | | | | | | | + * PD12|LPUART1 |LCD | | | | | | | + * PD13| |LCD | | | | | | | + * PD14| |LCD | | | | | | | + * PD15|USB |LCD | | | | | | | + *______________________________________________________________________________ + * PE0 | |LCD |EVENTOUT| | | | | | + * PE1 | |LCD |EVENTOUT| | | | | | + * PE2 | |LCD |TIM3_TR | | | | | | + * PE3 |TIM22_C1|LCD |TIM3_C1 | | | | | | + * PE4 |TIM22_C2| |TIM3_C2 | | | | | | + * PE5 |TIM21_C1| |TIM3_C3 | | | | | | + * PE6 |TIM21_C2| |TIM3_C4 | | | | | | + * PE7 | |LCD | | | | |USART5 | | + * PE8 | |LCD | | | | |USART4 | | + * PE9 |TIM2_C1 |LCD |TIM2_TR | | | |USART4 | | + * PE10|TIM2_C2 |LCD | | | | |USART5 | | + * PE11|TIM2_C3 | | | | | |USART5 | | + * PE12|TIM2_C4 | |SPI1 | | | | | | + * PE13| |LCD |SPI1 | | | | | | + * PE14| |LCD |SPI1 | | | | | | + * PE15| |LCD |SPI1 | | | | | | + *______________________________________________________________________________ + * PH0 |USB | | | | | | | | + * PH1 | | | | | | | | | + * PH9 | | | | | | | | | + * PH10| | | | | | | | | + * + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +#define GPIO_AF0_USART1 ((uint8_t)0x00U) /* USART1 Alternate Function mapping */ +#define GPIO_AF0_SPI2 ((uint8_t)0x00U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF0_LPTIM1 ((uint8_t)0x00U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF0_TIM22 ((uint8_t)0x00U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF0_LPUART1 ((uint8_t)0x00U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_TIM2 ((uint8_t)0x00U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF0_USB ((uint8_t)0x00U) /* USB Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF1 + */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF1_SPI2 ((uint8_t)0x01U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF1_TIM21 ((uint8_t)0x01U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF1_LCD ((uint8_t)0x01U) /* LCD Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF2 + */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_TIM3 ((uint8_t)0x02U) /* TIM3 Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_LPUART1 ((uint8_t)0x02U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF2_MCO ((uint8_t)0x02U) /* MCO Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +#define GPIO_AF2_SPI2 ((uint8_t)0x02U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF2_USART5 ((uint8_t)0x02U) /* USART5 Alternate Function mapping */ +#define GPIO_AF2_SPI1 ((uint8_t)0x02U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF2_USB ((uint8_t)0x00U) /* USB Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF3_TSC ((uint8_t)0x03U) /* TSC Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_USART1 ((uint8_t)0x04U) /* USART1 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping*/ +#define GPIO_AF4_TIM22 ((uint8_t)0x04U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF4_TIM3 ((uint8_t)0x04U) /* TIM3 Alternate Function mapping */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF5 + */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_TIM22 ((uint8_t)0x05U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF5_USART1 ((uint8_t)0x05U) /* USART1 Alternate Function mapping */ +#define GPIO_AF5_SPI2 ((uint8_t)0x05U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF5_I2C2 ((uint8_t)0x05U) /* I2C2 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + */ + +#define GPIO_AF6_USART4 ((uint8_t)0x06U) /* USART4 Alternate Function mapping */ +#define GPIO_AF6_LPUART1 ((uint8_t)0x06U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF6_I2C1 ((uint8_t)0x06U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF6_I2C2 ((uint8_t)0x06U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF6_USART5 ((uint8_t)0x06U) /* USART5 Alternate Function mapping */ +#define GPIO_AF6_TIM21 ((uint8_t)0x06U) /* TIM21 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF7 + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +#define GPIO_AF7_I2C3 ((uint8_t)0x07U) /* I2C3 Alternate Function mapping */ +#define GPIO_AF7_LPUART1 ((uint8_t)0x07U) /* LPUART1 Alternate Function mapping */ +/** + * + */ + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ +/** + * IS_GPIO_AF macro definition + */ +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_EVENTOUT) || ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF0_SPI1) || ((__AF__) == GPIO_AF1_I2C1) || \ + ((__AF__) == GPIO_AF0_TIM21) || ((__AF__) == GPIO_AF1_SPI2) || \ + ((__AF__) == GPIO_AF0_MCO) || ((__AF__) == GPIO_AF1_TIM21) || \ + ((__AF__) == GPIO_AF0_SWDIO) || ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF0_SWCLK) || ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF0_USART1) || ((__AF__) == GPIO_AF2_USB) || \ + ((__AF__) == GPIO_AF0_SPI2) || ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_LPTIM1) || ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF2_LPUART1) || \ + ((__AF__) == GPIO_AF0_LPUART1) || ((__AF__) == GPIO_AF2_MCO) || \ + ((__AF__) == GPIO_AF0_USART2) || ((__AF__) == GPIO_AF2_RTC) || \ + ((__AF__) == GPIO_AF0_USB) || ((__AF__) == GPIO_AF2_SPI2) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF2_USART5) || \ + ((__AF__) == GPIO_AF3_TSC) || ((__AF__) == GPIO_AF2_SPI1) || \ + ((__AF__) == GPIO_AF3_EVENTOUT) || ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF3_I2C1) || ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF5_TIM21) || ((__AF__) == GPIO_AF4_EVENTOUT) || \ + ((__AF__) == GPIO_AF5_TIM2) || ((__AF__) == GPIO_AF4_USART1) || \ + ((__AF__) == GPIO_AF5_USART1) || ((__AF__) == GPIO_AF4_TIM22) || \ + ((__AF__) == GPIO_AF5_TIM22) || ((__AF__) == GPIO_AF4_TIM3) || \ + ((__AF__) == GPIO_AF5_SPI2) || ((__AF__) == GPIO_AF4_I2C1) || \ + ((__AF__) == GPIO_AF5_I2C2) || ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_COMP2) || ((__AF__) == GPIO_AF6_LPUART1) || \ + ((__AF__) == GPIO_AF7_COMP1) || ((__AF__) == GPIO_AF6_I2C1) || \ + ((__AF__) == GPIO_AF7_I2C3) || ((__AF__) == GPIO_AF6_EVENTOUT) || \ + ((__AF__) == GPIO_AF7_LPUART1) || ((__AF__) == GPIO_AF6_I2C2) || \ + ((__AF__) == GPIO_AF6_USART5) || ((__AF__) == GPIO_AF6_TIM21)) + + +#define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_I2C3))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_TIM3) || \ + ((__AF__) == GPIO_AF5_I2C2) || \ + ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_LPUART1))) || \ + (((__INSTANCE__) == GPIOC) && (((__AF__) == GPIO_AF0_LPTIM1) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_I2C3))) || \ + (((__INSTANCE__) == GPIOD) && (((__AF__) == GPIO_AF0_LPUART1) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF6_USART5))) || \ + (((__INSTANCE__) == GPIOE) && (((__AF__) == GPIO_AF0_TIM22) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF6_USART4))) || \ + (((__INSTANCE__) == GPIOH) && (((__AF__) == GPIO_AF0_USB)))) + + /** + * @} + */ +#endif /* (STM32L083xx) || (STM32L073xx) */ + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L082xx and STM32L072xx-----------------------*/ +/*----------------------------------------------------------------------------*/ +#if defined (STM32L082xx) || defined (STM32L072xx) + +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + */ + + +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________ + * PA0 | | |TIM2_C1 |TSC |USART2 |TIM2_TR |USART4 |COMP1 | + * PA1 |EVENTOUT| |TIM2_C2 |TSC |USART2 |TIM21_TR|USART4 | | + * PA2 |TIM21_C1| |TIM2_C3 |TSC |USART2 | |LPUART1 |COMP2 | + * PA3 |TIM21_C2| |TIM2_C4 |TSC |USART2 | |LPUART1 | | + * PA4 |SPI1 | | |TSC |USART2 |TIM22_TR| | | + * PA5 |SPI1 | |TIM2_TR |TSC | |TIM2_C1 | | | + * PA6 |SPI1 | |TIM3_C1 |TSC |LPUART1 |TIM22_C1|EVENTOUT|COMP1 | + * PA7 |SPI1 | |TIM3_C2 |TSC | |TIM22_C2|EVENTOUT|COMP2 | + * PA8 |MCO | |USB |EVENTOUT|USART1 | | |I2C3 | + * PA9 |MCO | | |TSC |USART1 | |I2C1 |I2C3 | + * PA10| | | |TSC |USART1 | |I2C1 | | + * PA11|SPI1 | |EVENTOUT|TSC |USART1 | |I2C2 |COMP1 | + * PA12|SPI1 | |EVENTOUT|TSC |USART1 | |I2C2 |COMP2 | + * PA13|SWDIO | |USB | | | |LPUART1 | | + * PA14|SWCLK | | | |USART2 | |LPUART1 | | + * PA15|SPI1 | |TIM2_TR |EVENTOUT|USART2 |TIM2_C1 |USART4 | | + *______________________________________________________________________________ + * PB0 |EVENTOUT| |TIM3_C3 |TSC | | | | | + * PB1 | | |TIM3_C4 |TSC |LPUART1 | | | | + * PB2 | | |LPTIM1_O|TSC | | | |I2C3 | + * PB3 |SPI1 | |TIM2_C2 |TSC |EVENTOUT|USART1 |USART5 | | + * PB4 |SPI1 | |TIM3_C1 |TSC |TIM22_C1|USART1 |USART5 |I2C3 | + * PB5 |SPI1 | |LPTIM1_I|I2C1 |TIM3_C2 |USART1 |USART5 | | + * | | | | |TIM22_C2| | | | + * PB6 |USART1 |I2C1 |LPTIM1_T|TSC | | | | | + * PB7 |USART1 |I2C1 |LPTIM1_I|TSC | | |USART4 | | + * PB8 | | | |TSC |I2C1 | | | | + * PB9 | | |EVENTOUT| |I2C1 |SPI2 | | | + * PB10| | |TIM2_C3 |TSC |LPUART1 |SPI2 |I2C2 |LPUART1 | + * PB11|EVENTOUT| |TIM2_C4 |TSC |LPUART1 | |I2C2 |LPUART1 | + * PB12|SPI2 | |LPUART1 |TSC | |I2C2 |EVENTOUT| | + * PB13|SPI2 | |MCO |TSC |LPUART1 |I2C2 |TIM21_C1| | + * PB14|SPI2 | |RTC |TSC |LPUART1 |I2C2 |TIM21_C2| | + * PB15|SPI2 | |RTC | | | | | | + *______________________________________________________________________________ + * PC0 |LPTIM1_I| |EVENTOUT|TSC | | |LPUART1 |I2C3 | + * PC1 |LPTIM1_O| |EVENTOUT|TSC | | |LPUART1 |I2C3 | + * PC2 |LPTIM1_I| |SPI2 |TSC | | | | | + * PC3 |LPTIM1_T| |SPI2 |TSC | | | | | + * PC4 |EVENTOUT| |LPUART1 | | | | | | + * PC5 | | |LPUART1 |TSC | | | | | + * PC6 |TIM22_C1| |TIM3_C1 |TSC | | | | | + * PC7 |TIM22_C2| |TIM3_C2 |TSC | | | | | + * PC8 |TIM22_TR| |TIM3_C3 |TSC | | | | | + * PC9 |TIM21_TR| |USB |TSC | | | |I2C3 | + * | | |TIM3_C4 | | | | | | + * PC10|LPUART1 | | | | | |USART4 | | + * PC11|LPUART1 | | | | | |USART4 | | + * PC12| | |USART5 | | | |USART4 | | + * PC13| | | | | | | | | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *______________________________________________________________________________ + * PD0 |TIM21_C1|SPI2 | | | | | | | + * PD1 | |SPI2 | | | | | | | + * PD2 |LPUART1 | |TIM3_TR | | | |USART5 | | + * PD3 |USART2 | |SPI2 | | | | | | + * PD4 |USART2 |SPI2 | | | | | | | + * PD5 |USART2 | | | | | | | | + * PD6 |USART2 | | | | | | | | + * PD7 |USART2 |TIM21_C2| | | | | | | + * PD8 |LPUART1 | | | | | | | | + * PD9 |LPUART1 | | | | | | | | + * PD10| | | | | | | | | + * PD11|LPUART1 | | | | | | | | + * PD12|LPUART1 | | | | | | | | + * PD13| | | | | | | | | + * PD14| | | | | | | | | + * PD15|USB | | | | | | | | + *______________________________________________________________________________ + * PE0 | | |EVENTOUT| | | | | | + * PE1 | | |EVENTOUT| | | | | | + * PE2 | | |TIM3_TR | | | | | | + * PE3 |TIM22_C1| |TIM3_C1 | | | | | | + * PE4 |TIM22_C2| |TIM3_C2 | | | | | | + * PE5 |TIM21_C1| |TIM3_C3 | | | | | | + * PE6 |TIM21_C2| |TIM3_C4 | | | | | | + * PE7 | | | | | | |USART5 | | + * PE8 | | | | | | |USART4 | | + * PE9 |TIM2_C1 | |TIM2_TR | | | |USART4 | | + * PE10|TIM2_C2 | | | | | |USART5 | | + * PE11|TIM2_C3 | | | | | |USART5 | | + * PE12|TIM2_C4 | |SPI1 | | | | | | + * PE13| | |SPI1 | | | | | | + * PE14| | |SPI1 | | | | | | + * PE15| | |SPI1 | | | | | | + *______________________________________________________________________________ + * PH0 |USB | | | | | | | | + * PH1 | | | | | | | | | + * PH9 | | | | | | | | | + * PH10| | | | | | | | | + * + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +#define GPIO_AF0_USART1 ((uint8_t)0x00U) /* USART1 Alternate Function mapping */ +#define GPIO_AF0_SPI2 ((uint8_t)0x00U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF0_LPTIM1 ((uint8_t)0x00U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF0_TIM22 ((uint8_t)0x00U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF0_LPUART1 ((uint8_t)0x00U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_TIM2 ((uint8_t)0x00U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF0_USB ((uint8_t)0x00U) /* USB Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF1 + */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF1_SPI2 ((uint8_t)0x01U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF1_TIM21 ((uint8_t)0x01U) /* TIM21 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF2 + */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_TIM3 ((uint8_t)0x02U) /* TIM3 Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_LPUART1 ((uint8_t)0x02U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF2_MCO ((uint8_t)0x02U) /* MCO Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +#define GPIO_AF2_SPI2 ((uint8_t)0x02U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF2_USART5 ((uint8_t)0x02U) /* USART5 Alternate Function mapping */ +#define GPIO_AF2_SPI1 ((uint8_t)0x02U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF2_USB ((uint8_t)0x00U) /* USB Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF3_TSC ((uint8_t)0x03U) /* TSC Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_USART1 ((uint8_t)0x04U) /* USART1 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF4_TIM22 ((uint8_t)0x04U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF4_TIM3 ((uint8_t)0x04U) /* TIM3 Alternate Function mapping */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF5 + */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_TIM22 ((uint8_t)0x05U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF5_USART1 ((uint8_t)0x05U) /* USART1 Alternate Function mapping */ +#define GPIO_AF5_SPI2 ((uint8_t)0x05U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF5_I2C2 ((uint8_t)0x05U) /* I2C2 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + */ +#define GPIO_AF6_USART4 ((uint8_t)0x06U) /* USART4 Alternate Function mapping */ +#define GPIO_AF6_LPUART1 ((uint8_t)0x06U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF6_I2C1 ((uint8_t)0x06U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF6_I2C2 ((uint8_t)0x06U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF6_USART5 ((uint8_t)0x06U) /* USART5 Alternate Function mapping */ +#define GPIO_AF6_TIM21 ((uint8_t)0x06U) /* TIM21 Alternate Function mapping */ +/** + * + */ + + /* + * Alternate function AF7 + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +#define GPIO_AF7_I2C3 ((uint8_t)0x07U) /* I2C3 Alternate Function mapping */ +#define GPIO_AF7_LPUART1 ((uint8_t)0x07U) /* LPUART1 Alternate Function mapping */ +/** + * + */ + + /** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ +/** + * @brief IS_GPIO_AF macro definition + */ +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_EVENTOUT) || ((__AF__) == GPIO_AF6_TIM21) || \ + ((__AF__) == GPIO_AF0_SPI1) || ((__AF__) == GPIO_AF1_I2C1) || \ + ((__AF__) == GPIO_AF0_TIM21) || ((__AF__) == GPIO_AF1_SPI2) || \ + ((__AF__) == GPIO_AF0_MCO) || ((__AF__) == GPIO_AF1_TIM21) || \ + ((__AF__) == GPIO_AF0_SWDIO) || ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF0_SWCLK) || ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF0_USART1) || ((__AF__) == GPIO_AF2_USB) || \ + ((__AF__) == GPIO_AF0_SPI2) || ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_LPTIM1) || ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF2_LPUART1) || \ + ((__AF__) == GPIO_AF0_LPUART1) || ((__AF__) == GPIO_AF2_MCO) || \ + ((__AF__) == GPIO_AF0_USART2) || ((__AF__) == GPIO_AF2_RTC) || \ + ((__AF__) == GPIO_AF0_USB) || ((__AF__) == GPIO_AF2_SPI2) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF2_USART5) || \ + ((__AF__) == GPIO_AF3_TSC) || ((__AF__) == GPIO_AF2_SPI1) || \ + ((__AF__) == GPIO_AF3_EVENTOUT) || ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF3_I2C1) || ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF5_TIM21) || ((__AF__) == GPIO_AF4_EVENTOUT) || \ + ((__AF__) == GPIO_AF5_TIM2) || ((__AF__) == GPIO_AF4_USART1) || \ + ((__AF__) == GPIO_AF5_USART1) || ((__AF__) == GPIO_AF4_TIM22) || \ + ((__AF__) == GPIO_AF5_TIM22) || ((__AF__) == GPIO_AF4_TIM3) || \ + ((__AF__) == GPIO_AF5_SPI2) || ((__AF__) == GPIO_AF4_I2C1) || \ + ((__AF__) == GPIO_AF5_I2C2) || ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_COMP2) || ((__AF__) == GPIO_AF6_LPUART1) || \ + ((__AF__) == GPIO_AF7_COMP1) || ((__AF__) == GPIO_AF6_I2C1) || \ + ((__AF__) == GPIO_AF7_I2C3) || ((__AF__) == GPIO_AF6_EVENTOUT) || \ + ((__AF__) == GPIO_AF7_LPUART1) || ((__AF__) == GPIO_AF6_I2C2) || \ + ((__AF__) == GPIO_AF6_USART5)) + +#define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_EVENTOUT) || \ + ((__AF__) == GPIO_AF7_COMP1))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_I2C1) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_TIM22) || \ + ((__AF__) == GPIO_AF5_I2C2) || \ + ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_LPUART1))) || \ + (((__INSTANCE__) == GPIOC) && (((__AF__) == GPIO_AF0_TIM22) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_I2C3))) || \ + (((__INSTANCE__) == GPIOD) && (((__AF__) == GPIO_AF0_TIM21) || \ + ((__AF__) == GPIO_AF1_TIM21) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF6_USART5))) || \ + (((__INSTANCE__) == GPIOE) && (((__AF__) == GPIO_AF0_TIM22) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF6_USART4))) || \ + (((__INSTANCE__) == GPIOH) && (((__AF__) == GPIO_AF0_USB)))) + + /** + * @} + */ +#endif /* (STM32L082xx) || (STM32L072xx) */ + + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L081xx and STM32L071xx-----------------------*/ +/*----------------------------------------------------------------------------*/ +#if defined (STM32L081xx) || defined (STM32L071xx) + +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + * + */ + + +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________ + * PA0 | | |TIM2_C1 | |USART2 |TIM2_TR |USART4 |COMP1 | + * PA1 |EVENTOUT| |TIM2_C2 | |USART2 |TIM21_TR|USART4 | | + * PA2 |TIM21_C1| |TIM2_C3 | |USART2 | |LPUART1 |COMP2 | + * PA3 |TIM21_C2| |TIM2_C4 | |USART2 | |LPUART1 | | + * PA4 |SPI1 | | | |USART2 |TIM22_TR| | | + * PA5 |SPI1 | |TIM2_TR | | |TIM2_C1 | | | + * PA6 |SPI1 | |TIM3_C1 | |LPUART1 |TIM22_C1|EVENTOUT|COMP1 | + * PA7 |SPI1 | |TIM3_C2 | | |TIM22_C2|EVENTOUT|COMP2 | + * PA8 |MCO | | |EVENTOUT|USART1 | | |I2C3 | + * PA9 |MCO | | | |USART1 | |I2C1 |I2C3 | + * PA10| | | | |USART1 | |I2C1 | | + * PA11|SPI1 | |EVENTOUT| |USART1 | |I2C2 |COMP1 | + * PA12|SPI1 | |EVENTOUT| |USART1 | |I2C2 |COMP2 | + * PA13|SWDIO | | | | | |LPUART1 | | + * PA14|SWCLK | | | |USART2 | |LPUART1 | | + * PA15|SPI1 | |TIM2_TR |EVENTOUT|USART2 |TIM2_C1 |USART4 | | + *______________________________________________________________________________ + * PB0 |EVENTOUT| |TIM3_C3 | | | | | | + * PB1 | | |TIM3_C4 | |LPUART1 | | | | + * PB2 | | |LPTIM1_O| | | | |I2C3 | + * PB3 |SPI1 | |TIM2_C2 | |EVENTOUT|USART1 |USART5 | | + * PB4 |SPI1 | |TIM3_C1 | |TIM22_C1|USART1 |USART5 |I2C3 | + * PB5 |SPI1 | |LPTIM1_I|I2C1 |TIM3_C2 |USART1 |USART5 | | + * | | | | |TIM22_C2| | | | + * PB6 |USART1 |I2C1 |LPTIM1_T| | | | | | + * PB7 |USART1 |I2C1 |LPTIM1_I| | | |USART4 | | + * PB8 | | | | |I2C1 | | | | + * PB9 | | |EVENTOUT| |I2C1 |SPI2 | | | + * PB10| | |TIM2_C3 | |LPUART1 |SPI2 |I2C2 |LPUART1 | + * PB11|EVENTOUT| |TIM2_C4 | |LPUART1 | |I2C2 |LPUART1 | + * PB12|SPI2 | |LPUART1 | | |I2C2 |EVENTOUT| | + * PB13|SPI2 | |MCO | |LPUART1 |I2C2 |TIM21_C1| | + * PB14|SPI2 | |RTC | |LPUART1 |I2C2 |TIM21_C2| | + * PB15|SPI2 | |RTC | | | | | | + *______________________________________________________________________________ + * PC0 |LPTIM1_I| |EVENTOUT| | | |LPUART1 |I2C3 | + * PC1 |LPTIM1_O| |EVENTOUT| | | |LPUART1 |I2C3 | + * PC2 |LPTIM1_I| |SPI2 | | | | | | + * PC3 |LPTIM1_T| |SPI2 | | | | | | + * PC4 |EVENTOUT| |LPUART1 | | | | | | + * PC5 | | |LPUART1 | | | | | | + * PC6 |TIM22_C1| |TIM3_C1 | | | | | | + * PC7 |TIM22_C2| |TIM3_C2 | | | | | | + * PC8 |TIM22_TR| |TIM3_C3 | | | | | | + * PC9 |TIM21_TR| | | | | | |I2C3 | + * | | |TIM3_C4 | | | | | | + * PC10|LPUART1 | | | | | |USART4 | | + * PC11|LPUART1 | | | | | |USART4 | | + * PC12| | |USART5 | | | |USART4 | | + * PC13| | | | | | | | | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *______________________________________________________________________________ + * PD0 |TIM21_C1|SPI2 | | | | | | | + * PD1 | |SPI2 | | | | | | | + * PD2 |LPUART1 | |TIM3_TR | | | |USART5 | | + * PD3 |USART2 | |SPI2 | | | | | | + * PD4 |USART2 |SPI2 | | | | | | | + * PD5 |USART2 | | | | | | | | + * PD6 |USART2 | | | | | | | | + * PD7 |USART2 |TIM21_C2| | | | | | | + * PD8 |LPUART1 | | | | | | | | + * PD9 |LPUART1 | | | | | | | | + * PD10| | | | | | | | | + * PD11|LPUART1 | | | | | | | | + * PD12|LPUART1 | | | | | | | | + * PD13| | | | | | | | | + * PD14| | | | | | | | | + * PD15| | | | | | | | | + *______________________________________________________________________________ + * PE0 | | |EVENTOUT| | | | | | + * PE1 | | |EVENTOUT| | | | | | + * PE2 | | |TIM3_TR | | | | | | + * PE3 |TIM22_C1| |TIM3_C1 | | | | | | + * PE4 |TIM22_C2| |TIM3_C2 | | | | | | + * PE5 |TIM21_C1| |TIM3_C3 | | | | | | + * PE6 |TIM21_C2| |TIM3_C4 | | | | | | + * PE7 | | | | | | |USART5 | | + * PE8 | | | | | | |USART4 | | + * PE9 |TIM2_C1 | |TIM2_TR | | | |USART4 | | + * PE10|TIM2_C2 | | | | | |USART5 | | + * PE11|TIM2_C3 | | | | | |USART5 | | + * PE12|TIM2_C4 | |SPI1 | | | | | | + * PE13| | |SPI1 | | | | | | + * PE14| | |SPI1 | | | | | | + * PE15| | |SPI1 | | | | | | + *______________________________________________________________________________ + * PH0 | | | | | | | | | + * PH1 | | | | | | | | | + * PH9 | | | | | | | | | + * PH10| | | | | | | | | + * + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + * + */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +#define GPIO_AF0_USART1 ((uint8_t)0x00U) /* USART1 Alternate Function mapping */ +#define GPIO_AF0_SPI2 ((uint8_t)0x00U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF0_LPTIM1 ((uint8_t)0x00U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF0_TIM22 ((uint8_t)0x00U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF0_LPUART1 ((uint8_t)0x00U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_TIM2 ((uint8_t)0x00U) /* TIM2 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF1 + * + */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF1_SPI2 ((uint8_t)0x01U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF1_TIM21 ((uint8_t)0x01U) /* TIM21 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF2 + * + */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_TIM3 ((uint8_t)0x02U) /* TIM3 Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_LPUART1 ((uint8_t)0x02U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF2_MCO ((uint8_t)0x02U) /* MCO Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +#define GPIO_AF2_SPI2 ((uint8_t)0x02U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF2_USART5 ((uint8_t)0x02U) /* USART5 Alternate Function mapping */ +#define GPIO_AF2_SPI1 ((uint8_t)0x02U) /* SPI1 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + * @{ + */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + * + */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_USART1 ((uint8_t)0x04U) /* USART1 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF4_TIM22 ((uint8_t)0x04U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF4_TIM3 ((uint8_t)0x04U) /* TIM3 Alternate Function mapping */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF5 + * + */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_TIM22 ((uint8_t)0x05U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF5_USART1 ((uint8_t)0x05U) /* USART1 Alternate Function mapping */ +#define GPIO_AF5_SPI2 ((uint8_t)0x05U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF5_I2C2 ((uint8_t)0x05U) /* I2C2 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + * + */ +#define GPIO_AF6_USART4 ((uint8_t)0x06U) /* USART4 Alternate Function mapping */ +#define GPIO_AF6_LPUART1 ((uint8_t)0x06U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF6_I2C1 ((uint8_t)0x06U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF6_I2C2 ((uint8_t)0x06U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF6_USART5 ((uint8_t)0x06U) /* USART5 Alternate Function mapping */ +#define GPIO_AF6_TIM21 ((uint8_t)0x06U) /* TIM21 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF7 + * + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +#define GPIO_AF7_I2C3 ((uint8_t)0x07U) /* I2C3 Alternate Function mapping */ +#define GPIO_AF7_LPUART1 ((uint8_t)0x07U) /* LPUART1 Alternate Function mapping */ +/** + * + */ + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ + + /** + * IS_GPIO_AF macro definition + */ +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_EVENTOUT) || ((__AF__) == GPIO_AF7_LPUART1) || \ + ((__AF__) == GPIO_AF0_SPI1) || ((__AF__) == GPIO_AF1_I2C1) || \ + ((__AF__) == GPIO_AF0_TIM21) || ((__AF__) == GPIO_AF1_SPI2) || \ + ((__AF__) == GPIO_AF0_MCO) || ((__AF__) == GPIO_AF1_TIM21) || \ + ((__AF__) == GPIO_AF0_SWDIO) || ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF0_SWCLK) || ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF0_USART1) || ((__AF__) == GPIO_AF6_TIM21) || \ + ((__AF__) == GPIO_AF0_SPI2) || ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_LPTIM1) || ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF2_LPUART1) || \ + ((__AF__) == GPIO_AF0_LPUART1) || ((__AF__) == GPIO_AF2_MCO) || \ + ((__AF__) == GPIO_AF0_USART2) || ((__AF__) == GPIO_AF2_RTC) || \ + ((__AF__) == GPIO_AF2_SPI2) || ((__AF__) == GPIO_AF6_USART5) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF2_USART5) || \ + ((__AF__) == GPIO_AF2_SPI1) || ((__AF__) == GPIO_AF6_I2C2) || \ + ((__AF__) == GPIO_AF3_EVENTOUT) || ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF3_I2C1) || ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF5_TIM21) || ((__AF__) == GPIO_AF4_EVENTOUT) || \ + ((__AF__) == GPIO_AF5_TIM2) || ((__AF__) == GPIO_AF4_USART1) || \ + ((__AF__) == GPIO_AF5_USART1) || ((__AF__) == GPIO_AF4_TIM22) || \ + ((__AF__) == GPIO_AF5_TIM22) || ((__AF__) == GPIO_AF4_TIM3) || \ + ((__AF__) == GPIO_AF5_SPI2) || ((__AF__) == GPIO_AF4_I2C1) || \ + ((__AF__) == GPIO_AF5_I2C2) || ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_COMP2) || ((__AF__) == GPIO_AF6_LPUART1) || \ + ((__AF__) == GPIO_AF7_COMP1) || ((__AF__) == GPIO_AF6_I2C1) || \ + ((__AF__) == GPIO_AF7_I2C3) || ((__AF__) == GPIO_AF6_EVENTOUT)) + + +#define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_EVENTOUT) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_COMP1))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_I2C1) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF4_I2C1) || \ + ((__AF__) == GPIO_AF5_I2C2) || \ + ((__AF__) == GPIO_AF6_USART4) || \ + ((__AF__) == GPIO_AF7_LPUART1))) || \ + (((__INSTANCE__) == GPIOC) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF6_LPUART1) || \ + ((__AF__) == GPIO_AF7_I2C3))) || \ + (((__INSTANCE__) == GPIOD) && (((__AF__) == GPIO_AF0_LPUART1) || \ + ((__AF__) == GPIO_AF1_SPI2) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF6_USART5))) || \ + (((__INSTANCE__) == GPIOE) && (((__AF__) == GPIO_AF0_TIM22) || \ + ((__AF__) == GPIO_AF2_TIM3) || \ + ((__AF__) == GPIO_AF6_USART4)))) + + /** + * @} + */ +#endif /* (STM32L081xx) || (STM32L071xx) */ + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L053xx/STM32L063xx---------------------------*/ +/*----------------------------------------------------------------------------*/ +#if defined (STM32L053xx) || defined (STM32L063xx) + +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + * + */ +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________ + * PA0 | | |TIM2_C1 |TSC |USART2 |TIM2_TR | |COMP1 | + * PA1 |EVENTOUT|LCD |TIM2_C2 |TSC |USART2 |TIM21_TR| | | + * PA2 |TIM21_C1|LCD |TIM2_C3 |TSC |USART2 | | |COMP2 | + * PA3 |TIM21_C2|LCD |TIM2_C4 |TSC |USART2 | | | | + * PA4 |SPI1 | | |TSC |USART2 |TIM22_TR| | | + * PA5 |SPI1 | |TIM2_TR |TSC | |TIM2_C1 | | | + * PA6 |SPI1 |LCD | |TSC |LPUART |TIM22_C1|EVENTOUT|COMP1 | + * PA7 |SPI1 |LCD | |TSC | |TIM22_C2|EVENTOUT|COMP2 | + * PA8 |MCO |LCD |USB |EVENTOUT|USART1 | | | | + * PA9 |MCO |LCD | |TSC |USART1 | | | | + * PA10| |LCD | |TSC |USART1 | | | | + * PA11|SPI1 | |EVENTOUT|TSC |USART1 | | |COMP1 | + * PA12|SPI1 | |EVENTOUT|TSC |USART1 | | |COMP2 | + * PA13|SWDIO | |USB | | | | | | + * PA14|SWCLK | | | |USART2 | | | | + * PA15|SPI1 |LCD |TIM2_TR |EVENTOUT|USART2 |TIM2_C1 | | | + *______________________________________________________________________________ + * PB0 |EVENTOUT|LCD | |TSC | | | | | + * PB1 | |LCD | |TSC |LPUART1 | | | | + * PB2 | | |LPTIM1_O|TSC | | | | | + * PB3 |SPI1 |LCD |TIM2_C2 |TSC |EVENTOUT| | | | + * PB4 |SPI1 |LCD |EVENTOUT|TSC |TIM22_C1| | | | + * PB5 |SPI1 |LCD |LPTIM1_I|I2C1 |TIM22_C2| | | | + * PB6 |USART1 |I2C1 |LPTIM1_T|TSC | | | | | + * PB7 |USART1 |I2C1 |LPTIM1_I|TSC | | | | | + * PB8 | |LCD | |TSC |I2C1 | | | | + * PB9 | |LCD |EVENTOUT| |I2C1 |SPI2 | | | + * PB10| |LCD |TIM2_C3 |TSC |LPUART1 |SPI2 |I2C2 | | + * PB11|EVENTOUT|LCD |TIM2_C4 |TSC |LPUART1 | |I2C2 | | + * PB12|SPI2 |LCD |LPUART1 |TSC | |I2C2 |EVENTOUT| | + * PB13|SPI2 |LCD | |TSC |LPUART1 |I2C2 |TIM21_C1| | + * PB14|SPI2 |LCD |RTC |TSC |LPUART1 |I2C2 |TIM21_C2| | + * PB15|SPI2 |LCD |RTC | | | | | | + *______________________________________________________________________________ + * PC0 |LPTIM1_I|LCD |EVENTOUT|TSC | | | | | + * PC1 |LPTIM1_O|LCD |EVENTOUT|TSC | | | | | + * PC2 |LPTIM1_I|LCD |SPI2 |TSC | | | | | + * PC3 |LPTIM1_T|LCD |SPI2 |TSC | | | | | + * PC4 |EVENTOUT|LCD |LPUART | | | | | | + * PC5 | |LCD |LPUART |TSC | | | | | + * PC6 |TIM22_C1|LCD | |TSC | | | | | + * PC7 |TIM22_C2|LCD | |TSC | | | | | + * PC8 |TIM22_TR|LCD | |TSC | | | | | + * PC9 |TIM21_TR|LCD |USB |TSC | | | | | + * PC10|LPUART |LCD | | | | | | | + * PC11|LPUART |LCD | | | | | | | + * PC12| |LCD | | | | | | | + * PC13| | | | | | | | | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *______________________________________________________________________________ + * PD2 |LPUART |LCD | | | | | | | + *______________________________________________________________________________ + * PH0 |USB | | | | | | | | + * PH1 | | | | | | | | | + * * + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_SPI2 ((uint8_t)0x00U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF0_USART1 ((uint8_t)0x00U) /* USART1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_LPUART1 ((uint8_t)0x00U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF0_USB ((uint8_t)0x00U) /* USB Alternate Function mapping */ +#define GPIO_AF0_LPTIM1 ((uint8_t)0x00U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF0_TSC ((uint8_t)0x00U) /* TSC Alternate Function mapping */ +#define GPIO_AF0_TIM2 ((uint8_t)0x00U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_TIM22 ((uint8_t)0x00U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +/** + * + */ + + /* + * Alternate function AF1 + */ +#define GPIO_AF1_SPI1 ((uint8_t)0x01U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF1_SPI2 ((uint8_t)0x01U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF1_LCD ((uint8_t)0x01U) /* LCD Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF2 + */ +#define GPIO_AF2_SPI2 ((uint8_t)0x02U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF2_LPUART1 ((uint8_t)0x02U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF2_USB ((uint8_t)0x02U) /* USB Alternate Function mapping */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF3_TSC ((uint8_t)0x03U) /* TSC Alternate Function mapping */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF4_USART1 ((uint8_t)0x04U) /* USART1 Alternate Function mapping */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_TIM22 ((uint8_t)0x04U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + + /* + * Alternate function AF5 + */ +#define GPIO_AF5_SPI2 ((uint8_t)0x05U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF5_I2C2 ((uint8_t)0x05U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_TIM22 ((uint8_t)0x05U) /* TIM22 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + */ +#define GPIO_AF6_I2C2 ((uint8_t)0x06U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF6_TIM21 ((uint8_t)0x06U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF7 + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +/** + * + */ + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ +/** + * @brief IS_GPIO_AF macro definition + */ + +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_SPI1) || ((__AF__) == GPIO_AF2_SPI2) || \ + ((__AF__) == GPIO_AF0_SPI2) || ((__AF__) == GPIO_AF2_LPUART1) || \ + ((__AF__) == GPIO_AF0_USART1) || ((__AF__) == GPIO_AF2_USB) || \ + ((__AF__) == GPIO_AF0_USART2) || ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF0_LPUART1) || ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF0_USB) || ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF0_LPTIM1) || ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_TSC) || ((__AF__) == GPIO_AF2_RTC) || \ + ((__AF__) == GPIO_AF3_I2C1) || ((__AF__) == GPIO_AF7_COMP2) || \ + ((__AF__) == GPIO_AF0_TIM22) || ((__AF__) == GPIO_AF3_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_EVENTOUT) || ((__AF__) == GPIO_AF4_I2C1) || \ + ((__AF__) == GPIO_AF0_MCO) || ((__AF__) == GPIO_AF4_USART1) || \ + ((__AF__) == GPIO_AF0_SWDIO) || ((__AF__) == GPIO_AF0_SWCLK) || \ + ((__AF__) == GPIO_AF1_SPI1) || ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF1_SPI2) || ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF7_COMP2) || ((__AF__) == GPIO_AF4_TIM22) || \ + ((__AF__) == GPIO_AF1_I2C1) || ((__AF__) == GPIO_AF4_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LCD) || ((__AF__) == GPIO_AF5_SPI2) || \ + ((__AF__) == GPIO_AF5_I2C2) || ((__AF__) == GPIO_AF5_TIM2) || \ + ((__AF__) == GPIO_AF5_TIM21) || ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_I2C2) || ((__AF__) == GPIO_AF6_TIM21) || \ + ((__AF__) == GPIO_AF6_EVENTOUT) || ((__AF__) == GPIO_AF7_COMP1)) + + + +#define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_EVENTOUT) || \ + ((__AF__) == GPIO_AF7_COMP1))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_EVENTOUT) || \ + ((__AF__) == GPIO_AF5_I2C2) || \ + ((__AF__) == GPIO_AF6_TIM21))) || \ + (((__INSTANCE__) == GPIOC) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LCD) || \ + ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF3_TSC))) || \ + (((__INSTANCE__) == GPIOD) && (((__AF__) == GPIO_AF0_LPUART1) || \ + ((__AF__) == GPIO_AF1_LCD))) || \ + (((__INSTANCE__) == GPIOH) && (((__AF__) == GPIO_AF0_USB)))) + +/** + * @} + */ + +#endif /* STM32L053xx || STM32L063xx */ +/*------------------------------------------------------------------------------------------*/ + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L052xx/STM32L062xx---------------------------*/ +/*----------------------------------------------------------------------------*/ +#if defined (STM32L052xx) || defined (STM32L062xx) + +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + * + */ +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________ + * PA0 | | |TIM2_C1 |TSC |USART2 |TIM2_TR | |COMP1 | + * PA1 |EVENTOUT| |TIM2_C2 |TSC |USART2 |TIM21_TR| | | + * PA2 |TIM21_C1| |TIM2_C3 |TSC |USART2 | | |COMP2 | + * PA3 |TIM21_C2| |TIM2_C4 |TSC |USART2 | | | | + * PA4 |SPI1 | | |TSC |USART2 |TIM22_TR| | | + * PA5 |SPI1 | |TIM2_TR |TSC | |TIM2_C1 | | | + * PA6 |SPI1 | | |TSC |LPUART |TIM22_C1|EVENTOUT|COMP1 | + * PA7 |SPI1 | | |TSC | |TIM22_C2|EVENTOUT|COMP2 | + * PA8 |MCO | |USB |EVENTOUT|USART1 | | | | + * PA9 |MCO | | |TSC |USART1 | | | | + * PA10| | | |TSC |USART1 | | | | + * PA11|SPI1 | |EVENTOUT|TSC |USART1 | | |COMP1 | + * PA12|SPI1 | |EVENTOUT|TSC |USART1 | | |COMP2 | + * PA13|SWDIO | |USB | | | | | | + * PA14|SWCLK | | | |USART2 | | | | + * PA15|SPI1 | |TIM2_TR |EVENTOUT|USART2 |TIM2_C1 | | | + *______________________________________________________________________________ + * PB0 |EVENTOUT| | |TSC | | | | | + * PB1 | | | |TSC |LPUART1 | | | | + * PB2 | | |LPTIM1_O|TSC | | | | | + * PB3 |SPI1 | |TIM2_C2 |TSC |EVENTOUT| | | | + * PB4 |SPI1 | |EVENTOUT|TSC |TIM22_C1| | | | + * PB5 |SPI1 | |LPTIM1_I|I2C1 |TIM22_C2| | | | + * PB6 |USART1 |I2C1 |LPTIM1_T|TSC | | | | | + * PB7 |USART1 |I2C1 |LPTIM1_I|TSC | | | | | + * PB8 | | | |TSC |I2C1 | | | | + * PB9 | | |EVENTOUT| |I2C1 |SPI2 | | | + * PB10| | |TIM2_C3 |TSC |LPUART1 |SPI2 |I2C2 | | + * PB11|EVENTOUT| |TIM2_C4 |TSC |LPUART1 | |I2C2 | | + * PB12|SPI2 | |LPUART1 |TSC | |I2C2 |EVENTOUT| | + * PB13|SPI2 | | |TSC |LPUART1 |I2C2 |TIM21_C1| | + * PB14|SPI2 | |RTC |TSC |LPUART1 |I2C2 |TIM21_C2| | + * PB15|SPI2 | |RTC | | | | | | + *______________________________________________________________________________ + * PC0 |LPTIM1_I| |EVENTOUT|TSC | | | | | + * PC1 |LPTIM1_O| |EVENTOUT|TSC | | | | | + * PC2 |LPTIM1_I| |SPI2 |TSC | | | | | + * PC3 |LPTIM1_T| |SPI2 |TSC | | | | | + * PC4 |EVENTOUT| |LPUART | | | | | | + * PC5 | | |LPUART |TSC | | | | | + * PC6 |TIM22_C1| | |TSC | | | | | + * PC7 |TIM22_C2| | |TSC | | | | | + * PC8 |TIM22_TR| | |TSC | | | | | + * PC9 |TIM21_TR| |USB |TSC | | | | | + * PC10|LPUART | | | | | | | | + * PC11|LPUART | | | | | | | | + * PC12| | | | | | | | | + * PC13| | | | | | | | | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *______________________________________________________________________________ + * PD2 |LPUART | | | | | | | | + *______________________________________________________________________________ + * PH0 |USB | | | | | | | | + * PH1 | | | | | | | | | + * * + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_SPI2 ((uint8_t)0x00U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF0_USART1 ((uint8_t)0x00U) /* USART1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_LPUART1 ((uint8_t)0x00U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF0_USB ((uint8_t)0x00U) /* USB Alternate Function mapping */ +#define GPIO_AF0_LPTIM1 ((uint8_t)0x00U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF0_TSC ((uint8_t)0x00U) /* TSC Alternate Function mapping */ +#define GPIO_AF0_TIM2 ((uint8_t)0x00U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_TIM22 ((uint8_t)0x00U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF1 + */ +#define GPIO_AF1_SPI1 ((uint8_t)0x01U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF1_SPI2 ((uint8_t)0x01U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +/** + * + */ + +/** + * Alternate function AF2 + */ +#define GPIO_AF2_SPI2 ((uint8_t)0x02U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF2_LPUART1 ((uint8_t)0x02U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF2_USB ((uint8_t)0x02U) /* USB Alternate Function mapping */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF3_TSC ((uint8_t)0x03U) /* TSC Alternate Function mapping */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF4_USART1 ((uint8_t)0x04U) /* USART1 Alternate Function mapping */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_TIM22 ((uint8_t)0x04U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF5 + */ +#define GPIO_AF5_SPI2 ((uint8_t)0x05U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF5_I2C2 ((uint8_t)0x05U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_TIM22 ((uint8_t)0x05U) /* TIM22 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + */ +#define GPIO_AF6_I2C2 ((uint8_t)0x06U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF6_TIM21 ((uint8_t)0x06U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF7 + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +/** + * + */ + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ +/** + * @brief IS_GPIO_AF macro definition + */ + +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_SPI1) || ((__AF__) == GPIO_AF2_SPI2) || \ + ((__AF__) == GPIO_AF0_SPI2) || ((__AF__) == GPIO_AF2_LPUART1) || \ + ((__AF__) == GPIO_AF0_USART1) || ((__AF__) == GPIO_AF2_USB) || \ + ((__AF__) == GPIO_AF0_USART2) || ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF0_LPUART1) || ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF0_USB) || ((__AF__) == GPIO_AF4_TIM22) || \ + ((__AF__) == GPIO_AF0_LPTIM1) || ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_TSC) || ((__AF__) == GPIO_AF2_RTC) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF0_TIM21) || ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF0_TIM22) || ((__AF__) == GPIO_AF3_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_EVENTOUT) || ((__AF__) == GPIO_AF4_I2C1) || \ + ((__AF__) == GPIO_AF0_MCO) || ((__AF__) == GPIO_AF4_USART1) || \ + ((__AF__) == GPIO_AF0_SWDIO) || ((__AF__) == GPIO_AF0_SWCLK) || \ + ((__AF__) == GPIO_AF1_SPI1) || ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF1_SPI2) || ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF1_I2C1) || ((__AF__) == GPIO_AF4_EVENTOUT) || \ + ((__AF__) == GPIO_AF6_EVENTOUT) || ((__AF__) == GPIO_AF5_SPI2) || \ + ((__AF__) == GPIO_AF5_I2C2) || ((__AF__) == GPIO_AF5_TIM2) || \ + ((__AF__) == GPIO_AF5_TIM21) || ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_I2C2) || ((__AF__) == GPIO_AF6_TIM21) || \ + ((__AF__) == GPIO_AF7_COMP2) || ((__AF__) == GPIO_AF7_COMP1)) + + +#define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_EVENTOUT) || \ + ((__AF__) == GPIO_AF7_COMP1))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_I2C1) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_TSC) || \ + ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF5_I2C2) || \ + ((__AF__) == GPIO_AF6_EVENTOUT))) || \ + (((__INSTANCE__) == GPIOC) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF3_TSC))) || \ + (((__INSTANCE__) == GPIOD) && (((__AF__) == GPIO_AF0_LPUART1))) || \ + (((__INSTANCE__) == GPIOH) && (((__AF__) == GPIO_AF0_USB)))) + + /** + * @} + */ +#endif /* STM32L052xx || STM32L062xx */ +/*------------------------------------------------------------------------------------------*/ + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L051xx/STM32L061xx---------------------------*/ +/*----------------------------------------------------------------------------*/ +#if defined (STM32L051xx)|| defined (STM32L061xx) +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + * + */ +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________ + * PA0 | | |TIM2_C1 | |USART2 |TIM2_TR | |COMP1 | + * PA1 |EVENTOUT| |TIM2_C2 | |USART2 |TIM21_TR| | | + * PA2 |TIM21_C1| |TIM2_C3 | |USART2 | | |COMP2 | + * PA3 |TIM21_C2| |TIM2_C4 | |USART2 | | | | + * PA4 |SPI1 | | | |USART2 |TIM22_TR| | | + * PA5 |SPI1 | |TIM2_TR | | |TIM2_C1 | | | + * PA6 |SPI1 | | | |LPUART |TIM22_C1|EVENTOUT|COMP1 | + * PA7 |SPI1 | | | | |TIM22_C2|EVENTOUT|COMP2 | + * PA8 |MCO | | |EVENTOUT|USART1 | | | | + * PA9 |MCO | | | |USART1 | | | | + * PA10| | | | |USART1 | | | | + * PA11|SPI1 | |EVENTOUT| |USART1 | | |COMP1 | + * PA12|SPI1 | |EVENTOUT| |USART1 | | |COMP2 | + * PA13|SWDIO | | | | | | | | + * PA14|SWCLK | | | |USART2 | | | | + * PA15|SPI1 | |TIM2_TR |EVENTOUT|USART2 |TIM2_C1 | | | + *______________________________________________________________________________ + * PB0 |EVENTOUT| | | | | | | | + * PB1 | | | | |LPUART1 | | | | + * PB2 | | |LPTIM1_O| | | | | | + * PB3 |SPI1 | |TIM2_C2 | |EVENTOUT| | | | + * PB4 |SPI1 | |EVENTOUT| |TIM22_C1| | | | + * PB5 |SPI1 | |LPTIM1_I|I2C1 |TIM22_C2| | | | + * PB6 |USART1 |I2C1 |LPTIM1_T| | | | | | + * PB7 |USART1 |I2C1 |LPTIM1_I| | | | | | + * PB8 | | | | |I2C1 | | | | + * PB9 | | |EVENTOUT| |I2C1 |SPI2 | | | + * PB10| | |TIM2_C3 | |LPUART1 |SPI2 |I2C2 | | + * PB11|EVENTOUT| |TIM2_C4 | |LPUART1 | |I2C2 | | + * PB12|SPI2 | |LPUART1 | | |I2C2 |EVENTOUT| | + * PB13|SPI2 | | | |LPUART1 |I2C2 |TIM21_C1| | + * PB14|SPI2 | |RTC | |LPUART1 |I2C2 |TIM21_C2| | + * PB15|SPI2 | |RTC | | | | | | + *______________________________________________________________________________ + * PC0 |LPTIM1_I| |EVENTOUT| | | | | | + * PC1 |LPTIM1_O| |EVENTOUT| | | | | | + * PC2 |LPTIM1_I| |SPI2 | | | | | | + * PC3 |LPTIM1_T| |SPI2 | | | | | | + * PC4 |EVENTOUT| |LPUART | | | | | | + * PC5 | | |LPUART | | | | | | + * PC6 |TIM22_C1| | | | | | | | + * PC7 |TIM22_C2| | | | | | | | + * PC8 |TIM22_TR| | | | | | | | + * PC9 |TIM21_TR| | | | | | | | + * PC10|LPUART | | | | | | | | + * PC11|LPUART | | | | | | | | + * PC12| | | | | | | | | + * PC13| | | | | | | | | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *______________________________________________________________________________ + * PD2 |LPUART | | | | | | | | + *______________________________________________________________________________ + * PH0 | | | | | | | | | + * PH1 | | | | | | | | | + * * + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_SPI2 ((uint8_t)0x00U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF0_USART1 ((uint8_t)0x00U) /* USART1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_LPUART1 ((uint8_t)0x00U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF0_LPTIM1 ((uint8_t)0x00U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF0_TIM2 ((uint8_t)0x00U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_TIM22 ((uint8_t)0x00U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF1 + */ +#define GPIO_AF1_SPI1 ((uint8_t)0x01U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF1_SPI2 ((uint8_t)0x01U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +/** + * + */ + + /* + * Alternate function AF2 + */ +#define GPIO_AF2_SPI2 ((uint8_t)0x02U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF2_LPUART1 ((uint8_t)0x02U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF2_USB ((uint8_t)0x02U) /* USB Alternate Function mapping */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF4_USART1 ((uint8_t)0x04U) /* USART1 Alternate Function mapping */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_TIM22 ((uint8_t)0x04U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF5 + */ +#define GPIO_AF5_SPI2 ((uint8_t)0x05U) /* SPI2 Alternate Function mapping */ +#define GPIO_AF5_I2C2 ((uint8_t)0x05U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_TIM22 ((uint8_t)0x05U) /* TIM22 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + */ +#define GPIO_AF6_I2C2 ((uint8_t)0x06U) /* I2C2 Alternate Function mapping */ +#define GPIO_AF6_TIM21 ((uint8_t)0x06U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF7 + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +/** + * + */ + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ + +/** + * @brief IS_GPIO_AF macro definition + */ +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_SPI1) || ((__AF__) == GPIO_AF2_SPI2) || \ + ((__AF__) == GPIO_AF0_SPI2) || ((__AF__) == GPIO_AF2_LPUART1) || \ + ((__AF__) == GPIO_AF0_USART1) || ((__AF__) == GPIO_AF7_COMP1) || \ + ((__AF__) == GPIO_AF0_USART2) || ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF0_LPUART1) || ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF0_LPTIM1) || ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_RTC) || ((__AF__) == GPIO_AF4_TIM22) || \ + ((__AF__) == GPIO_AF0_TIM2) || ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF0_TIM21) || ((__AF__) == GPIO_AF7_COMP2) || \ + ((__AF__) == GPIO_AF0_TIM22) || ((__AF__) == GPIO_AF3_EVENTOUT) || \ + ((__AF__) == GPIO_AF0_EVENTOUT) || ((__AF__) == GPIO_AF4_I2C1) || \ + ((__AF__) == GPIO_AF0_MCO) || ((__AF__) == GPIO_AF4_USART1) || \ + ((__AF__) == GPIO_AF0_SWDIO) || ((__AF__) == GPIO_AF0_SWCLK) || \ + ((__AF__) == GPIO_AF1_SPI1) || ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF1_SPI2) || ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF1_I2C1) || ((__AF__) == GPIO_AF4_EVENTOUT) || \ + ((__AF__) == GPIO_AF6_EVENTOUT) || ((__AF__) == GPIO_AF5_SPI2) || \ + ((__AF__) == GPIO_AF5_I2C2) || ((__AF__) == GPIO_AF5_TIM2) || \ + ((__AF__) == GPIO_AF5_TIM21) || ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_I2C2) || ((__AF__) == GPIO_AF6_TIM21)) + + + + #define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_EVENTOUT) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_EVENTOUT) || \ + ((__AF__) == GPIO_AF7_COMP2))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_I2C1) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF5_I2C2) || \ + ((__AF__) == GPIO_AF6_TIM21))) || \ + (((__INSTANCE__) == GPIOC) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF2_LPUART1))) || \ + (((__INSTANCE__) == GPIOD) && (((__AF__) == GPIO_AF0_LPUART1)))) + + /** + * @} + */ +#endif /* STM32L051xx/STM32L061xx*/ +/*------------------------------------------------------------------------------------------*/ + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L031xx/STM32L041xx---------------------------*/ +/*----------------------------------------------------------------------------*/ +#if defined (STM32L031xx)|| defined (STM32L041xx) +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + * + */ +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________ + * PA0 | |LPTIM1 |TIM2_C1 | |USART2 |TIM2_TR | |COMP1 | + * PA1 |EVENTOUT|LPTIM1 |TIM2_C2 |I2C1 |USART2 |TIM21_TR| | | + * PA2 |TIM21_C1| |TIM2_C3 | |USART2 | |LPUART1 |COMP2 | + * PA3 |TIM21_C2| |TIM2_C4 | |USART2 | |LPUART1 | | + * PA4 |SPI1 |LPTIM1 | | |USART2 |TIM22_TR| | | + * PA5 |SPI1 |LPTIM1 |TIM2_TR | | |TIM2_C1 | | | + * PA6 |SPI1 |LPTIM1 | | |LPUART |TIM22_C1|EVENTOUT|COMP1 | + * PA7 |SPI1 |LPTIM1 | | |USART2 |TIM22_C2|EVENTOUT|COMP2 | + * PA8 |MCO | |LPTIM1 |EVENTOUT|USART2 |TIM2_C1 | | | + * PA9 |MCO |I2C1 | | |USART2 |TIM22_C1| | | + * PA10| |I2C1 | | |USART2 |TIM22_C2| | | + * PA11|SPI1 | |EVENTOUT| |USART2 |TIM21_C2| |COMP1 | + * PA12|SPI1 | |EVENTOUT| |USART2 | | |COMP2 | + * PA13|SWDIO |LPTIM1 | | | | |LPUART1 | | + * PA14|SWCLK |LPTIM1 | |I2C1 |USART2 | |LPUART1 | | + * PA15|SPI1 | |TIM2_TR |EVENTOUT|USART2 |TIM2_C1 | | | + *_____________________________________________________________________________| + * PB0 |EVENTOUT|SPI1 | | |USART2 |TIM2_C3 | | | + * PB1 |USART2 |SPI1 | | |LPUART1 |TIM2_C4 | | | + * PB2 | | |LPTIM1_O| | | | | | + * PB3 |SPI1 | |TIM2_C2 | |EVENTOUT| | | | + * PB4 |SPI1 | |EVENTOUT| |TIM22_C1| | | | + * PB5 |SPI1 | |LPTIM1_I|I2C1 |TIM22_C2| | | | + * PB6 |USART2 |I2C1 |LPTIM1_T| | |TIM21_C1| | | + * PB7 |USART2 |I2C1 |LPTIM1_I| | | | | | + * PB8 | | | | |I2C1 | | | | + * PB9 | | |EVENTOUT| |I2C1 | | | | + * PB10| | |TIM2_C3 | | | |LPUART1 | | + * PB11|EVENTOUT| |TIM2_C4 | | | |LPUART1 | | + * PB12|SPI2 | | | | | |EVENTOUT| | + * PB13|SPI2 | |MCO | | |TIM21_C1|LPUART1 | | + * PB14|SPI2 | |RTC | | |TIM21_C2|LPUART1 | | + * PB15|SPI2 | |RTC | | | | | | + *_____________________________________________________________________________| + * PC0 |LPTIM1_I| |EVENTOUT| | | |LPUART1 | | + * PC13| | | | | | | | | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *_____________________________________________________________________________| + * PH0 | | | | | | | | | + * PH1 | | | | | | | | | + *_____________________________________________________________________________| + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_LPTIM1 ((uint8_t)0x00U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF1 + */ +#define GPIO_AF1_SPI1 ((uint8_t)0x01U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF1_LPTIM1 ((uint8_t)0x01U) /* LPTIM1 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF2 + */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_MCO ((uint8_t)0x02U) /* MCO Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_TIM22 ((uint8_t)0x04U) /* TIM22 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF5 + */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_TIM22 ((uint8_t)0x05U) /* TIM22 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + */ +#define GPIO_AF6_LPUART1 ((uint8_t)0x06U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF7 + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +/** + * + */ + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ +/** + * @brief IS_GPIO_AF macro definition + */ + +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_EVENTOUT ) || \ + ((__AF__) == GPIO_AF0_TIM21 ) || \ + ((__AF__) == GPIO_AF0_SPI1 ) || \ + ((__AF__) == GPIO_AF0_USART2 ) || \ + ((__AF__) == GPIO_AF0_LPTIM1 ) || \ + ((__AF__) == GPIO_AF0_MCO ) || \ + ((__AF__) == GPIO_AF0_SWDIO ) || \ + ((__AF__) == GPIO_AF0_SWCLK ) || \ + ((__AF__) == GPIO_AF1_SPI1 ) || \ + ((__AF__) == GPIO_AF1_I2C1 ) || \ + ((__AF__) == GPIO_AF1_LPTIM1 ) || \ + ((__AF__) == GPIO_AF2_LPTIM1 ) || \ + ((__AF__) == GPIO_AF2_TIM2 ) || \ + ((__AF__) == GPIO_AF2_MCO ) || \ + ((__AF__) == GPIO_AF2_EVENTOUT ) || \ + ((__AF__) == GPIO_AF2_RTC ) || \ + ((__AF__) == GPIO_AF3_I2C1 ) || \ + ((__AF__) == GPIO_AF3_EVENTOUT ) || \ + ((__AF__) == GPIO_AF4_I2C1 ) || \ + ((__AF__) == GPIO_AF4_USART2 ) || \ + ((__AF__) == GPIO_AF4_LPUART1 ) || \ + ((__AF__) == GPIO_AF4_TIM22 ) || \ + ((__AF__) == GPIO_AF4_EVENTOUT ) || \ + ((__AF__) == GPIO_AF5_TIM2 ) || \ + ((__AF__) == GPIO_AF5_TIM21 ) || \ + ((__AF__) == GPIO_AF5_TIM22 ) || \ + ((__AF__) == GPIO_AF6_LPUART1 ) || \ + ((__AF__) == GPIO_AF6_EVENTOUT ) || \ + ((__AF__) == GPIO_AF7_COMP1 ) || \ + ((__AF__) == GPIO_AF7_COMP2 )) + + + #define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LPTIM1) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM22) || \ + ((__AF__) == GPIO_AF6_LPUART1) || \ + ((__AF__) == GPIO_AF7_COMP2))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_SPI1) || \ + ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF5_TIM2) || \ + ((__AF__) == GPIO_AF6_EVENTOUT))) || \ + (((__INSTANCE__) == GPIOC) && (((__AF__) == GPIO_AF0_LPTIM1) || \ + ((__AF__) == GPIO_AF2_EVENTOUT) || \ + ((__AF__) == GPIO_AF6_LPUART1)))) + +/** + * @} + */ + +#endif /* STM32L031xx/STM32L041xx*/ +/*------------------------------------------------------------------------------------------*/ + +/*----------------------------------------------------------------------------*/ +/*------------------------- STM32L011xx/STM32L021xx---------------------------*/ +/*----------------------------------------------------------------------------*/ +#if defined (STM32L011xx)|| defined (STM32L021xx) +/* The table below gives an overview of the different alternate functions per port. + * For more details refer yourself to the product data sheet. + * + */ +/* | AF0 | AF1 | AF2 | AF3 | AF4 | AF5 | AF6 | AF7 | + *______________________________________________________________________________________ + * PA0 |USART2_RX|LPTIM1_IN1|TIM2_C1 | |USART2_CTS|TIM2_ETR|LPUART1_RX |COMP1_OUT| + * PA1 |EVENTOUT |LPTIM1_IN2|TIM2_C2 |I2C1 |USART2_RTS|TIM21_TR|LPUART1_TX | | + * PA2 |TIM21_C1 | |TIM2_C3 | |USART2_TX | |LPUART1_TX |COMP2_OUT| + * PA3 |TIM21_C2 | |TIM2_C4 | |USART2_RX | |LPUART1_RX | | + * PA4 |SPI1 |LPTIM1_IN1|LPTIM1_TR|I2C1_SCL|USART2_CK |TIM2_TR |LPUART1_TX |COMP2_OUT| + * PA5 |SPI1 |LPTIM1_IN2|TIM2_TR | | |TIM2_C1 | | | + * PA6 |SPI1 |LPTIM1_ETR| | |LPUART1_CT| |EVENTOUT |COMP1_OUT| + * PA7 |SPI1 |LPTIM1_OUT| | |USART2_CTS|TIM21_T |EVENTOUT |COMP2_OUT| + * PA8 |MCO | |LPTIM1_I1|EVENTOUT|USART2_CK |TIM2_C1 | | | + * PA9 |MCO |I2C1_SCL |LPTIM1_O | |USART2_TX |TIM21_C2| |COMP1_OUT| + * PA10|TIM21_C1 |I2C1_SDA |RTC_REFIN| |USART2_RX |TIM2_C3 | |COMP1_OUT| + * PA11|SPI1 |LPTIM1_OUT|EVENTOUT | |USART2_CTS|TIM21_C2| |COMP1_OUT| + * PA12|SPI1 | |EVENTOUT | |USART2_RTS| | |COMP2_OUT| + * PA13|SWDIO |LPTIM1_T | |I2C1_SDA| |SPI1 |LPUART1_RX |COMP1_OUT| + * PA14|SWCLK |LPTIM1_O | |I2C1_SMB|USART2_TX |SPI1 |LPUART1_TX |COMP2_OUT| + * PA15|SPI1 | |TIM2_TR |EVENTOUT|USART2_RX |TIM2_C1 | | | + *______________________________________________________________________________________ | + * PB0 |EVENTOUT |SPI1 |TIM2_C2 | |USART2_RTS|TIM2_C3 | | | + * PB1 |USART2_CK|SPI1 |LPTIM1_I1| |LPUART1_RT|TIM2_C4 | | | + * PB2 | | |LPTIM1_O | | | | | | + * PB3 |SPI1 | |TIM2_C2 | |EVENTOUT | | | | + * PB4 |SPI1 | |EVENTOUT | | | | | | + * PB5 |SPI1 | |LPTIM1_I1|I2C1 | |TIM21_C1| | | + * PB6 |USART2_TX|I2C1_SCL |LPTIM1_T | | |TIM2_C3 |LPUART1_TX | | + * PB7 |USART2_RX|I2C1 |LPTIM1_I2| | |TIM2_C4 |LPUART1_RX | | + * PB8 |USART2_TX| |EVENTOUT | |I2C1 |SPI1 | | | + * PB9 | | | | | | | | | + *______________________________________________________________________________________ | + * PC14| | | | | | | | | + * PC15| | | | | | | | | + *______________________________________________________________________________________ | + */ + +/** @defgroup GPIOEx_Alternate_function_selection Alternate function selection + * @{ + */ + +/* + * Alternate function AF0 + */ +#define GPIO_AF0_EVENTOUT ((uint8_t)0x00U) /* EVENTOUT Alternate Function mapping */ +#define GPIO_AF0_TIM21 ((uint8_t)0x00U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF0_SPI1 ((uint8_t)0x00U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF0_USART2 ((uint8_t)0x00U) /* USART2 Alternate Function mapping */ +#define GPIO_AF0_MCO ((uint8_t)0x00U) /* MCO Alternate Function mapping */ +#define GPIO_AF0_SWDIO ((uint8_t)0x00U) /* SWDIO Alternate Function mapping */ +#define GPIO_AF0_SWCLK ((uint8_t)0x00U) /* SWCLK Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF1 + */ +#define GPIO_AF1_SPI1 ((uint8_t)0x01U) /* SPI1 Alternate Function mapping */ +#define GPIO_AF1_I2C1 ((uint8_t)0x01U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF1_LPTIM1 ((uint8_t)0x01U) /* LPTIM1 Alternate Function mapping */ +/** + * + */ + +/* Alternate function AF2 + * + */ +#define GPIO_AF2_LPTIM1 ((uint8_t)0x02U) /* LPTIM1 Alternate Function mapping */ +#define GPIO_AF2_TIM2 ((uint8_t)0x02U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF2_RTC ((uint8_t)0x02U) /* RTC Alternate Function mapping */ +#define GPIO_AF2_EVENTOUT ((uint8_t)0x02U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF3 + */ +#define GPIO_AF3_I2C1 ((uint8_t)0x03U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF3_EVENTOUT ((uint8_t)0x03U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF4 + */ +#define GPIO_AF4_I2C1 ((uint8_t)0x04U) /* I2C1 Alternate Function mapping */ +#define GPIO_AF4_USART2 ((uint8_t)0x04U) /* USART2 Alternate Function mapping */ +#define GPIO_AF4_LPUART1 ((uint8_t)0x04U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF4_EVENTOUT ((uint8_t)0x04U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF5 + */ +#define GPIO_AF5_TIM2 ((uint8_t)0x05U) /* TIM2 Alternate Function mapping */ +#define GPIO_AF5_TIM21 ((uint8_t)0x05U) /* TIM21 Alternate Function mapping */ +#define GPIO_AF5_SPI1 ((uint8_t)0x05U) /* SPI1 Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF6 + */ +#define GPIO_AF6_LPUART1 ((uint8_t)0x06U) /* LPUART1 Alternate Function mapping */ +#define GPIO_AF6_EVENTOUT ((uint8_t)0x06U) /* EVENTOUT Alternate Function mapping */ +/** + * + */ + +/* + * Alternate function AF7 + */ +#define GPIO_AF7_COMP1 ((uint8_t)0x07U) /* COMP1 Alternate Function mapping */ +#define GPIO_AF7_COMP2 ((uint8_t)0x07U) /* COMP2 Alternate Function mapping */ +/** + * + */ + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup GPIOEx_Private GPIOEx Private + * @{ + */ +/** + * IS_GPIO_AF macro definition + */ + +#define IS_GPIO_AF(__AF__) (((__AF__) == GPIO_AF0_EVENTOUT ) || \ + ((__AF__) == GPIO_AF0_TIM21 ) || \ + ((__AF__) == GPIO_AF0_SPI1 ) || \ + ((__AF__) == GPIO_AF0_USART2 ) || \ + ((__AF__) == GPIO_AF0_MCO ) || \ + ((__AF__) == GPIO_AF0_SWDIO ) || \ + ((__AF__) == GPIO_AF0_SWCLK ) || \ + ((__AF__) == GPIO_AF1_SPI1 ) || \ + ((__AF__) == GPIO_AF1_I2C1 ) || \ + ((__AF__) == GPIO_AF1_LPTIM1 ) || \ + ((__AF__) == GPIO_AF2_LPTIM1 ) || \ + ((__AF__) == GPIO_AF2_TIM2 ) || \ + ((__AF__) == GPIO_AF2_EVENTOUT ) || \ + ((__AF__) == GPIO_AF2_RTC ) || \ + ((__AF__) == GPIO_AF3_I2C1 ) || \ + ((__AF__) == GPIO_AF3_EVENTOUT ) || \ + ((__AF__) == GPIO_AF4_I2C1 ) || \ + ((__AF__) == GPIO_AF4_USART2 ) || \ + ((__AF__) == GPIO_AF4_LPUART1 ) || \ + ((__AF__) == GPIO_AF4_EVENTOUT ) || \ + ((__AF__) == GPIO_AF5_TIM2 ) || \ + ((__AF__) == GPIO_AF5_TIM21 ) || \ + ((__AF__) == GPIO_AF5_SPI1 ) || \ + ((__AF__) == GPIO_AF6_LPUART1 ) || \ + ((__AF__) == GPIO_AF6_EVENTOUT ) || \ + ((__AF__) == GPIO_AF7_COMP1 ) || \ + ((__AF__) == GPIO_AF7_COMP2 )) + + + #define IS_GPIO_AF_AVAILABLE(__INSTANCE__,__AF__) \ + ((((__INSTANCE__) == GPIOA) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_LPTIM1) || \ + ((__AF__) == GPIO_AF2_TIM2) || \ + ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF4_USART2) || \ + ((__AF__) == GPIO_AF5_TIM2) || \ + ((__AF__) == GPIO_AF6_LPUART1) || \ + ((__AF__) == GPIO_AF7_COMP2))) || \ + (((__INSTANCE__) == GPIOB) && (((__AF__) == GPIO_AF0_EVENTOUT) || \ + ((__AF__) == GPIO_AF1_SPI1) || \ + ((__AF__) == GPIO_AF2_LPTIM1) || \ + ((__AF__) == GPIO_AF3_I2C1) || \ + ((__AF__) == GPIO_AF4_LPUART1) || \ + ((__AF__) == GPIO_AF5_TIM2) || \ + ((__AF__) == GPIO_AF6_EVENTOUT)))) + + /** + * @} + */ + +#endif /* STM32L011xx/STM32L021xx*/ +/*------------------------------------------------------------------------------------------*/ + + + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) + + /** @addtogroup GPIOEx_Exported_Constants + * @{ + */ + /** @defgroup GPIOEx_Pin_Available Pin available + * @{ + */ +#define GPIOA_PIN_AVAILABLE GPIO_PIN_All +#define GPIOB_PIN_AVAILABLE GPIO_PIN_All +#define GPIOC_PIN_AVAILABLE GPIO_PIN_All +#define GPIOD_PIN_AVAILABLE GPIO_PIN_All +#define GPIOE_PIN_AVAILABLE GPIO_PIN_All +#define GPIOH_PIN_AVAILABLE (GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_9 | GPIO_PIN_10) +/** + * @} + */ +/** + * @} + */ + + /** @addtogroup GPIOEx_Private + * @{ + */ +#define GPIO_GET_INDEX(__GPIOx__) (((__GPIOx__) == (GPIOA))? 0U :\ + ((__GPIOx__) == (GPIOB))? 1U :\ + ((__GPIOx__) == (GPIOC))? 2U :\ + ((__GPIOx__) == (GPIOD))? 3U :\ + ((__GPIOx__) == (GPIOE))? 4U :\ + ((__GPIOx__) == (GPIOH))? 5U : 6U) + +#define IS_GPIO_PIN_AVAILABLE(__INSTANCE__,__PIN__) \ + ((((__INSTANCE__) == GPIOA) && (((__PIN__) & (GPIOA_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOA_PIN_AVAILABLE)) == (GPIOA_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOB) && (((__PIN__) & (GPIOB_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOB_PIN_AVAILABLE)) == (GPIOB_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOC) && (((__PIN__) & (GPIOC_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOC_PIN_AVAILABLE)) == (GPIOC_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOD) && (((__PIN__) & (GPIOD_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOD_PIN_AVAILABLE)) == (GPIOD_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOE) && (((__PIN__) & (GPIOE_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOE_PIN_AVAILABLE)) == (GPIOE_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOH) && (((__PIN__) & (GPIOH_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOH_PIN_AVAILABLE)) == (GPIOH_PIN_AVAILABLE)))) +/** + * @} + */ +#elif defined (STM32L031xx) || defined (STM32L041xx) + +/** @addtogroup GPIOEx_Exported_Constants + * @{ + */ +/** @defgroup GPIOEx_Pin_Available Pin available + * @{ + */ + +#define GPIOA_PIN_AVAILABLE GPIO_PIN_All +#define GPIOB_PIN_AVAILABLE GPIO_PIN_All +#define GPIOC_PIN_AVAILABLE (GPIO_PIN_0 | GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15) +#define GPIOH_PIN_AVAILABLE (GPIO_PIN_0 | GPIO_PIN_1) +/** + * @} + */ +/** + * @} + */ + +/** @addtogroup GPIOEx_Private + * @{ + */ +#define GPIO_GET_INDEX(__GPIOx__) (((__GPIOx__) == (GPIOA))? 0U :\ + ((__GPIOx__) == (GPIOB))? 1U :\ + ((__GPIOx__) == (GPIOC))? 2U :\ + ((__GPIOx__) == (GPIOH))? 5U : 6U) + + +#define IS_GPIO_PIN_AVAILABLE(__INSTANCE__,__PIN__) \ + ((((__INSTANCE__) == GPIOA) && (((__PIN__) & (GPIOA_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOA_PIN_AVAILABLE)) == (GPIOA_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOB) && (((__PIN__) & (GPIOB_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOB_PIN_AVAILABLE)) == (GPIOB_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOC) && (((__PIN__) & (GPIOC_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOC_PIN_AVAILABLE)) == (GPIOC_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOH) && (((__PIN__) & (GPIOH_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOH_PIN_AVAILABLE)) == (GPIOH_PIN_AVAILABLE)))) + +/** + * @} + */ + +#elif defined (STM32L011xx) || defined (STM32L021xx) + +/** @addtogroup GPIOEx_Exported_Constants + * @{ + */ +/** @defgroup GPIOEx_Pin_Available Pin available + * @{ + */ + +#define GPIOA_PIN_AVAILABLE GPIO_PIN_All +#define GPIOB_PIN_AVAILABLE (GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3 | GPIO_PIN_4 | \ + GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7 | GPIO_PIN_8 | GPIO_PIN_9 ) +#define GPIOC_PIN_AVAILABLE (GPIO_PIN_14 | GPIO_PIN_15) + +/** + * @} + */ +/** + * @} + */ + +/** @addtogroup GPIOEx_Private + * @{ + */ +#define GPIO_GET_INDEX(__GPIOx__) (((__GPIOx__) == (GPIOA))? 0U :\ + ((__GPIOx__) == (GPIOB))? 1U :\ + ((__GPIOx__) == (GPIOC))? 2U : 6U) + + +#define IS_GPIO_PIN_AVAILABLE(__INSTANCE__,__PIN__) \ + ((((__INSTANCE__) == GPIOA) && (((__PIN__) & (GPIOA_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOA_PIN_AVAILABLE)) == (GPIOA_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOB) && (((__PIN__) & (GPIOB_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOB_PIN_AVAILABLE)) == (GPIOB_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOC) && (((__PIN__) & (GPIOC_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOC_PIN_AVAILABLE)) == (GPIOC_PIN_AVAILABLE)))) +/** + * @} + */ + +#elif defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) + +/** @addtogroup GPIOEx_Exported_Constants + * @{ + */ +/** @defgroup GPIOEx_Pin_Available Pin available + * @{ + */ +#define GPIOA_PIN_AVAILABLE GPIO_PIN_All +#define GPIOB_PIN_AVAILABLE GPIO_PIN_All +#define GPIOC_PIN_AVAILABLE GPIO_PIN_All +#define GPIOD_PIN_AVAILABLE GPIO_PIN_2 +#define GPIOH_PIN_AVAILABLE GPIO_PIN_0 | GPIO_PIN_1 +/** + * @} + */ +/** + * @} + */ + +/** @addtogroup GPIOEx_Private + * @{ + */ +#define GPIO_GET_INDEX(__GPIOx__) (((__GPIOx__) == (GPIOA))? 0U :\ + ((__GPIOx__) == (GPIOB))? 1U :\ + ((__GPIOx__) == (GPIOC))? 2U :\ + ((__GPIOx__) == (GPIOD))? 3U :\ + ((__GPIOx__) == (GPIOH))? 5U : 6U) + +#define IS_GPIO_PIN_AVAILABLE(__INSTANCE__,__PIN__) \ + ((((__INSTANCE__) == GPIOA) && (((__PIN__) & (GPIOA_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOA_PIN_AVAILABLE)) == (GPIOA_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOB) && (((__PIN__) & (GPIOB_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOB_PIN_AVAILABLE)) == (GPIOB_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOC) && (((__PIN__) & (GPIOC_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOC_PIN_AVAILABLE)) == (GPIOC_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOD) && (((__PIN__) & (GPIOD_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOD_PIN_AVAILABLE)) == (GPIOD_PIN_AVAILABLE))) || \ + (((__INSTANCE__) == GPIOH) && (((__PIN__) & (GPIOH_PIN_AVAILABLE)) != 0U) && (((__PIN__) | (GPIOH_PIN_AVAILABLE)) == (GPIOH_PIN_AVAILABLE)))) +/** + * @} + */ + +#endif /* STM32L083xx || STM32L082xx || STM32L081xx || STM32L073xx || STM32L072xx || STM32L071xx*/ + + +/** + * @} + */ + +/** + * @} + */ +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_GPIO_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h new file mode 100644 index 0000000..357f4ab --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h @@ -0,0 +1,710 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_i2c.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of I2C HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_I2C_H +#define __STM32L0xx_HAL_I2C_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup I2C + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/** @defgroup I2C_Exported_Types I2C Exported Types + * @{ + */ + +/** @defgroup I2C_Configuration_Structure_definition I2C Configuration Structure definition + * @brief I2C Configuration Structure definition + * @{ + */ +typedef struct +{ + uint32_t Timing; /*!< Specifies the I2C_TIMINGR_register value. + This parameter calculated by referring to I2C initialization + section in Reference manual */ + + uint32_t OwnAddress1; /*!< Specifies the first device own address. + This parameter can be a 7-bit or 10-bit address. */ + + uint32_t AddressingMode; /*!< Specifies if 7-bit or 10-bit addressing mode is selected. + This parameter can be a value of @ref I2C_ADDRESSING_MODE */ + + uint32_t DualAddressMode; /*!< Specifies if dual addressing mode is selected. + This parameter can be a value of @ref I2C_DUAL_ADDRESSING_MODE */ + + uint32_t OwnAddress2; /*!< Specifies the second device own address if dual addressing mode is selected + This parameter can be a 7-bit address. */ + + uint32_t OwnAddress2Masks; /*!< Specifies the acknowledge mask address second device own address if dual addressing mode is selected + This parameter can be a value of @ref I2C_OWN_ADDRESS2_MASKS */ + + uint32_t GeneralCallMode; /*!< Specifies if general call mode is selected. + This parameter can be a value of @ref I2C_GENERAL_CALL_ADDRESSING_MODE */ + + uint32_t NoStretchMode; /*!< Specifies if nostretch mode is selected. + This parameter can be a value of @ref I2C_NOSTRETCH_MODE */ + +}I2C_InitTypeDef; + +/** + * @} + */ + +/** @defgroup HAL_state_structure_definition HAL state structure definition + * @brief HAL State structure definition + * @note HAL I2C State value coding follow below described bitmap :\n + * b7-b6 Error information\n + * 00 : No Error\n + * 01 : Abort (Abort user request on going)\n + * 10 : Timeout\n + * 11 : Error\n + * b5 IP initilisation status\n + * 0 : Reset (IP not initialized)\n + * 1 : Init done (IP initialized and ready to use. HAL I2C Init function called)\n + * b4 (not used)\n + * x : Should be set to 0\n + * b3\n + * 0 : Ready or Busy (No Listen mode ongoing)\n + * 1 : Listen (IP in Address Listen Mode)\n + * b2 Intrinsic process state\n + * 0 : Ready\n + * 1 : Busy (IP busy with some configuration or internal operations)\n + * b1 Rx state\n + * 0 : Ready (no Rx operation ongoing)\n + * 1 : Busy (Rx operation ongoing)\n + * b0 Tx state\n + * 0 : Ready (no Tx operation ongoing)\n + * 1 : Busy (Tx operation ongoing) + * @{ + */ +typedef enum +{ + HAL_I2C_STATE_RESET = 0x00U, /*!< Peripheral is not yet Initialized */ + HAL_I2C_STATE_READY = 0x20U, /*!< Peripheral Initialized and ready for use */ + HAL_I2C_STATE_BUSY = 0x24U, /*!< An internal process is ongoing */ + HAL_I2C_STATE_BUSY_TX = 0x21U, /*!< Data Transmission process is ongoing */ + HAL_I2C_STATE_BUSY_RX = 0x22U, /*!< Data Reception process is ongoing */ + HAL_I2C_STATE_LISTEN = 0x28U, /*!< Address Listen Mode is ongoing */ + HAL_I2C_STATE_BUSY_TX_LISTEN = 0x29U, /*!< Address Listen Mode and Data Transmission + process is ongoing */ + HAL_I2C_STATE_BUSY_RX_LISTEN = 0x2AU, /*!< Address Listen Mode and Data Reception + process is ongoing */ + HAL_I2C_STATE_ABORT = 0x60U, /*!< Abort user request ongoing */ + HAL_I2C_STATE_TIMEOUT = 0xA0U, /*!< Timeout state */ + HAL_I2C_STATE_ERROR = 0xE0U /*!< Error */ + +}HAL_I2C_StateTypeDef; + +/** + * @} + */ + +/** @defgroup HAL_mode_structure_definition HAL mode structure definition + * @brief HAL Mode structure definition + * @note HAL I2C Mode value coding follow below described bitmap :\n + * b7 (not used)\n + * x : Should be set to 0\n + * b6\n + * 0 : None\n + * 1 : Memory (HAL I2C communication is in Memory Mode)\n + * b5\n + * 0 : None\n + * 1 : Slave (HAL I2C communication is in Slave Mode)\n + * b4\n + * 0 : None\n + * 1 : Master (HAL I2C communication is in Master Mode)\n + * b3-b2-b1-b0 (not used)\n + * xxxx : Should be set to 0000 + * @{ + */ +typedef enum +{ + HAL_I2C_MODE_NONE = 0x00U, /*!< No I2C communication on going */ + HAL_I2C_MODE_MASTER = 0x10U, /*!< I2C communication is in Master Mode */ + HAL_I2C_MODE_SLAVE = 0x20U, /*!< I2C communication is in Slave Mode */ + HAL_I2C_MODE_MEM = 0x40U /*!< I2C communication is in Memory Mode */ + +}HAL_I2C_ModeTypeDef; + +/** + * @} + */ + +/** @defgroup I2C_Error_Code_definition I2C Error Code definition + * @brief I2C Error Code definition + * @{ + */ +#define HAL_I2C_ERROR_NONE (0x00000000U) /*!< No error */ +#define HAL_I2C_ERROR_BERR (0x00000001U) /*!< BERR error */ +#define HAL_I2C_ERROR_ARLO (0x00000002U) /*!< ARLO error */ +#define HAL_I2C_ERROR_AF (0x00000004U) /*!< ACKF error */ +#define HAL_I2C_ERROR_OVR (0x00000008U) /*!< OVR error */ +#define HAL_I2C_ERROR_DMA (0x00000010U) /*!< DMA transfer error */ +#define HAL_I2C_ERROR_TIMEOUT (0x00000020U) /*!< Timeout error */ +#define HAL_I2C_ERROR_SIZE (0x00000040U) /*!< Size Management error */ +/** + * @} + */ + +/** @defgroup I2C_handle_Structure_definition I2C handle Structure definition + * @brief I2C handle Structure definition + * @{ + */ +typedef struct __I2C_HandleTypeDef +{ + I2C_TypeDef *Instance; /*!< I2C registers base address */ + + I2C_InitTypeDef Init; /*!< I2C communication parameters */ + + uint8_t *pBuffPtr; /*!< Pointer to I2C transfer buffer */ + + uint16_t XferSize; /*!< I2C transfer size */ + + __IO uint16_t XferCount; /*!< I2C transfer counter */ + + __IO uint32_t XferOptions; /*!< I2C sequantial transfer options, this parameter can + be a value of @ref I2C_XFEROPTIONS */ + + __IO uint32_t PreviousState; /*!< I2C communication Previous state */ + + HAL_StatusTypeDef (*XferISR)(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources); /*!< I2C transfer IRQ handler function pointer */ + + DMA_HandleTypeDef *hdmatx; /*!< I2C Tx DMA handle parameters */ + + DMA_HandleTypeDef *hdmarx; /*!< I2C Rx DMA handle parameters */ + + HAL_LockTypeDef Lock; /*!< I2C locking object */ + + __IO HAL_I2C_StateTypeDef State; /*!< I2C communication state */ + + __IO HAL_I2C_ModeTypeDef Mode; /*!< I2C communication mode */ + + __IO uint32_t ErrorCode; /*!< I2C Error code */ + + __IO uint32_t AddrEventCount; /*!< I2C Address Event counter */ +}I2C_HandleTypeDef; +/** + * @} + */ + +/** + * @} + */ +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup I2C_Exported_Constants I2C Exported Constants + * @{ + */ + +/** @defgroup I2C_XFEROPTIONS I2C Sequential Transfer Options + * @{ + */ +#define I2C_FIRST_FRAME ((uint32_t)I2C_SOFTEND_MODE) +#define I2C_FIRST_AND_NEXT_FRAME ((uint32_t)(I2C_RELOAD_MODE | I2C_SOFTEND_MODE)) +#define I2C_NEXT_FRAME ((uint32_t)(I2C_RELOAD_MODE | I2C_SOFTEND_MODE)) +#define I2C_FIRST_AND_LAST_FRAME ((uint32_t)I2C_AUTOEND_MODE) +#define I2C_LAST_FRAME ((uint32_t)I2C_AUTOEND_MODE) +/** + * @} + */ + +/** @defgroup I2C_ADDRESSING_MODE I2C Addressing Mode + * @{ + */ +#define I2C_ADDRESSINGMODE_7BIT (0x00000001U) +#define I2C_ADDRESSINGMODE_10BIT (0x00000002U) +/** + * @} + */ + +/** @defgroup I2C_DUAL_ADDRESSING_MODE I2C Dual Addressing Mode + * @{ + */ +#define I2C_DUALADDRESS_DISABLE (0x00000000U) +#define I2C_DUALADDRESS_ENABLE I2C_OAR2_OA2EN +/** + * @} + */ + +/** @defgroup I2C_OWN_ADDRESS2_MASKS I2C Own Address2 Masks + * @{ + */ +#define I2C_OA2_NOMASK ((uint8_t)0x00U) +#define I2C_OA2_MASK01 ((uint8_t)0x01U) +#define I2C_OA2_MASK02 ((uint8_t)0x02U) +#define I2C_OA2_MASK03 ((uint8_t)0x03U) +#define I2C_OA2_MASK04 ((uint8_t)0x04U) +#define I2C_OA2_MASK05 ((uint8_t)0x05U) +#define I2C_OA2_MASK06 ((uint8_t)0x06U) +#define I2C_OA2_MASK07 ((uint8_t)0x07U) +/** + * @} + */ + +/** @defgroup I2C_GENERAL_CALL_ADDRESSING_MODE I2C General Call Addressing Mode + * @{ + */ +#define I2C_GENERALCALL_DISABLE (0x00000000U) +#define I2C_GENERALCALL_ENABLE I2C_CR1_GCEN +/** + * @} + */ + +/** @defgroup I2C_NOSTRETCH_MODE I2C No-Stretch Mode + * @{ + */ +#define I2C_NOSTRETCH_DISABLE (0x00000000U) +#define I2C_NOSTRETCH_ENABLE I2C_CR1_NOSTRETCH +/** + * @} + */ + +/** @defgroup I2C_MEMORY_ADDRESS_SIZE I2C Memory Address Size + * @{ + */ +#define I2C_MEMADD_SIZE_8BIT (0x00000001U) +#define I2C_MEMADD_SIZE_16BIT (0x00000002U) +/** + * @} + */ + +/** @defgroup I2C_XFERDIRECTION I2C Transfer Direction Master Point of View + * @{ + */ +#define I2C_DIRECTION_TRANSMIT (0x00000000U) +#define I2C_DIRECTION_RECEIVE (0x00000001U) +/** + * @} + */ + +/** @defgroup I2C_RELOAD_END_MODE I2C Reload End Mode + * @{ + */ +#define I2C_RELOAD_MODE I2C_CR2_RELOAD +#define I2C_AUTOEND_MODE I2C_CR2_AUTOEND +#define I2C_SOFTEND_MODE (0x00000000U) +/** + * @} + */ + +/** @defgroup I2C_START_STOP_MODE I2C Start or Stop Mode + * @{ + */ +#define I2C_NO_STARTSTOP (0x00000000U) +#define I2C_GENERATE_STOP I2C_CR2_STOP +#define I2C_GENERATE_START_READ (uint32_t)(I2C_CR2_START | I2C_CR2_RD_WRN) +#define I2C_GENERATE_START_WRITE I2C_CR2_START +/** + * @} + */ + +/** @defgroup I2C_Interrupt_configuration_definition I2C Interrupt configuration definition + * @brief I2C Interrupt definition + * Elements values convention: 0xXXXXXXXX + * - XXXXXXXX : Interrupt control mask + * @{ + */ +#define I2C_IT_ERRI I2C_CR1_ERRIE +#define I2C_IT_TCI I2C_CR1_TCIE +#define I2C_IT_STOPI I2C_CR1_STOPIE +#define I2C_IT_NACKI I2C_CR1_NACKIE +#define I2C_IT_ADDRI I2C_CR1_ADDRIE +#define I2C_IT_RXI I2C_CR1_RXIE +#define I2C_IT_TXI I2C_CR1_TXIE +/** + * @} + */ + +/** @defgroup I2C_Flag_definition I2C Flag definition + * @{ + */ +#define I2C_FLAG_TXE I2C_ISR_TXE +#define I2C_FLAG_TXIS I2C_ISR_TXIS +#define I2C_FLAG_RXNE I2C_ISR_RXNE +#define I2C_FLAG_ADDR I2C_ISR_ADDR +#define I2C_FLAG_AF I2C_ISR_NACKF +#define I2C_FLAG_STOPF I2C_ISR_STOPF +#define I2C_FLAG_TC I2C_ISR_TC +#define I2C_FLAG_TCR I2C_ISR_TCR +#define I2C_FLAG_BERR I2C_ISR_BERR +#define I2C_FLAG_ARLO I2C_ISR_ARLO +#define I2C_FLAG_OVR I2C_ISR_OVR +#define I2C_FLAG_PECERR I2C_ISR_PECERR +#define I2C_FLAG_TIMEOUT I2C_ISR_TIMEOUT +#define I2C_FLAG_ALERT I2C_ISR_ALERT +#define I2C_FLAG_BUSY I2C_ISR_BUSY +#define I2C_FLAG_DIR I2C_ISR_DIR +/** + * @} + */ + +/** + * @} + */ + +/* Exported macros -----------------------------------------------------------*/ + +/** @defgroup I2C_Exported_Macros I2C Exported Macros + * @{ + */ + +/** @brief Reset I2C handle state. + * @param __HANDLE__ specifies the I2C Handle. + * @retval None + */ +#define __HAL_I2C_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_I2C_STATE_RESET) + +/** @brief Enable the specified I2C interrupt. + * @param __HANDLE__ specifies the I2C Handle. + * @param __INTERRUPT__ specifies the interrupt source to enable. + * This parameter can be one of the following values: + * @arg @ref I2C_IT_ERRI Errors interrupt enable + * @arg @ref I2C_IT_TCI Transfer complete interrupt enable + * @arg @ref I2C_IT_STOPI STOP detection interrupt enable + * @arg @ref I2C_IT_NACKI NACK received interrupt enable + * @arg @ref I2C_IT_ADDRI Address match interrupt enable + * @arg @ref I2C_IT_RXI RX interrupt enable + * @arg @ref I2C_IT_TXI TX interrupt enable + * + * @retval None + */ +#define __HAL_I2C_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR1 |= (__INTERRUPT__)) + +/** @brief Disable the specified I2C interrupt. + * @param __HANDLE__ specifies the I2C Handle. + * @param __INTERRUPT__ specifies the interrupt source to disable. + * This parameter can be one of the following values: + * @arg @ref I2C_IT_ERRI Errors interrupt enable + * @arg @ref I2C_IT_TCI Transfer complete interrupt enable + * @arg @ref I2C_IT_STOPI STOP detection interrupt enable + * @arg @ref I2C_IT_NACKI NACK received interrupt enable + * @arg @ref I2C_IT_ADDRI Address match interrupt enable + * @arg @ref I2C_IT_RXI RX interrupt enable + * @arg @ref I2C_IT_TXI TX interrupt enable + * + * @retval None + */ +#define __HAL_I2C_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR1 &= (~(__INTERRUPT__))) + +/** @brief Check whether the specified I2C interrupt source is enabled or not. + * @param __HANDLE__ specifies the I2C Handle. + * @param __INTERRUPT__ specifies the I2C interrupt source to check. + * This parameter can be one of the following values: + * @arg @ref I2C_IT_ERRI Errors interrupt enable + * @arg @ref I2C_IT_TCI Transfer complete interrupt enable + * @arg @ref I2C_IT_STOPI STOP detection interrupt enable + * @arg @ref I2C_IT_NACKI NACK received interrupt enable + * @arg @ref I2C_IT_ADDRI Address match interrupt enable + * @arg @ref I2C_IT_RXI RX interrupt enable + * @arg @ref I2C_IT_TXI TX interrupt enable + * + * @retval The new state of __INTERRUPT__ (SET or RESET). + */ +#define __HAL_I2C_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR1 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET) + +/** @brief Check whether the specified I2C flag is set or not. + * @param __HANDLE__ specifies the I2C Handle. + * @param __FLAG__ specifies the flag to check. + * This parameter can be one of the following values: + * @arg @ref I2C_FLAG_TXE Transmit data register empty + * @arg @ref I2C_FLAG_TXIS Transmit interrupt status + * @arg @ref I2C_FLAG_RXNE Receive data register not empty + * @arg @ref I2C_FLAG_ADDR Address matched (slave mode) + * @arg @ref I2C_FLAG_AF Acknowledge failure received flag + * @arg @ref I2C_FLAG_STOPF STOP detection flag + * @arg @ref I2C_FLAG_TC Transfer complete (master mode) + * @arg @ref I2C_FLAG_TCR Transfer complete reload + * @arg @ref I2C_FLAG_BERR Bus error + * @arg @ref I2C_FLAG_ARLO Arbitration lost + * @arg @ref I2C_FLAG_OVR Overrun/Underrun + * @arg @ref I2C_FLAG_PECERR PEC error in reception + * @arg @ref I2C_FLAG_TIMEOUT Timeout or Tlow detection flag + * @arg @ref I2C_FLAG_ALERT SMBus alert + * @arg @ref I2C_FLAG_BUSY Bus busy + * @arg @ref I2C_FLAG_DIR Transfer direction (slave mode) + * + * @retval The new state of __FLAG__ (SET or RESET). + */ +#define __HAL_I2C_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) == (__FLAG__)) ? SET : RESET) + +/** @brief Clear the I2C pending flags which are cleared by writing 1 in a specific bit. + * @param __HANDLE__ specifies the I2C Handle. + * @param __FLAG__ specifies the flag to clear. + * This parameter can be any combination of the following values: + * @arg @ref I2C_FLAG_TXE Transmit data register empty + * @arg @ref I2C_FLAG_ADDR Address matched (slave mode) + * @arg @ref I2C_FLAG_AF Acknowledge failure received flag + * @arg @ref I2C_FLAG_STOPF STOP detection flag + * @arg @ref I2C_FLAG_BERR Bus error + * @arg @ref I2C_FLAG_ARLO Arbitration lost + * @arg @ref I2C_FLAG_OVR Overrun/Underrun + * @arg @ref I2C_FLAG_PECERR PEC error in reception + * @arg @ref I2C_FLAG_TIMEOUT Timeout or Tlow detection flag + * @arg @ref I2C_FLAG_ALERT SMBus alert + * + * @retval None + */ +#define __HAL_I2C_CLEAR_FLAG(__HANDLE__, __FLAG__) (((__FLAG__) == I2C_FLAG_TXE) ? ((__HANDLE__)->Instance->ISR |= (__FLAG__)) \ + : ((__HANDLE__)->Instance->ICR = (__FLAG__))) + +/** @brief Enable the specified I2C peripheral. + * @param __HANDLE__ specifies the I2C Handle. + * @retval None + */ +#define __HAL_I2C_ENABLE(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR1, I2C_CR1_PE)) + +/** @brief Disable the specified I2C peripheral. + * @param __HANDLE__ specifies the I2C Handle. + * @retval None + */ +#define __HAL_I2C_DISABLE(__HANDLE__) (CLEAR_BIT((__HANDLE__)->Instance->CR1, I2C_CR1_PE)) + +/** @brief Generate a Non-Acknowledge I2C peripheral in Slave mode. + * @param __HANDLE__: specifies the I2C Handle. + * @retval None + */ +#define __HAL_I2C_GENERATE_NACK(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR2, I2C_CR2_NACK)) +/** + * @} + */ + +/* Include I2C HAL Extended module */ +#include "stm32l0xx_hal_i2c_ex.h" + +/* Exported functions --------------------------------------------------------*/ +/** @addtogroup I2C_Exported_Functions + * @{ + */ + +/** @addtogroup I2C_Exported_Functions_Group1 Initialization and de-initialization functions + * @{ + */ +/* Initialization and de-initialization functions******************************/ +HAL_StatusTypeDef HAL_I2C_Init(I2C_HandleTypeDef *hi2c); +HAL_StatusTypeDef HAL_I2C_DeInit (I2C_HandleTypeDef *hi2c); +void HAL_I2C_MspInit(I2C_HandleTypeDef *hi2c); +void HAL_I2C_MspDeInit(I2C_HandleTypeDef *hi2c); +/** + * @} + */ + +/** @addtogroup I2C_Exported_Functions_Group2 Input and Output operation functions + * @{ + */ +/* IO operation functions ****************************************************/ + /******* Blocking mode: Polling */ +HAL_StatusTypeDef HAL_I2C_Master_Transmit(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_I2C_Master_Receive(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_I2C_Slave_Transmit(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_I2C_Slave_Receive(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_I2C_Mem_Write(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_I2C_Mem_Read(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_I2C_IsDeviceReady(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint32_t Trials, uint32_t Timeout); + + /******* Non-Blocking mode: Interrupt */ +HAL_StatusTypeDef HAL_I2C_Master_Transmit_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Master_Receive_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Slave_Transmit_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Slave_Receive_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Mem_Write_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Mem_Read_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size); + +HAL_StatusTypeDef HAL_I2C_Master_Sequential_Transmit_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions); +HAL_StatusTypeDef HAL_I2C_Master_Sequential_Receive_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions); +HAL_StatusTypeDef HAL_I2C_Slave_Sequential_Transmit_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t XferOptions); +HAL_StatusTypeDef HAL_I2C_Slave_Sequential_Receive_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t XferOptions); +HAL_StatusTypeDef HAL_I2C_EnableListen_IT(I2C_HandleTypeDef *hi2c); +HAL_StatusTypeDef HAL_I2C_DisableListen_IT(I2C_HandleTypeDef *hi2c); +HAL_StatusTypeDef HAL_I2C_Master_Abort_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress); + + /******* Non-Blocking mode: DMA */ +HAL_StatusTypeDef HAL_I2C_Master_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Master_Receive_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Slave_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Slave_Receive_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Mem_Write_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_I2C_Mem_Read_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size); +/** + * @} + */ + +/** @addtogroup I2C_IRQ_Handler_and_Callbacks IRQ Handler and Callbacks + * @{ + */ +/******* I2C IRQHandler and Callbacks used in non blocking modes (Interrupt and DMA) */ +void HAL_I2C_EV_IRQHandler(I2C_HandleTypeDef *hi2c); +void HAL_I2C_ER_IRQHandler(I2C_HandleTypeDef *hi2c); +void HAL_I2C_MasterTxCpltCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_MasterRxCpltCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_SlaveTxCpltCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_AddrCallback(I2C_HandleTypeDef *hi2c, uint8_t TransferDirection, uint16_t AddrMatchCode); +void HAL_I2C_ListenCpltCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_MemTxCpltCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_ErrorCallback(I2C_HandleTypeDef *hi2c); +void HAL_I2C_AbortCpltCallback(I2C_HandleTypeDef *hi2c); +/** + * @} + */ + +/** @addtogroup I2C_Exported_Functions_Group3 Peripheral State, Mode and Error functions + * @{ + */ +/* Peripheral State, Mode and Error functions *********************************/ +HAL_I2C_StateTypeDef HAL_I2C_GetState(I2C_HandleTypeDef *hi2c); +HAL_I2C_ModeTypeDef HAL_I2C_GetMode(I2C_HandleTypeDef *hi2c); +uint32_t HAL_I2C_GetError(I2C_HandleTypeDef *hi2c); + +/** + * @} + */ + +/** + * @} + */ + +/* Private constants ---------------------------------------------------------*/ +/** @defgroup I2C_Private_Constants I2C Private Constants + * @{ + */ + +/** + * @} + */ + +/* Private macros ------------------------------------------------------------*/ +/** @defgroup I2C_Private_Macro I2C Private Macros + * @{ + */ + +#define IS_I2C_ADDRESSING_MODE(MODE) (((MODE) == I2C_ADDRESSINGMODE_7BIT) || \ + ((MODE) == I2C_ADDRESSINGMODE_10BIT)) + +#define IS_I2C_DUAL_ADDRESS(ADDRESS) (((ADDRESS) == I2C_DUALADDRESS_DISABLE) || \ + ((ADDRESS) == I2C_DUALADDRESS_ENABLE)) + +#define IS_I2C_OWN_ADDRESS2_MASK(MASK) (((MASK) == I2C_OA2_NOMASK) || \ + ((MASK) == I2C_OA2_MASK01) || \ + ((MASK) == I2C_OA2_MASK02) || \ + ((MASK) == I2C_OA2_MASK03) || \ + ((MASK) == I2C_OA2_MASK04) || \ + ((MASK) == I2C_OA2_MASK05) || \ + ((MASK) == I2C_OA2_MASK06) || \ + ((MASK) == I2C_OA2_MASK07)) + +#define IS_I2C_GENERAL_CALL(CALL) (((CALL) == I2C_GENERALCALL_DISABLE) || \ + ((CALL) == I2C_GENERALCALL_ENABLE)) + +#define IS_I2C_NO_STRETCH(STRETCH) (((STRETCH) == I2C_NOSTRETCH_DISABLE) || \ + ((STRETCH) == I2C_NOSTRETCH_ENABLE)) + +#define IS_I2C_MEMADD_SIZE(SIZE) (((SIZE) == I2C_MEMADD_SIZE_8BIT) || \ + ((SIZE) == I2C_MEMADD_SIZE_16BIT)) + +#define IS_TRANSFER_MODE(MODE) (((MODE) == I2C_RELOAD_MODE) || \ + ((MODE) == I2C_AUTOEND_MODE) || \ + ((MODE) == I2C_SOFTEND_MODE)) + +#define IS_TRANSFER_REQUEST(REQUEST) (((REQUEST) == I2C_GENERATE_STOP) || \ + ((REQUEST) == I2C_GENERATE_START_READ) || \ + ((REQUEST) == I2C_GENERATE_START_WRITE) || \ + ((REQUEST) == I2C_NO_STARTSTOP)) + +#define IS_I2C_TRANSFER_OPTIONS_REQUEST(REQUEST) (((REQUEST) == I2C_FIRST_FRAME) || \ + ((REQUEST) == I2C_FIRST_AND_NEXT_FRAME) || \ + ((REQUEST) == I2C_NEXT_FRAME) || \ + ((REQUEST) == I2C_FIRST_AND_LAST_FRAME) || \ + ((REQUEST) == I2C_LAST_FRAME)) + +#define I2C_RESET_CR2(__HANDLE__) ((__HANDLE__)->Instance->CR2 &= (uint32_t)~((uint32_t)(I2C_CR2_SADD | I2C_CR2_HEAD10R | I2C_CR2_NBYTES | I2C_CR2_RELOAD | I2C_CR2_RD_WRN))) + +#define I2C_GET_ADDR_MATCH(__HANDLE__) (((__HANDLE__)->Instance->ISR & I2C_ISR_ADDCODE) >> 16U) +#define I2C_GET_DIR(__HANDLE__) (((__HANDLE__)->Instance->ISR & I2C_ISR_DIR) >> 16U) +#define I2C_GET_STOP_MODE(__HANDLE__) ((__HANDLE__)->Instance->CR2 & I2C_CR2_AUTOEND) +#define I2C_GET_OWN_ADDRESS1(__HANDLE__) ((__HANDLE__)->Instance->OAR1 & I2C_OAR1_OA1) +#define I2C_GET_OWN_ADDRESS2(__HANDLE__) ((__HANDLE__)->Instance->OAR2 & I2C_OAR2_OA2) + +#define IS_I2C_OWN_ADDRESS1(ADDRESS1) ((ADDRESS1) <= 0x000003FFU) +#define IS_I2C_OWN_ADDRESS2(ADDRESS2) ((ADDRESS2) <= (uint16_t)0x00FFU) + +#define I2C_MEM_ADD_MSB(__ADDRESS__) ((uint8_t)((uint16_t)(((uint16_t)((__ADDRESS__) & (uint16_t)(0xFF00U))) >> 8U))) +#define I2C_MEM_ADD_LSB(__ADDRESS__) ((uint8_t)((uint16_t)((__ADDRESS__) & (uint16_t)(0x00FFU)))) + +#define I2C_GENERATE_START(__ADDMODE__,__ADDRESS__) (((__ADDMODE__) == I2C_ADDRESSINGMODE_7BIT) ? (uint32_t)((((uint32_t)(__ADDRESS__) & (I2C_CR2_SADD)) | (I2C_CR2_START) | (I2C_CR2_AUTOEND)) & (~I2C_CR2_RD_WRN)) : \ + (uint32_t)((((uint32_t)(__ADDRESS__) & (I2C_CR2_SADD)) | (I2C_CR2_ADD10) | (I2C_CR2_START)) & (~I2C_CR2_RD_WRN))) +/** + * @} + */ + +/* Private Functions ---------------------------------------------------------*/ +/** @defgroup I2C_Private_Functions I2C Private Functions + * @{ + */ +/* Private functions are defined in stm32l0xx_hal_i2c.c file */ +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + + +#endif /* __STM32L0xx_HAL_I2C_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h new file mode 100644 index 0000000..2b9ce4a --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h @@ -0,0 +1,181 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_i2c_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of I2C HAL Extended module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_I2C_EX_H +#define __STM32L0xx_HAL_I2C_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup I2CEx + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup I2CEx_Exported_Constants I2C Extended Exported Constants + * @{ + */ + +/** @defgroup I2CEx_Analog_Filter I2C Extended Analog Filter + * @{ + */ +#define I2C_ANALOGFILTER_ENABLE 0x00000000U +#define I2C_ANALOGFILTER_DISABLE I2C_CR1_ANFOFF +/** + * @} + */ + +/** @defgroup I2CEx_FastModePlus I2C Extended Fast Mode Plus + * @{ + */ +#define I2C_FMP_NOT_SUPPORTED 0xAAAA0000U /*!< Fast Mode Plus not supported */ +#define I2C_FASTMODEPLUS_PB6 SYSCFG_CFGR2_I2C_PB6_FMP /*!< Enable Fast Mode Plus on PB6 */ +#define I2C_FASTMODEPLUS_PB7 SYSCFG_CFGR2_I2C_PB7_FMP /*!< Enable Fast Mode Plus on PB7 */ +#define I2C_FASTMODEPLUS_PB8 SYSCFG_CFGR2_I2C_PB8_FMP /*!< Enable Fast Mode Plus on PB8 */ +#define I2C_FASTMODEPLUS_PB9 SYSCFG_CFGR2_I2C_PB9_FMP /*!< Enable Fast Mode Plus on PB9 */ +#define I2C_FASTMODEPLUS_I2C1 SYSCFG_CFGR2_I2C1_FMP /*!< Enable Fast Mode Plus on I2C1 pins */ +#if defined(SYSCFG_CFGR2_I2C2_FMP) +#define I2C_FASTMODEPLUS_I2C2 SYSCFG_CFGR2_I2C2_FMP /*!< Enable Fast Mode Plus on I2C2 pins */ +#else +#define I2C_FASTMODEPLUS_I2C2 (uint32_t)(0x00000200U | I2C_FMP_NOT_SUPPORTED) /*!< Fast Mode Plus I2C2 not supported */ +#endif +#if defined(SYSCFG_CFGR2_I2C3_FMP) +#define I2C_FASTMODEPLUS_I2C3 SYSCFG_CFGR2_I2C3_FMP /*!< Enable Fast Mode Plus on I2C3 pins */ +#else +#define I2C_FASTMODEPLUS_I2C3 (uint32_t)(0x00000400U | I2C_FMP_NOT_SUPPORTED) /*!< Fast Mode Plus I2C3 not supported */ +#endif +/** + * @} + */ + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ + +/** @addtogroup I2CEx_Exported_Functions I2C Extended Exported Functions + * @{ + */ + +/** @addtogroup I2CEx_Exported_Functions_Group1 Extended features functions + * @brief Extended features functions + * @{ + */ + +/* Peripheral Control functions ************************************************/ +HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *hi2c, uint32_t AnalogFilter); +HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *hi2c, uint32_t DigitalFilter); +HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp(I2C_HandleTypeDef *hi2c); +HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp(I2C_HandleTypeDef *hi2c); +void HAL_I2CEx_EnableFastModePlus(uint32_t ConfigFastModePlus); +void HAL_I2CEx_DisableFastModePlus(uint32_t ConfigFastModePlus); + +/* Private constants ---------------------------------------------------------*/ +/** @defgroup I2CEx_Private_Constants I2C Extended Private Constants + * @{ + */ + +/** + * @} + */ + +/* Private macros ------------------------------------------------------------*/ +/** @defgroup I2CEx_Private_Macro I2C Extended Private Macros + * @{ + */ +#define IS_I2C_ANALOG_FILTER(FILTER) (((FILTER) == I2C_ANALOGFILTER_ENABLE) || \ + ((FILTER) == I2C_ANALOGFILTER_DISABLE)) + +#define IS_I2C_DIGITAL_FILTER(FILTER) ((FILTER) <= 0x0000000FU) + +#define IS_I2C_FASTMODEPLUS(__CONFIG__) ((((__CONFIG__) & I2C_FMP_NOT_SUPPORTED) != I2C_FMP_NOT_SUPPORTED) && \ + ((((__CONFIG__) & (I2C_FASTMODEPLUS_PB6)) == I2C_FASTMODEPLUS_PB6) || \ + (((__CONFIG__) & (I2C_FASTMODEPLUS_PB7)) == I2C_FASTMODEPLUS_PB7) || \ + (((__CONFIG__) & (I2C_FASTMODEPLUS_PB8)) == I2C_FASTMODEPLUS_PB8) || \ + (((__CONFIG__) & (I2C_FASTMODEPLUS_PB9)) == I2C_FASTMODEPLUS_PB9) || \ + (((__CONFIG__) & (I2C_FASTMODEPLUS_I2C1)) == I2C_FASTMODEPLUS_I2C1) || \ + (((__CONFIG__) & (I2C_FASTMODEPLUS_I2C2)) == I2C_FASTMODEPLUS_I2C2) || \ + (((__CONFIG__) & (I2C_FASTMODEPLUS_I2C3)) == I2C_FASTMODEPLUS_I2C3))) +/** + * @} + */ + +/* Private Functions ---------------------------------------------------------*/ +/** @defgroup I2CEx_Private_Functions I2C Extended Private Functions + * @{ + */ +/* Private functions are defined in stm32l0xx_hal_i2c_ex.c file */ +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_I2C_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h new file mode 100644 index 0000000..8493583 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h @@ -0,0 +1,845 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_irda.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of IRDA HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_IRDA_H +#define __STM32L0xx_HAL_IRDA_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup IRDA + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/** @defgroup IRDA_Exported_Types IRDA Exported Types + * @{ + */ + +/** + * @brief IRDA Init Structure definition + */ +typedef struct +{ + uint32_t BaudRate; /*!< This member configures the IRDA communication baud rate. + The baud rate register is computed using the following formula: + Baud Rate Register = ((PCLKx) / ((hirda->Init.BaudRate))) */ + + uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame. + This parameter can be a value of @ref IRDA_Word_Length */ + + uint32_t Parity; /*!< Specifies the parity mode. + This parameter can be a value of @ref IRDA_Parity + @note When parity is enabled, the computed parity is inserted + at the MSB position of the transmitted data (9th bit when + the word length is set to 9 data bits; 8th bit when the + word length is set to 8 data bits). */ + + uint32_t Mode; /*!< Specifies whether the Receive or Transmit mode is enabled or disabled. + This parameter can be a value of @ref IRDA_Transfer_Mode */ + + uint8_t Prescaler; /*!< Specifies the Prescaler value for dividing the UART/USART source clock + to achieve low-power frequency. + @note Prescaler value 0 is forbidden */ + + uint16_t PowerMode; /*!< Specifies the IRDA power mode. + This parameter can be a value of @ref IRDA_Low_Power */ +}IRDA_InitTypeDef; + +/** + * @brief HAL IRDA State structures definition + * @note HAL IRDA State value is a combination of 2 different substates: gState and RxState. + * - gState contains IRDA state information related to global Handle management + * and also information related to Tx operations. + * gState value coding follow below described bitmap : + * b7-b6 Error information + * 00 : No Error + * 01 : (Not Used) + * 10 : Timeout + * 11 : Error + * b5 IP initilisation status + * 0 : Reset (IP not initialized) + * 1 : Init done (IP not initialized. HAL IRDA Init function already called) + * b4-b3 (not used) + * xx : Should be set to 00 + * b2 Intrinsic process state + * 0 : Ready + * 1 : Busy (IP busy with some configuration or internal operations) + * b1 (not used) + * x : Should be set to 0 + * b0 Tx state + * 0 : Ready (no Tx operation ongoing) + * 1 : Busy (Tx operation ongoing) + * - RxState contains information related to Rx operations. + * RxState value coding follow below described bitmap : + * b7-b6 (not used) + * xx : Should be set to 00 + * b5 IP initilisation status + * 0 : Reset (IP not initialized) + * 1 : Init done (IP not initialized) + * b4-b2 (not used) + * xxx : Should be set to 000 + * b1 Rx state + * 0 : Ready (no Rx operation ongoing) + * 1 : Busy (Rx operation ongoing) + * b0 (not used) + * x : Should be set to 0. + */ +typedef enum +{ + HAL_IRDA_STATE_RESET = 0x00U, /*!< Peripheral is not initialized + Value is allowed for gState and RxState */ + HAL_IRDA_STATE_READY = 0x20U, /*!< Peripheral Initialized and ready for use + Value is allowed for gState and RxState */ + HAL_IRDA_STATE_BUSY = 0x24U, /*!< an internal process is ongoing + Value is allowed for gState only */ + HAL_IRDA_STATE_BUSY_TX = 0x21U, /*!< Data Transmission process is ongoing + Value is allowed for gState only */ + HAL_IRDA_STATE_BUSY_RX = 0x22U, /*!< Data Reception process is ongoing + Value is allowed for RxState only */ + HAL_IRDA_STATE_BUSY_TX_RX = 0x23U, /*!< Data Transmission and Reception process is ongoing + Not to be used for neither gState nor RxState. + Value is result of combination (Or) between gState and RxState values */ + HAL_IRDA_STATE_TIMEOUT = 0xA0U, /*!< Timeout state + Value is allowed for gState only */ + HAL_IRDA_STATE_ERROR = 0xE0U /*!< Error + Value is allowed for gState only */ +}HAL_IRDA_StateTypeDef; + +/** + * @brief HAL IRDA Error Code structure definition + */ + +#define HAL_IRDA_ERROR_NONE ((uint32_t)0x00U) /*!< No error */ +#define HAL_IRDA_ERROR_PE ((uint32_t)0x01U) /*!< Parity error */ +#define HAL_IRDA_ERROR_NE ((uint32_t)0x02U) /*!< Noise error */ +#define HAL_IRDA_ERROR_FE ((uint32_t)0x04U) /*!< frame error */ +#define HAL_IRDA_ERROR_ORE ((uint32_t)0x08U) /*!< Overrun error */ +#define HAL_IRDA_ERROR_DMA ((uint32_t)0x10U) /*!< DMA transfer error */ + +/** + * @brief IRDA clock sources definition + */ +typedef enum +{ + IRDA_CLOCKSOURCE_PCLK1 = 0x00U, /*!< PCLK1 clock source */ + IRDA_CLOCKSOURCE_PCLK2 = 0x01U, /*!< PCLK2 clock source */ + IRDA_CLOCKSOURCE_HSI = 0x02U, /*!< HSI clock source */ + IRDA_CLOCKSOURCE_SYSCLK = 0x04U, /*!< SYSCLK clock source */ + IRDA_CLOCKSOURCE_LSE = 0x08U, /*!< LSE clock source */ + IRDA_CLOCKSOURCE_UNDEFINED = 0x10U /*!< Undefined clock source */ +}IRDA_ClockSourceTypeDef; + +/** + * @brief IRDA handle Structure definition + */ +typedef struct +{ + USART_TypeDef *Instance; /*!< IRDA registers base address */ + + IRDA_InitTypeDef Init; /*!< IRDA communication parameters */ + + uint8_t *pTxBuffPtr; /*!< Pointer to IRDA Tx transfer Buffer */ + + uint16_t TxXferSize; /*!< IRDA Tx Transfer size */ + + __IO uint16_t TxXferCount; /*!< IRDA Tx Transfer Counter */ + + uint8_t *pRxBuffPtr; /*!< Pointer to IRDA Rx transfer Buffer */ + + uint16_t RxXferSize; /*!< IRDA Rx Transfer size */ + + __IO uint16_t RxXferCount; /*!< IRDA Rx Transfer Counter */ + + uint16_t Mask; /*!< IRDA RX RDR register mask */ + + DMA_HandleTypeDef *hdmatx; /*!< IRDA Tx DMA Handle parameters */ + + DMA_HandleTypeDef *hdmarx; /*!< IRDA Rx DMA Handle parameters */ + + HAL_LockTypeDef Lock; /*!< Locking object */ + + __IO HAL_IRDA_StateTypeDef gState; /*!< IRDA state information related to global Handle management + and also related to Tx operations. + This parameter can be a value of @ref HAL_IRDA_StateTypeDef */ + + __IO HAL_IRDA_StateTypeDef RxState; /*!< IRDA state information related to Rx operations. + This parameter can be a value of @ref HAL_IRDA_StateTypeDef */ + + __IO uint32_t ErrorCode; /*!< IRDA Error code */ + +}IRDA_HandleTypeDef; + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup IRDA_Exported_Constants IRDA Exported Constants + * @{ + */ + +/** @defgroup IRDA_Word_Length IRDA Word Length + * @{ + */ +#define IRDA_WORDLENGTH_7B ((uint32_t)USART_CR1_M1) /*!< 7-bit long frame */ +#define IRDA_WORDLENGTH_8B ((uint32_t)0x00000000) /*!< 8-bit long frame */ +#define IRDA_WORDLENGTH_9B ((uint32_t)USART_CR1_M0) /*!< 9-bit long frame */ +/** + * @} + */ + +/** @defgroup IRDA_Parity IRDA Parity + * @{ + */ +#define IRDA_PARITY_NONE ((uint32_t)0x00000000U) /*!< No parity */ +#define IRDA_PARITY_EVEN ((uint32_t)USART_CR1_PCE) /*!< Even parity */ +#define IRDA_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS)) /*!< Odd parity */ +/** + * @} + */ + +/** @defgroup IRDA_Transfer_Mode IRDA Transfer Mode + * @{ + */ +#define IRDA_MODE_RX ((uint32_t)USART_CR1_RE) /*!< RX mode */ +#define IRDA_MODE_TX ((uint32_t)USART_CR1_TE) /*!< TX mode */ +#define IRDA_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE)) /*!< RX and TX mode */ +/** + * @} + */ + +/** @defgroup IRDA_Low_Power IRDA Low Power + * @{ + */ +#define IRDA_POWERMODE_NORMAL ((uint32_t)0x00000000U) /*!< IRDA normal power mode */ +#define IRDA_POWERMODE_LOWPOWER ((uint32_t)USART_CR3_IRLP) /*!< IRDA low power mode */ +/** + * @} + */ + +/** @defgroup IRDA_State IRDA State + * @{ + */ +#define IRDA_STATE_DISABLE ((uint32_t)0x00000000U) /*!< IRDA disabled */ +#define IRDA_STATE_ENABLE ((uint32_t)USART_CR1_UE) /*!< IRDA enabled */ +/** + * @} + */ + +/** @defgroup IRDA_Mode IRDA Mode + * @{ + */ +#define IRDA_MODE_DISABLE ((uint32_t)0x00000000U) /*!< Associated UART disabled in IRDA mode */ +#define IRDA_MODE_ENABLE ((uint32_t)USART_CR3_IREN) /*!< Associated UART enabled in IRDA mode */ +/** + * @} + */ + +/** @defgroup IRDA_One_Bit IRDA One Bit Sampling + * @{ + */ +#define IRDA_ONE_BIT_SAMPLE_DISABLE ((uint32_t)0x00000000U) /*!< One-bit sampling disabled */ +#define IRDA_ONE_BIT_SAMPLE_ENABLE ((uint32_t)USART_CR3_ONEBIT) /*!< One-bit sampling enabled */ +/** + * @} + */ + +/** @defgroup IRDA_DMA_Tx IRDA DMA Tx + * @{ + */ +#define IRDA_DMA_TX_DISABLE ((uint32_t)0x00000000U) /*!< IRDA DMA TX disabled */ +#define IRDA_DMA_TX_ENABLE ((uint32_t)USART_CR3_DMAT) /*!< IRDA DMA TX enabled */ +/** + * @} + */ + +/** @defgroup IRDA_DMA_Rx IRDA DMA Rx + * @{ + */ +#define IRDA_DMA_RX_DISABLE ((uint32_t)0x00000000) /*!< IRDA DMA RX disabled */ +#define IRDA_DMA_RX_ENABLE ((uint32_t)USART_CR3_DMAR) /*!< IRDA DMA RX enabled */ +/** + * @} + */ + +/** @defgroup IRDA_Request_Parameters IRDA Request Parameters + * @{ + */ +#define IRDA_AUTOBAUD_REQUEST ((uint16_t)USART_RQR_ABRRQ) /*!< Auto-Baud Rate Request */ +#define IRDA_RXDATA_FLUSH_REQUEST ((uint16_t)USART_RQR_RXFRQ) /*!< Receive Data flush Request */ +#define IRDA_TXDATA_FLUSH_REQUEST ((uint16_t)USART_RQR_TXFRQ) /*!< Transmit data flush Request */ +/** + * @} + */ + +/** @defgroup IRDA_Flags IRDA Flags + * Elements values convention: 0xXXXX + * - 0xXXXX : Flag mask in the ISR register + * @{ + */ +#define IRDA_FLAG_REACK USART_ISR_REACK /*!< IRDA Receive enable acknowledge flag */ +#define IRDA_FLAG_TEACK USART_ISR_TEACK /*!< IRDA Transmit enable acknowledge flag */ +#define IRDA_FLAG_BUSY USART_ISR_BUSY /*!< IRDA Busy flag */ +#define IRDA_FLAG_ABRF USART_ISR_ABRF /*!< IRDA Auto baud rate flag */ +#define IRDA_FLAG_ABRE USART_ISR_ABRE /*!< IRDA Auto baud rate error */ +#define IRDA_FLAG_TXE USART_ISR_TXE /*!< IRDA Transmit data register empty */ +#define IRDA_FLAG_TC USART_ISR_TC /*!< IRDA Transmission complete */ +#define IRDA_FLAG_RXNE USART_ISR_RXNE /*!< IRDA Read data register not empty */ +#define IRDA_FLAG_ORE USART_ISR_ORE /*!< IRDA Overrun error */ +#define IRDA_FLAG_NE USART_ISR_NE /*!< IRDA Noise error */ +#define IRDA_FLAG_FE USART_ISR_FE /*!< IRDA Framing error */ +#define IRDA_FLAG_PE USART_ISR_PE /*!< IRDA Parity error */ +/** + * @} + */ + +/** @defgroup IRDA_Interrupt_definition IRDA Interrupts Definition + * Elements values convention: 0000ZZZZ0XXYYYYYb + * - YYYYY : Interrupt source position in the XX register (5bits) + * - XX : Interrupt source register (2bits) + * - 01: CR1 register + * - 10: CR2 register + * - 11: CR3 register + * - ZZZZ : Flag position in the ISR register(4bits) + * @{ + */ +#define IRDA_IT_PE ((uint16_t)0x0028U) /*!< IRDA Parity error interruption */ +#define IRDA_IT_TXE ((uint16_t)0x0727U) /*!< IRDA Transmit data register empty interruption */ +#define IRDA_IT_TC ((uint16_t)0x0626U) /*!< IRDA Transmission complete interruption */ +#define IRDA_IT_RXNE ((uint16_t)0x0525U) /*!< IRDA Read data register not empty interruption */ +#define IRDA_IT_IDLE ((uint16_t)0x0424U) /*!< IRDA Idle interruption */ + +/** Elements values convention: 000000000XXYYYYYb + * - YYYYY : Interrupt source position in the XX register (5bits) + * - XX : Interrupt source register (2bits) + * - 01: CR1 register + * - 10: CR2 register + * - 11: CR3 register + */ +#define IRDA_IT_ERR ((uint16_t)0x0060U) /*!< IRDA Error interruption */ + +/** Elements values convention: 0000ZZZZ00000000b + * - ZZZZ : Flag position in the ISR register(4bits) + */ +#define IRDA_IT_ORE ((uint16_t)0x0300U) /*!< IRDA Overrun error interruption */ +#define IRDA_IT_NE ((uint16_t)0x0200U) /*!< IRDA Noise error interruption */ +#define IRDA_IT_FE ((uint16_t)0x0100U) /*!< IRDA Frame error interruption */ +/** + * @} + */ + +/** @defgroup IRDA_IT_CLEAR_Flags IRDA Interruption Clear Flags + * @{ + */ +#define IRDA_CLEAR_PEF USART_ICR_PECF /*!< Parity Error Clear Flag */ +#define IRDA_CLEAR_FEF USART_ICR_FECF /*!< Framing Error Clear Flag */ +#define IRDA_CLEAR_NEF USART_ICR_NCF /*!< Noise detected Clear Flag */ +#define IRDA_CLEAR_OREF USART_ICR_ORECF /*!< OverRun Error Clear Flag */ +#define IRDA_CLEAR_IDLEF USART_ICR_IDLECF /*!< IDLE line detected Clear Flag */ +#define IRDA_CLEAR_TCF USART_ICR_TCCF /*!< Transmission Complete Clear Flag */ +/** + * @} + */ + +/** @defgroup IRDA_Interruption_Mask IRDA interruptions flags mask + * @{ + */ +#define IRDA_IT_MASK ((uint16_t)0x001FU) /*!< IRDA Interruptions flags mask */ +/** + * @} + */ + +/** + * @} + */ + + +/* Exported macros -----------------------------------------------------------*/ +/** @defgroup IRDA_Exported_Macros IRDA Exported Macros + * @{ + */ + +/** @brief Reset IRDA handle state. + * @param __HANDLE__: IRDA handle. + * @retval None + */ +#define __HAL_IRDA_RESET_HANDLE_STATE(__HANDLE__) do{ \ + (__HANDLE__)->gState = HAL_IRDA_STATE_RESET; \ + (__HANDLE__)->RxState = HAL_IRDA_STATE_RESET; \ + } while(0) + +/** @brief Flush the IRDA DR register. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_FLUSH_DRREGISTER(__HANDLE__) \ + do{ \ + SET_BIT((__HANDLE__)->Instance->RQR, IRDA_RXDATA_FLUSH_REQUEST); \ + SET_BIT((__HANDLE__)->Instance->RQR, IRDA_TXDATA_FLUSH_REQUEST); \ + } while(0) + +/** @brief Clear the specified IRDA pending flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __FLAG__: specifies the flag to check. + * This parameter can be any combination of the following values: + * @arg @ref IRDA_CLEAR_PEF + * @arg @ref IRDA_CLEAR_FEF + * @arg @ref IRDA_CLEAR_NEF + * @arg @ref IRDA_CLEAR_OREF + * @arg @ref IRDA_CLEAR_TCF + * @arg @ref IRDA_CLEAR_IDLEF + * @retval None + */ +#define __HAL_IRDA_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__)) + +/** @brief Clear the IRDA PE pending flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_FLAG((__HANDLE__), IRDA_CLEAR_PEF) + + +/** @brief Clear the IRDA FE pending flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_CLEAR_FEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_FLAG((__HANDLE__), IRDA_CLEAR_FEF) + +/** @brief Clear the IRDA NE pending flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_CLEAR_NEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_FLAG((__HANDLE__), IRDA_CLEAR_NEF) + +/** @brief Clear the IRDA ORE pending flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_CLEAR_OREFLAG(__HANDLE__) __HAL_IRDA_CLEAR_FLAG((__HANDLE__), IRDA_CLEAR_OREF) + +/** @brief Clear the IRDA IDLE pending flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_CLEAR_IDLEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_FLAG((__HANDLE__), IRDA_CLEAR_IDLEF) + +/** @brief Check whether the specified IRDA flag is set or not. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __FLAG__: specifies the flag to check. + * This parameter can be one of the following values: + * @arg @ref IRDA_FLAG_REACK Receive enable acknowledge flag + * @arg @ref IRDA_FLAG_TEACK Transmit enable acknowledge flag + * @arg @ref IRDA_FLAG_BUSY Busy flag + * @arg @ref IRDA_FLAG_ABRF Auto Baud rate detection flag + * @arg @ref IRDA_FLAG_ABRE Auto Baud rate detection error flag + * @arg @ref IRDA_FLAG_TXE Transmit data register empty flag + * @arg @ref IRDA_FLAG_TC Transmission Complete flag + * @arg @ref IRDA_FLAG_RXNE Receive data register not empty flag + * @arg @ref IRDA_FLAG_ORE OverRun Error flag + * @arg @ref IRDA_FLAG_NE Noise Error flag + * @arg @ref IRDA_FLAG_FE Framing Error flag + * @arg @ref IRDA_FLAG_PE Parity Error flag + * @retval The new state of __FLAG__ (TRUE or FALSE). + */ +#define __HAL_IRDA_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) + + +/** @brief Enable the specified IRDA interrupt. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __INTERRUPT__: specifies the IRDA interrupt source to enable. + * This parameter can be one of the following values: + * @arg @ref IRDA_IT_TXE Transmit Data Register empty interrupt + * @arg @ref IRDA_IT_TC Transmission complete interrupt + * @arg @ref IRDA_IT_RXNE Receive Data register not empty interrupt + * @arg @ref IRDA_IT_IDLE Idle line detection interrupt + * @arg @ref IRDA_IT_PE Parity Error interrupt + * @arg @ref IRDA_IT_ERR Error interrupt(Frame error, noise error, overrun error) + * @retval None + */ +#define __HAL_IRDA_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1U)? ((__HANDLE__)->Instance->CR1 |= (1U << ((__INTERRUPT__) & IRDA_IT_MASK))): \ + ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2U)? ((__HANDLE__)->Instance->CR2 |= (1U << ((__INTERRUPT__) & IRDA_IT_MASK))): \ + ((__HANDLE__)->Instance->CR3 |= (1U << ((__INTERRUPT__) & IRDA_IT_MASK)))) + +/** @brief Disable the specified IRDA interrupt. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __INTERRUPT__: specifies the IRDA interrupt source to disable. + * This parameter can be one of the following values: + * @arg @ref IRDA_IT_TXE Transmit Data Register empty interrupt + * @arg @ref IRDA_IT_TC Transmission complete interrupt + * @arg @ref IRDA_IT_RXNE Receive Data register not empty interrupt + * @arg @ref IRDA_IT_IDLE Idle line detection interrupt + * @arg @ref IRDA_IT_PE Parity Error interrupt + * @arg @ref IRDA_IT_ERR Error interrupt(Frame error, noise error, overrun error) + * @retval None + */ +#define __HAL_IRDA_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1U)? ((__HANDLE__)->Instance->CR1 &= ~ (1U << ((__INTERRUPT__) & IRDA_IT_MASK))): \ + ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2U)? ((__HANDLE__)->Instance->CR2 &= ~ (1U << ((__INTERRUPT__) & IRDA_IT_MASK))): \ + ((__HANDLE__)->Instance->CR3 &= ~ (1U << ((__INTERRUPT__) & IRDA_IT_MASK)))) + + +/** @brief Check whether the specified IRDA interrupt has occurred or not. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __IT__: specifies the IRDA interrupt source to check. + * This parameter can be one of the following values: + * @arg @ref IRDA_IT_TXE Transmit Data Register empty interrupt + * @arg @ref IRDA_IT_TC Transmission complete interrupt + * @arg @ref IRDA_IT_RXNE Receive Data register not empty interrupt + * @arg @ref IRDA_IT_IDLE Idle line detection interrupt + * @arg @ref IRDA_IT_ORE OverRun Error interrupt + * @arg @ref IRDA_IT_NE Noise Error interrupt + * @arg @ref IRDA_IT_FE Framing Error interrupt + * @arg @ref IRDA_IT_PE Parity Error interrupt + * @retval The new state of __IT__ (TRUE or FALSE). + */ +#define __HAL_IRDA_GET_IT(__HANDLE__, __IT__) ((__HANDLE__)->Instance->ISR & ((uint32_t)1U << ((__IT__)>> 0x08U))) + +/** @brief Check whether the specified IRDA interrupt source is enabled or not. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __IT__: specifies the IRDA interrupt source to check. + * This parameter can be one of the following values: + * @arg @ref IRDA_IT_TXE Transmit Data Register empty interrupt + * @arg @ref IRDA_IT_TC Transmission complete interrupt + * @arg @ref IRDA_IT_RXNE Receive Data register not empty interrupt + * @arg @ref IRDA_IT_IDLE Idle line detection interrupt + * @arg @ref IRDA_IT_ERR Framing, overrun or noise error interrupt + * @arg @ref IRDA_IT_PE Parity Error interrupt + * @retval The new state of __IT__ (TRUE or FALSE). + */ +#define __HAL_IRDA_GET_IT_SOURCE(__HANDLE__, __IT__) ((((((uint8_t)(__IT__)) >> 5U) == 1U)? (__HANDLE__)->Instance->CR1:(((((uint8_t)(__IT__)) >> 5U) == 2U)? \ + (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & ((uint32_t)1U << (((uint16_t)(__IT__)) & IRDA_IT_MASK))) + +/** @brief Clear the specified IRDA ISR flag, in setting the proper ICR register flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __IT_CLEAR__: specifies the interrupt clear register flag that needs to be set + * to clear the corresponding interrupt + * This parameter can be one of the following values: + * @arg @ref IRDA_CLEAR_PEF Parity Error Clear Flag + * @arg @ref IRDA_CLEAR_FEF Framing Error Clear Flag + * @arg @ref IRDA_CLEAR_NEF Noise detected Clear Flag + * @arg @ref IRDA_CLEAR_OREF OverRun Error Clear Flag + * @arg @ref IRDA_CLEAR_TCF Transmission Complete Clear Flag + * @retval None + */ +#define __HAL_IRDA_CLEAR_IT(__HANDLE__, __IT_CLEAR__) ((__HANDLE__)->Instance->ICR = (uint32_t)(__IT_CLEAR__)) + + +/** @brief Set a specific IRDA request flag. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __REQ__: specifies the request flag to set + * This parameter can be one of the following values: + * @arg @ref IRDA_AUTOBAUD_REQUEST Auto-Baud Rate Request + * @arg @ref IRDA_RXDATA_FLUSH_REQUEST Receive Data flush Request + * @arg @ref IRDA_TXDATA_FLUSH_REQUEST Transmit data flush Request + * + * @retval None + */ +#define __HAL_IRDA_SEND_REQ(__HANDLE__, __REQ__) ((__HANDLE__)->Instance->RQR |= (uint16_t)(__REQ__)) + +/** @brief Enable the IRDA one bit sample method. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) + +/** @brief Disable the IRDA one bit sample method. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint32_t)~((uint32_t)USART_CR3_ONEBIT)) + +/** @brief Enable UART/USART associated to IRDA Handle. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) + +/** @brief Disable UART/USART associated to IRDA Handle. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None + */ +#define __HAL_IRDA_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) + +/** + * @} + */ + +/* Private macros --------------------------------------------------------*/ +/** @defgroup IRDA_Private_Macros IRDA Private Macros + * @{ + */ + +/** @brief Compute the mask to apply to retrieve the received data + * according to the word length and to the parity bits activation. + * @param __HANDLE__: specifies the IRDA Handle. + * @retval None, the mask to apply to the associated UART RDR register is stored in (__HANDLE__)->Mask field. + */ +#define IRDA_MASK_COMPUTATION(__HANDLE__) \ + do { \ + if ((__HANDLE__)->Init.WordLength == IRDA_WORDLENGTH_9B) \ + { \ + if ((__HANDLE__)->Init.Parity == IRDA_PARITY_NONE) \ + { \ + (__HANDLE__)->Mask = 0x01FFU ; \ + } \ + else \ + { \ + (__HANDLE__)->Mask = 0x00FFU ; \ + } \ + } \ + else if ((__HANDLE__)->Init.WordLength == IRDA_WORDLENGTH_8B) \ + { \ + if ((__HANDLE__)->Init.Parity == IRDA_PARITY_NONE) \ + { \ + (__HANDLE__)->Mask = 0x00FFU ; \ + } \ + else \ + { \ + (__HANDLE__)->Mask = 0x007FU ; \ + } \ + } \ + else if ((__HANDLE__)->Init.WordLength == IRDA_WORDLENGTH_7B) \ + { \ + if ((__HANDLE__)->Init.Parity == IRDA_PARITY_NONE) \ + { \ + (__HANDLE__)->Mask = 0x007FU ; \ + } \ + else \ + { \ + (__HANDLE__)->Mask = 0x003FU ; \ + } \ + } \ +} while(0) + +/** @brief Ensure that IRDA Baud rate is less or equal to maximum value. + * @param __BAUDRATE__: specifies the IRDA Baudrate set by the user. + * @retval True or False + */ +#define IS_IRDA_BAUDRATE(__BAUDRATE__) ((__BAUDRATE__) < 115201U) + +/** @brief Ensure that IRDA prescaler value is strictly larger than 0. + * @param __PRESCALER__: specifies the IRDA prescaler value set by the user. + * @retval True or False + */ +#define IS_IRDA_PRESCALER(__PRESCALER__) ((__PRESCALER__) > 0U) + +/** + * @brief Ensure that IRDA frame length is valid. + * @param __LENGTH__: IRDA frame length. + * @retval SET (__LENGTH__ is valid) or RESET (__LENGTH__ is invalid) + */ +#define IS_IRDA_WORD_LENGTH(__LENGTH__) (((__LENGTH__) == IRDA_WORDLENGTH_7B) || \ + ((__LENGTH__) == IRDA_WORDLENGTH_8B) || \ + ((__LENGTH__) == IRDA_WORDLENGTH_9B)) + +/** + * @brief Ensure that IRDA frame parity is valid. + * @param __PARITY__: IRDA frame parity. + * @retval SET (__PARITY__ is valid) or RESET (__PARITY__ is invalid) + */ +#define IS_IRDA_PARITY(__PARITY__) (((__PARITY__) == IRDA_PARITY_NONE) || \ + ((__PARITY__) == IRDA_PARITY_EVEN) || \ + ((__PARITY__) == IRDA_PARITY_ODD)) + +/** + * @brief Ensure that IRDA communication mode is valid. + * @param __MODE__: IRDA communication mode. + * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid) + */ +#define IS_IRDA_TX_RX_MODE(__MODE__) ((((__MODE__) & (~((uint32_t)(IRDA_MODE_TX_RX)))) == (uint32_t)0x00) && ((__MODE__) != (uint32_t)0x00)) + +/** + * @brief Ensure that IRDA power mode is valid. + * @param __MODE__: IRDA power mode. + * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid) + */ +#define IS_IRDA_POWERMODE(__MODE__) (((__MODE__) == IRDA_POWERMODE_LOWPOWER) || \ + ((__MODE__) == IRDA_POWERMODE_NORMAL)) + +/** + * @brief Ensure that IRDA state is valid. + * @param __STATE__: IRDA state mode. + * @retval SET (__STATE__ is valid) or RESET (__STATE__ is invalid) + */ +#define IS_IRDA_STATE(__STATE__) (((__STATE__) == IRDA_STATE_DISABLE) || \ + ((__STATE__) == IRDA_STATE_ENABLE)) + +/** + * @brief Ensure that IRDA associated UART/USART mode is valid. + * @param __MODE__: IRDA associated UART/USART mode. + * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid) + */ +#define IS_IRDA_MODE(__MODE__) (((__MODE__) == IRDA_MODE_DISABLE) || \ + ((__MODE__) == IRDA_MODE_ENABLE)) + +/** + * @brief Ensure that IRDA sampling rate is valid. + * @param __ONEBIT__: IRDA sampling rate. + * @retval SET (__ONEBIT__ is valid) or RESET (__ONEBIT__ is invalid) + */ +#define IS_IRDA_ONE_BIT_SAMPLE(__ONEBIT__) (((__ONEBIT__) == IRDA_ONE_BIT_SAMPLE_DISABLE) || \ + ((__ONEBIT__) == IRDA_ONE_BIT_SAMPLE_ENABLE)) + +/** + * @brief Ensure that IRDA DMA TX mode is valid. + * @param __DMATX__: IRDA DMA TX mode. + * @retval SET (__DMATX__ is valid) or RESET (__DMATX__ is invalid) + */ +#define IS_IRDA_DMA_TX(__DMATX__) (((__DMATX__) == IRDA_DMA_TX_DISABLE) || \ + ((__DMATX__) == IRDA_DMA_TX_ENABLE)) + +/** + * @brief Ensure that IRDA DMA RX mode is valid. + * @param __DMARX__: IRDA DMA RX mode. + * @retval SET (__DMARX__ is valid) or RESET (__DMARX__ is invalid) + */ +#define IS_IRDA_DMA_RX(__DMARX__) (((__DMARX__) == IRDA_DMA_RX_DISABLE) || \ + ((__DMARX__) == IRDA_DMA_RX_ENABLE)) + +/** + * @brief Ensure that IRDA request is valid. + * @param __PARAM__: IRDA request. + * @retval SET (__PARAM__ is valid) or RESET (__PARAM__ is invalid) + */ +#define IS_IRDA_REQUEST_PARAMETER(__PARAM__) (((__PARAM__) == IRDA_AUTOBAUD_REQUEST) || \ + ((__PARAM__) == IRDA_RXDATA_FLUSH_REQUEST) || \ + ((__PARAM__) == IRDA_TXDATA_FLUSH_REQUEST)) +/** + * @} + */ + +/* Include IRDA HAL Extended module */ +#include "stm32l0xx_hal_irda_ex.h" + +/* Exported functions --------------------------------------------------------*/ +/** @addtogroup IRDA_Exported_Functions IRDA Exported Functions + * @{ + */ + +/** @addtogroup IRDA_Exported_Functions_Group1 Initialization and de-initialization functions + * @{ + */ + +/* Initialization and de-initialization functions ****************************/ +HAL_StatusTypeDef HAL_IRDA_Init(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_DeInit(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_MspInit(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_MspDeInit(IRDA_HandleTypeDef *hirda); + +/** + * @} + */ + +/** @addtogroup IRDA_Exported_Functions_Group2 IO operation functions + * @{ + */ + +/* IO operation functions *****************************************************/ +HAL_StatusTypeDef HAL_IRDA_Transmit(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_IRDA_Receive(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_IRDA_Transmit_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_IRDA_Receive_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_IRDA_Transmit_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_IRDA_Receive_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_IRDA_DMAPause(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_DMAResume(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_DMAStop(IRDA_HandleTypeDef *hirda); +/* Transfer Abort functions */ +HAL_StatusTypeDef HAL_IRDA_Abort(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_AbortTransmit(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_AbortReceive(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_Abort_IT(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_AbortTransmit_IT(IRDA_HandleTypeDef *hirda); +HAL_StatusTypeDef HAL_IRDA_AbortReceive_IT(IRDA_HandleTypeDef *hirda); + +void HAL_IRDA_IRQHandler(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_TxCpltCallback(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_RxCpltCallback(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_TxHalfCpltCallback(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_RxHalfCpltCallback(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_ErrorCallback(IRDA_HandleTypeDef *hirda); +void HAL_IRDA_AbortCpltCallback (IRDA_HandleTypeDef *hirda); +void HAL_IRDA_AbortTransmitCpltCallback (IRDA_HandleTypeDef *hirda); +void HAL_IRDA_AbortReceiveCpltCallback (IRDA_HandleTypeDef *hirda); + +/** + * @} + */ + +/* Peripheral Control functions ************************************************/ + +/** @addtogroup IRDA_Exported_Functions_Group4 Peripheral State and Error functions + * @{ + */ + +/* Peripheral State and Error functions ***************************************/ +HAL_IRDA_StateTypeDef HAL_IRDA_GetState(IRDA_HandleTypeDef *hirda); +uint32_t HAL_IRDA_GetError(IRDA_HandleTypeDef *hirda); + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_IRDA_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h new file mode 100644 index 0000000..34b396b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h @@ -0,0 +1,211 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_irda_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of IRDA HAL Extended module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_IRDA_EX_H +#define __STM32L0xx_HAL_IRDA_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup IRDAEx + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/* Exported constants --------------------------------------------------------*/ +/* Exported macros -----------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ + +/* Private macros ------------------------------------------------------------*/ + +/** @defgroup IRDAEx_Private_Macros IRDAEx Private Macros + * @{ + */ + +/** @brief Report the IRDA clock source. + * @param __HANDLE__: specifies the IRDA Handle. + * @param __CLOCKSOURCE__: output variable. + * @retval IRDA clocking source, written in __CLOCKSOURCE__. + */ +#if defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) +#define IRDA_GETCLOCKSOURCE(__HANDLE__,__CLOCKSOURCE__) \ + do { \ + if((__HANDLE__)->Instance == USART2) \ + { \ + switch(__HAL_RCC_GET_USART2_SOURCE()) \ + { \ + case RCC_USART2CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_USART2CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART2CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART2CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == LPUART1) \ + { \ + switch(__HAL_RCC_GET_LPUART1_SOURCE()) \ + { \ + case RCC_LPUART1CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_LPUART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_HSI; \ + break; \ + case RCC_LPUART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_LPUART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + } while(0) + +#else /* (STM32L031xx) || defined (STM32L041xx) || (STM32L011xx) || defined (STM32L021xx) */ + +#define IRDA_GETCLOCKSOURCE(__HANDLE__,__CLOCKSOURCE__) \ + do { \ + if((__HANDLE__)->Instance == USART1) \ + { \ + switch(__HAL_RCC_GET_USART1_SOURCE()) \ + { \ + case RCC_USART1CLKSOURCE_PCLK2: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_PCLK2; \ + break; \ + case RCC_USART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == USART2) \ + { \ + switch(__HAL_RCC_GET_USART2_SOURCE()) \ + { \ + case RCC_USART2CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_USART2CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART2CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART2CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == LPUART1) \ + { \ + switch(__HAL_RCC_GET_LPUART1_SOURCE()) \ + { \ + case RCC_LPUART1CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_LPUART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_HSI; \ + break; \ + case RCC_LPUART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_LPUART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = IRDA_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + } while(0) +#endif /* (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || (STM32L021xx) */ + +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_IRDA_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h new file mode 100644 index 0000000..95abde8 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h @@ -0,0 +1,465 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_pwr.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of PWR HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_PWR_H +#define __STM32L0xx_HAL_PWR_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup PWR PWR + * @{ + */ + +/** @defgroup PWR_Exported_Types PWR Exported Types + * @{ + */ + +/** + * @brief PWR PVD configuration structure definition + */ +typedef struct +{ + uint32_t PVDLevel; /*!< PVDLevel: Specifies the PVD detection level. + This parameter can be a value of @ref PWR_PVD_detection_level */ + + uint32_t Mode; /*!< Mode: Specifies the operating mode for the selected pins. + This parameter can be a value of @ref PWR_PVD_Mode */ +}PWR_PVDTypeDef; + +/** + * @} + */ + +/** @addtogroup PWR_Private + * @{ + */ + +#define PWR_EXTI_LINE_PVD EXTI_FTSR_TR16 /*!< External interrupt line 16 Connected to the PVD EXTI Line */ + +/** + * @} + */ + +/** @defgroup PWR_Exported_Constants PWR Exported Constants + * @{ + */ + +/** @defgroup PWR_register_alias_address PWR Register alias address + * @{ + */ +#define PWR_WAKEUP_PIN1 PWR_CSR_EWUP1 +#define PWR_WAKEUP_PIN2 PWR_CSR_EWUP2 +#if defined (STM32L011xx) || defined (STM32L021xx) || defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L071xx) || \ + defined (STM32L072xx) || defined (STM32L073xx) || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) +#define PWR_WAKEUP_PIN3 PWR_CSR_EWUP3 +#endif +/** + * @} + */ + +/** @defgroup PWR_PVD_detection_level PVD detection level + * @{ + */ +#define PWR_PVDLEVEL_0 PWR_CR_PLS_LEV0 +#define PWR_PVDLEVEL_1 PWR_CR_PLS_LEV1 +#define PWR_PVDLEVEL_2 PWR_CR_PLS_LEV2 +#define PWR_PVDLEVEL_3 PWR_CR_PLS_LEV3 +#define PWR_PVDLEVEL_4 PWR_CR_PLS_LEV4 +#define PWR_PVDLEVEL_5 PWR_CR_PLS_LEV5 +#define PWR_PVDLEVEL_6 PWR_CR_PLS_LEV6 +#define PWR_PVDLEVEL_7 PWR_CR_PLS_LEV7 /* External input analog voltage + (Compare internally to VREFINT) */ +/** + * @} + */ + +/** @defgroup PWR_PVD_Mode PWR PVD Mode + * @{ + */ +#define PWR_PVD_MODE_NORMAL ((uint32_t)0x00000000U) /*!< basic mode is used */ +#define PWR_PVD_MODE_IT_RISING ((uint32_t)0x00010001U) /*!< External Interrupt Mode with Rising edge trigger detection */ +#define PWR_PVD_MODE_IT_FALLING ((uint32_t)0x00010002U) /*!< External Interrupt Mode with Falling edge trigger detection */ +#define PWR_PVD_MODE_IT_RISING_FALLING ((uint32_t)0x00010003U) /*!< External Interrupt Mode with Rising/Falling edge trigger detection */ +#define PWR_PVD_MODE_EVENT_RISING ((uint32_t)0x00020001U) /*!< Event Mode with Rising edge trigger detection */ +#define PWR_PVD_MODE_EVENT_FALLING ((uint32_t)0x00020002U) /*!< Event Mode with Falling edge trigger detection */ +#define PWR_PVD_MODE_EVENT_RISING_FALLING ((uint32_t)0x00020003U) /*!< Event Mode with Rising/Falling edge trigger detection */ + +/** + * @} + */ + +/** @defgroup PWR_Regulator_state_in_SLEEP_STOP_mode PWR Regulator state in SLEEP/STOP mode + * @{ + */ +#define PWR_MAINREGULATOR_ON ((uint32_t)0x00000000U) +#define PWR_LOWPOWERREGULATOR_ON PWR_CR_LPSDSR + +/** + * @} + */ + +/** @defgroup PWR_SLEEP_mode_entry PWR SLEEP mode entry + * @{ + */ +#define PWR_SLEEPENTRY_WFI ((uint8_t)0x01U) +#define PWR_SLEEPENTRY_WFE ((uint8_t)0x02U) +/** + * @} + */ + +/** @defgroup PWR_STOP_mode_entry PWR STOP mode entry + * @{ + */ +#define PWR_STOPENTRY_WFI ((uint8_t)0x01U) +#define PWR_STOPENTRY_WFE ((uint8_t)0x02U) +/** + * @} + */ + +/** @defgroup PWR_Regulator_Voltage_Scale PWR Regulator Voltage Scale + * @{ + */ + +#define PWR_REGULATOR_VOLTAGE_SCALE1 PWR_CR_VOS_0 +#define PWR_REGULATOR_VOLTAGE_SCALE2 PWR_CR_VOS_1 +#define PWR_REGULATOR_VOLTAGE_SCALE3 PWR_CR_VOS + +#define IS_PWR_VOLTAGE_SCALING_RANGE(RANGE) (((RANGE) == PWR_REGULATOR_VOLTAGE_SCALE1) || \ + ((RANGE) == PWR_REGULATOR_VOLTAGE_SCALE2) || \ + ((RANGE) == PWR_REGULATOR_VOLTAGE_SCALE3)) +/** + * @} + */ + +/** @defgroup PWR_Flag PWR Flag + * @{ + */ +#define PWR_FLAG_WU PWR_CSR_WUF +#define PWR_FLAG_SB PWR_CSR_SBF +#define PWR_FLAG_PVDO PWR_CSR_PVDO +#define PWR_FLAG_VREFINTRDY PWR_CSR_VREFINTRDYF +#define PWR_FLAG_VOS PWR_CSR_VOSF +#define PWR_FLAG_REGLP PWR_CSR_REGLPF + + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup PWR_Exported_Macro PWR Exported Macros + * @{ + */ +/** @brief macros configure the main internal regulator output voltage. + * When exiting Low Power Run Mode or during dynamic voltage scaling configuration, + * the reference manual recommends to poll PWR_FLAG_REGLP bit to wait for the regulator + * to reach main mode (resp. to get stabilized) for a transition from 0 to 1. + * Only then the clock can be increased. + * + * @param __REGULATOR__: specifies the regulator output voltage to achieve + * a tradeoff between performance and power consumption when the device does + * not operate at the maximum frequency (refer to the datasheets for more details). + * This parameter can be one of the following values: + * @arg PWR_REGULATOR_VOLTAGE_SCALE1: Regulator voltage output Scale 1 mode, + * System frequency up to 32 MHz. + * @arg PWR_REGULATOR_VOLTAGE_SCALE2: Regulator voltage output Scale 2 mode, + * System frequency up to 16 MHz. + * @arg PWR_REGULATOR_VOLTAGE_SCALE3: Regulator voltage output Scale 3 mode, + * System frequency up to 4.2 MHz + * @retval None + */ +#define __HAL_PWR_VOLTAGESCALING_CONFIG(__REGULATOR__) (MODIFY_REG(PWR->CR, PWR_CR_VOS, (__REGULATOR__))) + +/** @brief Check PWR flag is set or not. + * @param __FLAG__: specifies the flag to check. + * This parameter can be one of the following values: + * @arg PWR_FLAG_WU: Wake Up flag. This flag indicates that a wakeup event + * was received from the WKUP pin or from the RTC alarm (Alarm B), + * RTC Tamper event, RTC TimeStamp event or RTC Wakeup. + * An additional wakeup event is detected if the WKUP pin is enabled + * (by setting the EWUP bit) when the WKUP pin level is already high. + * @arg PWR_FLAG_SB: StandBy flag. This flag indicates that the system was + * resumed from StandBy mode. + * @arg PWR_FLAG_PVDO: PVD Output. This flag is valid only if PVD is enabled + * by the HAL_PWR_EnablePVD() function. The PVD is stopped by Standby mode. + * For this reason, this bit is equal to 0 after Standby or reset + * until the PVDE bit is set. + * @arg PWR_FLAG_VREFINTRDY: Internal voltage reference (VREFINT) ready flag. + * This bit indicates the state of the internal voltage reference, VREFINT. + * @arg PWR_FLAG_VOS: Voltage Scaling select flag. A delay is required for + * the internal regulator to be ready after the voltage range is changed. + * The VOSF bit indicates that the regulator has reached the voltage level + * defined with bits VOS of PWR_CR register. + * @arg PWR_FLAG_REGLP: Regulator LP flag. When the MCU exits from Low power run + * mode, this bit stays at 1 until the regulator is ready in main mode. + * A polling on this bit is recommended to wait for the regulator main mode. + * This bit is reset by hardware when the regulator is ready. + * @retval The new state of __FLAG__ (TRUE or FALSE). + */ +#define __HAL_PWR_GET_FLAG(__FLAG__) ((PWR->CSR & (__FLAG__)) == (__FLAG__)) + +/** @brief Clear the PWR pending flags. + * @param __FLAG__: specifies the flag to clear. + * This parameter can be one of the following values: + * @arg PWR_FLAG_WU: Wake Up flag + * @arg PWR_FLAG_SB: StandBy flag + */ +#define __HAL_PWR_CLEAR_FLAG(__FLAG__) SET_BIT(PWR->CR, (__FLAG__) << 2U) + +/** + * @brief Enable interrupt on PVD Exti Line 16. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_ENABLE_IT() SET_BIT(EXTI->IMR, PWR_EXTI_LINE_PVD) + +/** + * @brief Disable interrupt on PVD Exti Line 16. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_DISABLE_IT() CLEAR_BIT(EXTI->IMR, PWR_EXTI_LINE_PVD) + +/** + * @brief Enable event on PVD Exti Line 16. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_ENABLE_EVENT() SET_BIT(EXTI->EMR, PWR_EXTI_LINE_PVD) + +/** + * @brief Disable event on PVD Exti Line 16. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_DISABLE_EVENT() CLEAR_BIT(EXTI->EMR, PWR_EXTI_LINE_PVD) + + +/** + * @brief PVD EXTI line configuration: set falling edge trigger. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE() SET_BIT(EXTI->FTSR, PWR_EXTI_LINE_PVD) + + +/** + * @brief Disable the PVD Extended Interrupt Falling Trigger. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE() CLEAR_BIT(EXTI->FTSR, PWR_EXTI_LINE_PVD) + + +/** + * @brief PVD EXTI line configuration: set rising edge trigger. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE() SET_BIT(EXTI->RTSR, PWR_EXTI_LINE_PVD) + +/** + * @brief Disable the PVD Extended Interrupt Rising Trigger. + * This parameter can be: + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE() CLEAR_BIT(EXTI->RTSR, PWR_EXTI_LINE_PVD) + +/** + * @brief PVD EXTI line configuration: set rising & falling edge trigger. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_ENABLE_RISING_FALLING_EDGE() do { __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE();__HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE(); } while(0); + +/** + * @brief Disable the PVD Extended Interrupt Rising & Falling Trigger. + * This parameter can be: + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_DISABLE_RISING_FALLING_EDGE() do { __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE();__HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE(); } while(0); + + + +/** + * @brief Check whether the specified PVD EXTI interrupt flag is set or not. + * @retval EXTI PVD Line Status. + */ +#define __HAL_PWR_PVD_EXTI_GET_FLAG() (EXTI->PR & (PWR_EXTI_LINE_PVD)) + +/** + * @brief Clear the PVD EXTI flag. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_CLEAR_FLAG() (EXTI->PR = (PWR_EXTI_LINE_PVD)) + +/** + * @brief Generate a Software interrupt on selected EXTI line. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_GENERATE_SWIT() SET_BIT(EXTI->SWIER, PWR_EXTI_LINE_PVD) + +/** + * @brief Generate a Software interrupt on selected EXTI line. + * @retval None. + */ +#define __HAL_PWR_PVD_EXTI_GENERATE_SWIT() SET_BIT(EXTI->SWIER, PWR_EXTI_LINE_PVD) + +/** + * @} + */ + +/** @addtogroup PWR_Private + * @{ + */ +#define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLEVEL_0) || ((LEVEL) == PWR_PVDLEVEL_1)|| \ + ((LEVEL) == PWR_PVDLEVEL_2) || ((LEVEL) == PWR_PVDLEVEL_3)|| \ + ((LEVEL) == PWR_PVDLEVEL_4) || ((LEVEL) == PWR_PVDLEVEL_5)|| \ + ((LEVEL) == PWR_PVDLEVEL_6) || ((LEVEL) == PWR_PVDLEVEL_7)) + +#define IS_PWR_PVD_MODE(MODE) (((MODE) == PWR_PVD_MODE_IT_RISING)|| ((MODE) == PWR_PVD_MODE_IT_FALLING) || \ + ((MODE) == PWR_PVD_MODE_IT_RISING_FALLING) || ((MODE) == PWR_PVD_MODE_EVENT_RISING) || \ + ((MODE) == PWR_PVD_MODE_EVENT_FALLING) || ((MODE) == PWR_PVD_MODE_EVENT_RISING_FALLING) || \ + ((MODE) == PWR_PVD_MODE_NORMAL)) + +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) +#define IS_PWR_WAKEUP_PIN(PIN) (((PIN) == PWR_WAKEUP_PIN1) || \ + ((PIN) == PWR_WAKEUP_PIN2) || \ + ((PIN) == PWR_WAKEUP_PIN3)) +#elif defined (STM32L051xx) || defined (STM32L052xx) || defined (STM32L053xx) || defined (STM32L061xx) || defined (STM32L062xx) || defined (STM32L063xx) +#define IS_PWR_WAKEUP_PIN(PIN) (((PIN) == PWR_WAKEUP_PIN1) || \ + ((PIN) == PWR_WAKEUP_PIN2)) +#elif defined (STM32L031xx) || defined (STM32L041xx) +#define IS_PWR_WAKEUP_PIN(PIN) (((PIN) == PWR_WAKEUP_PIN1) || \ + ((PIN) == PWR_WAKEUP_PIN2)) +#elif defined (STM32L011xx) || defined (STM32L021xx) +#define IS_PWR_WAKEUP_PIN(PIN) (((PIN) == PWR_WAKEUP_PIN1) || \ + ((PIN) == PWR_WAKEUP_PIN3)) +#endif + +#define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_MAINREGULATOR_ON) || \ + ((REGULATOR) == PWR_LOWPOWERREGULATOR_ON)) +#define IS_PWR_SLEEP_ENTRY(ENTRY) (((ENTRY) == PWR_SLEEPENTRY_WFI) || ((ENTRY) == PWR_SLEEPENTRY_WFE)) + +#define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPENTRY_WFI) || ((ENTRY) == PWR_STOPENTRY_WFE)) + +/** + * @} + */ + +/* Include PWR HAL Extension module */ +#include "stm32l0xx_hal_pwr_ex.h" + +/** @defgroup PWR_Exported_Functions PWR Exported Functions + * @{ + */ + +/** @defgroup PWR_Exported_Functions_Group1 Initialization and de-initialization functions + * @{ + */ +void HAL_PWR_DeInit(void); +void HAL_PWR_EnableBkUpAccess(void); +void HAL_PWR_DisableBkUpAccess(void); +/** + * @} + */ + +/** @defgroup PWR_Exported_Functions_Group2 Low Power modes configuration functions + * @{ + */ + +/* PVD control functions ************************************************/ +void HAL_PWR_ConfigPVD(PWR_PVDTypeDef *sConfigPVD); +void HAL_PWR_EnablePVD(void); +void HAL_PWR_DisablePVD(void); +void HAL_PWR_PVD_IRQHandler(void); +void HAL_PWR_PVDCallback(void); + +/* WakeUp pins configuration functions ****************************************/ +void HAL_PWR_EnableWakeUpPin(uint32_t WakeUpPinx); +void HAL_PWR_DisableWakeUpPin(uint32_t WakeUpPinx); + +/* Low Power modes configuration functions ************************************/ +void HAL_PWR_EnterSTOPMode(uint32_t Regulator, uint8_t STOPEntry); +void HAL_PWR_EnterSLEEPMode(uint32_t Regulator, uint8_t SLEEPEntry); +void HAL_PWR_EnterSTANDBYMode(void); + +void HAL_PWR_EnableSleepOnExit(void); +void HAL_PWR_DisableSleepOnExit(void); +void HAL_PWR_EnableSEVOnPend(void); +void HAL_PWR_DisableSEVOnPend(void); + +/** + * @} + */ + +/** + * @} + */ + +/* Define the private group ***********************************/ +/**************************************************************/ +/** @defgroup PWR_Private PWR Private + * @{ + */ +/** + * @} + */ +/**************************************************************/ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + + +#endif /* __STM32L0xx_HAL_PWR_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h new file mode 100644 index 0000000..e0e3027 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h @@ -0,0 +1,117 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_pwr_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of PWR HAL Extension module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_PWR_EX_H +#define __STM32L0xx_HAL_PWR_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup PWREx PWREx + * @{ + */ + +/** @defgroup PWREx_Exported_Macros PWREx Exported Macros + * @{ + */ + +/** @brief Macros to enable the Deep-sleep mode with Flash memory kept off. + * @note When entering low power mode (stop or standby only), if DS_EE_KOFF and RUN_PD of + * FLASH_ACR register are both set , the Flash memory will not be woken up + * when exiting from deep-sleep mode. + */ +#define __HAL_PWR_FLASHWAKEUP_ENABLE() CLEAR_BIT(PWR->CR, PWR_CR_DSEEKOFF) + +/** @brief Macros to disable the Deep-sleep mode with Flash memory kept off. + * @note When entering low power mode (stop or standby only), if DS_EE_KOFF and RUN_PD of + * FLASH_ACR register are both set , the Flash memory will not be woken up + * when exiting from deep-sleep mode. + */ +#define __HAL_PWR_FLASHWAKEUP_DISABLE() SET_BIT(PWR->CR, PWR_CR_DSEEKOFF) +/** + * @} + */ + +/** @defgroup PWREx_Exported_Functions PWREx Exported Functions + * @{ + */ +uint32_t HAL_PWREx_GetVoltageRange(void); +void HAL_PWREx_EnableFastWakeUp(void); +void HAL_PWREx_DisableFastWakeUp(void); +void HAL_PWREx_EnableUltraLowPower(void); +void HAL_PWREx_DisableUltraLowPower(void); +void HAL_PWREx_EnableLowPowerRunMode(void); +HAL_StatusTypeDef HAL_PWREx_DisableLowPowerRunMode(void); +/** + * @} + */ + +/* Define the private group ***********************************/ +/**************************************************************/ +/** @defgroup PWREx_Private PWREx Private + * @{ + */ +/** + * @} + */ +/**************************************************************/ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_PWR_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h new file mode 100644 index 0000000..5b0b9c2 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h @@ -0,0 +1,1756 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rcc.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of RCC HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_RCC_H +#define __STM32L0xx_HAL_RCC_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup RCC + * @{ + */ + +/** @addtogroup RCC_Private_Constants + * @{ + */ + +/** @defgroup RCC_Timeout RCC Timeout + * @{ + */ + +/* Disable Backup domain write protection state change timeout */ +#define RCC_DBP_TIMEOUT_VALUE (100U) /* 100 ms */ +/* LSE state change timeout */ +#define RCC_LSE_TIMEOUT_VALUE LSE_STARTUP_TIMEOUT +#define CLOCKSWITCH_TIMEOUT_VALUE (5000U) /* 5 s */ +#define HSE_TIMEOUT_VALUE HSE_STARTUP_TIMEOUT +#define MSI_TIMEOUT_VALUE (2U) /* 2 ms (minimum Tick + 1) */ +#define HSI_TIMEOUT_VALUE (2U) /* 2 ms (minimum Tick + 1) */ +#define HSI48_TIMEOUT_VALUE (2U) /* 2 ms (minimum Tick + 1) */ +#define LSI_TIMEOUT_VALUE (2U) /* 2 ms (minimum Tick + 1) */ +#define PLL_TIMEOUT_VALUE (2U) /* 2 ms (minimum Tick + 1) */ +#if defined(RCC_HSI48_SUPPORT) +#define HSI48_TIMEOUT_VALUE (2U) /* 2 ms (minimum Tick + 1) */ +#endif /* RCC_HSI48_SUPPORT */ +/** + * @} + */ + + +/** @defgroup RCC_BitAddress_AliasRegion BitAddress AliasRegion + * @brief RCC registers bit address in the alias region + * @{ + */ +#define RCC_OFFSET (RCC_BASE - PERIPH_BASE) +/* --- CR Register ---*/ +/* Alias word address of HSION bit */ +#define RCC_CR_OFFSET (RCC_OFFSET + 0x00U) +/* --- CFGR Register ---*/ +/* Alias word address of I2SSRC bit */ +#define RCC_CFGR_OFFSET (RCC_OFFSET + 0x08U) +/* --- CSR Register ---*/ +#define RCC_CSR_OFFSET (RCC_OFFSET + 0x74U) + +/* CR register byte 3 (Bits[23:16]) base address */ +#define RCC_CR_BYTE2_ADDRESS (0x40023802U) + +/* CIER register byte 0 (Bits[0:8]) base address */ +#define CIER_BYTE0_ADDRESS ((uint32_t)(RCC_BASE + 0x10U + 0x00U)) +/** + * @} + */ + + +/* Defines used for Flags */ +#define CR_REG_INDEX ((uint8_t)1) +#define CSR_REG_INDEX ((uint8_t)2) +#define CRRCR_REG_INDEX ((uint8_t)3) + +#define RCC_FLAG_MASK ((uint8_t)0x1F) + +/** + * @} + */ + +/** @addtogroup RCC_Private_Macros + * @{ + */ +#if defined(RCC_HSI48_SUPPORT) +#define IS_RCC_OSCILLATORTYPE(__OSCILLATOR__) (((__OSCILLATOR__) == RCC_OSCILLATORTYPE_NONE) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_HSI48) == RCC_OSCILLATORTYPE_HSI48) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_MSI) == RCC_OSCILLATORTYPE_MSI)) + +#define IS_RCC_HSI48(__HSI48__) (((__HSI48__) == RCC_HSI48_OFF) || ((__HSI48__) == RCC_HSI48_ON)) +#else +#define IS_RCC_OSCILLATORTYPE(__OSCILLATOR__) (((__OSCILLATOR__) == RCC_OSCILLATORTYPE_NONE) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) || \ + (((__OSCILLATOR__) & RCC_OSCILLATORTYPE_MSI) == RCC_OSCILLATORTYPE_MSI)) +#endif /* RCC_HSI48_SUPPORT */ +#define IS_RCC_PLLSOURCE(__SOURCE__) (((__SOURCE__) == RCC_PLLSOURCE_HSI) || \ + ((__SOURCE__) == RCC_PLLSOURCE_HSE)) +#define IS_RCC_HSE(__HSE__) (((__HSE__) == RCC_HSE_OFF) || ((__HSE__) == RCC_HSE_ON) || \ + ((__HSE__) == RCC_HSE_BYPASS)) +#define IS_RCC_LSE(__LSE__) (((__LSE__) == RCC_LSE_OFF) || ((__LSE__) == RCC_LSE_ON) || \ + ((__LSE__) == RCC_LSE_BYPASS)) +#if defined(RCC_CR_HSIOUTEN) +#define IS_RCC_HSI(__HSI__) (((__HSI__) == RCC_HSI_OFF) || ((__HSI__) == RCC_HSI_ON) || \ + ((__HSI__) == RCC_HSI_DIV4) || ((__HSI__) == RCC_HSI_OUTEN )) +#else +#define IS_RCC_HSI(__HSI__) (((__HSI__) == RCC_HSI_OFF) || ((__HSI__) == RCC_HSI_ON) || \ + ((__HSI__) == RCC_HSI_DIV4)) +#endif /* RCC_CR_HSIOUTEN */ +#define IS_RCC_CALIBRATION_VALUE(__VALUE__) ((__VALUE__) <= 0x1F) +#define IS_RCC_MSICALIBRATION_VALUE(__VALUE__) ((__VALUE__) <= 0xFF) +#define IS_RCC_MSI_CLOCK_RANGE(__RANGE__) (((__RANGE__) == RCC_MSIRANGE_0) || \ + ((__RANGE__) == RCC_MSIRANGE_1) || \ + ((__RANGE__) == RCC_MSIRANGE_2) || \ + ((__RANGE__) == RCC_MSIRANGE_3) || \ + ((__RANGE__) == RCC_MSIRANGE_4) || \ + ((__RANGE__) == RCC_MSIRANGE_5) || \ + ((__RANGE__) == RCC_MSIRANGE_6)) +#define IS_RCC_LSI(__LSI__) (((__LSI__) == RCC_LSI_OFF) || ((__LSI__) == RCC_LSI_ON)) +#define IS_RCC_MSI(__MSI__) (((__MSI__) == RCC_MSI_OFF) || ((__MSI__) == RCC_MSI_ON)) + +#define IS_RCC_PLL(__PLL__) (((__PLL__) == RCC_PLL_NONE) || ((__PLL__) == RCC_PLL_OFF) || \ + ((__PLL__) == RCC_PLL_ON)) +#define IS_RCC_PLL_DIV(__DIV__) (((__DIV__) == RCC_PLL_DIV2) || \ + ((__DIV__) == RCC_PLL_DIV3) || ((__DIV__) == RCC_PLL_DIV4)) + +#define IS_RCC_PLL_MUL(__MUL__) (((__MUL__) == RCC_PLL_MUL3) || ((__MUL__) == RCC_PLL_MUL4) || \ + ((__MUL__) == RCC_PLL_MUL6) || ((__MUL__) == RCC_PLL_MUL8) || \ + ((__MUL__) == RCC_PLL_MUL12) || ((__MUL__) == RCC_PLL_MUL16) || \ + ((__MUL__) == RCC_PLL_MUL24) || ((__MUL__) == RCC_PLL_MUL32) || \ + ((__MUL__) == RCC_PLL_MUL48)) +#define IS_RCC_CLOCKTYPE(CLK) ((((CLK) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) || \ + (((CLK) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) || \ + (((CLK) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) || \ + (((CLK) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2)) +#define IS_RCC_SYSCLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_SYSCLKSOURCE_MSI) || \ + ((__SOURCE__) == RCC_SYSCLKSOURCE_HSI) || \ + ((__SOURCE__) == RCC_SYSCLKSOURCE_HSE) || \ + ((__SOURCE__) == RCC_SYSCLKSOURCE_PLLCLK)) +#define IS_RCC_SYSCLKSOURCE_STATUS(__SOURCE__) (((__SOURCE__) == RCC_SYSCLKSOURCE_STATUS_MSI) || \ + ((__SOURCE__) == RCC_SYSCLKSOURCE_STATUS_HSI) || \ + ((__SOURCE__) == RCC_SYSCLKSOURCE_STATUS_HSE) || \ + ((__SOURCE__) == RCC_SYSCLKSOURCE_STATUS_PLLCLK)) +#define IS_RCC_HCLK(__HCLK__) (((__HCLK__) == RCC_SYSCLK_DIV1) || ((__HCLK__) == RCC_SYSCLK_DIV2) || \ + ((__HCLK__) == RCC_SYSCLK_DIV4) || ((__HCLK__) == RCC_SYSCLK_DIV8) || \ + ((__HCLK__) == RCC_SYSCLK_DIV16) || ((__HCLK__) == RCC_SYSCLK_DIV64) || \ + ((__HCLK__) == RCC_SYSCLK_DIV128) || ((__HCLK__) == RCC_SYSCLK_DIV256) || \ + ((__HCLK__) == RCC_SYSCLK_DIV512)) +#define IS_RCC_PCLK(__PCLK__) (((__PCLK__) == RCC_HCLK_DIV1) || ((__PCLK__) == RCC_HCLK_DIV2) || \ + ((__PCLK__) == RCC_HCLK_DIV4) || ((__PCLK__) == RCC_HCLK_DIV8) || \ + ((__PCLK__) == RCC_HCLK_DIV16)) +#if defined(STM32L031xx) || defined(STM32L041xx) || defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) || defined(STM32L071xx) || defined(STM32L081xx) +#define IS_RCC_MCO(__MCO__) (((__MCO__) == RCC_MCO1) || ((__MCO__) == RCC_MCO2) || ((__MCO__) == RCC_MCO3)) +#else +#define IS_RCC_MCO(__MCO__) (((__MCO__) == RCC_MCO1) || ((__MCO__) == RCC_MCO2)) + +#endif +#define IS_RCC_MCODIV(__DIV__) (((__DIV__) == RCC_MCODIV_1) || ((__DIV__) == RCC_MCODIV_2) || \ + ((__DIV__) == RCC_MCODIV_4) || ((__DIV__) == RCC_MCODIV_8) || \ + ((__DIV__) == RCC_MCODIV_16)) +#if defined(RCC_CFGR_MCOSEL_HSI48) +#define IS_RCC_MCO1SOURCE(__SOURCE__) (((__SOURCE__) == RCC_MCO1SOURCE_NOCLOCK) || ((__SOURCE__) == RCC_MCO1SOURCE_SYSCLK) || \ + ((__SOURCE__) == RCC_MCO1SOURCE_HSI) || ((__SOURCE__) == RCC_MCO1SOURCE_MSI) || \ + ((__SOURCE__) == RCC_MCO1SOURCE_HSE) || ((__SOURCE__) == RCC_MCO1SOURCE_PLLCLK) || \ + ((__SOURCE__) == RCC_MCO1SOURCE_LSI) || ((__SOURCE__) == RCC_MCO1SOURCE_LSE) || \ + ((__SOURCE__) == RCC_MCO1SOURCE_HSI48)) +#else +#define IS_RCC_MCO1SOURCE(__SOURCE__) (((__SOURCE__) == RCC_MCO1SOURCE_NOCLOCK) || ((__SOURCE__) == RCC_MCO1SOURCE_SYSCLK) || \ + ((__SOURCE__) == RCC_MCO1SOURCE_HSI) || ((__SOURCE__) == RCC_MCO1SOURCE_MSI) || \ + ((__SOURCE__) == RCC_MCO1SOURCE_HSE) || ((__SOURCE__) == RCC_MCO1SOURCE_PLLCLK) || \ + ((__SOURCE__) == RCC_MCO1SOURCE_LSI) || ((__SOURCE__) == RCC_MCO1SOURCE_LSE)) +#endif /* RCC_CFGR_MCOSEL_HSI48 */ +#define IS_RCC_RTCCLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_RTCCLKSOURCE_NO_CLK) || \ + ((__SOURCE__) == RCC_RTCCLKSOURCE_LSE) || \ + ((__SOURCE__) == RCC_RTCCLKSOURCE_LSI) || \ + ((__SOURCE__) == RCC_RTCCLKSOURCE_HSE_DIV2) || \ + ((__SOURCE__) == RCC_RTCCLKSOURCE_HSE_DIV4) || \ + ((__SOURCE__) == RCC_RTCCLKSOURCE_HSE_DIV8) || \ + ((__SOURCE__) == RCC_RTCCLKSOURCE_HSE_DIV16)) + +/** + * @} + */ + +/* Exported types ------------------------------------------------------------*/ + +/** @defgroup RCC_Exported_Types RCC Exported Types + * @{ + */ + +/** + * @brief RCC PLL configuration structure definition + */ +typedef struct +{ + uint32_t PLLState; /*!< PLLState: The new state of the PLL. + This parameter can be a value of @ref RCC_PLL_Config */ + + uint32_t PLLSource; /*!< PLLSource: PLL entry clock source. + This parameter must be a value of @ref RCC_PLL_Clock_Source */ + + uint32_t PLLMUL; /*!< PLLMUL: Multiplication factor for PLL VCO input clock + This parameter must be a value of @ref RCC_PLL_Multiplication_Factor*/ + + uint32_t PLLDIV; /*!< PLLDIV: Division factor for PLL VCO input clock + This parameter must be a value of @ref RCC_PLL_Division_Factor*/ +} RCC_PLLInitTypeDef; + +/** + * @brief RCC Internal/External Oscillator (HSE, HSI, LSE and LSI) configuration structure definition + */ +typedef struct +{ + uint32_t OscillatorType; /*!< The oscillators to be configured. + This parameter can be a value of @ref RCC_Oscillator_Type */ + + uint32_t HSEState; /*!< The new state of the HSE. + This parameter can be a value of @ref RCC_HSE_Config */ + + uint32_t LSEState; /*!< The new state of the LSE. + This parameter can be a value of @ref RCC_LSE_Config */ + + uint32_t HSIState; /*!< The new state of the HSI. + This parameter can be a value of @ref RCC_HSI_Config */ + + uint32_t HSICalibrationValue; /*!< The HSI calibration trimming value (default is RCC_HSICALIBRATION_DEFAULT). + This parameter must be a number between Min_Data = 0x00 and Max_Data = 0x1F */ + + uint32_t LSIState; /*!< The new state of the LSI. + This parameter can be a value of @ref RCC_LSI_Config */ + +#if defined(RCC_HSI48_SUPPORT) + uint32_t HSI48State; /*!< The new state of the HSI48. + This parameter can be a value of @ref RCC_HSI48_Config */ + +#endif /* RCC_HSI48_SUPPORT */ + uint32_t MSIState; /*!< The new state of the MSI. + This parameter can be a value of @ref RCC_MSI_Config */ + + uint32_t MSICalibrationValue; /*!< The MSI calibration trimming value. (default is RCC_MSICALIBRATION_DEFAULT). + This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF */ + + uint32_t MSIClockRange; /*!< The MSI frequency range. + This parameter can be a value of @ref RCC_MSI_Clock_Range */ + + RCC_PLLInitTypeDef PLL; /*!< PLL structure parameters */ + +} RCC_OscInitTypeDef; + +/** + * @brief RCC System, AHB and APB busses clock configuration structure definition + */ +typedef struct +{ + uint32_t ClockType; /*!< The clock to be configured. + This parameter can be a value of @ref RCC_System_Clock_Type */ + + uint32_t SYSCLKSource; /*!< The clock source (SYSCLKS) used as system clock. + This parameter can be a value of @ref RCC_System_Clock_Source */ + + uint32_t AHBCLKDivider; /*!< The AHB clock (HCLK) divider. This clock is derived from the system clock (SYSCLK). + This parameter can be a value of @ref RCC_AHB_Clock_Source */ + + uint32_t APB1CLKDivider; /*!< The APB1 clock (PCLK1) divider. This clock is derived from the AHB clock (HCLK). + This parameter can be a value of @ref RCC_APB1_APB2_Clock_Source */ + + uint32_t APB2CLKDivider; /*!< The APB2 clock (PCLK2) divider. This clock is derived from the AHB clock (HCLK). + This parameter can be a value of @ref RCC_APB1_APB2_Clock_Source */ +} RCC_ClkInitTypeDef; + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup RCC_Exported_Constants RCC Exported Constants + * @{ + */ + +/** @defgroup RCC_PLL_Clock_Source PLL Clock Source + * @{ + */ + +#define RCC_PLLSOURCE_HSI RCC_CFGR_PLLSRC_HSI /*!< HSI clock selected as PLL entry clock source */ +#define RCC_PLLSOURCE_HSE RCC_CFGR_PLLSRC_HSE /*!< HSE clock selected as PLL entry clock source */ + +/** + * @} + */ + +/** @defgroup RCC_Oscillator_Type Oscillator Type + * @{ + */ +#define RCC_OSCILLATORTYPE_NONE ((uint32_t)0x00000000) +#define RCC_OSCILLATORTYPE_HSE ((uint32_t)0x00000001) +#define RCC_OSCILLATORTYPE_HSI ((uint32_t)0x00000002) +#define RCC_OSCILLATORTYPE_LSE ((uint32_t)0x00000004) +#define RCC_OSCILLATORTYPE_LSI ((uint32_t)0x00000008) +#define RCC_OSCILLATORTYPE_MSI ((uint32_t)0x00000010) +#if defined(RCC_HSI48_SUPPORT) +#define RCC_OSCILLATORTYPE_HSI48 ((uint32_t)0x00000020) +#endif /* RCC_HSI48_SUPPORT */ +/** + * @} + */ + +/** @defgroup RCC_HSE_Config HSE Config + * @{ + */ +#define RCC_HSE_OFF ((uint32_t)0x00000000) /*!< HSE clock deactivation */ +#define RCC_HSE_ON RCC_CR_HSEON /*!< HSE clock activation */ +#define RCC_HSE_BYPASS ((uint32_t)(RCC_CR_HSEBYP | RCC_CR_HSEON)) /*!< External clock source for HSE clock */ +/** + * @} + */ + +/** @defgroup RCC_LSE_Config LSE Config + * @{ + */ +#define RCC_LSE_OFF ((uint32_t)0x00000000) /*!< LSE clock deactivation */ +#define RCC_LSE_ON RCC_CSR_LSEON /*!< LSE clock activation */ +#define RCC_LSE_BYPASS ((uint32_t)(RCC_CSR_LSEBYP | RCC_CSR_LSEON)) /*!< External clock source for LSE clock */ + +/** + * @} + */ + +/** @defgroup RCC_HSI_Config HSI Config + * @{ + */ +#define RCC_HSI_OFF ((uint32_t)0x00000000) /*!< HSI clock deactivation */ +#define RCC_HSI_ON RCC_CR_HSION /*!< HSI clock activation */ +#define RCC_HSI_DIV4 (RCC_CR_HSIDIVEN | RCC_CR_HSION) /*!< HSI_DIV4 clock activation */ +#if defined(RCC_CR_HSIOUTEN) +#define RCC_HSI_OUTEN RCC_CR_HSIOUTEN /*!< HSI_OUTEN clock activation */ +#endif /* RCC_CR_HSIOUTEN */ + +#define RCC_HSICALIBRATION_DEFAULT ((uint32_t)0x10) /* Default HSI calibration trimming value */ + +/** + * @} + */ + +/** @defgroup RCC_MSI_Clock_Range MSI Clock Range + * @{ + */ + +#define RCC_MSIRANGE_0 RCC_ICSCR_MSIRANGE_0 /*!< MSI = 65.536 KHz */ +#define RCC_MSIRANGE_1 RCC_ICSCR_MSIRANGE_1 /*!< MSI = 131.072 KHz */ +#define RCC_MSIRANGE_2 RCC_ICSCR_MSIRANGE_2 /*!< MSI = 262.144 KHz */ +#define RCC_MSIRANGE_3 RCC_ICSCR_MSIRANGE_3 /*!< MSI = 524.288 KHz */ +#define RCC_MSIRANGE_4 RCC_ICSCR_MSIRANGE_4 /*!< MSI = 1.048 MHz */ +#define RCC_MSIRANGE_5 RCC_ICSCR_MSIRANGE_5 /*!< MSI = 2.097 MHz */ +#define RCC_MSIRANGE_6 RCC_ICSCR_MSIRANGE_6 /*!< MSI = 4.194 MHz */ + +/** + * @} + */ + +/** @defgroup RCC_LSI_Config LSI Config + * @{ + */ +#define RCC_LSI_OFF ((uint32_t)0x00000000) /*!< LSI clock deactivation */ +#define RCC_LSI_ON RCC_CSR_LSION /*!< LSI clock activation */ + +/** + * @} + */ + +/** @defgroup RCC_MSI_Config MSI Config + * @{ + */ +#define RCC_MSI_OFF ((uint32_t)0x00000000) +#define RCC_MSI_ON ((uint32_t)0x00000001) + +#define RCC_MSICALIBRATION_DEFAULT ((uint32_t)0x00000000U) /* Default MSI calibration trimming value */ + +/** + * @} + */ + +#if defined(RCC_HSI48_SUPPORT) +/** @defgroup RCC_HSI48_Config HSI48 Config + * @{ + */ +#define RCC_HSI48_OFF ((uint8_t)0x00) +#define RCC_HSI48_ON ((uint8_t)0x01) + +/** + * @} + */ +#endif /* RCC_HSI48_SUPPORT */ + +/** @defgroup RCC_PLL_Config PLL Config + * @{ + */ +#define RCC_PLL_NONE ((uint32_t)0x00000000) /*!< PLL is not configured */ +#define RCC_PLL_OFF ((uint32_t)0x00000001) /*!< PLL deactivation */ +#define RCC_PLL_ON ((uint32_t)0x00000002) /*!< PLL activation */ + +/** + * @} + */ + +/** @defgroup RCC_System_Clock_Type System Clock Type + * @{ + */ +#define RCC_CLOCKTYPE_SYSCLK ((uint32_t)0x00000001) /*!< SYSCLK to configure */ +#define RCC_CLOCKTYPE_HCLK ((uint32_t)0x00000002) /*!< HCLK to configure */ +#define RCC_CLOCKTYPE_PCLK1 ((uint32_t)0x00000004) /*!< PCLK1 to configure */ +#define RCC_CLOCKTYPE_PCLK2 ((uint32_t)0x00000008) /*!< PCLK2 to configure */ + +/** + * @} + */ + +/** @defgroup RCC_System_Clock_Source System Clock Source + * @{ + */ +#define RCC_SYSCLKSOURCE_MSI RCC_CFGR_SW_MSI /*!< MSI selected as system clock */ +#define RCC_SYSCLKSOURCE_HSI RCC_CFGR_SW_HSI /*!< HSI selected as system clock */ +#define RCC_SYSCLKSOURCE_HSE RCC_CFGR_SW_HSE /*!< HSE selected as system clock */ +#define RCC_SYSCLKSOURCE_PLLCLK RCC_CFGR_SW_PLL /*!< PLL selected as system clock */ + +/** + * @} + */ + +/** @defgroup RCC_System_Clock_Source_Status System Clock Source Status + * @{ + */ +#define RCC_SYSCLKSOURCE_STATUS_MSI RCC_CFGR_SWS_MSI /*!< MSI used as system clock */ +#define RCC_SYSCLKSOURCE_STATUS_HSI RCC_CFGR_SWS_HSI /*!< HSI used as system clock */ +#define RCC_SYSCLKSOURCE_STATUS_HSE RCC_CFGR_SWS_HSE /*!< HSE used as system clock */ +#define RCC_SYSCLKSOURCE_STATUS_PLLCLK RCC_CFGR_SWS_PLL /*!< PLL used as system clock */ + +/** + * @} + */ + +/** @defgroup RCC_AHB_Clock_Source AHB Clock Source + * @{ + */ +#define RCC_SYSCLK_DIV1 RCC_CFGR_HPRE_DIV1 /*!< SYSCLK not divided */ +#define RCC_SYSCLK_DIV2 RCC_CFGR_HPRE_DIV2 /*!< SYSCLK divided by 2 */ +#define RCC_SYSCLK_DIV4 RCC_CFGR_HPRE_DIV4 /*!< SYSCLK divided by 4 */ +#define RCC_SYSCLK_DIV8 RCC_CFGR_HPRE_DIV8 /*!< SYSCLK divided by 8 */ +#define RCC_SYSCLK_DIV16 RCC_CFGR_HPRE_DIV16 /*!< SYSCLK divided by 16 */ +#define RCC_SYSCLK_DIV64 RCC_CFGR_HPRE_DIV64 /*!< SYSCLK divided by 64 */ +#define RCC_SYSCLK_DIV128 RCC_CFGR_HPRE_DIV128 /*!< SYSCLK divided by 128 */ +#define RCC_SYSCLK_DIV256 RCC_CFGR_HPRE_DIV256 /*!< SYSCLK divided by 256 */ +#define RCC_SYSCLK_DIV512 RCC_CFGR_HPRE_DIV512 /*!< SYSCLK divided by 512 */ + +/** + * @} + */ + +/** @defgroup RCC_APB1_APB2_Clock_Source APB1 APB2 Clock Source + * @{ + */ +#define RCC_HCLK_DIV1 RCC_CFGR_PPRE1_DIV1 /*!< HCLK not divided */ +#define RCC_HCLK_DIV2 RCC_CFGR_PPRE1_DIV2 /*!< HCLK divided by 2 */ +#define RCC_HCLK_DIV4 RCC_CFGR_PPRE1_DIV4 /*!< HCLK divided by 4 */ +#define RCC_HCLK_DIV8 RCC_CFGR_PPRE1_DIV8 /*!< HCLK divided by 8 */ +#define RCC_HCLK_DIV16 RCC_CFGR_PPRE1_DIV16 /*!< HCLK divided by 16 */ + +/** + * @} + */ + +/** @defgroup RCC_HAL_EC_RTC_HSE_DIV RTC HSE Prescaler + * @{ + */ +#define RCC_RTC_HSE_DIV_2 (uint32_t)0x00000000U /*!< HSE is divided by 2 for RTC clock */ +#define RCC_RTC_HSE_DIV_4 RCC_CR_RTCPRE_0 /*!< HSE is divided by 4 for RTC clock */ +#define RCC_RTC_HSE_DIV_8 RCC_CR_RTCPRE_1 /*!< HSE is divided by 8 for RTC clock */ +#define RCC_RTC_HSE_DIV_16 RCC_CR_RTCPRE /*!< HSE is divided by 16 for RTC clock */ +/** + * @} + */ + +/** @defgroup RCC_RTC_LCD_Clock_Source RTC LCD Clock Source + * @{ + */ +#define RCC_RTCCLKSOURCE_NO_CLK ((uint32_t)0x00000000) /*!< No clock */ +#define RCC_RTCCLKSOURCE_LSE RCC_CSR_RTCSEL_LSE /*!< LSE oscillator clock used as RTC clock */ +#define RCC_RTCCLKSOURCE_LSI RCC_CSR_RTCSEL_LSI /*!< LSI oscillator clock used as RTC clock */ +#define RCC_RTCCLKSOURCE_HSE_DIVX RCC_CSR_RTCSEL_HSE /*!< HSE oscillator clock divided by X used as RTC clock */ +#define RCC_RTCCLKSOURCE_HSE_DIV2 (RCC_RTC_HSE_DIV_2 | RCC_CSR_RTCSEL_HSE) /*!< HSE oscillator clock divided by 2 used as RTC clock */ +#define RCC_RTCCLKSOURCE_HSE_DIV4 (RCC_RTC_HSE_DIV_4 | RCC_CSR_RTCSEL_HSE) /*!< HSE oscillator clock divided by 4 used as RTC clock */ +#define RCC_RTCCLKSOURCE_HSE_DIV8 (RCC_RTC_HSE_DIV_8 | RCC_CSR_RTCSEL_HSE) /*!< HSE oscillator clock divided by 8 used as RTC clock */ +#define RCC_RTCCLKSOURCE_HSE_DIV16 (RCC_RTC_HSE_DIV_16 | RCC_CSR_RTCSEL_HSE) /*!< HSE oscillator clock divided by 16 used as RTC clock */ +/** + * @} + */ + +/** @defgroup RCC_PLL_Division_Factor PLL Division Factor + * @{ + */ + +#define RCC_PLL_DIV2 RCC_CFGR_PLLDIV2 +#define RCC_PLL_DIV3 RCC_CFGR_PLLDIV3 +#define RCC_PLL_DIV4 RCC_CFGR_PLLDIV4 + +/** + * @} + */ + +/** @defgroup RCC_PLL_Multiplication_Factor PLL Multiplication Factor + * @{ + */ + +#define RCC_PLL_MUL3 RCC_CFGR_PLLMUL3 +#define RCC_PLL_MUL4 RCC_CFGR_PLLMUL4 +#define RCC_PLL_MUL6 RCC_CFGR_PLLMUL6 +#define RCC_PLL_MUL8 RCC_CFGR_PLLMUL8 +#define RCC_PLL_MUL12 RCC_CFGR_PLLMUL12 +#define RCC_PLL_MUL16 RCC_CFGR_PLLMUL16 +#define RCC_PLL_MUL24 RCC_CFGR_PLLMUL24 +#define RCC_PLL_MUL32 RCC_CFGR_PLLMUL32 +#define RCC_PLL_MUL48 RCC_CFGR_PLLMUL48 + +/** + * @} + */ + +/** @defgroup RCC_MCO_Index MCO Index + * @{ + */ +#define RCC_MCO1 ((uint32_t)0x00000000) +#define RCC_MCO2 ((uint32_t)0x00000001) +#if defined(STM32L031xx) || defined(STM32L041xx) || defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) || defined(STM32L071xx) || defined(STM32L081xx) +#define RCC_MCO3 ((uint32_t)0x00000002) +#endif + +/** + * @} + */ + +/** @defgroup RCC_MCOx_Clock_Prescaler MCO Clock Prescaler + * @{ + */ +#define RCC_MCODIV_1 RCC_CFGR_MCO_PRE_1 +#define RCC_MCODIV_2 RCC_CFGR_MCO_PRE_2 +#define RCC_MCODIV_4 RCC_CFGR_MCO_PRE_4 +#define RCC_MCODIV_8 RCC_CFGR_MCO_PRE_8 +#define RCC_MCODIV_16 RCC_CFGR_MCO_PRE_16 + +/** + * @} + */ + +/** @defgroup RCC_MCO1_Clock_Source MCO1 Clock Source + * @{ + */ +#define RCC_MCO1SOURCE_NOCLOCK RCC_CFGR_MCO_NOCLOCK +#define RCC_MCO1SOURCE_SYSCLK RCC_CFGR_MCO_SYSCLK +#define RCC_MCO1SOURCE_MSI RCC_CFGR_MCO_MSI +#define RCC_MCO1SOURCE_HSI RCC_CFGR_MCO_HSI +#define RCC_MCO1SOURCE_LSE RCC_CFGR_MCO_LSE +#define RCC_MCO1SOURCE_LSI RCC_CFGR_MCO_LSI +#define RCC_MCO1SOURCE_HSE RCC_CFGR_MCO_HSE +#define RCC_MCO1SOURCE_PLLCLK RCC_CFGR_MCO_PLL +#if defined(RCC_CFGR_MCOSEL_HSI48) +#define RCC_MCO1SOURCE_HSI48 RCC_CFGR_MCO_HSI48 +#endif /* RCC_CFGR_MCOSEL_HSI48 */ + +/** + * @} + */ +/** @defgroup RCC_Interrupt Interrupts + * @{ + */ +#define RCC_IT_LSIRDY RCC_CIFR_LSIRDYF /*!< LSI Ready Interrupt flag */ +#define RCC_IT_LSERDY RCC_CIFR_LSERDYF /*!< LSE Ready Interrupt flag */ +#define RCC_IT_HSIRDY RCC_CIFR_HSIRDYF /*!< HSI Ready Interrupt flag */ +#define RCC_IT_HSERDY RCC_CIFR_HSERDYF /*!< HSE Ready Interrupt flag */ +#define RCC_IT_PLLRDY RCC_CIFR_PLLRDYF /*!< PLL Ready Interrupt flag */ +#define RCC_IT_MSIRDY RCC_CIFR_MSIRDYF /*!< MSI Ready Interrupt flag */ +#define RCC_IT_LSECSS RCC_CIFR_CSSLSEF /*!< LSE Clock Security System Interrupt flag */ +#if defined(RCC_HSECSS_SUPPORT) +#define RCC_IT_CSS RCC_CIFR_CSSHSEF /*!< Clock Security System Interrupt flag */ +#endif /* RCC_HSECSS_SUPPORT */ +#if defined(RCC_HSI48_SUPPORT) +#define RCC_IT_HSI48RDY RCC_CIFR_HSI48RDYF /*!< HSI48 Ready Interrupt flag */ +#endif /* RCC_HSI48_SUPPORT */ +/** + * @} + */ + +/** @defgroup RCC_Flag Flags + * Elements values convention: XXXYYYYYb + * - YYYYY : Flag position in the register + * - XXX : Register index + * - 001: CR register + * - 010: CSR register + * - 011: CRRCR register (*) + * (*) Applicable only for STM32L052xx, STM32L053xx, (...), STM32L073xx & STM32L082xx + * @{ + */ +/* Flags in the CR register */ +#define RCC_FLAG_HSIRDY ((uint8_t)((CR_REG_INDEX << 5) | 2)) /*!< Internal High Speed clock ready flag */ +#define RCC_FLAG_HSIDIV ((uint8_t)((CR_REG_INDEX << 5) | 4)) /*!< HSI16 divider flag */ +#define RCC_FLAG_MSIRDY ((uint8_t)((CR_REG_INDEX << 5) | 9)) /*!< MSI clock ready flag */ +#define RCC_FLAG_HSERDY ((uint8_t)((CR_REG_INDEX << 5) | 17)) /*!< External High Speed clock ready flag */ +#define RCC_FLAG_PLLRDY ((uint8_t)((CR_REG_INDEX << 5) | 25)) /*!< PLL clock ready flag */ +/* Flags in the CSR register */ +#define RCC_FLAG_LSIRDY ((uint8_t)((CSR_REG_INDEX << 5) | 1)) /*!< Internal Low Speed oscillator Ready */ +#define RCC_FLAG_LSERDY ((uint8_t)((CSR_REG_INDEX << 5) | 9)) /*!< External Low Speed oscillator Ready */ +#define RCC_FLAG_LSECSS ((uint8_t)((CSR_REG_INDEX << 5) | 14)) /*!< CSS on LSE failure Detection */ +#define RCC_FLAG_OBLRST ((uint8_t)((CSR_REG_INDEX << 5) | 25)) /*!< Options bytes loading reset flag */ +#define RCC_FLAG_PINRST ((uint8_t)((CSR_REG_INDEX << 5) | 26)) /*!< PIN reset flag */ +#define RCC_FLAG_PORRST ((uint8_t)((CSR_REG_INDEX << 5) | 27)) /*!< POR/PDR reset flag */ +#define RCC_FLAG_SFTRST ((uint8_t)((CSR_REG_INDEX << 5) | 28)) /*!< Software Reset flag */ +#define RCC_FLAG_IWDGRST ((uint8_t)((CSR_REG_INDEX << 5) | 29)) /*!< Independent Watchdog reset flag */ +#define RCC_FLAG_WWDGRST ((uint8_t)((CSR_REG_INDEX << 5) | 30)) /*!< Window watchdog reset flag */ +#define RCC_FLAG_LPWRRST ((uint8_t)((CSR_REG_INDEX << 5) | 31)) /*!< Low-Power reset flag */ +#if defined(RCC_CSR_FWRSTF) +#define RCC_FLAG_FWRST ((uint8_t)((CSR_REG_INDEX << 5) | 8)) /*!< RCC flag FW reset */ +#endif /* RCC_CSR_FWRSTF */ +/* Flags in the CRRCR register */ +#if defined(RCC_HSI48_SUPPORT) +#define RCC_FLAG_HSI48RDY ((uint8_t)((CRRCR_REG_INDEX << 5) | 1)) /*!< HSI48 clock ready flag */ +#endif /* RCC_HSI48_SUPPORT */ + +/** + * @} + */ + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ + +/** @defgroup RCC_Exported_Macros RCC Exported Macros + * @{ + */ + +/** @defgroup RCC_AHB_Peripheral_Clock_Enable_Disable AHB Peripheral Clock Enable Disable + * @brief Enable or disable the AHB peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#define __HAL_RCC_DMA1_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->AHBENR, RCC_AHBENR_DMA1EN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->AHBENR, RCC_AHBENR_DMA1EN);\ + UNUSED(tmpreg); \ + } while(0) + +#define __HAL_RCC_MIF_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->AHBENR, RCC_AHBENR_MIFEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->AHBENR, RCC_AHBENR_MIFEN);\ + UNUSED(tmpreg); \ + } while(0) + +#define __HAL_RCC_CRC_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->AHBENR, RCC_AHBENR_CRCEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->AHBENR, RCC_AHBENR_CRCEN);\ + UNUSED(tmpreg); \ + } while(0) + + +#define __HAL_RCC_DMA1_CLK_DISABLE() CLEAR_BIT(RCC->AHBENR, RCC_AHBENR_DMA1EN) +#define __HAL_RCC_MIF_CLK_DISABLE() CLEAR_BIT(RCC->AHBENR, RCC_AHBENR_MIFEN) +#define __HAL_RCC_CRC_CLK_DISABLE() CLEAR_BIT(RCC->AHBENR, RCC_AHBENR_CRCEN) + +/** + * @} + */ + +/** @defgroup RCC_IOPORT_Clock_Enable_Disable IOPORT Peripheral Clock Enable Disable + * @brief Enable or disable the IOPORT peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#define __HAL_RCC_GPIOA_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->IOPENR, RCC_IOPENR_GPIOAEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOAEN);\ + UNUSED(tmpreg); \ + } while(0) + +#define __HAL_RCC_GPIOB_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->IOPENR, RCC_IOPENR_GPIOBEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOBEN);\ + UNUSED(tmpreg); \ + } while(0) + +#define __HAL_RCC_GPIOC_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->IOPENR, RCC_IOPENR_GPIOCEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOCEN);\ + UNUSED(tmpreg); \ + } while(0) + +#define __HAL_RCC_GPIOH_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->IOPENR, RCC_IOPENR_GPIOHEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOHEN);\ + UNUSED(tmpreg); \ + } while(0) + + +#define __HAL_RCC_GPIOA_CLK_DISABLE() CLEAR_BIT(RCC->IOPENR, RCC_IOPENR_GPIOAEN) +#define __HAL_RCC_GPIOB_CLK_DISABLE() CLEAR_BIT(RCC->IOPENR, RCC_IOPENR_GPIOBEN) +#define __HAL_RCC_GPIOC_CLK_DISABLE() CLEAR_BIT(RCC->IOPENR, RCC_IOPENR_GPIOCEN) +#define __HAL_RCC_GPIOH_CLK_DISABLE() CLEAR_BIT(RCC->IOPENR, RCC_IOPENR_GPIOHEN) + +/** + * @} + */ + +/** @defgroup RCC_APB1_Clock_Enable_Disable APB1 Peripheral Clock Enable Disable + * @brief Enable or disable the Low Speed APB (APB1) peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#define __HAL_RCC_WWDG_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_WWDGEN)) +#define __HAL_RCC_PWR_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_PWREN)) + +#define __HAL_RCC_WWDG_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_WWDGEN)) +#define __HAL_RCC_PWR_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_PWREN)) +/** + * @} + */ + +/** @defgroup RCC_APB2_Clock_Enable_Disable APB2 Peripheral Clock Enable Disable + * @brief Enable or disable the High Speed APB (APB2) peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#define __HAL_RCC_SYSCFG_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_SYSCFGEN)) +#define __HAL_RCC_DBGMCU_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_DBGMCUEN)) + +#define __HAL_RCC_SYSCFG_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_SYSCFGEN)) +#define __HAL_RCC_DBGMCU_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_DBGMCUEN)) +/** + * @} + */ + +/** @defgroup RCC_AHB_Peripheral_Clock_Enable_Disable_Status AHB Peripheral Clock Enabled or Disabled Status + * @brief Check whether the AHB peripheral clock is enabled or not. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ + +#define __HAL_RCC_DMA1_IS_CLK_ENABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_DMA1EN) != RESET) +#define __HAL_RCC_MIF_IS_CLK_ENABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_MIFEN) != RESET) +#define __HAL_RCC_CRC_IS_CLK_ENABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_CRCEN) != RESET) +#define __HAL_RCC_DMA1_IS_CLK_DISABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_DMA1EN) == RESET) +#define __HAL_RCC_MIF_IS_CLK_DISABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_MIFEN) == RESET) +#define __HAL_RCC_CRC_IS_CLK_DISABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_CRCEN) == RESET) + +/** + * @} + */ + +/** @defgroup RCC_IOPORT_Peripheral_Clock_Enable_Disable_Status IOPORT Peripheral Clock Enabled or Disabled Status + * @brief Check whether the IOPORT peripheral clock is enabled or not. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ + +#define __HAL_RCC_GPIOA_IS_CLK_ENABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOAEN) != RESET) +#define __HAL_RCC_GPIOB_IS_CLK_ENABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOBEN) != RESET) +#define __HAL_RCC_GPIOC_IS_CLK_ENABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOCEN) != RESET) +#define __HAL_RCC_GPIOH_IS_CLK_ENABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOHEN) != RESET) +#define __HAL_RCC_GPIOA_IS_CLK_DISABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOAEN) == RESET) +#define __HAL_RCC_GPIOB_IS_CLK_DISABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOBEN) == RESET) +#define __HAL_RCC_GPIOC_IS_CLK_DISABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOCEN) == RESET) +#define __HAL_RCC_GPIOH_IS_CLK_DISABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOHEN) == RESET) + +/** + * @} + */ + +/** @defgroup RCC_APB1_Clock_Enable_Disable_Status APB1 Peripheral Clock Enabled or Disabled Status + * @brief Check whether the APB1 peripheral clock is enabled or not. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#define __HAL_RCC_WWDG_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_WWDGEN) != RESET) +#define __HAL_RCC_PWR_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_PWREN) != RESET) +#define __HAL_RCC_WWDG_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_WWDGEN) == RESET) +#define __HAL_RCC_PWR_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_PWREN) == RESET) + +/** + * @} + */ + +/** @defgroup RCC_APB2_Clock_Enable_Disable_Status APB2 Peripheral Clock Enabled or Disabled Status + * @brief Check whether the APB2 peripheral clock is enabled or not. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#define __HAL_RCC_SYSCFG_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN) != RESET) +#define __HAL_RCC_DBGMCU_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_DBGMCUEN) != RESET) +#define __HAL_RCC_SYSCFG_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN) == RESET) +#define __HAL_RCC_DBGMCU_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_DBGMCUEN) == RESET) + +/** + * @} + */ + + /** @defgroup RCC_AHB_Force_Release_Reset AHB Peripheral Force Release Reset + * @brief Force or release AHB peripheral reset. + * @{ + */ +#define __HAL_RCC_AHB_FORCE_RESET() (RCC->AHBRSTR = 0xFFFFFFFFU) +#define __HAL_RCC_DMA1_FORCE_RESET() SET_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_DMA1RST)) +#define __HAL_RCC_MIF_FORCE_RESET() SET_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_MIFRST)) +#define __HAL_RCC_CRC_FORCE_RESET() SET_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_CRCRST)) + +#define __HAL_RCC_AHB_RELEASE_RESET() (RCC->AHBRSTR = 0x00000000U) +#define __HAL_RCC_CRC_RELEASE_RESET() CLEAR_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_CRCRST)) +#define __HAL_RCC_DMA1_RELEASE_RESET() CLEAR_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_DMA1RST)) +#define __HAL_RCC_MIF_RELEASE_RESET() CLEAR_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_MIFRST)) +/** + * @} + */ + +/** @defgroup RCC_IOPORT_Force_Release_Reset IOPORT Peripheral Force Release Reset + * @brief Force or release IOPORT peripheral reset. + * @{ + */ +#define __HAL_RCC_IOP_FORCE_RESET() (RCC->IOPRSTR = 0xFFFFFFFFU) +#define __HAL_RCC_GPIOA_FORCE_RESET() SET_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOARST)) +#define __HAL_RCC_GPIOB_FORCE_RESET() SET_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOBRST)) +#define __HAL_RCC_GPIOC_FORCE_RESET() SET_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOCRST)) +#define __HAL_RCC_GPIOH_FORCE_RESET() SET_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOHRST)) + +#define __HAL_RCC_IOP_RELEASE_RESET() (RCC->IOPRSTR = 0x00000000U) +#define __HAL_RCC_GPIOA_RELEASE_RESET() CLEAR_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOARST)) +#define __HAL_RCC_GPIOB_RELEASE_RESET() CLEAR_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOBRST)) +#define __HAL_RCC_GPIOC_RELEASE_RESET() CLEAR_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOCRST)) +#define __HAL_RCC_GPIOH_RELEASE_RESET() CLEAR_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOHRST)) + +/** + * @} + */ + +/** @defgroup RCC_APB1_Force_Release_Reset APB1 Peripheral Force Release Reset + * @brief Force or release APB1 peripheral reset. + * @{ + */ +#define __HAL_RCC_APB1_FORCE_RESET() (RCC->APB1RSTR = 0xFFFFFFFFU) +#define __HAL_RCC_WWDG_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_WWDGRST)) +#define __HAL_RCC_PWR_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_PWRRST)) + +#define __HAL_RCC_APB1_RELEASE_RESET() (RCC->APB1RSTR = 0x00000000U) +#define __HAL_RCC_WWDG_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_WWDGRST)) +#define __HAL_RCC_PWR_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_PWRRST)) + +/** + * @} + */ + +/** @defgroup RCC_APB2_Force_Release_Reset APB2 Peripheral Force Release Reset + * @brief Force or release APB2 peripheral reset. + * @{ + */ +#define __HAL_RCC_APB2_FORCE_RESET() (RCC->APB2RSTR = 0xFFFFFFFFU) +#define __HAL_RCC_DBGMCU_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_DBGMCURST)) +#define __HAL_RCC_SYSCFG_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_SYSCFGRST)) + +#define __HAL_RCC_APB2_RELEASE_RESET() (RCC->APB2RSTR = 0x00000000U) +#define __HAL_RCC_DBGMCU_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_DBGMCURST)) +#define __HAL_RCC_SYSCFG_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_SYSCFGRST)) +/** + * @} + */ + + +/** @defgroup RCC_AHB_Clock_Sleep_Enable_Disable AHB Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the AHB peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral activated clocks remain enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_CRC_CLK_SLEEP_ENABLE() SET_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_CRCSMEN)) +#define __HAL_RCC_MIF_CLK_SLEEP_ENABLE() SET_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_MIFSMEN)) +#define __HAL_RCC_SRAM_CLK_SLEEP_ENABLE() SET_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_SRAMSMEN)) +#define __HAL_RCC_DMA1_CLK_SLEEP_ENABLE() SET_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_DMA1SMEN)) + +#define __HAL_RCC_CRC_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_CRCSMEN)) +#define __HAL_RCC_MIF_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_MIFSMEN)) +#define __HAL_RCC_SRAM_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_SRAMSMEN)) +#define __HAL_RCC_DMA1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_DMA1SMEN)) +/** + * @} + */ + +/** @defgroup RCC_IOPORT_Clock_Sleep_Enable_Disable IOPORT Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the IOPORT peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral activated clocks remain enabled during SLEEP mode. + * @{ + */ + +#define __HAL_RCC_GPIOA_CLK_SLEEP_ENABLE() SET_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOASMEN)) +#define __HAL_RCC_GPIOB_CLK_SLEEP_ENABLE() SET_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOBSMEN)) +#define __HAL_RCC_GPIOC_CLK_SLEEP_ENABLE() SET_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOCSMEN)) +#define __HAL_RCC_GPIOH_CLK_SLEEP_ENABLE() SET_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOHSMEN)) + +#define __HAL_RCC_GPIOA_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOASMEN)) +#define __HAL_RCC_GPIOB_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOBSMEN)) +#define __HAL_RCC_GPIOC_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOCSMEN)) +#define __HAL_RCC_GPIOH_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOHSMEN)) +/** + * @} + */ + +/** @defgroup RCC_APB1_Clock_Sleep_Enable_Disable APB1 Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the APB1 peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral activated clocks remain enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_WWDG_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_WWDGSMEN)) +#define __HAL_RCC_PWR_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_PWRSMEN)) + +#define __HAL_RCC_WWDG_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_WWDGSMEN)) +#define __HAL_RCC_PWR_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_PWRSMEN)) + +/** + * @} + */ + +/** @defgroup RCC_APB2_Clock_Sleep_Enable_Disable APB2 Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the APB2 peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral activated clocks remain enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_SYSCFG_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_SYSCFGSMEN)) +#define __HAL_RCC_DBGMCU_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_DBGMCUSMEN)) + +#define __HAL_RCC_SYSCFG_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_SYSCFGSMEN)) +#define __HAL_RCC_DBGMCU_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_DBGMCUSMEN)) + +/** + * @} + */ + +/** @defgroup RCC_AHB_Clock_Sleep_Enable_Disable_Status AHB Peripheral Clock Sleep Enabled or Disabled Status + * @brief Check whether the AHB peripheral clock during Low Power (Sleep) mode is enabled or not. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_CRC_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_CRCSMEN) != RESET) +#define __HAL_RCC_MIF_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_MIFSMEN) != RESET) +#define __HAL_RCC_SRAM_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_SRAMSMEN) != RESET) +#define __HAL_RCC_DMA1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_DMA1SMEN) != RESET) +#define __HAL_RCC_CRC_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_CRCSMEN) == RESET) +#define __HAL_RCC_MIF_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_MIFSMEN) == RESET) +#define __HAL_RCC_SRAM_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_SRAMSMEN) == RESET) +#define __HAL_RCC_DMA1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_DMA1SMEN) == RESET) + +/** + * @} + */ + +/** @defgroup RCC_IOPORT_Clock_Sleep_Enable_Disable_Status IOPORT Peripheral Clock Sleep Enabled or Disabled Status + * @brief Check whether the IOPORT peripheral clock during Low Power (Sleep) mode is enabled or not. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_GPIOA_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOASMEN) != RESET) +#define __HAL_RCC_GPIOB_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOBSMEN) != RESET) +#define __HAL_RCC_GPIOC_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOCSMEN) != RESET) +#define __HAL_RCC_GPIOH_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOHSMEN) != RESET) +#define __HAL_RCC_GPIOA_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOASMEN) == RESET) +#define __HAL_RCC_GPIOB_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOBSMEN) == RESET) +#define __HAL_RCC_GPIOC_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOCSMEN) == RESET) +#define __HAL_RCC_GPIOH_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOHSMEN) == RESET) + +/** + * @} + */ + +/** @defgroup RCC_APB1_Clock_Sleep_Enable_Disable_Status APB1 Peripheral Clock Sleep Enabled or Disabled Status + * @brief Check whether the APB1 peripheral clock during Low Power (Sleep) mode is enabled or not. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_WWDG_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_WWDGSMEN) != RESET) +#define __HAL_RCC_PWR_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_PWRSMEN) != RESET) +#define __HAL_RCC_WWDG_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_WWDGSMEN) == RESET) +#define __HAL_RCC_PWR_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_PWRSMEN) == RESET) + +/** + * @} + */ + +/** @defgroup RCC_APB2_Clock_Sleep_Enable_Disable_Status APB2 Peripheral Clock Sleep Enabled or Disabled Status + * @brief Check whether the APB2 peripheral clock during Low Power (Sleep) mode is enabled or not. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_SYSCFG_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_SYSCFGSMEN) != RESET) +#define __HAL_RCC_DBGMCU_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_DBGMCUSMEN) != RESET) +#define __HAL_RCC_SYSCFG_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_SYSCFGSMEN) == RESET) +#define __HAL_RCC_DBGMCU_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_DBGMCUSMEN) == RESET) + +/** + * @} + */ +/** @defgroup RCC_HSI_Configuration HSI Configuration + * @{ + */ + +/** @brief Macro to enable or disable the Internal High Speed oscillator (HSI). + * @note After enabling the HSI, the application software should wait on + * HSIRDY flag to be set indicating that HSI clock is stable and can + * be used to clock the PLL and/or system clock. + * @note HSI can not be stopped if it is used directly or through the PLL + * as system clock. In this case, you have to select another source + * of the system clock then stop the HSI. + * @note The HSI is stopped by hardware when entering STOP and STANDBY modes. + * @param __STATE__ specifies the new state of the HSI. + * This parameter can be one of the following values: + * @arg @ref RCC_HSI_OFF turn OFF the HSI oscillator + * @arg @ref RCC_HSI_ON turn ON the HSI oscillator + * @arg @ref RCC_HSI_DIV4 turn ON the HSI oscillator and divide it by 4 + * @note When the HSI is stopped, HSIRDY flag goes low after 6 HSI oscillator + * clock cycles. + */ +#define __HAL_RCC_HSI_CONFIG(__STATE__) \ + MODIFY_REG(RCC->CR, RCC_CR_HSION | RCC_CR_HSIDIVEN , (uint32_t)(__STATE__)) + +/** @brief Macros to enable or disable the Internal High Speed oscillator (HSI). + * @note The HSI is stopped by hardware when entering STOP and STANDBY modes. + * It is used (enabled by hardware) as system clock source after startup + * from Reset, wakeup from STOP and STANDBY mode, or in case of failure + * of the HSE used directly or indirectly as system clock (if the Clock + * Security System CSS is enabled). + * @note HSI can not be stopped if it is used as system clock source. In this case, + * you have to select another source of the system clock then stop the HSI. + * @note After enabling the HSI, the application software should wait on HSIRDY + * flag to be set indicating that HSI clock is stable and can be used as + * system clock source. + * @note When the HSI is stopped, HSIRDY flag goes low after 6 HSI oscillator + * clock cycles. + */ +#define __HAL_RCC_HSI_ENABLE() SET_BIT(RCC->CR, RCC_CR_HSION) +#define __HAL_RCC_HSI_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_HSION) + +/** @brief Macro to adjust the Internal High Speed oscillator (HSI) calibration value. + * @note The calibration is used to compensate for the variations in voltage + * and temperature that influence the frequency of the internal HSI RC. + * @param _HSICALIBRATIONVALUE_ specifies the calibration trimming value. + * (default is RCC_HSICALIBRATION_DEFAULT). + * This parameter must be a number between 0 and 0x1F. + */ +#define __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(_HSICALIBRATIONVALUE_) \ + (MODIFY_REG(RCC->ICSCR, RCC_ICSCR_HSITRIM, (uint32_t)(_HSICALIBRATIONVALUE_) << 8)) + +/** + * @} + */ + +/** @defgroup RCC_LSI_Configuration LSI Configuration + * @{ + */ + +/** @brief Macro to enable the Internal Low Speed oscillator (LSI). + * @note After enabling the LSI, the application software should wait on + * LSIRDY flag to be set indicating that LSI clock is stable and can + * be used to clock the IWDG and/or the RTC. + */ +#define __HAL_RCC_LSI_ENABLE() SET_BIT(RCC->CSR, RCC_CSR_LSION) + +/** @brief Macro to disable the Internal Low Speed oscillator (LSI). + * @note LSI can not be disabled if the IWDG is running. + * @note When the LSI is stopped, LSIRDY flag goes low after 6 LSI oscillator + * clock cycles. + */ +#define __HAL_RCC_LSI_DISABLE() CLEAR_BIT(RCC->CSR, RCC_CSR_LSION) + +/** + * @} + */ + +/** @defgroup RCC_HSE_Configuration HSE Configuration + * @{ + */ + +/** + * @brief Macro to configure the External High Speed oscillator (HSE). + * @note Transition HSE Bypass to HSE On and HSE On to HSE Bypass are not + * supported by this macro. User should request a transition to HSE Off + * first and then HSE On or HSE Bypass. + * @note After enabling the HSE (RCC_HSE_ON or RCC_HSE_Bypass), the application + * software should wait on HSERDY flag to be set indicating that HSE clock + * is stable and can be used to clock the PLL and/or system clock. + * @note HSE state can not be changed if it is used directly or through the + * PLL as system clock. In this case, you have to select another source + * of the system clock then change the HSE state (ex. disable it). + * @note The HSE is stopped by hardware when entering STOP and STANDBY modes. + * @note This function reset the CSSON bit, so if the clock security system(CSS) + * was previously enabled you have to enable it again after calling this + * function. + * @param __STATE__ specifies the new state of the HSE. + * This parameter can be one of the following values: + * @arg @ref RCC_HSE_OFF turn OFF the HSE oscillator, HSERDY flag goes low after + * 6 HSE oscillator clock cycles. + * @arg @ref RCC_HSE_ON turn ON the HSE oscillator + * @arg @ref RCC_HSE_BYPASS HSE oscillator bypassed with external clock + */ +#define __HAL_RCC_HSE_CONFIG(__STATE__) \ + do{ \ + __IO uint32_t tmpreg; \ + if ((__STATE__) == RCC_HSE_ON) \ + { \ + SET_BIT(RCC->CR, RCC_CR_HSEON); \ + } \ + else if ((__STATE__) == RCC_HSE_BYPASS) \ + { \ + SET_BIT(RCC->CR, RCC_CR_HSEBYP); \ + SET_BIT(RCC->CR, RCC_CR_HSEON); \ + } \ + else \ + { \ + CLEAR_BIT(RCC->CR, RCC_CR_HSEON); \ + /* Delay after an RCC peripheral clock */ \ + tmpreg = READ_BIT(RCC->CR, RCC_CR_HSEON); \ + UNUSED(tmpreg); \ + CLEAR_BIT(RCC->CR, RCC_CR_HSEBYP); \ + } \ + }while(0) + +/** + * @} + */ + +/** @defgroup RCC_LSE_Configuration LSE Configuration + * @{ + */ + +/** + * @brief Macro to configure the External Low Speed oscillator (LSE). + * @note Transitions LSE Bypass to LSE On and LSE On to LSE Bypass are not supported by this macro. + * @note As the LSE is in the Backup domain and write access is denied to + * this domain after reset, you have to enable write access using + * @ref HAL_PWR_EnableBkUpAccess() function before to configure the LSE + * (to be done once after reset). + * @note After enabling the LSE (RCC_LSE_ON or RCC_LSE_BYPASS), the application + * software should wait on LSERDY flag to be set indicating that LSE clock + * is stable and can be used to clock the RTC. + * @param __STATE__ specifies the new state of the LSE. + * This parameter can be one of the following values: + * @arg @ref RCC_LSE_OFF turn OFF the LSE oscillator, LSERDY flag goes low after + * 6 LSE oscillator clock cycles. + * @arg @ref RCC_LSE_ON turn ON the LSE oscillator. + * @arg @ref RCC_LSE_BYPASS LSE oscillator bypassed with external clock. + */ +#define __HAL_RCC_LSE_CONFIG(__STATE__) \ + do{ \ + if ((__STATE__) == RCC_LSE_ON) \ + { \ + SET_BIT(RCC->CSR, RCC_CSR_LSEON); \ + } \ + else if ((__STATE__) == RCC_LSE_OFF) \ + { \ + CLEAR_BIT(RCC->CSR, RCC_CSR_LSEON); \ + CLEAR_BIT(RCC->CSR, RCC_CSR_LSEBYP); \ + } \ + else if ((__STATE__) == RCC_LSE_BYPASS) \ + { \ + SET_BIT(RCC->CSR, RCC_CSR_LSEBYP); \ + SET_BIT(RCC->CSR, RCC_CSR_LSEON); \ + } \ + else \ + { \ + CLEAR_BIT(RCC->CSR, RCC_CSR_LSEON); \ + CLEAR_BIT(RCC->CSR, RCC_CSR_LSEBYP); \ + } \ + }while(0) + +/** + * @} + */ + +/** @defgroup RCC_MSI_Configuration MSI Configuration + * @{ + */ + +/** @brief Macro to enable Internal Multi Speed oscillator (MSI). + * @note After enabling the MSI, the application software should wait on MSIRDY + * flag to be set indicating that MSI clock is stable and can be used as + * system clock source. + */ +#define __HAL_RCC_MSI_ENABLE() SET_BIT(RCC->CR, RCC_CR_MSION) + +/** @brief Macro to disable the Internal Multi Speed oscillator (MSI). + * @note The MSI is stopped by hardware when entering STOP and STANDBY modes. + * It is used (enabled by hardware) as system clock source after startup + * from Reset, wakeup from STOP and STANDBY mode, or in case of failure + * of the HSE used directly or indirectly as system clock (if the Clock + * Security System CSS is enabled). + * @note MSI can not be stopped if it is used as system clock source. In this case, + * you have to select another source of the system clock then stop the MSI. + * @note When the MSI is stopped, MSIRDY flag goes low after 6 MSI oscillator + * clock cycles. + */ +#define __HAL_RCC_MSI_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_MSION) + +/** @brief Macro adjusts Internal Multi Speed oscillator (MSI) calibration value. + * @note The calibration is used to compensate for the variations in voltage + * and temperature that influence the frequency of the internal MSI RC. + * Refer to the Application Note AN3300 for more details on how to + * calibrate the MSI. + * @param _MSICALIBRATIONVALUE_ specifies the calibration trimming value. + * (default is RCC_MSICALIBRATION_DEFAULT). + * This parameter must be a number between 0 and 0xFF. + */ +#define __HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST(_MSICALIBRATIONVALUE_) \ + (MODIFY_REG(RCC->ICSCR, RCC_ICSCR_MSITRIM, (uint32_t)(_MSICALIBRATIONVALUE_) << 24)) + +/* @brief Macro to configures the Internal Multi Speed oscillator (MSI) clock range. + * @note After restart from Reset or wakeup from STANDBY, the MSI clock is + * around 2.097 MHz. The MSI clock does not change after wake-up from + * STOP mode. + * @note The MSI clock range can be modified on the fly. + * @param _MSIRANGEVALUE_ specifies the MSI Clock range. + * This parameter must be one of the following values: + * @arg @ref RCC_MSIRANGE_0 MSI clock is around 65.536 KHz + * @arg @ref RCC_MSIRANGE_1 MSI clock is around 131.072 KHz + * @arg @ref RCC_MSIRANGE_2 MSI clock is around 262.144 KHz + * @arg @ref RCC_MSIRANGE_3 MSI clock is around 524.288 KHz + * @arg @ref RCC_MSIRANGE_4 MSI clock is around 1.048 MHz + * @arg @ref RCC_MSIRANGE_5 MSI clock is around 2.097 MHz (default after Reset or wake-up from STANDBY) + * @arg @ref RCC_MSIRANGE_6 MSI clock is around 4.194 MHz + */ +#define __HAL_RCC_MSI_RANGE_CONFIG(_MSIRANGEVALUE_) (MODIFY_REG(RCC->ICSCR, \ + RCC_ICSCR_MSIRANGE, (uint32_t)(_MSIRANGEVALUE_))) + +/** @brief Macro to get the Internal Multi Speed oscillator (MSI) clock range in run mode + * @retval MSI clock range. + * This parameter must be one of the following values: + * @arg @ref RCC_MSIRANGE_0 MSI clock is around 65.536 KHz + * @arg @ref RCC_MSIRANGE_1 MSI clock is around 131.072 KHz + * @arg @ref RCC_MSIRANGE_2 MSI clock is around 262.144 KHz + * @arg @ref RCC_MSIRANGE_3 MSI clock is around 524.288 KHz + * @arg @ref RCC_MSIRANGE_4 MSI clock is around 1.048 MHz + * @arg @ref RCC_MSIRANGE_5 MSI clock is around 2.097 MHz (default after Reset or wake-up from STANDBY) + * @arg @ref RCC_MSIRANGE_6 MSI clock is around 4.194 MHz + */ +#define __HAL_RCC_GET_MSI_RANGE() (uint32_t)(READ_BIT(RCC->ICSCR, RCC_ICSCR_MSIRANGE)) + +/** + * @} + */ + +/** @defgroup RCC_PLL_Configuration PLL Configuration + * @{ + */ + +/** @brief Macro to enable the main PLL. + * @note After enabling the main PLL, the application software should wait on + * PLLRDY flag to be set indicating that PLL clock is stable and can + * be used as system clock source. + * @note The main PLL is disabled by hardware when entering STOP and STANDBY modes. + */ +#define __HAL_RCC_PLL_ENABLE() SET_BIT(RCC->CR, RCC_CR_PLLON) + +/** @brief Macro to disable the main PLL. + * @note The main PLL can not be disabled if it is used as system clock source + */ +#define __HAL_RCC_PLL_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_PLLON) + +/** @brief Macro to configure the main PLL clock source, multiplication and division factors. + * @note This function must be used only when the main PLL is disabled. + * + * @param __RCC_PLLSOURCE__ specifies the PLL entry clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_PLLSOURCE_HSI HSI oscillator clock selected as PLL clock entry + * @arg @ref RCC_PLLSOURCE_HSE HSE oscillator clock selected as PLL clock entry + * @param __PLLMUL__ specifies the multiplication factor for PLL VCO output clock + * This parameter can be one of the following values: + * @arg @ref RCC_PLL_MUL3 PLLVCO = PLL clock entry x 3 + * @arg @ref RCC_PLL_MUL4 PLLVCO = PLL clock entry x 4 + * @arg @ref RCC_PLL_MUL6 PLLVCO = PLL clock entry x 6 + * @arg @ref RCC_PLL_MUL8 PLLVCO = PLL clock entry x 8 + * @arg @ref RCC_PLL_MUL12 PLLVCO = PLL clock entry x 12 + * @arg @ref RCC_PLL_MUL16 PLLVCO = PLL clock entry x 16 + * @arg @ref RCC_PLL_MUL24 PLLVCO = PLL clock entry x 24 + * @arg @ref RCC_PLL_MUL32 PLLVCO = PLL clock entry x 32 + * @arg @ref RCC_PLL_MUL48 PLLVCO = PLL clock entry x 48 + * @note The PLL VCO clock frequency must not exceed 96 MHz when the product is in + * Range 1, 48 MHz when the product is in Range 2 and 24 MHz when the product is + * in Range 3. + * + * @param __PLLDIV__ specifies the division factor for PLL VCO input clock + * This parameter can be one of the following values: + * @arg @ref RCC_PLL_DIV2 PLL clock output = PLLVCO / 2 + * @arg @ref RCC_PLL_DIV3 PLL clock output = PLLVCO / 3 + * @arg @ref RCC_PLL_DIV4 PLL clock output = PLLVCO / 4 + * + */ +#define __HAL_RCC_PLL_CONFIG(__RCC_PLLSOURCE__, __PLLMUL__, __PLLDIV__)\ + MODIFY_REG(RCC->CFGR, (RCC_CFGR_PLLSRC|RCC_CFGR_PLLMUL|RCC_CFGR_PLLDIV),((__RCC_PLLSOURCE__) | (__PLLMUL__) | (__PLLDIV__))) + +/** @brief Get oscillator clock selected as PLL input clock + * @retval The clock source used for PLL entry. The returned value can be one + * of the following: + * @arg @ref RCC_PLLSOURCE_HSI HSI oscillator clock selected as PLL input clock + * @arg @ref RCC_PLLSOURCE_HSE HSE oscillator clock selected as PLL input clock + */ +#define __HAL_RCC_GET_PLL_OSCSOURCE() ((uint32_t)(READ_BIT(RCC->CFGR, RCC_CFGR_PLLSRC))) + +/** + * @} + */ + +/** @defgroup RCC_Get_Clock_source Get Clock source + * @{ + */ + +/** + * @brief Macro to configure the system clock source. + * @param __SYSCLKSOURCE__ specifies the system clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_SYSCLKSOURCE_MSI MSI oscillator is used as system clock source. + * @arg @ref RCC_SYSCLKSOURCE_HSI HSI oscillator is used as system clock source. + * @arg @ref RCC_SYSCLKSOURCE_HSE HSE oscillator is used as system clock source. + * @arg @ref RCC_SYSCLKSOURCE_PLLCLK PLL output is used as system clock source. + */ +#define __HAL_RCC_SYSCLK_CONFIG(__SYSCLKSOURCE__) \ + MODIFY_REG(RCC->CFGR, RCC_CFGR_SW, (__SYSCLKSOURCE__)) + +/** @brief Macro to get the clock source used as system clock. + * @retval The clock source used as system clock. The returned value can be one + * of the following: + * @arg @ref RCC_SYSCLKSOURCE_STATUS_MSI MSI used as system clock + * @arg @ref RCC_SYSCLKSOURCE_STATUS_HSI HSI used as system clock + * @arg @ref RCC_SYSCLKSOURCE_STATUS_HSE HSE used as system clock + * @arg @ref RCC_SYSCLKSOURCE_STATUS_PLLCLK PLL used as system clock + */ +#define __HAL_RCC_GET_SYSCLK_SOURCE() ((uint32_t)(READ_BIT(RCC->CFGR,RCC_CFGR_SWS))) + +/** + * @} + */ + +/** @defgroup RCCEx_MCOx_Clock_Config RCC Extended MCOx Clock Config + * @{ + */ + +/** @brief Macro to configure the MCO clock. + * @param __MCOCLKSOURCE__ specifies the MCO clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_MCO1SOURCE_NOCLOCK No clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_SYSCLK System Clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_HSI HSI oscillator clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_MSI MSI oscillator clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_HSE HSE oscillator clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_PLLCLK PLL clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_LSI LSI clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_LSE LSE clock selected as MCO clock + @if STM32L052xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L053xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L062xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L063xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L072xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L073xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L082xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L083xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @endif + * @param __MCODIV__ specifies the MCO clock prescaler. + * This parameter can be one of the following values: + * @arg @ref RCC_MCODIV_1 MCO clock source is divided by 1 + * @arg @ref RCC_MCODIV_2 MCO clock source is divided by 2 + * @arg @ref RCC_MCODIV_4 MCO clock source is divided by 4 + * @arg @ref RCC_MCODIV_8 MCO clock source is divided by 8 + * @arg @ref RCC_MCODIV_16 MCO clock source is divided by 16 + */ +#define __HAL_RCC_MCO1_CONFIG(__MCOCLKSOURCE__, __MCODIV__) \ + MODIFY_REG(RCC->CFGR, (RCC_CFGR_MCOSEL | RCC_CFGR_MCO_PRE), ((__MCOCLKSOURCE__) | (__MCODIV__))) + +/** + * @} + */ + + /** @defgroup RCC_RTC_Clock_Configuration RCC RTC Clock Configuration + * @{ + */ + +/** @brief Macro to configure the RTC clock (RTCCLK). + * @note As the RTC clock configuration bits are in the Backup domain and write + * access is denied to this domain after reset, you have to enable write + * access using the Power Backup Access macro before to configure + * the RTC clock source (to be done once after reset). + * @note Once the RTC clock is configured it cannot be changed unless the + * Backup domain is reset using @ref __HAL_RCC_BACKUPRESET_FORCE() macro, or by + * a Power On Reset (POR). + * @note RTC prescaler cannot be modified if HSE is enabled (HSEON = 1). + * + * @param __RTC_CLKSOURCE__ specifies the RTC clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_RTCCLKSOURCE_NO_CLK No clock selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_LSE LSE selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_LSI LSI selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV2 HSE divided by 2 selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV4 HSE divided by 4 selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV8 HSE divided by 8 selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV16 HSE divided by 16 selected as RTC clock + * @note If the LSE or LSI is used as RTC clock source, the RTC continues to + * work in STOP and STANDBY modes, and can be used as wakeup source. + * However, when the HSE clock is used as RTC clock source, the RTC + * cannot be used in STOP and STANDBY modes. + * @note The maximum input clock frequency for RTC is 1MHz (when using HSE as + * RTC clock source). + */ +#define __HAL_RCC_RTC_CLKPRESCALER(__RTC_CLKSOURCE__) do { \ + if(((__RTC_CLKSOURCE__) & RCC_CSR_RTCSEL_HSE) == RCC_CSR_RTCSEL_HSE) \ + { \ + MODIFY_REG(RCC->CR, RCC_CR_RTCPRE, ((__RTC_CLKSOURCE__) & RCC_CR_RTCPRE)); \ + } \ + } while (0) + +#define __HAL_RCC_RTC_CONFIG(__RTC_CLKSOURCE__) do { \ + __HAL_RCC_RTC_CLKPRESCALER(__RTC_CLKSOURCE__); \ + RCC->CSR |= ((__RTC_CLKSOURCE__) & RCC_CSR_RTCSEL); \ + } while (0) + +/** @brief Macro to get the RTC clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_RTCCLKSOURCE_NO_CLK No clock selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_LSE LSE selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_LSI LSI selected as RTC clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIVX HSE divided by X selected as RTC clock (X can be retrieved thanks to @ref __HAL_RCC_GET_RTC_HSE_PRESCALER() + */ +#define __HAL_RCC_GET_RTC_SOURCE() (READ_BIT(RCC->CSR, RCC_CSR_RTCSEL)) + +/** + * @brief Get the RTC and LCD HSE clock divider (RTCCLK / LCDCLK). + * + * @retval Returned value can be one of the following values: + * @arg @ref RCC_RTC_HSE_DIV_2 HSE divided by 2 selected as RTC clock + * @arg @ref RCC_RTC_HSE_DIV_4 HSE divided by 4 selected as RTC clock + * @arg @ref RCC_RTC_HSE_DIV_8 HSE divided by 8 selected as RTC clock + * @arg @ref RCC_RTC_HSE_DIV_16 HSE divided by 16 selected as RTC clock + * + */ +#define __HAL_RCC_GET_RTC_HSE_PRESCALER() ((uint32_t)(READ_BIT(RCC->CR, RCC_CR_RTCPRE))) + +/** @brief Macro to enable the the RTC clock. + * @note These macros must be used only after the RTC clock source was selected. + */ +#define __HAL_RCC_RTC_ENABLE() SET_BIT(RCC->CSR, RCC_CSR_RTCEN) + +/** @brief Macro to disable the the RTC clock. + * @note These macros must be used only after the RTC clock source was selected. + */ +#define __HAL_RCC_RTC_DISABLE() CLEAR_BIT(RCC->CSR, RCC_CSR_RTCEN) + +/** @brief Macro to force the Backup domain reset. + * @note This function resets the RTC peripheral (including the backup registers) + * and the RTC clock source selection in RCC_CSR register. + * @note The BKPSRAM is not affected by this reset. + */ +#define __HAL_RCC_BACKUPRESET_FORCE() SET_BIT(RCC->CSR, RCC_CSR_RTCRST) + +/** @brief Macros to release the Backup domain reset. + */ +#define __HAL_RCC_BACKUPRESET_RELEASE() CLEAR_BIT(RCC->CSR, RCC_CSR_RTCRST) + +/** + * @} + */ + +/** @defgroup RCC_Flags_Interrupts_Management Flags Interrupts Management + * @brief macros to manage the specified RCC Flags and interrupts. + * @{ + */ + +/** @brief Enable RCC interrupt. + * @note The CSS interrupt doesn't have an enable bit; once the CSS is enabled + * and if the HSE clock fails, the CSS interrupt occurs and an NMI is + * automatically generated. The NMI will be executed indefinitely, and + * since NMI has higher priority than any other IRQ (and main program) + * the application will be stacked in the NMI ISR unless the CSS interrupt + * pending bit is cleared. + * @param __INTERRUPT__ specifies the RCC interrupt sources to be enabled. + * This parameter can be any combination of the following values: + * @arg @ref RCC_IT_LSIRDY LSI ready interrupt + * @arg @ref RCC_IT_LSERDY LSE ready interrupt + * @arg @ref RCC_IT_HSIRDY HSI ready interrupt + * @arg @ref RCC_IT_HSERDY HSE ready interrupt + * @arg @ref RCC_IT_PLLRDY main PLL ready interrupt + * @arg @ref RCC_IT_MSIRDY MSI ready interrupt + * @arg @ref RCC_IT_LSECSS LSE CSS interrupt + * @arg @ref RCC_IT_HSI48RDY HSI48 ready interrupt (not available on all devices) + */ +#define __HAL_RCC_ENABLE_IT(__INTERRUPT__) SET_BIT(RCC->CIER, (__INTERRUPT__)) + +/** @brief Disable RCC interrupt. + * @note The CSS interrupt doesn't have an enable bit; once the CSS is enabled + * and if the HSE clock fails, the CSS interrupt occurs and an NMI is + * automatically generated. The NMI will be executed indefinitely, and + * since NMI has higher priority than any other IRQ (and main program) + * the application will be stacked in the NMI ISR unless the CSS interrupt + * pending bit is cleared. + * @param __INTERRUPT__ specifies the RCC interrupt sources to be disabled. + * This parameter can be any combination of the following values: + * @arg @ref RCC_IT_LSIRDY LSI ready interrupt + * @arg @ref RCC_IT_LSERDY LSE ready interrupt + * @arg @ref RCC_IT_HSIRDY HSI ready interrupt + * @arg @ref RCC_IT_HSERDY HSE ready interrupt + * @arg @ref RCC_IT_PLLRDY main PLL ready interrupt + * @arg @ref RCC_IT_MSIRDY MSI ready interrupt + * @arg @ref RCC_IT_LSECSS LSE CSS interrupt + * @arg @ref RCC_IT_HSI48RDY HSI48 ready interrupt (not available on all devices) + */ +#define __HAL_RCC_DISABLE_IT(__INTERRUPT__) CLEAR_BIT(RCC->CIER, (__INTERRUPT__)) + +/** @brief Clear the RCC's interrupt pending bits. + * @param __INTERRUPT__ specifies the interrupt pending bit to clear. + * This parameter can be any combination of the following values: + * @arg @ref RCC_IT_LSIRDY LSI ready interrupt. + * @arg @ref RCC_IT_LSERDY LSE ready interrupt. + * @arg @ref RCC_IT_HSIRDY HSI ready interrupt. + * @arg @ref RCC_IT_HSERDY HSE ready interrupt. + * @arg @ref RCC_IT_PLLRDY Main PLL ready interrupt. + * @arg @ref RCC_IT_MSIRDY MSI ready interrupt + * @arg @ref RCC_IT_LSECSS LSE CSS interrupt + * @arg @ref RCC_IT_HSI48RDY HSI48 ready interrupt (not available on all devices) + * @arg @ref RCC_IT_CSS Clock Security System interrupt + */ +#define __HAL_RCC_CLEAR_IT(__INTERRUPT__) (RCC->CICR = (__INTERRUPT__)) + +/** @brief Check the RCC's interrupt has occurred or not. + * @param __INTERRUPT__ specifies the RCC interrupt source to check. + * This parameter can be one of the following values: + * @arg @ref RCC_IT_LSIRDY LSI ready interrupt + * @arg @ref RCC_IT_LSERDY LSE ready interrupt + * @arg @ref RCC_IT_HSIRDY HSI ready interrupt + * @arg @ref RCC_IT_HSERDY HSE ready interrupt + * @arg @ref RCC_IT_PLLRDY PLL ready interrupt + * @arg @ref RCC_IT_MSIRDY MSI ready interrupt + * @arg @ref RCC_IT_LSECSS LSE CSS interrupt + * @arg @ref RCC_IT_CSS Clock Security System interrupt + * @retval The new state of __INTERRUPT__ (TRUE or FALSE). + */ +#define __HAL_RCC_GET_IT(__INTERRUPT__) ((RCC->CIFR & (__INTERRUPT__)) == (__INTERRUPT__)) + + +/** @brief Set RMVF bit to clear the reset flags. + * The reset flags are RCC_FLAG_PINRST, RCC_FLAG_PORRST, RCC_FLAG_SFTRST, + * RCC_FLAG_OBLRST, RCC_FLAG_IWDGRST, RCC_FLAG_WWDGRST, RCC_FLAG_LPWRRST + */ +#define __HAL_RCC_CLEAR_RESET_FLAGS() (RCC->CSR |= RCC_CSR_RMVF) + +/** @brief Check RCC flag is set or not. + * @param __FLAG__ specifies the flag to check. + * This parameter can be one of the following values: + * @arg @ref RCC_FLAG_HSIRDY HSI oscillator clock ready + * @arg @ref RCC_FLAG_HSI48RDY HSI48 oscillator clock ready (not available on all devices) + * @arg @ref RCC_FLAG_HSIDIV HSI16 divider flag + * @arg @ref RCC_FLAG_MSIRDY MSI oscillator clock ready + * @arg @ref RCC_FLAG_HSERDY HSE oscillator clock ready + * @arg @ref RCC_FLAG_PLLRDY PLL clock ready + * @arg @ref RCC_FLAG_LSECSS LSE oscillator clock CSS detected + * @arg @ref RCC_FLAG_LSERDY LSE oscillator clock ready + * @arg @ref RCC_FLAG_FWRST Firewall reset + * @arg @ref RCC_FLAG_LSIRDY LSI oscillator clock ready + * @arg @ref RCC_FLAG_OBLRST Option Byte Loader (OBL) reset + * @arg @ref RCC_FLAG_PINRST Pin reset + * @arg @ref RCC_FLAG_PORRST POR/PDR reset + * @arg @ref RCC_FLAG_SFTRST Software reset + * @arg @ref RCC_FLAG_IWDGRST Independent Watchdog reset + * @arg @ref RCC_FLAG_WWDGRST Window Watchdog reset + * @arg @ref RCC_FLAG_LPWRRST Low Power reset + * @retval The new state of __FLAG__ (TRUE or FALSE). + */ +#if defined(RCC_HSI48_SUPPORT) +#define __HAL_RCC_GET_FLAG(__FLAG__) (((((((((__FLAG__) >> 5) == CR_REG_INDEX)? RCC->CR :((((__FLAG__) >> 5) == CSR_REG_INDEX) ? RCC->CSR :RCC->CRRCR)))) & ((uint32_t)1 << ((__FLAG__) & RCC_FLAG_MASK))) != 0 ) ? 1 : 0 ) +#else +#define __HAL_RCC_GET_FLAG(__FLAG__) (((((((((__FLAG__) >> 5) == CR_REG_INDEX)? RCC->CR : RCC->CSR))) & ((uint32_t)1 << ((__FLAG__) & RCC_FLAG_MASK))) != 0 ) ? 1 : 0 ) +#endif /* RCC_HSI48_SUPPORT */ + +/** + * @} + */ + +/** + * @} + */ + +/* Include RCC HAL Extension module */ +#include "stm32l0xx_hal_rcc_ex.h" + +/* Exported functions --------------------------------------------------------*/ +/** @addtogroup RCC_Exported_Functions + * @{ + */ + +/** @addtogroup RCC_Exported_Functions_Group1 + * @{ + */ + +/* Initialization and de-initialization functions ******************************/ +void HAL_RCC_DeInit(void); +HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct); +HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency); + +/** + * @} + */ + +/** @addtogroup RCC_Exported_Functions_Group2 + * @{ + */ + +/* Peripheral Control functions ************************************************/ +void HAL_RCC_MCOConfig(uint32_t RCC_MCOx, uint32_t RCC_MCOSource, uint32_t RCC_MCODiv); +#if defined(RCC_HSECSS_SUPPORT) +void HAL_RCC_EnableCSS(void); +/* CSS NMI IRQ handler */ +void HAL_RCC_NMI_IRQHandler(void); +/* User Callbacks in non blocking mode (IT mode) */ +void HAL_RCC_CSSCallback(void); +#endif /* RCC_HSECSS_SUPPORT */ +uint32_t HAL_RCC_GetSysClockFreq(void); +uint32_t HAL_RCC_GetHCLKFreq(void); +uint32_t HAL_RCC_GetPCLK1Freq(void); +uint32_t HAL_RCC_GetPCLK2Freq(void); +void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct); +void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t *pFLatency); + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_RCC_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h new file mode 100644 index 0000000..0ee3a39 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h @@ -0,0 +1,2013 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rcc_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of RCC HAL Extension module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_RCC_EX_H +#define __STM32L0xx_HAL_RCC_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup RCCEx + * @{ + */ + +/** @addtogroup RCCEx_Private_Constants + * @{ + */ + + +#if defined(CRS) +/* CRS IT Error Mask */ +#define RCC_CRS_IT_ERROR_MASK ((uint32_t)(RCC_CRS_IT_TRIMOVF | RCC_CRS_IT_SYNCERR | RCC_CRS_IT_SYNCMISS)) + +/* CRS Flag Error Mask */ +#define RCC_CRS_FLAG_ERROR_MASK ((uint32_t)(RCC_CRS_FLAG_TRIMOVF | RCC_CRS_FLAG_SYNCERR | RCC_CRS_FLAG_SYNCMISS)) + +#endif /* CRS */ +/** + * @} + */ + +/** @addtogroup RCCEx_Private_Macros + * @{ + */ +#if defined (STM32L052xx) || defined(STM32L062xx) +#define IS_RCC_PERIPHCLOCK(__CLK__) ((__CLK__) <= (RCC_PERIPHCLK_USART1 | RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_I2C2 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_USB | RCC_PERIPHCLK_LPTIM1)) +#elif defined (STM32L053xx) || defined(STM32L063xx) +#define IS_RCC_PERIPHCLOCK(__CLK__) ((__CLK__) <= (RCC_PERIPHCLK_USART1 | RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_I2C2 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_USB | RCC_PERIPHCLK_LPTIM1 | RCC_PERIPHCLK_LCD)) +#elif defined (STM32L072xx) || defined(STM32L082xx) +#define IS_RCC_PERIPHCLOCK(__CLK__) ((__CLK__) <= (RCC_PERIPHCLK_USART1 | RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_I2C2 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_USB | RCC_PERIPHCLK_LPTIM1 | RCC_PERIPHCLK_I2C3 )) +#elif defined (STM32L073xx) || defined(STM32L083xx) +#define IS_RCC_PERIPHCLOCK(__CLK__) ((__CLK__) <= (RCC_PERIPHCLK_USART1 | RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_I2C2 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_USB | RCC_PERIPHCLK_LPTIM1 | RCC_PERIPHCLK_I2C3 | \ + RCC_PERIPHCLK_LCD)) +#endif + +#if defined(STM32L011xx) || defined(STM32L021xx) || defined(STM32L031xx) || defined(STM32L041xx) +#define IS_RCC_PERIPHCLOCK(__CLK__) ((__CLK__) <= ( RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_LPTIM1)) +#elif defined(STM32L051xx) || defined(STM32L061xx) +#define IS_RCC_PERIPHCLOCK(__CLK__) ((__CLK__) <= (RCC_PERIPHCLK_USART1 | RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_I2C2 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_LPTIM1)) +#elif defined(STM32L071xx) || defined(STM32L081xx) +#define IS_RCC_PERIPHCLOCK(__CLK__) ((__CLK__) <= (RCC_PERIPHCLK_USART1 | RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_I2C2 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_LPTIM1 | RCC_PERIPHCLK_I2C3)) +#endif + +#if defined (RCC_CCIPR_USART1SEL) +#define IS_RCC_USART1CLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_USART1CLKSOURCE_PCLK2) || \ + ((__SOURCE__) == RCC_USART1CLKSOURCE_SYSCLK) || \ + ((__SOURCE__) == RCC_USART1CLKSOURCE_LSE) || \ + ((__SOURCE__) == RCC_USART1CLKSOURCE_HSI)) +#endif /* RCC_CCIPR_USART1SEL */ + +#define IS_RCC_USART2CLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_USART2CLKSOURCE_PCLK1) || \ + ((__SOURCE__) == RCC_USART2CLKSOURCE_SYSCLK) || \ + ((__SOURCE__) == RCC_USART2CLKSOURCE_LSE) || \ + ((__SOURCE__) == RCC_USART2CLKSOURCE_HSI)) + +#define IS_RCC_LPUART1CLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_LPUART1CLKSOURCE_PCLK1) || \ + ((__SOURCE__) == RCC_LPUART1CLKSOURCE_SYSCLK) || \ + ((__SOURCE__) == RCC_LPUART1CLKSOURCE_LSE) || \ + ((__SOURCE__) == RCC_LPUART1CLKSOURCE_HSI)) + +#define IS_RCC_I2C1CLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_I2C1CLKSOURCE_PCLK1) || \ + ((__SOURCE__) == RCC_I2C1CLKSOURCE_SYSCLK)|| \ + ((__SOURCE__) == RCC_I2C1CLKSOURCE_HSI)) + +#if defined(RCC_CCIPR_I2C3SEL) +#define IS_RCC_I2C3CLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_I2C3CLKSOURCE_PCLK1) || \ + ((__SOURCE__) == RCC_I2C3CLKSOURCE_SYSCLK)|| \ + ((__SOURCE__) == RCC_I2C3CLKSOURCE_HSI)) +#endif /* RCC_CCIPR_I2C3SEL */ + +#if defined(USB) +#define IS_RCC_USBCLKSOURCE(__SOURCE__) (((__SOURCE__) == RCC_USBCLKSOURCE_HSI48) || \ + ((__SOURCE__) == RCC_USBCLKSOURCE_PLL)) +#endif /* USB */ + +#if defined(RNG) +#define IS_RCC_RNGCLKSOURCE(_SOURCE_) (((_SOURCE_) == RCC_RNGCLKSOURCE_HSI48) || \ + ((_SOURCE_) == RCC_RNGCLKSOURCE_PLLCLK)) +#endif /* RNG */ + +#if defined(RCC_CCIPR_HSI48SEL) +#define IS_RCC_HSI48MCLKSOURCE(__HSI48MCLK__) (((__HSI48MCLK__) == RCC_HSI48M_PLL) || ((__HSI48MCLK__) == RCC_HSI48M_HSI48)) +#endif /* RCC_CCIPR_HSI48SEL */ + +#define IS_RCC_LPTIMCLK(__LPTIMCLK_) (((__LPTIMCLK_) == RCC_LPTIM1CLKSOURCE_PCLK) || \ + ((__LPTIMCLK_) == RCC_LPTIM1CLKSOURCE_LSI) || \ + ((__LPTIMCLK_) == RCC_LPTIM1CLKSOURCE_HSI) || \ + ((__LPTIMCLK_) == RCC_LPTIM1CLKSOURCE_LSE)) + +#define IS_RCC_STOPWAKEUP_CLOCK(__SOURCE__) (((__SOURCE__) == RCC_STOP_WAKEUPCLOCK_MSI) || \ + ((__SOURCE__) == RCC_STOP_WAKEUPCLOCK_HSI)) + +#define IS_RCC_LSE_DRIVE(__DRIVE__) (((__DRIVE__) == RCC_LSEDRIVE_LOW) || ((__SOURCE__) == RCC_LSEDRIVE_MEDIUMLOW) || \ + ((__DRIVE__) == RCC_LSEDRIVE_MEDIUMHIGH) || ((__SOURCE__) == RCC_LSEDRIVE_HIGH)) + +#if defined(CRS) + +#define IS_RCC_CRS_SYNC_SOURCE(_SOURCE_) (((_SOURCE_) == RCC_CRS_SYNC_SOURCE_GPIO) || \ + ((_SOURCE_) == RCC_CRS_SYNC_SOURCE_LSE) || \ + ((_SOURCE_) == RCC_CRS_SYNC_SOURCE_USB)) +#define IS_RCC_CRS_SYNC_DIV(_DIV_) (((_DIV_) == RCC_CRS_SYNC_DIV1) || ((_DIV_) == RCC_CRS_SYNC_DIV2) || \ + ((_DIV_) == RCC_CRS_SYNC_DIV4) || ((_DIV_) == RCC_CRS_SYNC_DIV8) || \ + ((_DIV_) == RCC_CRS_SYNC_DIV16) || ((_DIV_) == RCC_CRS_SYNC_DIV32) || \ + ((_DIV_) == RCC_CRS_SYNC_DIV64) || ((_DIV_) == RCC_CRS_SYNC_DIV128)) +#define IS_RCC_CRS_SYNC_POLARITY(_POLARITY_) (((_POLARITY_) == RCC_CRS_SYNC_POLARITY_RISING) || \ + ((_POLARITY_) == RCC_CRS_SYNC_POLARITY_FALLING)) +#define IS_RCC_CRS_RELOADVALUE(_VALUE_) (((_VALUE_) <= 0xFFFF)) +#define IS_RCC_CRS_ERRORLIMIT(_VALUE_) (((_VALUE_) <= 0xFF)) +#define IS_RCC_CRS_HSI48CALIBRATION(_VALUE_) (((_VALUE_) <= 0x3F)) +#define IS_RCC_CRS_FREQERRORDIR(_DIR_) (((_DIR_) == RCC_CRS_FREQERRORDIR_UP) || \ + ((_DIR_) == RCC_CRS_FREQERRORDIR_DOWN)) +#endif /* CRS */ +/** + * @} + */ + +/* Exported types ------------------------------------------------------------*/ + +/** @defgroup RCCEx_Exported_Types RCCEx Exported Types + * @{ + */ + +/** + * @brief RCC extended clocks structure definition + */ +typedef struct +{ + uint32_t PeriphClockSelection; /*!< The Extended Clock to be configured. + This parameter can be a value of @ref RCCEx_Periph_Clock_Selection */ + + uint32_t RTCClockSelection; /*!< specifies the RTC clock source. + This parameter can be a value of @ref RCC_RTC_LCD_Clock_Source */ + +#if defined(LCD) + + uint32_t LCDClockSelection; /*!< specifies the LCD clock source. + This parameter can be a value of @ref RCC_RTC_LCD_Clock_Source */ + +#endif /* LCD */ +#if defined(RCC_CCIPR_USART1SEL) + uint32_t Usart1ClockSelection; /*!< USART1 clock source + This parameter can be a value of @ref RCCEx_USART1_Clock_Source */ +#endif /* RCC_CCIPR_USART1SEL */ + uint32_t Usart2ClockSelection; /*!< USART2 clock source + This parameter can be a value of @ref RCCEx_USART2_Clock_Source */ + + uint32_t Lpuart1ClockSelection; /*!< LPUART1 clock source + This parameter can be a value of @ref RCCEx_LPUART1_Clock_Source */ + + uint32_t I2c1ClockSelection; /*!< I2C1 clock source + This parameter can be a value of @ref RCCEx_I2C1_Clock_Source */ + +#if defined(RCC_CCIPR_I2C3SEL) + uint32_t I2c3ClockSelection; /*!< I2C3 clock source + This parameter can be a value of @ref RCCEx_I2C3_Clock_Source */ +#endif /* RCC_CCIPR_I2C3SEL */ + uint32_t LptimClockSelection; /*!< LPTIM1 clock source + This parameter can be a value of @ref RCCEx_LPTIM1_Clock_Source */ +#if defined(USB) + uint32_t UsbClockSelection; /*!< Specifies USB and RNG Clock Selection + This parameter can be a value of @ref RCCEx_USB_Clock_Source */ +#endif /* USB */ +} RCC_PeriphCLKInitTypeDef; + +#if defined (CRS) +/** + * @brief RCC_CRS Init structure definition + */ +typedef struct +{ + uint32_t Prescaler; /*!< Specifies the division factor of the SYNC signal. + This parameter can be a value of @ref RCCEx_CRS_SynchroDivider */ + + uint32_t Source; /*!< Specifies the SYNC signal source. + This parameter can be a value of @ref RCCEx_CRS_SynchroSource */ + + uint32_t Polarity; /*!< Specifies the input polarity for the SYNC signal source. + This parameter can be a value of @ref RCCEx_CRS_SynchroPolarity */ + + uint32_t ReloadValue; /*!< Specifies the value to be loaded in the frequency error counter with each SYNC event. + It can be calculated in using macro @ref __HAL_RCC_CRS_RELOADVALUE_CALCULATE(__FTARGET__, __FSYNC__) + This parameter must be a number between 0 and 0xFFFF or a value of @ref RCCEx_CRS_ReloadValueDefault .*/ + + uint32_t ErrorLimitValue; /*!< Specifies the value to be used to evaluate the captured frequency error value. + This parameter must be a number between 0 and 0xFF or a value of @ref RCCEx_CRS_ErrorLimitDefault */ + + uint32_t HSI48CalibrationValue; /*!< Specifies a user-programmable trimming value to the HSI48 oscillator. + This parameter must be a number between 0 and 0x3F or a value of @ref RCCEx_CRS_HSI48CalibrationDefault */ + +}RCC_CRSInitTypeDef; + +/** + * @brief RCC_CRS Synchronization structure definition + */ +typedef struct +{ + uint32_t ReloadValue; /*!< Specifies the value loaded in the Counter reload value. + This parameter must be a number between 0 and 0xFFFF */ + + uint32_t HSI48CalibrationValue; /*!< Specifies value loaded in HSI48 oscillator smooth trimming. + This parameter must be a number between 0 and 0x3F */ + + uint32_t FreqErrorCapture; /*!< Specifies the value loaded in the .FECAP, the frequency error counter + value latched in the time of the last SYNC event. + This parameter must be a number between 0 and 0xFFFF */ + + uint32_t FreqErrorDirection; /*!< Specifies the value loaded in the .FEDIR, the counting direction of the + frequency error counter latched in the time of the last SYNC event. + It shows whether the actual frequency is below or above the target. + This parameter must be a value of @ref RCCEx_CRS_FreqErrorDirection*/ + +}RCC_CRSSynchroInfoTypeDef; + +#endif /* CRS */ + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup RCCEx_Exported_Constants RCCEx Exported Constants + * @{ + */ + + +/** @defgroup RCCEx_EXTI_LINE_LSECSS RCC LSE CSS external interrupt line + * @{ + */ +#define RCC_EXTI_LINE_LSECSS (EXTI_IMR_IM19) /*!< External interrupt line 19 connected to the LSE CSS EXTI Line */ +/** + * @} + */ + +/** @defgroup RCCEx_Periph_Clock_Selection RCCEx Periph Clock Selection + * @{ + */ +#if defined(RCC_CCIPR_USART1SEL) +#define RCC_PERIPHCLK_USART1 ((uint32_t)0x00000001) +#endif /* RCC_CCIPR_USART1SEL */ +#define RCC_PERIPHCLK_USART2 ((uint32_t)0x00000002) +#define RCC_PERIPHCLK_LPUART1 ((uint32_t)0x00000004) +#define RCC_PERIPHCLK_I2C1 ((uint32_t)0x00000008) +#define RCC_PERIPHCLK_I2C2 ((uint32_t)0x00000010) +#define RCC_PERIPHCLK_RTC ((uint32_t)0x00000020) +#if defined(USB) +#define RCC_PERIPHCLK_USB ((uint32_t)0x00000040) +#endif /* USB */ +#define RCC_PERIPHCLK_LPTIM1 ((uint32_t)0x00000080) +#if defined(LCD) +#define RCC_PERIPHCLK_LCD ((uint32_t)0x00000800) +#endif /* LCD */ +#if defined(RCC_CCIPR_I2C3SEL) +#define RCC_PERIPHCLK_I2C3 ((uint32_t)0x00000100) +#endif /* RCC_CCIPR_I2C3SEL */ + +/** + * @} + */ + +#if defined (RCC_CCIPR_USART1SEL) +/** @defgroup RCCEx_USART1_Clock_Source RCCEx USART1 Clock Source + * @{ + */ +#define RCC_USART1CLKSOURCE_PCLK2 (0x00000000U) +#define RCC_USART1CLKSOURCE_SYSCLK RCC_CCIPR_USART1SEL_0 +#define RCC_USART1CLKSOURCE_HSI RCC_CCIPR_USART1SEL_1 +#define RCC_USART1CLKSOURCE_LSE (RCC_CCIPR_USART1SEL_0 | RCC_CCIPR_USART1SEL_1) +/** + * @} + */ +#endif /* RCC_CCIPR_USART1SEL */ + +/** @defgroup RCCEx_USART2_Clock_Source RCCEx USART2 Clock Source + * @{ + */ +#define RCC_USART2CLKSOURCE_PCLK1 (0x00000000U) +#define RCC_USART2CLKSOURCE_SYSCLK RCC_CCIPR_USART2SEL_0 +#define RCC_USART2CLKSOURCE_HSI RCC_CCIPR_USART2SEL_1 +#define RCC_USART2CLKSOURCE_LSE (RCC_CCIPR_USART2SEL_0 | RCC_CCIPR_USART2SEL_1) +/** + * @} + */ + +/** @defgroup RCCEx_LPUART1_Clock_Source RCCEx LPUART1 Clock Source + * @{ + */ +#define RCC_LPUART1CLKSOURCE_PCLK1 (0x00000000U) +#define RCC_LPUART1CLKSOURCE_SYSCLK RCC_CCIPR_LPUART1SEL_0 +#define RCC_LPUART1CLKSOURCE_HSI RCC_CCIPR_LPUART1SEL_1 +#define RCC_LPUART1CLKSOURCE_LSE (RCC_CCIPR_LPUART1SEL_0 | RCC_CCIPR_LPUART1SEL_1) +/** + * @} + */ + +/** @defgroup RCCEx_I2C1_Clock_Source RCCEx I2C1 Clock Source + * @{ + */ +#define RCC_I2C1CLKSOURCE_PCLK1 (0x00000000U) +#define RCC_I2C1CLKSOURCE_SYSCLK RCC_CCIPR_I2C1SEL_0 +#define RCC_I2C1CLKSOURCE_HSI RCC_CCIPR_I2C1SEL_1 +/** + * @} + */ + +#if defined(RCC_CCIPR_I2C3SEL) + +/** @defgroup RCCEx_I2C3_Clock_Source RCCEx I2C3 Clock Source + * @{ + */ +#define RCC_I2C3CLKSOURCE_PCLK1 (0x00000000U) +#define RCC_I2C3CLKSOURCE_SYSCLK RCC_CCIPR_I2C3SEL_0 +#define RCC_I2C3CLKSOURCE_HSI RCC_CCIPR_I2C3SEL_1 +/** + * @} + */ +#endif /* RCC_CCIPR_I2C3SEL */ + +/** @defgroup RCCEx_TIM_PRescaler_Selection RCCEx TIM Prescaler Selection + * @{ + */ +#define RCC_TIMPRES_DESACTIVATED ((uint8_t)0x00) +#define RCC_TIMPRES_ACTIVATED ((uint8_t)0x01) +/** + * @} + */ + +#if defined(USB) +/** @defgroup RCCEx_USB_Clock_Source RCCEx USB Clock Source + * @{ + */ +#define RCC_USBCLKSOURCE_HSI48 RCC_CCIPR_HSI48SEL +#define RCC_USBCLKSOURCE_PLL (0x00000000U) +/** + * @} + */ +#endif /* USB */ + +#if defined(RNG) +/** @defgroup RCCEx_RNG_Clock_Source RCCEx RNG Clock Source + * @{ + */ +#define RCC_RNGCLKSOURCE_HSI48 RCC_CCIPR_HSI48SEL +#define RCC_RNGCLKSOURCE_PLLCLK (0x00000000U) +/** + * @} + */ +#endif /* RNG */ + +#if defined(RCC_CCIPR_HSI48SEL) +/** @defgroup RCCEx_HSI48M_Clock_Source RCCEx HSI48M Clock Source + * @{ + */ +#define RCC_FLAG_HSI48 SYSCFG_CFGR3_VREFINT_RDYF + +#define RCC_HSI48M_PLL (0x00000000U) +#define RCC_HSI48M_HSI48 RCC_CCIPR_HSI48SEL + +/** + * @} + */ +#endif /* RCC_CCIPR_HSI48SEL */ + +/** @defgroup RCCEx_LPTIM1_Clock_Source RCCEx LPTIM1 Clock Source + * @{ + */ +#define RCC_LPTIM1CLKSOURCE_PCLK (0x00000000U) +#define RCC_LPTIM1CLKSOURCE_LSI RCC_CCIPR_LPTIM1SEL_0 +#define RCC_LPTIM1CLKSOURCE_HSI RCC_CCIPR_LPTIM1SEL_1 +#define RCC_LPTIM1CLKSOURCE_LSE RCC_CCIPR_LPTIM1SEL +/** + * @} + */ + +/** @defgroup RCCEx_StopWakeUp_Clock RCCEx StopWakeUp Clock + * @{ + */ + +#define RCC_STOP_WAKEUPCLOCK_MSI (0x00000000U) +#define RCC_STOP_WAKEUPCLOCK_HSI RCC_CFGR_STOPWUCK +/** + * @} + */ + +/** @defgroup RCCEx_LSEDrive_Configuration RCCEx LSE Drive Configuration + * @{ + */ + +#define RCC_LSEDRIVE_LOW (0x00000000U) +#define RCC_LSEDRIVE_MEDIUMLOW RCC_CSR_LSEDRV_0 +#define RCC_LSEDRIVE_MEDIUMHIGH RCC_CSR_LSEDRV_1 +#define RCC_LSEDRIVE_HIGH RCC_CSR_LSEDRV +/** + * @} + */ + +#if defined(CRS) + +/** @defgroup RCCEx_CRS_Status RCCEx CRS Status + * @{ + */ +#define RCC_CRS_NONE (0x00000000U) +#define RCC_CRS_TIMEOUT ((uint32_t)0x00000001) +#define RCC_CRS_SYNCOK ((uint32_t)0x00000002) +#define RCC_CRS_SYNCWARN ((uint32_t)0x00000004) +#define RCC_CRS_SYNCERR ((uint32_t)0x00000008) +#define RCC_CRS_SYNCMISS ((uint32_t)0x00000010) +#define RCC_CRS_TRIMOVF ((uint32_t)0x00000020) + +/** + * @} + */ + +/** @defgroup RCCEx_CRS_SynchroSource RCCEx CRS Synchronization Source + * @{ + */ +#define RCC_CRS_SYNC_SOURCE_GPIO ((uint32_t)0x00000000U) /*!< Synchro Signal source GPIO */ +#define RCC_CRS_SYNC_SOURCE_LSE CRS_CFGR_SYNCSRC_0 /*!< Synchro Signal source LSE */ +#define RCC_CRS_SYNC_SOURCE_USB CRS_CFGR_SYNCSRC_1 /*!< Synchro Signal source USB SOF (default)*/ +/** + * @} + */ + +/** @defgroup RCCEx_CRS_SynchroDivider RCCEx CRS Synchronization Divider + * @{ + */ +#define RCC_CRS_SYNC_DIV1 ((uint32_t)0x00000000U) /*!< Synchro Signal not divided (default) */ +#define RCC_CRS_SYNC_DIV2 CRS_CFGR_SYNCDIV_0 /*!< Synchro Signal divided by 2 */ +#define RCC_CRS_SYNC_DIV4 CRS_CFGR_SYNCDIV_1 /*!< Synchro Signal divided by 4 */ +#define RCC_CRS_SYNC_DIV8 (CRS_CFGR_SYNCDIV_1 | CRS_CFGR_SYNCDIV_0) /*!< Synchro Signal divided by 8 */ +#define RCC_CRS_SYNC_DIV16 CRS_CFGR_SYNCDIV_2 /*!< Synchro Signal divided by 16 */ +#define RCC_CRS_SYNC_DIV32 (CRS_CFGR_SYNCDIV_2 | CRS_CFGR_SYNCDIV_0) /*!< Synchro Signal divided by 32 */ +#define RCC_CRS_SYNC_DIV64 (CRS_CFGR_SYNCDIV_2 | CRS_CFGR_SYNCDIV_1) /*!< Synchro Signal divided by 64 */ +#define RCC_CRS_SYNC_DIV128 CRS_CFGR_SYNCDIV /*!< Synchro Signal divided by 128 */ +/** + * @} + */ + +/** @defgroup RCCEx_CRS_SynchroPolarity RCCEx CRS Synchronization Polarity + * @{ + */ +#define RCC_CRS_SYNC_POLARITY_RISING ((uint32_t)0x00000000U) /*!< Synchro Active on rising edge (default) */ +#define RCC_CRS_SYNC_POLARITY_FALLING CRS_CFGR_SYNCPOL /*!< Synchro Active on falling edge */ +/** + * @} + */ + +/** @defgroup RCCEx_CRS_ReloadValueDefault RCCEx CRS Default Reload Value + * @{ + */ +#define RCC_CRS_RELOADVALUE_DEFAULT ((uint32_t)0x0000BB7FU) /*!< The reset value of the RELOAD field corresponds + to a target frequency of 48 MHz and a synchronization signal frequency of 1 kHz (SOF signal from USB). */ +/** + * @} + */ + +/** @defgroup RCCEx_CRS_ErrorLimitDefault RCCEx CRS Default Error Limit Value + * @{ + */ +#define RCC_CRS_ERRORLIMIT_DEFAULT ((uint32_t)0x00000022U) /*!< Default Frequency error limit */ +/** + * @} + */ + +/** @defgroup RCCEx_CRS_HSI48CalibrationDefault RCCEx CRS Default HSI48 Calibration vakye + * @{ + */ +#define RCC_CRS_HSI48CALIBRATION_DEFAULT ((uint32_t)0x00000020U) /*!< The default value is 32, which corresponds to the middle of the trimming interval. + The trimming step is around 67 kHz between two consecutive TRIM steps. A higher TRIM value + corresponds to a higher output frequency */ +/** + * @} + */ + +/** @defgroup RCCEx_CRS_FreqErrorDirection RCCEx CRS Frequency Error Direction + * @{ + */ +#define RCC_CRS_FREQERRORDIR_UP ((uint32_t)0x00000000U) /*!< Upcounting direction, the actual frequency is above the target */ +#define RCC_CRS_FREQERRORDIR_DOWN ((uint32_t)CRS_ISR_FEDIR) /*!< Downcounting direction, the actual frequency is below the target */ +/** + * @} + */ + +/** @defgroup RCCEx_CRS_Interrupt_Sources RCCEx CRS Interrupt Sources + * @{ + */ +#define RCC_CRS_IT_SYNCOK CRS_CR_SYNCOKIE /*!< SYNC event OK */ +#define RCC_CRS_IT_SYNCWARN CRS_CR_SYNCWARNIE /*!< SYNC warning */ +#define RCC_CRS_IT_ERR CRS_CR_ERRIE /*!< Error */ +#define RCC_CRS_IT_ESYNC CRS_CR_ESYNCIE /*!< Expected SYNC */ +#define RCC_CRS_IT_SYNCERR CRS_CR_ERRIE /*!< SYNC error */ +#define RCC_CRS_IT_SYNCMISS CRS_CR_ERRIE /*!< SYNC missed */ +#define RCC_CRS_IT_TRIMOVF CRS_CR_ERRIE /*!< Trimming overflow or underflow */ + +/** + * @} + */ + +/** @defgroup RCCEx_CRS_Flags RCCEx CRS Flags + * @{ + */ +#define RCC_CRS_FLAG_SYNCOK CRS_ISR_SYNCOKF /*!< SYNC event OK flag */ +#define RCC_CRS_FLAG_SYNCWARN CRS_ISR_SYNCWARNF /*!< SYNC warning flag */ +#define RCC_CRS_FLAG_ERR CRS_ISR_ERRF /*!< Error flag */ +#define RCC_CRS_FLAG_ESYNC CRS_ISR_ESYNCF /*!< Expected SYNC flag */ +#define RCC_CRS_FLAG_SYNCERR CRS_ISR_SYNCERR /*!< SYNC error */ +#define RCC_CRS_FLAG_SYNCMISS CRS_ISR_SYNCMISS /*!< SYNC missed*/ +#define RCC_CRS_FLAG_TRIMOVF CRS_ISR_TRIMOVF /*!< Trimming overflow or underflow */ + +/** + * @} + */ + +#endif /* CRS */ + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ +/** @defgroup RCCEx_Exported_Macros RCCEx Exported Macros + * @{ + */ + +/** @defgroup RCCEx_Peripheral_Clock_Enable_Disable AHB Peripheral Clock Enable Disable + * @brief Enable or disable the AHB peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ + +#if defined(STM32L062xx) || defined(STM32L063xx)|| defined(STM32L082xx) || defined(STM32L083xx) || defined(STM32L041xx) || defined(STM32L021xx) +#define __HAL_RCC_AES_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->AHBENR, RCC_AHBENR_CRYPEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->AHBENR, RCC_AHBENR_CRYPEN);\ + UNUSED(tmpreg); \ + } while(0) +#define __HAL_RCC_AES_CLK_DISABLE() CLEAR_BIT(RCC->AHBENR, (RCC_AHBENR_CRYPEN)) + +#define __HAL_RCC_AES_IS_CLK_ENABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_CRYPEN) != RESET) +#define __HAL_RCC_AES_IS_CLK_DISABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_CRYPEN) == RESET) + +#endif /* STM32L062xx || STM32L063xx || STM32L072xx || STM32L073xx || STM32L082xx || STM32L083xx || STM32L041xx || STM32L021xx */ + +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) && !defined(STM32L051xx) && !defined(STM32L061xx) && !defined(STM32L071xx) && !defined(STM32L081xx) +#define __HAL_RCC_TSC_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->AHBENR, RCC_AHBENR_TSCEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->AHBENR, RCC_AHBENR_TSCEN);\ + UNUSED(tmpreg); \ + } while(0) +#define __HAL_RCC_TSC_CLK_DISABLE() CLEAR_BIT(RCC->AHBENR, (RCC_AHBENR_TSCEN)) + +#define __HAL_RCC_TSC_IS_CLK_ENABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_TSCEN) != RESET) +#define __HAL_RCC_TSC_IS_CLK_DISABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_TSCEN) == RESET) + +#define __HAL_RCC_RNG_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->AHBENR, RCC_AHBENR_RNGEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->AHBENR, RCC_AHBENR_RNGEN);\ + UNUSED(tmpreg); \ + } while(0) +#define __HAL_RCC_RNG_CLK_DISABLE() CLEAR_BIT(RCC->AHBENR, (RCC_AHBENR_RNGEN)) + +#define __HAL_RCC_RNG_IS_CLK_ENABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_RNGEN) != RESET) +#define __HAL_RCC_RNG_IS_CLK_DISABLED() (READ_BIT(RCC->AHBENR, RCC_AHBENR_RNGEN) == RESET) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) && !(STM32L051xx ) && !(STM32L061xx ) && !(STM32L071xx ) && !(STM32L081xx ) */ + +/** + * @} + */ + +/** @defgroup RCCEx_IOPORT_Clock_Enable_Disable IOPORT Peripheral Clock Enable Disable + * @brief Enable or disable the IOPORT peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#if defined(GPIOE) +#define __HAL_RCC_GPIOE_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->IOPENR, RCC_IOPENR_GPIOEEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOEEN);\ + UNUSED(tmpreg); \ + } while(0) + +#define __HAL_RCC_GPIOE_CLK_DISABLE() CLEAR_BIT(RCC->IOPENR,(RCC_IOPENR_GPIOEEN)) + +#define __HAL_RCC_GPIOE_IS_CLK_ENABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOEEN) != RESET) +#define __HAL_RCC_GPIOE_IS_CLK_DISABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIOEEN) == RESET) + +#endif /* GPIOE */ +#if defined(GPIOD) +#define __HAL_RCC_GPIOD_CLK_ENABLE() do { \ + __IO uint32_t tmpreg; \ + SET_BIT(RCC->IOPENR, RCC_IOPENR_GPIODEN);\ + /* Delay after an RCC peripheral clock enabling */ \ + tmpreg = READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIODEN);\ + UNUSED(tmpreg); \ + } while(0) +#define __HAL_RCC_GPIOD_CLK_DISABLE() CLEAR_BIT(RCC->IOPENR,(RCC_IOPENR_GPIODEN)) + +#define __HAL_RCC_GPIOD_IS_CLK_ENABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIODEN) != RESET) +#define __HAL_RCC_GPIOD_IS_CLK_DISABLED() (READ_BIT(RCC->IOPENR, RCC_IOPENR_GPIODEN) == RESET) + +#endif /* GPIOD */ +/** + * @} + */ + +/** @defgroup RCCEx_APB1_Clock_Enable_Disable APB1 Peripheral Clock Enable Disable + * @brief Enable or disable the APB1 peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ + +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) && !defined(STM32L051xx) && !defined(STM32L061xx) && !defined(STM32L071xx) && !defined(STM32L081xx) +#define __HAL_RCC_USB_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_USBEN)) +#define __HAL_RCC_USB_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_USBEN)) + +#define __HAL_RCC_USB_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USBEN) != RESET) +#define __HAL_RCC_USB_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USBEN) == RESET) + +#define __HAL_RCC_CRS_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_CRSEN)) +#define __HAL_RCC_CRS_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR,(RCC_APB1ENR_CRSEN)) + +#define __HAL_RCC_CRS_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_CRSEN) != RESET) +#define __HAL_RCC_CRS_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_CRSEN) == RESET) + +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) && !(STM32L051xx ) && !(STM32L061xx ) && !(STM32L071xx ) && !(STM32L081xx ) */ + + +#if defined(STM32L053xx) || defined(STM32L063xx) || defined(STM32L073xx) || defined(STM32L083xx) +#define __HAL_RCC_LCD_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_LCDEN)) +#define __HAL_RCC_LCD_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_LCDEN)) + +#define __HAL_RCC_LCD_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LCDEN) != RESET) +#define __HAL_RCC_LCD_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LCDEN) == RESET) + +#endif /* STM32L053xx || STM32L063xx || STM32L073xx || STM32L083xx */ + +#if defined(STM32L053xx) || defined(STM32L063xx) \ + || defined(STM32L052xx) || defined(STM32L062xx) \ + || defined(STM32L051xx) || defined(STM32L061xx) +#define __HAL_RCC_TIM2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM2EN)) +#define __HAL_RCC_TIM6_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM6EN)) +#define __HAL_RCC_SPI2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_SPI2EN)) +#define __HAL_RCC_USART2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART2EN)) +#define __HAL_RCC_LPUART1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPUART1EN)) +#define __HAL_RCC_I2C1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C1EN)) +#define __HAL_RCC_I2C2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C2EN)) +#define __HAL_RCC_DAC_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_DACEN)) +#define __HAL_RCC_LPTIM1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPTIM1EN)) + +#define __HAL_RCC_TIM2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM2EN)) +#define __HAL_RCC_TIM6_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM6EN)) +#define __HAL_RCC_SPI2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_SPI2EN)) +#define __HAL_RCC_USART2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART2EN)) +#define __HAL_RCC_LPUART1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPUART1EN)) +#define __HAL_RCC_I2C1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C1EN)) +#define __HAL_RCC_I2C2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C2EN)) +#define __HAL_RCC_DAC_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_DACEN)) +#define __HAL_RCC_LPTIM1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPTIM1EN)) + +#define __HAL_RCC_TIM2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM2EN) != RESET) +#define __HAL_RCC_TIM6_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM6EN) != RESET) +#define __HAL_RCC_SPI2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_SPI2EN) != RESET) +#define __HAL_RCC_USART2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART2EN) != RESET) +#define __HAL_RCC_LPUART1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPUART1EN) != RESET) +#define __HAL_RCC_I2C1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C1EN) != RESET) +#define __HAL_RCC_I2C2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C2EN) != RESET) +#define __HAL_RCC_DAC_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_DACEN) != RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPTIM1EN) != RESET) +#define __HAL_RCC_TIM2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM2EN) == RESET) +#define __HAL_RCC_TIM6_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM6EN) == RESET) +#define __HAL_RCC_SPI2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_SPI2EN) == RESET) +#define __HAL_RCC_USART2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART2EN) == RESET) +#define __HAL_RCC_LPUART1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPUART1EN) == RESET) +#define __HAL_RCC_I2C1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C1EN) == RESET) +#define __HAL_RCC_I2C2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C2EN) == RESET) +#define __HAL_RCC_DAC_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_DACEN) == RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPTIM1EN) == RESET) + +#endif /* STM32L051xx || STM32L061xx || */ + /* STM32L052xx || STM32L062xx || */ + /* STM32L053xx || STM32L063xx || */ + +#if defined(STM32L011xx) || defined(STM32L021xx) || defined(STM32L031xx) || defined(STM32L041xx) +#define __HAL_RCC_TIM2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM2EN)) +#define __HAL_RCC_USART2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART2EN)) +#define __HAL_RCC_LPUART1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPUART1EN)) +#define __HAL_RCC_I2C1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C1EN)) +#define __HAL_RCC_LPTIM1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPTIM1EN)) + +#define __HAL_RCC_TIM2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM2EN)) +#define __HAL_RCC_USART2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART2EN)) +#define __HAL_RCC_LPUART1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPUART1EN)) +#define __HAL_RCC_I2C1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C1EN)) +#define __HAL_RCC_LPTIM1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPTIM1EN)) + +#define __HAL_RCC_TIM2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM2EN) != RESET) +#define __HAL_RCC_USART2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART2EN) != RESET) +#define __HAL_RCC_LPUART1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPUART1EN) != RESET) +#define __HAL_RCC_I2C1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C1EN) != RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPTIM1EN) != RESET) +#define __HAL_RCC_TIM2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM2EN) == RESET) +#define __HAL_RCC_USART2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART2EN) == RESET) +#define __HAL_RCC_LPUART1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPUART1EN) == RESET) +#define __HAL_RCC_I2C1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C1EN) == RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPTIM1EN) == RESET) + +#endif /* STM32L011xx || STM32L021xx || STM32L031xx || STM32L041xx */ + + +#if defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L071xx) || defined(STM32L081xx) +#define __HAL_RCC_TIM2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM2EN)) +#define __HAL_RCC_TIM3_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM3EN)) +#define __HAL_RCC_TIM6_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM6EN)) +#define __HAL_RCC_TIM7_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM7EN)) +#define __HAL_RCC_SPI2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_SPI2EN)) +#define __HAL_RCC_USART2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART2EN)) +#define __HAL_RCC_USART4_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART4EN)) +#define __HAL_RCC_USART5_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART5EN)) +#define __HAL_RCC_LPUART1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPUART1EN)) +#define __HAL_RCC_I2C1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C1EN)) +#define __HAL_RCC_I2C2_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C2EN)) +#define __HAL_RCC_I2C3_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C3EN)) +#define __HAL_RCC_DAC_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_DACEN)) +#define __HAL_RCC_LPTIM1_CLK_ENABLE() SET_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPTIM1EN)) + +#define __HAL_RCC_TIM2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM2EN)) +#define __HAL_RCC_TIM3_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM3EN)) +#define __HAL_RCC_TIM6_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM6EN)) +#define __HAL_RCC_TIM7_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_TIM7EN)) +#define __HAL_RCC_SPI2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_SPI2EN)) +#define __HAL_RCC_USART2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART2EN)) +#define __HAL_RCC_USART4_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART4EN)) +#define __HAL_RCC_USART5_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_USART5EN)) +#define __HAL_RCC_LPUART1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPUART1EN)) +#define __HAL_RCC_I2C1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C1EN)) +#define __HAL_RCC_I2C2_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C2EN)) +#define __HAL_RCC_I2C3_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C3EN)) +#define __HAL_RCC_DAC_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_DACEN)) +#define __HAL_RCC_LPTIM1_CLK_DISABLE() CLEAR_BIT(RCC->APB1ENR, (RCC_APB1ENR_LPTIM1EN)) + +#define __HAL_RCC_TIM2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM2EN) != RESET) +#define __HAL_RCC_TIM3_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM3EN) != RESET) +#define __HAL_RCC_TIM6_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM6EN) != RESET) +#define __HAL_RCC_TIM7_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM7EN) != RESET) +#define __HAL_RCC_SPI2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_SPI2EN) != RESET) +#define __HAL_RCC_USART2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART2EN) != RESET) +#define __HAL_RCC_USART4_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART4EN) != RESET) +#define __HAL_RCC_USART5_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART5EN) != RESET) +#define __HAL_RCC_LPUART1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPUART1EN) != RESET) +#define __HAL_RCC_I2C1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C1EN) != RESET) +#define __HAL_RCC_I2C2_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C2EN) != RESET) +#define __HAL_RCC_I2C3_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C3EN) != RESET) +#define __HAL_RCC_DAC_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_DACEN) != RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_ENABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPTIM1EN) != RESET) +#define __HAL_RCC_TIM2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM2EN) == RESET) +#define __HAL_RCC_TIM3_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM3EN) == RESET) +#define __HAL_RCC_TIM6_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM6EN) == RESET) +#define __HAL_RCC_TIM7_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_TIM7EN) == RESET) +#define __HAL_RCC_SPI2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_SPI2EN) == RESET) +#define __HAL_RCC_USART2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART2EN) == RESET) +#define __HAL_RCC_USART4_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART4EN) == RESET) +#define __HAL_RCC_USART5_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_USART5EN) == RESET) +#define __HAL_RCC_LPUART1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPUART1EN) == RESET) +#define __HAL_RCC_I2C1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C1EN) == RESET) +#define __HAL_RCC_I2C2_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C2EN) == RESET) +#define __HAL_RCC_I2C3_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_I2C3EN) == RESET) +#define __HAL_RCC_DAC_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_DACEN) == RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_DISABLED() (READ_BIT(RCC->APB1ENR, RCC_APB1ENR_LPTIM1EN) == RESET) + +#endif /* STM32L071xx || STM32L081xx || */ + /* STM32L072xx || STM32L082xx || */ + /* STM32L073xx || STM32L083xx */ + + /** + * @} + */ + +#if defined(STM32L053xx) || defined(STM32L063xx) || defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L052xx) || defined(STM32L062xx) || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L051xx) || defined(STM32L061xx) || defined(STM32L071xx) || defined(STM32L081xx) \ + || defined(STM32L031xx) || defined(STM32L041xx) || defined(STM32L011xx) || defined(STM32L021xx) +/** @defgroup RCCEx_APB2_Clock_Enable_Disable APB2 Peripheral Clock Enable Disable + * @brief Enable or disable the APB2 peripheral clock. + * @note After reset, the peripheral clock (used for registers read/write access) + * is disabled and the application software has to enable this clock before + * using it. + * @{ + */ +#define __HAL_RCC_TIM21_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM21EN)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM22EN)) +#endif +#define __HAL_RCC_ADC1_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_ADC1EN)) +#define __HAL_RCC_SPI1_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_SPI1EN)) +#define __HAL_RCC_USART1_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_USART1EN)) + +#define __HAL_RCC_TIM21_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM21EN)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM22EN)) +#endif +#define __HAL_RCC_ADC1_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_ADC1EN)) +#define __HAL_RCC_SPI1_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_SPI1EN)) +#define __HAL_RCC_USART1_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_USART1EN)) +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) +#define __HAL_RCC_FIREWALL_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_MIFIEN)) +#define __HAL_RCC_FIREWALL_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_MIFIEN)) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !STM32L031xx && !STM32L041xx */ + +#define __HAL_RCC_TIM21_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM21EN) != RESET) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM22EN) != RESET) +#endif +#define __HAL_RCC_ADC1_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_ADC1EN) != RESET) +#define __HAL_RCC_SPI1_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SPI1EN) != RESET) +#define __HAL_RCC_USART1_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_USART1EN) != RESET) + +#define __HAL_RCC_TIM21_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM21EN) == RESET) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM22EN) == RESET) +#endif +#define __HAL_RCC_ADC1_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, (RCC_APB2ENR_ADC1EN) == RESET) +#define __HAL_RCC_SPI1_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, (RCC_APB2ENR_SPI1EN) == RESET) +#define __HAL_RCC_USART1_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, (RCC_APB2ENR_USART1EN) == RESET) +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) +#define __HAL_RCC_FIREWALL_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_MIFIEN) != RESET) +#define __HAL_RCC_FIREWALL_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, (RCC_APB2ENR_MIFIEN) == RESET) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !STM32L031xx && !STM32L041xx */ + +#endif /* STM32L051xx || STM32L061xx || STM32L071xx || STM32L081xx || */ + /* STM32L052xx || STM32L062xx || STM32L072xx || STM32L082xx || */ + /* STM32L053xx || STM32L063xx || STM32L073xx || STM32L083xx || */ + /* STM32L031xx || STM32L041xx || STM32L011xx || STM32L021xx */ + +/** + * @} + */ + +/** @defgroup RCCEx_AHB_Force_Release_Reset AHB Peripheral Force Release Reset + * @brief Force or release AHB peripheral reset. + * @{ + */ +#if defined(STM32L062xx) || defined(STM32L063xx)|| defined(STM32L082xx) || defined(STM32L083xx) || defined(STM32L041xx) || defined(STM32L021xx) +#define __HAL_RCC_AES_FORCE_RESET() SET_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_CRYPRST)) +#define __HAL_RCC_AES_RELEASE_RESET() CLEAR_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_CRYPRST)) +#endif /* STM32L062xx || STM32L063xx || STM32L072xx || STM32L073xx || STM32L082xx || STM32L083xx || STM32L041xx || STM32L021xx*/ + +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) && !defined(STM32L051xx) && !defined(STM32L061xx) && !defined(STM32L071xx) && !defined(STM32L081xx) +#define __HAL_RCC_TSC_FORCE_RESET() SET_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_TSCRST)) +#define __HAL_RCC_TSC_RELEASE_RESET() CLEAR_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_TSCRST)) +#define __HAL_RCC_RNG_FORCE_RESET() SET_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_RNGRST)) +#define __HAL_RCC_RNG_RELEASE_RESET() CLEAR_BIT(RCC->AHBRSTR, (RCC_AHBRSTR_RNGRST)) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) && !(STM32L051xx ) && !(STM32L061xx ) && !(STM32L071xx ) && !(STM32L081xx ) */ + +/** + * @} + */ + +/** @defgroup RCCEx_IOPORT_Force_Release_Reset IOPORT Peripheral Force Release Reset + * @brief Force or release IOPORT peripheral reset. + * @{ + */ +#if defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L071xx) || defined(STM32L081xx) +#define __HAL_RCC_GPIOE_FORCE_RESET() SET_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIOERST)) + +#define __HAL_RCC_GPIOE_RELEASE_RESET() CLEAR_BIT(RCC->IOPRSTR,(RCC_IOPRSTR_GPIOERST)) + +#endif /* STM32L071xx || STM32L081xx || */ + /* STM32L072xx || STM32L082xx || */ + /* STM32L073xx || STM32L083xx */ +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) +#define __HAL_RCC_GPIOD_FORCE_RESET() SET_BIT(RCC->IOPRSTR, (RCC_IOPRSTR_GPIODRST)) +#define __HAL_RCC_GPIOD_RELEASE_RESET() CLEAR_BIT(RCC->IOPRSTR,(RCC_IOPRSTR_GPIODRST)) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) */ +/** + * @} + */ + +/** @defgroup RCCEx_APB1_Force_Release_Reset APB1 Peripheral Force Release Reset + * @brief Force or release APB1 peripheral reset. + * @{ + */ + +#if defined(STM32L053xx) || defined(STM32L063xx) \ + || defined(STM32L052xx) || defined(STM32L062xx) \ + || defined(STM32L051xx) || defined(STM32L061xx) +#define __HAL_RCC_TIM2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM2RST)) +#define __HAL_RCC_TIM6_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM6RST)) +#define __HAL_RCC_LPTIM1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPTIM1RST)) +#define __HAL_RCC_I2C1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C1RST)) +#define __HAL_RCC_I2C2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C2RST)) +#define __HAL_RCC_USART2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART2RST)) +#define __HAL_RCC_LPUART1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPUART1RST)) +#define __HAL_RCC_SPI2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_SPI2RST)) +#define __HAL_RCC_DAC_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_DACRST)) + +#define __HAL_RCC_TIM2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM2RST)) +#define __HAL_RCC_TIM6_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM6RST)) +#define __HAL_RCC_LPTIM1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPTIM1RST)) +#define __HAL_RCC_I2C1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C1RST)) +#define __HAL_RCC_I2C2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C2RST)) +#define __HAL_RCC_USART2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART2RST)) +#define __HAL_RCC_LPUART1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPUART1RST)) +#define __HAL_RCC_SPI2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_SPI2RST)) +#define __HAL_RCC_DAC_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_DACRST)) +#endif /* STM32L051xx || STM32L061xx || */ + /* STM32L052xx || STM32L062xx || */ + /* STM32L053xx || STM32L063xx */ +#if defined(STM32L011xx) || defined(STM32L021xx) || defined(STM32L031xx) || defined(STM32L041xx) +#define __HAL_RCC_TIM2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM2RST)) +#define __HAL_RCC_LPTIM1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPTIM1RST)) +#define __HAL_RCC_I2C1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C1RST)) +#define __HAL_RCC_USART2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART2RST)) +#define __HAL_RCC_LPUART1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPUART1RST)) + +#define __HAL_RCC_TIM2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM2RST)) +#define __HAL_RCC_LPTIM1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPTIM1RST)) +#define __HAL_RCC_I2C1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C1RST)) +#define __HAL_RCC_USART2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART2RST)) +#define __HAL_RCC_LPUART1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPUART1RST)) +#endif /* STM32L031xx || STM32L041xx || STM32L011xx || STM32L021xx */ + +#if defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L071xx) || defined(STM32L081xx) +#define __HAL_RCC_TIM2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM2RST)) +#define __HAL_RCC_TIM3_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM3RST)) +#define __HAL_RCC_TIM6_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM6RST)) +#define __HAL_RCC_TIM7_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM7RST)) +#define __HAL_RCC_LPTIM1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPTIM1RST)) +#define __HAL_RCC_I2C1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C1RST)) +#define __HAL_RCC_I2C2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C2RST)) +#define __HAL_RCC_I2C3_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C3RST)) +#define __HAL_RCC_USART2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART2RST)) +#define __HAL_RCC_USART4_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART4RST)) +#define __HAL_RCC_USART5_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART5RST)) +#define __HAL_RCC_LPUART1_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPUART1RST)) +#define __HAL_RCC_SPI2_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_SPI2RST)) +#define __HAL_RCC_DAC_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_DACRST)) + +#define __HAL_RCC_TIM2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM2RST)) +#define __HAL_RCC_TIM3_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM3RST)) +#define __HAL_RCC_TIM6_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM6RST)) +#define __HAL_RCC_TIM7_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_TIM7RST)) +#define __HAL_RCC_LPTIM1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPTIM1RST)) +#define __HAL_RCC_I2C1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C1RST)) +#define __HAL_RCC_I2C2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C2RST)) +#define __HAL_RCC_I2C3_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_I2C3RST)) +#define __HAL_RCC_USART2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART2RST)) +#define __HAL_RCC_USART4_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART4RST)) +#define __HAL_RCC_USART5_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USART5RST)) +#define __HAL_RCC_LPUART1_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LPUART1RST)) +#define __HAL_RCC_SPI2_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_SPI2RST)) +#define __HAL_RCC_DAC_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_DACRST)) +#endif /* STM32L071xx || STM32L081xx || */ + /* STM32L072xx || STM32L082xx || */ + /* STM32L073xx || STM32L083xx || */ + +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) && !defined(STM32L051xx) && !defined(STM32L061xx) && !defined(STM32L071xx) && !defined(STM32L081xx) +#define __HAL_RCC_USB_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USBRST)) +#define __HAL_RCC_USB_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_USBRST)) +#define __HAL_RCC_CRS_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_CRSRST)) +#define __HAL_RCC_CRS_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR,(RCC_APB1RSTR_CRSRST)) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) && !(STM32L051xx ) && !(STM32L061xx ) && !(STM32L071xx ) && !(STM32L081xx ) */ + +#if defined(STM32L053xx) || defined(STM32L063xx) || defined(STM32L073xx) || defined(STM32L083xx) +#define __HAL_RCC_LCD_FORCE_RESET() SET_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LCDRST)) +#define __HAL_RCC_LCD_RELEASE_RESET() CLEAR_BIT(RCC->APB1RSTR, (RCC_APB1RSTR_LCDRST)) +#endif /* STM32L053xx || STM32L063xx || STM32L073xx || STM32L083xx */ + +/** + * @} + */ + +#if defined(STM32L053xx) || defined(STM32L063xx) || defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L052xx) || defined(STM32L062xx) || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L051xx) || defined(STM32L061xx) || defined(STM32L071xx) || defined(STM32L081xx) + +/** @defgroup RCCEx_APB2_Force_Release_Reset APB2 Peripheral Force Release Reset + * @brief Force or release APB2 peripheral reset. + * @{ + */ +#define __HAL_RCC_USART1_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_USART1RST)) +#define __HAL_RCC_ADC1_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_ADC1RST)) +#define __HAL_RCC_SPI1_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_SPI1RST)) +#define __HAL_RCC_TIM21_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM21RST)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM22RST)) +#endif + +#define __HAL_RCC_USART1_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_USART1RST)) +#define __HAL_RCC_ADC1_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_ADC1RST)) +#define __HAL_RCC_SPI1_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_SPI1RST)) +#define __HAL_RCC_TIM21_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM21RST)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM22RST)) +#endif +#endif /* STM32L051xx || STM32L061xx || STM32L071xx || STM32L081xx || */ + /* STM32L052xx || STM32L062xx || STM32L072xx || STM32L082xx || */ + /* STM32L053xx || STM32L063xx || STM32L073xx || STM32L083xx || */ +#if defined(STM32L011xx) || defined(STM32L021xx) || defined(STM32L031xx) || defined(STM32L041xx) +#define __HAL_RCC_ADC1_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_ADC1RST)) +#define __HAL_RCC_SPI1_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_SPI1RST)) +#define __HAL_RCC_TIM21_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM21RST)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_FORCE_RESET() SET_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM22RST)) +#endif +#define __HAL_RCC_ADC1_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_ADC1RST)) +#define __HAL_RCC_SPI1_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_SPI1RST)) +#define __HAL_RCC_TIM21_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM21RST)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_RELEASE_RESET() CLEAR_BIT(RCC->APB2RSTR, (RCC_APB2RSTR_TIM22RST)) +#endif +#endif /* STM32L031xx || STM32L041xx || STM32L011xx || STM32L021xx*/ + +/** + * @} + */ + +/** @defgroup RCCEx_AHB_Clock_Sleep_Enable_Disable AHB Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the AHB peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ + +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) && !defined(STM32L051xx) && !defined(STM32L061xx) && !defined(STM32L071xx) && !defined(STM32L081xx) +#define __HAL_RCC_TSC_CLK_SLEEP_ENABLE() SET_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_TSCSMEN)) +#define __HAL_RCC_RNG_CLK_SLEEP_ENABLE() SET_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_RNGSMEN)) +#define __HAL_RCC_TSC_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_TSCSMEN)) +#define __HAL_RCC_RNG_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->AHBSMENR, (RCC_AHBSMENR_RNGSMEN)) + +#define __HAL_RCC_TSC_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_TSCSMEN) != RESET) +#define __HAL_RCC_RNG_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_RNGSMEN) != RESET) +#define __HAL_RCC_TSC_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_TSCSMEN) == RESET) +#define __HAL_RCC_RNG_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->AHBSMENR, RCC_AHBSMENR_RNGSMEN) == RESET) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) && !(STM32L051xx ) && !(STM32L061xx ) && !(STM32L071xx ) && !(STM32L081xx ) */ + +#if defined(STM32L062xx) || defined(STM32L063xx)|| defined(STM32L082xx) || defined(STM32L083xx) || defined(STM32L041xx) +#define __HAL_RCC_AES_CLK_SLEEP_ENABLE() SET_BIT(RCC->AHBLPENR, (RCC_AHBSMENR_CRYPSMEN)) +#define __HAL_RCC_AES_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->AHBLPENR, (RCC_AHBSMENR_CRYPSMEN)) + +#define __HAL_RCC_AES_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->AHBLPENR, RCC_AHBSMENR_CRYPSMEN) != RESET) +#define __HAL_RCC_AES_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->AHBLPENR, RCC_AHBSMENR_CRYPSMEN) == RESET) +#endif /* STM32L062xx || STM32L063xx || STM32L072xx || STM32L073xx || STM32L082xx || STM32L083xx || STM32L041xx */ + +/** + * @} + */ + +/** @defgroup RCCEx_IOPORT_Clock_Sleep_Enable_Disable IOPORT Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the IOPORT peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ +#if defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L071xx) || defined(STM32L081xx) +#define __HAL_RCC_GPIOE_CLK_SLEEP_ENABLE() SET_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIOESMEN)) +#define __HAL_RCC_GPIOE_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->IOPSMENR,(RCC_IOPSMENR_GPIOESMEN)) + +#define __HAL_RCC_GPIOE_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOESMEN) != RESET) +#define __HAL_RCC_GPIOE_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIOESMEN) == RESET) +#endif /* STM32L071xx || STM32L081xx || */ + /* STM32L072xx || STM32L082xx || */ + /* STM32L073xx || STM32L083xx || */ +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) +#define __HAL_RCC_GPIOD_CLK_SLEEP_ENABLE() SET_BIT(RCC->IOPSMENR, (RCC_IOPSMENR_GPIODSMEN)) +#define __HAL_RCC_GPIOD_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->IOPSMENR,(RCC_IOPSMENR_GPIODSMEN)) + +#define __HAL_RCC_GPIOD_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIODSMEN) != RESET) +#define __HAL_RCC_GPIOD_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->IOPSMENR, RCC_IOPSMENR_GPIODSMEN) == RESET) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) */ +/** + * @} + */ + + +/** @defgroup RCCEx_APB1_Clock_Sleep_Enable_Disable APB1 Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the APB1 peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ + +#if defined(STM32L053xx) || defined(STM32L063xx) \ + || defined(STM32L052xx) || defined(STM32L062xx) \ + || defined(STM32L051xx) || defined(STM32L061xx) +#define __HAL_RCC_TIM2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM2SMEN)) +#define __HAL_RCC_TIM6_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM6SMEN)) +#define __HAL_RCC_SPI2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_SPI2SMEN)) +#define __HAL_RCC_USART2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART2SMEN)) +#define __HAL_RCC_LPUART1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPUART1SMEN)) +#define __HAL_RCC_I2C1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C1SMEN)) +#define __HAL_RCC_I2C2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C2SMEN)) +#define __HAL_RCC_DAC_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_DACSMEN)) +#define __HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPTIM1SMEN)) + +#define __HAL_RCC_TIM2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM2SMEN)) +#define __HAL_RCC_TIM6_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM6SMEN)) +#define __HAL_RCC_SPI2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_SPI2SMEN)) +#define __HAL_RCC_USART2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART2SMEN)) +#define __HAL_RCC_LPUART1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPUART1SMEN)) +#define __HAL_RCC_I2C1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C1SMEN)) +#define __HAL_RCC_I2C2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C2SMEN)) +#define __HAL_RCC_DAC_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_DACSMEN)) +#define __HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPTIM1SMEN)) + +#define __HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM2SMEN) != RESET) +#define __HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM6SMEN) != RESET) +#define __HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_SPI2SMEN) != RESET) +#define __HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART2SMEN) != RESET) +#define __HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPUART1SMEN) != RESET) +#define __HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C1SMEN) != RESET) +#define __HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C2SMEN) != RESET) +#define __HAL_RCC_DAC_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_DACSMEN) != RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPTIM1SMEN) != RESET) +#define __HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM2SMEN) == RESET) +#define __HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM6SMEN) == RESET) +#define __HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_SPI2SMEN) == RESET) +#define __HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART2SMEN) == RESET) +#define __HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPUART1SMEN) == RESET) +#define __HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C1SMEN) == RESET) +#define __HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C2SMEN) == RESET) +#define __HAL_RCC_DAC_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_DACSMEN) == RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPTIM1SMEN) == RESET) +#endif /* STM32L051xx || STM32L061xx || */ + /* STM32L052xx || STM32L062xx || */ + /* STM32L053xx || STM32L063xx */ + +#if defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L071xx) || defined(STM32L081xx) +#define __HAL_RCC_TIM2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM2SMEN)) +#define __HAL_RCC_TIM3_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM3SMEN)) +#define __HAL_RCC_TIM6_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM6SMEN)) +#define __HAL_RCC_TIM7_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM7SMEN)) +#define __HAL_RCC_SPI2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_SPI2SMEN)) +#define __HAL_RCC_USART2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART2SMEN)) +#define __HAL_RCC_USART4_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART4SMEN)) +#define __HAL_RCC_USART5_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART5SMEN)) +#define __HAL_RCC_LPUART1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPUART1SMEN)) +#define __HAL_RCC_I2C1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C1SMEN)) +#define __HAL_RCC_I2C2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C2SMEN)) +#define __HAL_RCC_I2C3_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C3SMEN)) +#define __HAL_RCC_DAC_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_DACSMEN)) +#define __HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPTIM1SMEN)) + +#define __HAL_RCC_TIM2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM2SMEN)) +#define __HAL_RCC_TIM3_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM3SMEN)) +#define __HAL_RCC_TIM6_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM6SMEN)) +#define __HAL_RCC_TIM7_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM7SMEN)) +#define __HAL_RCC_SPI2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_SPI2SMEN)) +#define __HAL_RCC_USART2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART2SMEN)) +#define __HAL_RCC_USART4_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART4SMEN)) +#define __HAL_RCC_USART5_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART5SMEN)) +#define __HAL_RCC_LPUART1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPUART1SMEN)) +#define __HAL_RCC_I2C1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C1SMEN)) +#define __HAL_RCC_I2C2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C2SMEN)) +#define __HAL_RCC_I2C3_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C3SMEN)) +#define __HAL_RCC_DAC_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_DACSMEN)) +#define __HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPTIM1SMEN)) + +#define __HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM2SMEN) != RESET) +#define __HAL_RCC_TIM3_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM3SMEN) != RESET) +#define __HAL_RCC_TIM6_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM6SMEN) != RESET) +#define __HAL_RCC_TIM7_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM7SMEN) != RESET) +#define __HAL_RCC_SPI2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_SPI2SMEN) != RESET) +#define __HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART2SMEN) != RESET) +#define __HAL_RCC_USART4_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART4SMEN) != RESET) +#define __HAL_RCC_USART5_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART5SMEN) != RESET) +#define __HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPUART1SMEN) != RESET) +#define __HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C1SMEN) != RESET) +#define __HAL_RCC_I2C2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C2SMEN) != RESET) +#define __HAL_RCC_I2C3_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C3SMEN) != RESET) +#define __HAL_RCC_DAC_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_DACSMEN) != RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPTIM1SMEN) != RESET) +#define __HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM2SMEN) == RESET) +#define __HAL_RCC_TIM3_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM3SMEN) == RESET) +#define __HAL_RCC_TIM6_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM6SMEN) == RESET) +#define __HAL_RCC_TIM7_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM7SMEN) == RESET) +#define __HAL_RCC_SPI2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_SPI2SMEN) == RESET) +#define __HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART2SMEN) == RESET) +#define __HAL_RCC_USART4_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART4SMEN) == RESET) +#define __HAL_RCC_USART5_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART5SMEN) == RESET) +#define __HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPUART1SMEN) == RESET) +#define __HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C1SMEN) == RESET) +#define __HAL_RCC_I2C2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C2SMEN) == RESET) +#define __HAL_RCC_I2C3_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C3SMEN) == RESET) +#define __HAL_RCC_DAC_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_DACSMEN) == RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPTIM1SMEN) == RESET) +#endif /* STM32L071xx || STM32L081xx || */ + /* STM32L072xx || STM32L082xx || */ + /* STM32L073xx || STM32L083xx || */ + +#if defined(STM32L011xx) || defined(STM32L021xx) || defined(STM32L031xx) || defined(STM32L041xx) +#define __HAL_RCC_TIM2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM2SMEN)) +#define __HAL_RCC_USART2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART2SMEN)) +#define __HAL_RCC_LPUART1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPUART1SMEN)) +#define __HAL_RCC_I2C1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C1SMEN)) +#define __HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPTIM1SMEN)) + +#define __HAL_RCC_TIM2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_TIM2SMEN)) +#define __HAL_RCC_USART2_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USART2SMEN)) +#define __HAL_RCC_LPUART1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPUART1SMEN)) +#define __HAL_RCC_I2C1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_I2C1SMEN)) +#define __HAL_RCC_LPTIM1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LPTIM1SMEN)) + +#define __HAL_RCC_TIM2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM2SMEN) != RESET) +#define __HAL_RCC_USART2_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART2SMEN) != RESET) +#define __HAL_RCC_LPUART1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPUART1SMEN) != RESET) +#define __HAL_RCC_I2C1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C1SMEN) != RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPTIM1SMEN) != RESET) +#define __HAL_RCC_TIM2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_TIM2SMEN) == RESET) +#define __HAL_RCC_USART2_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USART2SMEN) == RESET) +#define __HAL_RCC_LPUART1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPUART1SMEN) == RESET) +#define __HAL_RCC_I2C1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_I2C1SMEN) == RESET) +#define __HAL_RCC_LPTIM1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LPTIM1SMEN) == RESET) + +#endif /* STM32L031xx || STM32L041xx || STM32L011xx || STM32L021xx */ + +#if !defined(STM32L011xx) && !defined(STM32L021xx) && !defined(STM32L031xx) && !defined(STM32L041xx) && !defined(STM32L051xx) && !defined(STM32L061xx) && !defined(STM32L071xx) && !defined(STM32L081xx) +#define __HAL_RCC_USB_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USBSMEN)) +#define __HAL_RCC_USB_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_USBSMEN)) +#define __HAL_RCC_CRS_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_CRSSMEN)) +#define __HAL_RCC_CRS_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_CRSSMEN)) + +#define __HAL_RCC_USB_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USBSMEN) != RESET) +#define __HAL_RCC_USB_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_USBSMEN) == RESET) +#define __HAL_RCC_CRS_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_CRSSMEN) != RESET) +#define __HAL_RCC_CRS_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_CRSSMEN) == RESET) +#endif /* !(STM32L011xx) && !(STM32L021xx) && !(STM32L031xx ) && !(STM32L041xx ) && !(STM32L051xx ) && !(STM32L061xx ) && !(STM32L071xx ) && !(STM32L081xx ) */ + +#if defined(STM32L053xx) || defined(STM32L063xx) || defined(STM32L073xx) || defined(STM32L083xx) +#define __HAL_RCC_LCD_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LCDSMEN)) +#define __HAL_RCC_LCD_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB1SMENR, (RCC_APB1SMENR_LCDSMEN)) + +#define __HAL_RCC_LCD_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LCDSMEN) != RESET) +#define __HAL_RCC_LCD_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB1SMENR, RCC_APB1SMENR_LCDSMEN) == RESET) +#endif /* STM32L053xx || STM32L063xx || STM32L073xx || STM32L083xx */ + +/** + * @} + */ + +#if defined(STM32L053xx) || defined(STM32L063xx) || defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L052xx) || defined(STM32L062xx) || defined(STM32L072xx) || defined(STM32L082xx) \ + || defined(STM32L051xx) || defined(STM32L061xx) || defined(STM32L071xx) || defined(STM32L081xx) \ + || defined(STM32L031xx) || defined(STM32L041xx) || defined(STM32L011xx) || defined(STM32L021xx) + +/** @defgroup RCCEx_APB2_Clock_Sleep_Enable_Disable APB2 Peripheral Clock Sleep Enable Disable + * @brief Enable or disable the APB2 peripheral clock during Low Power (Sleep) mode. + * @note Peripheral clock gating in SLEEP mode can be used to further reduce + * power consumption. + * @note After wakeup from SLEEP mode, the peripheral clock is enabled again. + * @note By default, all peripheral clocks are enabled during SLEEP mode. + * @{ + */ +#define __HAL_RCC_TIM21_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_TIM21SMEN)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_TIM22SMEN)) +#endif +#define __HAL_RCC_ADC1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_ADC1SMEN)) +#define __HAL_RCC_SPI1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_SPI1SMEN)) +#define __HAL_RCC_USART1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_USART1SMEN)) + +#define __HAL_RCC_TIM21_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_TIM21SMEN)) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_TIM22SMEN)) +#endif +#define __HAL_RCC_ADC1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_ADC1SMEN)) +#define __HAL_RCC_SPI1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_SPI1SMEN)) +#define __HAL_RCC_USART1_CLK_SLEEP_DISABLE() CLEAR_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_USART1SMEN)) + +#define __HAL_RCC_TIM21_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_TIM21SMEN) != RESET) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_TIM22SMEN) != RESET) +#endif +#define __HAL_RCC_ADC1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_ADC1SMEN) != RESET) +#define __HAL_RCC_SPI1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_SPI1SMEN) != RESET) +#define __HAL_RCC_USART1_IS_CLK_SLEEP_ENABLED() (READ_BIT(RCC->APB2SMENR, RCC_APB2SMENR_USART1SMEN) != RESET) + +#define __HAL_RCC_TIM21_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_TIM21SMEN) == RESET) +#if !defined (STM32L011xx) && !defined (STM32L021xx) +#define __HAL_RCC_TIM22_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_TIM22SMEN) == RESET) +#endif +#define __HAL_RCC_ADC1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_ADC1SMEN) == RESET) +#define __HAL_RCC_SPI1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_SPI1SMEN) == RESET) +#define __HAL_RCC_USART1_IS_CLK_SLEEP_DISABLED() (READ_BIT(RCC->APB2SMENR, (RCC_APB2SMENR_USART1SMEN) == RESET) + +/** + * @} + */ + +#endif /* STM32L051xx || STM32L061xx || STM32L071xx || STM32L081xx || */ + /* STM32L052xx || STM32L062xx || STM32L072xx || STM32L082xx || */ + /* STM32L053xx || STM32L063xx || STM32L073xx || STM32L083xx || */ + /* STM32L031xx || STM32L041xx || STM32L011xx || STM32L021xx */ + + +/** + * @brief Enable interrupt on RCC LSE CSS EXTI Line 19. + * @retval None + */ +#define __HAL_RCC_LSECSS_EXTI_ENABLE_IT() SET_BIT(EXTI->IMR, RCC_EXTI_LINE_LSECSS) + +/** + * @brief Disable interrupt on RCC LSE CSS EXTI Line 19. + * @retval None + */ +#define __HAL_RCC_LSECSS_EXTI_DISABLE_IT() CLEAR_BIT(EXTI->IMR, RCC_EXTI_LINE_LSECSS) + +/** + * @brief Enable event on RCC LSE CSS EXTI Line 19. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_ENABLE_EVENT() SET_BIT(EXTI->EMR, RCC_EXTI_LINE_LSECSS) + +/** + * @brief Disable event on RCC LSE CSS EXTI Line 19. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_DISABLE_EVENT() CLEAR_BIT(EXTI->EMR, RCC_EXTI_LINE_LSECSS) + + +/** + * @brief RCC LSE CSS EXTI line configuration: set falling edge trigger. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_ENABLE_FALLING_EDGE() SET_BIT(EXTI->FTSR, RCC_EXTI_LINE_LSECSS) + + +/** + * @brief Disable the RCC LSE CSS Extended Interrupt Falling Trigger. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_DISABLE_FALLING_EDGE() CLEAR_BIT(EXTI->FTSR, RCC_EXTI_LINE_LSECSS) + + +/** + * @brief RCC LSE CSS EXTI line configuration: set rising edge trigger. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_ENABLE_RISING_EDGE() SET_BIT(EXTI->RTSR, RCC_EXTI_LINE_LSECSS) + +/** + * @brief Disable the RCC LSE CSS Extended Interrupt Rising Trigger. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_DISABLE_RISING_EDGE() CLEAR_BIT(EXTI->RTSR, RCC_EXTI_LINE_LSECSS) + +/** + * @brief RCC LSE CSS EXTI line configuration: set rising & falling edge trigger. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_ENABLE_RISING_FALLING_EDGE() \ + do { \ + __HAL_RCC_LSECSS_EXTI_ENABLE_RISING_EDGE(); \ + __HAL_RCC_LSECSS_EXTI_ENABLE_FALLING_EDGE(); \ + } while(0) + +/** + * @brief Disable the RCC LSE CSS Extended Interrupt Rising & Falling Trigger. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_DISABLE_RISING_FALLING_EDGE() \ + do { \ + __HAL_RCC_LSECSS_EXTI_DISABLE_RISING_EDGE(); \ + __HAL_RCC_LSECSS_EXTI_DISABLE_FALLING_EDGE(); \ + } while(0) + +/** + * @brief Check whether the specified RCC LSE CSS EXTI interrupt flag is set or not. + * @retval EXTI RCC LSE CSS Line Status. + */ +#define __HAL_RCC_LSECSS_EXTI_GET_FLAG() (EXTI->PR & (RCC_EXTI_LINE_LSECSS)) + +/** + * @brief Clear the RCC LSE CSS EXTI flag. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_CLEAR_FLAG() (EXTI->PR = (RCC_EXTI_LINE_LSECSS)) + +/** + * @brief Generate a Software interrupt on selected EXTI line. + * @retval None. + */ +#define __HAL_RCC_LSECSS_EXTI_GENERATE_SWIT() SET_BIT(EXTI->SWIER, RCC_EXTI_LINE_LSECSS) + + +#if defined(LCD) + +/** @defgroup RCCEx_LCD_Configuration LCD Configuration + * @brief Macros to configure clock source of LCD peripherals. + * @{ + */ + +/** @brief Macro to configures LCD clock (LCDCLK). + * @note LCD and RTC use the same configuration + * @note LCD can however be used in the Stop low power mode if the LSE or LSI is used as the + * LCD clock source. + * + * @param __LCD_CLKSOURCE__ specifies the LCD clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_RTCCLKSOURCE_LSE LSE selected as LCD clock + * @arg @ref RCC_RTCCLKSOURCE_LSI LSI selected as LCD clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV2 HSE divided by 2 selected as LCD clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV4 HSE divided by 4 selected as LCD clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV8 HSE divided by 8 selected as LCD clock + * @arg @ref RCC_RTCCLKSOURCE_HSE_DIV16 HSE divided by 16 selected as LCD clock + */ +#define __HAL_RCC_LCD_CONFIG(__LCD_CLKSOURCE__) __HAL_RCC_RTC_CONFIG(__LCD_CLKSOURCE__) + +/** @brief Macro to get the LCD clock source. + */ +#define __HAL_RCC_GET_LCD_SOURCE() __HAL_RCC_GET_RTC_SOURCE() + +/** @brief Macro to get the LCD clock pre-scaler. + */ +#define __HAL_RCC_GET_LCD_HSE_PRESCALER() __HAL_RCC_GET_RTC_HSE_PRESCALER() + +/** + * @} + */ + +#endif /* LCD */ + +/** @brief Macro to configure the I2C1 clock (I2C1CLK). + * + * @param __I2C1_CLKSOURCE__ specifies the I2C1 clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_I2C1CLKSOURCE_PCLK1 PCLK1 selected as I2C1 clock + * @arg @ref RCC_I2C1CLKSOURCE_HSI HSI selected as I2C1 clock + * @arg @ref RCC_I2C1CLKSOURCE_SYSCLK System Clock selected as I2C1 clock + */ +#define __HAL_RCC_I2C1_CONFIG(__I2C1_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_I2C1SEL, (uint32_t)(__I2C1_CLKSOURCE__)) + +/** @brief Macro to get the I2C1 clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_I2C1CLKSOURCE_PCLK1 PCLK1 selected as I2C1 clock + * @arg @ref RCC_I2C1CLKSOURCE_HSI HSI selected as I2C1 clock + * @arg @ref RCC_I2C1CLKSOURCE_SYSCLK System Clock selected as I2C1 clock + */ +#define __HAL_RCC_GET_I2C1_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_I2C1SEL))) + +#if defined(RCC_CCIPR_I2C3SEL) +/** @brief Macro to configure the I2C3 clock (I2C3CLK). + * + * @param __I2C3_CLKSOURCE__ specifies the I2C3 clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_I2C3CLKSOURCE_PCLK1 PCLK1 selected as I2C3 clock + * @arg @ref RCC_I2C3CLKSOURCE_HSI HSI selected as I2C3 clock + * @arg @ref RCC_I2C3CLKSOURCE_SYSCLK System Clock selected as I2C3 clock + */ +#define __HAL_RCC_I2C3_CONFIG(__I2C3_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_I2C3SEL, (uint32_t)(__I2C3_CLKSOURCE__)) + +/** @brief Macro to get the I2C3 clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_I2C3CLKSOURCE_PCLK1 PCLK1 selected as I2C3 clock + * @arg @ref RCC_I2C3CLKSOURCE_HSI HSI selected as I2C3 clock + * @arg @ref RCC_I2C3CLKSOURCE_SYSCLK System Clock selected as I2C3 clock + */ +#define __HAL_RCC_GET_I2C3_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_I2C3SEL))) + +#endif /* RCC_CCIPR_I2C3SEL */ + +#if defined (RCC_CCIPR_USART1SEL) +/** @brief Macro to configure the USART1 clock (USART1CLK). + * + * @param __USART1_CLKSOURCE__ specifies the USART1 clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_USART1CLKSOURCE_PCLK2 PCLK2 selected as USART1 clock + * @arg @ref RCC_USART1CLKSOURCE_HSI HSI selected as USART1 clock + * @arg @ref RCC_USART1CLKSOURCE_SYSCLK System Clock selected as USART1 clock + * @arg @ref RCC_USART1CLKSOURCE_LSE LSE selected as USART1 clock + */ +#define __HAL_RCC_USART1_CONFIG(__USART1_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_USART1SEL, (uint32_t)(__USART1_CLKSOURCE__)) + +/** @brief Macro to get the USART1 clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_USART1CLKSOURCE_PCLK2 PCLK2 selected as USART1 clock + * @arg @ref RCC_USART1CLKSOURCE_HSI HSI selected as USART1 clock + * @arg @ref RCC_USART1CLKSOURCE_SYSCLK System Clock selected as USART1 clock + * @arg @ref RCC_USART1CLKSOURCE_LSE LSE selected as USART1 clock + */ +#define __HAL_RCC_GET_USART1_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_USART1SEL))) +#endif /* RCC_CCIPR_USART1SEL */ + +/** @brief Macro to configure the USART2 clock (USART2CLK). + * + * @param __USART2_CLKSOURCE__ specifies the USART2 clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_USART2CLKSOURCE_PCLK1 PCLK1 selected as USART2 clock + * @arg @ref RCC_USART2CLKSOURCE_HSI HSI selected as USART2 clock + * @arg @ref RCC_USART2CLKSOURCE_SYSCLK System Clock selected as USART2 clock + * @arg @ref RCC_USART2CLKSOURCE_LSE LSE selected as USART2 clock + */ +#define __HAL_RCC_USART2_CONFIG(__USART2_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_USART2SEL, (uint32_t)(__USART2_CLKSOURCE__)) + +/** @brief Macro to get the USART2 clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_USART2CLKSOURCE_PCLK1 PCLK1 selected as USART2 clock + * @arg @ref RCC_USART2CLKSOURCE_HSI HSI selected as USART2 clock + * @arg @ref RCC_USART2CLKSOURCE_SYSCLK System Clock selected as USART2 clock + * @arg @ref RCC_USART2CLKSOURCE_LSE LSE selected as USART2 clock + */ +#define __HAL_RCC_GET_USART2_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_USART2SEL))) + +/** @brief Macro to configure the LPUART1 clock (LPUART1CLK). + * + * @param __LPUART1_CLKSOURCE__ specifies the LPUART1 clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_LPUART1CLKSOURCE_PCLK1 PCLK1 selected as LPUART1 clock + * @arg @ref RCC_LPUART1CLKSOURCE_HSI HSI selected as LPUART1 clock + * @arg @ref RCC_LPUART1CLKSOURCE_SYSCLK System Clock selected as LPUART1 clock + * @arg @ref RCC_LPUART1CLKSOURCE_LSE LSE selected as LPUART1 clock + */ +#define __HAL_RCC_LPUART1_CONFIG(__LPUART1_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_LPUART1SEL, (uint32_t)(__LPUART1_CLKSOURCE__)) + +/** @brief Macro to get the LPUART1 clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_LPUART1CLKSOURCE_PCLK1 PCLK1 selected as LPUART1 clock + * @arg @ref RCC_LPUART1CLKSOURCE_HSI HSI selected as LPUART1 clock + * @arg @ref RCC_LPUART1CLKSOURCE_SYSCLK System Clock selected as LPUART1 clock + * @arg @ref RCC_LPUART1CLKSOURCE_LSE LSE selected as LPUART1 clock + */ +#define __HAL_RCC_GET_LPUART1_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_LPUART1SEL))) + +/** @brief Macro to configure the LPTIM1 clock (LPTIM1CLK). + * + * @param __LPTIM1_CLKSOURCE__ specifies the LPTIM1 clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_LPTIM1CLKSOURCE_PCLK PCLK selected as LPTIM1 clock + * @arg @ref RCC_LPTIM1CLKSOURCE_LSI HSI selected as LPTIM1 clock + * @arg @ref RCC_LPTIM1CLKSOURCE_HSI LSI selected as LPTIM1 clock + * @arg @ref RCC_LPTIM1CLKSOURCE_LSE LSE selected as LPTIM1 clock + */ +#define __HAL_RCC_LPTIM1_CONFIG(__LPTIM1_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_LPTIM1SEL, (uint32_t)(__LPTIM1_CLKSOURCE__)) + +/** @brief Macro to get the LPTIM1 clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_LPTIM1CLKSOURCE_PCLK PCLK selected as LPUART1 clock + * @arg @ref RCC_LPTIM1CLKSOURCE_LSI HSI selected as LPUART1 clock + * @arg @ref RCC_LPTIM1CLKSOURCE_HSI System Clock selected as LPUART1 clock + * @arg @ref RCC_LPTIM1CLKSOURCE_LSE LSE selected as LPUART1 clock + */ +#define __HAL_RCC_GET_LPTIM1_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_LPTIM1SEL))) + +#if defined(USB) +/** @brief Macro to configure the USB clock (USBCLK). + * @param __USB_CLKSOURCE__ specifies the USB clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_USBCLKSOURCE_HSI48 HSI48 selected as USB clock + * @arg @ref RCC_USBCLKSOURCE_PLL PLL Clock selected as USB clock + */ +#define __HAL_RCC_USB_CONFIG(__USB_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_HSI48SEL, (uint32_t)(__USB_CLKSOURCE__)) + +/** @brief Macro to get the USB clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_USBCLKSOURCE_HSI48 HSI48 selected as USB clock + * @arg @ref RCC_USBCLKSOURCE_PLL PLL Clock selected as USB clock + */ +#define __HAL_RCC_GET_USB_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_HSI48SEL))) +#endif /* USB */ + +#if defined(RNG) +/** @brief Macro to configure the RNG clock (RNGCLK). + * @param __RNG_CLKSOURCE__ specifies the USB clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_RNGCLKSOURCE_HSI48 HSI48 selected as RNG clock + * @arg @ref RCC_RNGCLKSOURCE_PLLCLK PLL Clock selected as RNG clock + */ +#define __HAL_RCC_RNG_CONFIG(__RNG_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_HSI48SEL, (uint32_t)(__RNG_CLKSOURCE__)) + +/** @brief Macro to get the RNG clock source. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_RNGCLKSOURCE_HSI48 HSI48 selected as RNG clock + * @arg @ref RCC_RNGCLKSOURCE_PLLCLK PLL Clock selected as RNG clock + */ +#define __HAL_RCC_GET_RNG_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_HSI48SEL))) +#endif /* RNG */ + +#if defined(RCC_CCIPR_HSI48SEL) +/** @brief Macro to select the HSI48M clock source + * @note This macro can be replaced by either __HAL_RCC_RNG_CONFIG or + * __HAL_RCC_USB_CONFIG to configure respectively RNG or UBS clock sources. + * + * @param __HSI48M_CLKSOURCE__ specifies the HSI48M clock source dedicated for + * USB an RNG peripherals. + * This parameter can be one of the following values: + * @arg @ref RCC_HSI48M_PLL A dedicated 48MHZ PLL output. + * @arg @ref RCC_HSI48M_HSI48 48MHZ issued from internal HSI48 oscillator. + */ +#define __HAL_RCC_HSI48M_CONFIG(__HSI48M_CLKSOURCE__) \ + MODIFY_REG(RCC->CCIPR, RCC_CCIPR_HSI48SEL, (uint32_t)(__HSI48M_CLKSOURCE__)) + +/** @brief Macro to get the HSI48M clock source. + * @note This macro can be replaced by either __HAL_RCC_GET_RNG_SOURCE or + * __HAL_RCC_GET_USB_SOURCE to get respectively RNG or UBS clock sources. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_HSI48M_PLL A dedicated 48MHZ PLL output. + * @arg @ref RCC_HSI48M_HSI48 48MHZ issued from internal HSI48 oscillator. + */ +#define __HAL_RCC_GET_HSI48M_SOURCE() ((uint32_t)(READ_BIT(RCC->CCIPR, RCC_CCIPR_HSI48SEL))) +#endif /* RCC_CCIPR_HSI48SEL */ + +/** + * @brief Macro to enable the force of the Internal High Speed oscillator (HSI) + * in STOP mode to be quickly available as kernel clock for USART and I2C. + * @note The Enable of this function has not effect on the HSION bit. + */ +#define __HAL_RCC_HSISTOP_ENABLE() SET_BIT(RCC->CR, RCC_CR_HSIKERON) + +/** + * @brief Macro to disable the force of the Internal High Speed oscillator (HSI) + * in STOP mode to be quickly available as kernel clock for USART and I2C. + * @retval None + */ +#define __HAL_RCC_HSISTOP_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_HSIKERON) + +/** + * @brief Macro to configures the External Low Speed oscillator (LSE) drive capability. + * @param __RCC_LSEDRIVE__ specifies the new state of the LSE drive capability. + * This parameter can be one of the following values: + * @arg @ref RCC_LSEDRIVE_LOW LSE oscillator low drive capability. + * @arg @ref RCC_LSEDRIVE_MEDIUMLOW LSE oscillator medium low drive capability. + * @arg @ref RCC_LSEDRIVE_MEDIUMHIGH LSE oscillator medium high drive capability. + * @arg @ref RCC_LSEDRIVE_HIGH LSE oscillator high drive capability. + * @retval None + */ +#define __HAL_RCC_LSEDRIVE_CONFIG(__RCC_LSEDRIVE__) (MODIFY_REG(RCC->CSR,\ + RCC_CSR_LSEDRV, (uint32_t)(__RCC_LSEDRIVE__) )) + +/** + * @brief Macro to configures the wake up from stop clock. + * @param __RCC_STOPWUCLK__ specifies the clock source used after wake up from stop + * This parameter can be one of the following values: + * @arg @ref RCC_STOP_WAKEUPCLOCK_MSI MSI selected as system clock source + * @arg @ref RCC_STOP_WAKEUPCLOCK_HSI HSI selected as system clock source + * @retval None + */ +#define __HAL_RCC_WAKEUPSTOP_CLK_CONFIG(__RCC_STOPWUCLK__) (MODIFY_REG(RCC->CFGR,\ + RCC_CFGR_STOPWUCK, (uint32_t)(__RCC_STOPWUCLK__) )) + +#if defined(CRS) +/** + * @brief Enables the specified CRS interrupts. + * @param __INTERRUPT__ specifies the CRS interrupt sources to be enabled. + * This parameter can be any combination of the following values: + * @arg @ref RCC_CRS_IT_SYNCOK + * @arg @ref RCC_CRS_IT_SYNCWARN + * @arg @ref RCC_CRS_IT_ERR + * @arg @ref RCC_CRS_IT_ESYNC + * @retval None + */ +#define __HAL_RCC_CRS_ENABLE_IT(__INTERRUPT__) SET_BIT(CRS->CR, (__INTERRUPT__)) + +/** + * @brief Disables the specified CRS interrupts. + * @param __INTERRUPT__ specifies the CRS interrupt sources to be disabled. + * This parameter can be any combination of the following values: + * @arg @ref RCC_CRS_IT_SYNCOK + * @arg @ref RCC_CRS_IT_SYNCWARN + * @arg @ref RCC_CRS_IT_ERR + * @arg @ref RCC_CRS_IT_ESYNC + * @retval None + */ +#define __HAL_RCC_CRS_DISABLE_IT(__INTERRUPT__) CLEAR_BIT(CRS->CR,(__INTERRUPT__)) + +/** @brief Check the CRS interrupt has occurred or not. + * @param __INTERRUPT__ specifies the CRS interrupt source to check. + * This parameter can be one of the following values: + * @arg @ref RCC_CRS_IT_SYNCOK + * @arg @ref RCC_CRS_IT_SYNCWARN + * @arg @ref RCC_CRS_IT_ERR + * @arg @ref RCC_CRS_IT_ESYNC + * @retval The new state of __INTERRUPT__ (SET or RESET). + */ +#define __HAL_RCC_CRS_GET_IT_SOURCE(__INTERRUPT__) ((CRS->CR & (__INTERRUPT__))? SET : RESET) + +/** @brief Clear the CRS interrupt pending bits + * bits to clear the selected interrupt pending bits. + * @param __INTERRUPT__ specifies the interrupt pending bit to clear. + * This parameter can be any combination of the following values: + * @arg @ref RCC_CRS_IT_SYNCOK + * @arg @ref RCC_CRS_IT_SYNCWARN + * @arg @ref RCC_CRS_IT_ERR + * @arg @ref RCC_CRS_IT_ESYNC + * @arg @ref RCC_CRS_IT_TRIMOVF + * @arg @ref RCC_CRS_IT_SYNCERR + * @arg @ref RCC_CRS_IT_SYNCMISS + */ +#define __HAL_RCC_CRS_CLEAR_IT(__INTERRUPT__) do { \ + if(((__INTERRUPT__) & RCC_CRS_IT_ERROR_MASK) != RESET) \ + { \ + WRITE_REG(CRS->ICR, CRS_ICR_ERRC | ((__INTERRUPT__) & ~RCC_CRS_IT_ERROR_MASK)); \ + } \ + else \ + { \ + WRITE_REG(CRS->ICR, (__INTERRUPT__)); \ + } \ + } while(0) + +/** + * @brief Checks whether the specified CRS flag is set or not. + * @param __FLAG__ specifies the flag to check. + * This parameter can be one of the following values: + * @arg @ref RCC_CRS_FLAG_SYNCOK + * @arg @ref RCC_CRS_FLAG_SYNCWARN + * @arg @ref RCC_CRS_FLAG_ERR + * @arg @ref RCC_CRS_FLAG_ESYNC + * @arg @ref RCC_CRS_FLAG_TRIMOVF + * @arg @ref RCC_CRS_FLAG_SYNCERR + * @arg @ref RCC_CRS_FLAG_SYNCMISS + * @retval The new state of __FLAG__ (TRUE or FALSE). + */ +#define __HAL_RCC_CRS_GET_FLAG(__FLAG__) ((CRS->ISR & (__FLAG__)) == (__FLAG__)) + +/** + * @brief Clears the CRS specified FLAG. + * @param __FLAG__ specifies the flag to clear. + * This parameter can be one of the following values: + * @arg @ref RCC_CRS_FLAG_SYNCOK + * @arg @ref RCC_CRS_FLAG_SYNCWARN + * @arg @ref RCC_CRS_FLAG_ERR + * @arg @ref RCC_CRS_FLAG_ESYNC + * @arg @ref RCC_CRS_FLAG_TRIMOVF + * @arg @ref RCC_CRS_FLAG_SYNCERR + * @arg @ref RCC_CRS_FLAG_SYNCMISS + * @retval None + */ +#define __HAL_RCC_CRS_CLEAR_FLAG(__FLAG__) do { \ + if(((__FLAG__) & RCC_CRS_FLAG_ERROR_MASK) != RESET) \ + { \ + WRITE_REG(CRS->ICR, CRS_ICR_ERRC | ((__FLAG__) & ~RCC_CRS_FLAG_ERROR_MASK)); \ + } \ + else \ + { \ + WRITE_REG(CRS->ICR, (__FLAG__)); \ + } \ + } while(0) + +/** + * @brief Enables the oscillator clock for frequency error counter. + * @note when the CEN bit is set the CRS_CFGR register becomes write-protected. + * @retval None + */ +#define __HAL_RCC_CRS_FREQ_ERROR_COUNTER_ENABLE() SET_BIT(CRS->CR, CRS_CR_CEN) + +/** + * @brief Disables the oscillator clock for frequency error counter. + * @retval None + */ +#define __HAL_RCC_CRS_FREQ_ERROR_COUNTER_DISABLE() CLEAR_BIT(CRS->CR, CRS_CR_CEN) + +/** + * @brief Enables the automatic hardware adjustment of TRIM bits. + * @note When the AUTOTRIMEN bit is set the CRS_CFGR register becomes write-protected. + * @retval None + */ +#define __HAL_RCC_CRS_AUTOMATIC_CALIB_ENABLE() SET_BIT(CRS->CR, CRS_CR_AUTOTRIMEN) + +/** + * @brief Enables or disables the automatic hardware adjustment of TRIM bits. + * @retval None + */ +#define __HAL_RCC_CRS_AUTOMATIC_CALIB_DISABLE() CLEAR_BIT(CRS->CR, CRS_CR_AUTOTRIMEN) + +/** + * @brief Macro to calculate reload value to be set in CRS register according to target and sync frequencies + * @note The RELOAD value should be selected according to the ratio between the target frequency and the frequency + * of the synchronization source after prescaling. It is then decreased by one in order to + * reach the expected synchronization on the zero value. The formula is the following: + * RELOAD = (fTARGET / fSYNC) -1 + * @param __FTARGET__ Target frequency (value in Hz) + * @param __FSYNC__ Synchronization signal frequency (value in Hz) + * @retval None + */ +#define __HAL_RCC_CRS_RELOADVALUE_CALCULATE(__FTARGET__, __FSYNC__) (((__FTARGET__) / (__FSYNC__)) - 1) + +#endif /* CRS */ + + +#if defined(RCC_CR_HSIOUTEN) +/** @brief Enable he HSI OUT . + * @note After reset, the HSI output is not available + */ + +#define __HAL_RCC_HSI_OUT_ENABLE() SET_BIT(RCC->CR, RCC_CR_HSIOUTEN) + +/** @brief Disable the HSI OUT . + * @note After reset, the HSI output is not available + */ + +#define __HAL_RCC_HSI_OUT_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_HSIOUTEN) + +#endif /* RCC_CR_HSIOUTEN */ + +#if defined(STM32L053xx) || defined(STM32L063xx) || defined(STM32L073xx) || defined(STM32L083xx)\ + || defined(STM32L052xx) || defined(STM32L062xx) || defined(STM32L072xx) || defined(STM32L082xx) + +/** + * @brief Enable the Internal High Speed oscillator for USB (HSI48). + * @note After enabling the HSI48, the application software should wait on + * HSI48RDY flag to be set indicating that HSI48 clock is stable and can + * be used to clock the USB. + * @note The HSI48 is stopped by hardware when entering STOP and STANDBY modes. + */ +#define __HAL_RCC_HSI48_ENABLE() do { SET_BIT(RCC->CRRCR, RCC_CRRCR_HSI48ON); \ + SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN); \ + SET_BIT(SYSCFG->CFGR3, SYSCFG_CFGR3_ENREF_HSI48); \ + } while (0) +/** + * @brief Disable the Internal High Speed oscillator for USB (HSI48). + */ +#define __HAL_RCC_HSI48_DISABLE() do { CLEAR_BIT(RCC->CRRCR, RCC_CRRCR_HSI48ON); \ + CLEAR_BIT(SYSCFG->CFGR3, SYSCFG_CFGR3_ENREF_HSI48); \ + } while (0) + +/** @brief Macro to get the Internal 48Mhz High Speed oscillator (HSI48) state. + * @retval The clock source can be one of the following values: + * @arg @ref RCC_HSI48_ON HSI48 enabled + * @arg @ref RCC_HSI48_OFF HSI48 disabled + */ +#define __HAL_RCC_GET_HSI48_STATE() \ + (((uint32_t)(READ_BIT(RCC->CRRCR, RCC_CRRCR_HSI48ON)) != RESET) ? RCC_HSI48_ON : RCC_HSI48_OFF) + +/** @brief Enable or disable the HSI48M DIV6 OUT . + * @note After reset, the HSI48Mhz (divided by 6) output is not available + */ + +#define __HAL_RCC_HSI48M_DIV6_OUT_ENABLE() SET_BIT(RCC->CR, RCC_CRRCR_HSI48DIV6OUTEN) +#define __HAL_RCC_HSI48M_DIV6_OUT_DISABLE() CLEAR_BIT(RCC->CR, RCC_CRRCR_HSI48DIV6OUTEN) + +#endif /* STM32L071xx || STM32L081xx || */ + /* STM32L072xx || STM32L082xx || */ + /* STM32L073xx || STM32L083xx */ + + +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ +/** @addtogroup RCCEx_Exported_Functions + * @{ + */ + +/** @addtogroup RCCEx_Exported_Functions_Group1 + * @{ + */ + +HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit); +void HAL_RCCEx_GetPeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit); +uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint32_t PeriphClk); + + +void HAL_RCCEx_EnableLSECSS(void); +void HAL_RCCEx_DisableLSECSS(void); +void HAL_RCCEx_EnableLSECSS_IT(void); +void HAL_RCCEx_LSECSS_IRQHandler(void); +void HAL_RCCEx_LSECSS_Callback(void); + + +#if defined(SYSCFG_CFGR3_ENREF_HSI48) +void HAL_RCCEx_EnableHSI48_VREFINT(void); +void HAL_RCCEx_DisableHSI48_VREFINT(void); +#endif /* SYSCFG_CFGR3_ENREF_HSI48 */ + +/** + * @} + */ + +#if defined(CRS) + +/** @addtogroup RCCEx_Exported_Functions_Group3 + * @{ + */ + +void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit); +void HAL_RCCEx_CRSSoftwareSynchronizationGenerate(void); +void HAL_RCCEx_CRSGetSynchronizationInfo(RCC_CRSSynchroInfoTypeDef *pSynchroInfo); +uint32_t HAL_RCCEx_CRSWaitSynchronization(uint32_t Timeout); +void HAL_RCCEx_CRS_IRQHandler(void); +void HAL_RCCEx_CRS_SyncOkCallback(void); +void HAL_RCCEx_CRS_SyncWarnCallback(void); +void HAL_RCCEx_CRS_ExpectedSyncCallback(void); +void HAL_RCCEx_CRS_ErrorCallback(uint32_t Error); + +/** + * @} + */ + +#endif /* CRS */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_RCC_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h new file mode 100644 index 0000000..bc52f86 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h @@ -0,0 +1,906 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rtc.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of RTC HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_RTC_H +#define __STM32L0xx_HAL_RTC_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup RTC RTC + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/** @defgroup RTC_Exported_Types RTC Exported Types + * @{ + */ + +/** + * @brief HAL State structures definition + */ +typedef enum +{ + HAL_RTC_STATE_RESET = 0x00U, /*!< RTC not yet initialized or disabled */ + HAL_RTC_STATE_READY = 0x01U, /*!< RTC initialized and ready for use */ + HAL_RTC_STATE_BUSY = 0x02U, /*!< RTC process is ongoing */ + HAL_RTC_STATE_TIMEOUT = 0x03U, /*!< RTC timeout state */ + HAL_RTC_STATE_ERROR = 0x04U /*!< RTC error state */ + +}HAL_RTCStateTypeDef; + +/** + * @brief RTC Configuration Structure definition + */ +typedef struct +{ + uint32_t HourFormat; /*!< Specifies the RTC Hour Format. + This parameter can be a value of @ref RTC_Hour_Formats */ + + uint32_t AsynchPrediv; /*!< Specifies the RTC Asynchronous Predivider value. + This parameter must be a number between Min_Data = 0x00 and Max_Data = 0x7F */ + + uint32_t SynchPrediv; /*!< Specifies the RTC Synchronous Predivider value. + This parameter must be a number between Min_Data = 0x00 and Max_Data = 0x7FFF */ + + uint32_t OutPut; /*!< Specifies which signal will be routed to the RTC output. + This parameter can be a value of @ref RTCEx_Output_selection_Definitions */ + + uint32_t OutPutRemap; /*!< Specifies the remap for RTC output. + This parameter can be a value of @ref RTC_Output_ALARM_OUT_Remap */ + + uint32_t OutPutPolarity; /*!< Specifies the polarity of the output signal. + This parameter can be a value of @ref RTC_Output_Polarity_Definitions */ + + uint32_t OutPutType; /*!< Specifies the RTC Output Pin mode. + This parameter can be a value of @ref RTC_Output_Type_ALARM_OUT */ +}RTC_InitTypeDef; + +/** + * @brief RTC Time structure definition + */ +typedef struct +{ + uint8_t Hours; /*!< Specifies the RTC Time Hour. + This parameter must be a number between Min_Data = 0 and Max_Data = 12 if the RTC_HourFormat_12 is selected. + This parameter must be a number between Min_Data = 0 and Max_Data = 23 if the RTC_HourFormat_24 is selected */ + + uint8_t Minutes; /*!< Specifies the RTC Time Minutes. + This parameter must be a number between Min_Data = 0 and Max_Data = 59 */ + + uint8_t Seconds; /*!< Specifies the RTC Time Seconds. + This parameter must be a number between Min_Data = 0 and Max_Data = 59 */ + + uint8_t TimeFormat; /*!< Specifies the RTC AM/PM Time. + This parameter can be a value of @ref RTC_AM_PM_Definitions */ + + uint32_t SubSeconds; /*!< Specifies the RTC_SSR RTC Sub Second register content. + This parameter corresponds to a time unit range between [0-1] Second + with [1 Sec / SecondFraction +1] granularity */ + + uint32_t SecondFraction; /*!< Specifies the range or granularity of Sub Second register content + corresponding to Synchronous pre-scaler factor value (PREDIV_S) + This parameter corresponds to a time unit range between [0-1] Second + with [1 Sec / SecondFraction +1] granularity. + This field will be used only by HAL_RTC_GetTime function */ + + uint32_t DayLightSaving; /*!< Specifies RTC_DayLightSaveOperation: the value of hour adjustment. + This parameter can be a value of @ref RTC_DayLightSaving_Definitions */ + + uint32_t StoreOperation; /*!< Specifies RTC_StoreOperation value to be written in the BCK bit + in CR register to store the operation. + This parameter can be a value of @ref RTC_StoreOperation_Definitions */ +}RTC_TimeTypeDef; + +/** + * @brief RTC Date structure definition + */ +typedef struct +{ + uint8_t WeekDay; /*!< Specifies the RTC Date WeekDay. + This parameter can be a value of @ref RTC_WeekDay_Definitions */ + + uint8_t Month; /*!< Specifies the RTC Date Month (in BCD format). + This parameter can be a value of @ref RTC_Month_Date_Definitions */ + + uint8_t Date; /*!< Specifies the RTC Date. + This parameter must be a number between Min_Data = 1 and Max_Data = 31 */ + + uint8_t Year; /*!< Specifies the RTC Date Year. + This parameter must be a number between Min_Data = 0 and Max_Data = 99 */ + +}RTC_DateTypeDef; + +/** + * @brief RTC Alarm structure definition + */ +typedef struct +{ + RTC_TimeTypeDef AlarmTime; /*!< Specifies the RTC Alarm Time members */ + + uint32_t AlarmMask; /*!< Specifies the RTC Alarm Masks. + This parameter can be a value of @ref RTC_AlarmMask_Definitions */ + + uint32_t AlarmSubSecondMask; /*!< Specifies the RTC Alarm SubSeconds Masks. + This parameter can be a value of @ref RTC_Alarm_Sub_Seconds_Masks_Definitions */ + + uint32_t AlarmDateWeekDaySel; /*!< Specifies the RTC Alarm is on Date or WeekDay. + This parameter can be a value of @ref RTC_AlarmDateWeekDay_Definitions */ + + uint8_t AlarmDateWeekDay; /*!< Specifies the RTC Alarm Date/WeekDay. + If the Alarm Date is selected, this parameter must be set to a value in the 1-31 range. + If the Alarm WeekDay is selected, this parameter can be a value of @ref RTC_WeekDay_Definitions */ + + uint32_t Alarm; /*!< Specifies the alarm . + This parameter can be a value of @ref RTC_Alarms_Definitions */ +}RTC_AlarmTypeDef; + +/** + * @brief RTC Handle Structure definition + */ +typedef struct +{ + RTC_TypeDef *Instance; /*!< Register base address */ + + RTC_InitTypeDef Init; /*!< RTC required parameters */ + + HAL_LockTypeDef Lock; /*!< RTC locking object */ + + __IO HAL_RTCStateTypeDef State; /*!< Time communication state */ + +}RTC_HandleTypeDef; +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup RTC_Exported_Constants RTC Exported Constants + * @{ + */ + +/** @defgroup RTC_Hour_Formats RTC Hour Formats + * @{ + */ +#define RTC_HOURFORMAT_24 ((uint32_t)0x00000000U) +#define RTC_HOURFORMAT_12 ((uint32_t)RTC_CR_FMT) + +/** + * @} + */ + + +/** @defgroup RTC_Output_Polarity_Definitions RTC Output Polarity Definitions + * @{ + */ +#define RTC_OUTPUT_POLARITY_HIGH ((uint32_t)0x00000000U) +#define RTC_OUTPUT_POLARITY_LOW ((uint32_t)RTC_CR_POL) + +/** + * @} + */ + +/** @defgroup RTC_Output_Type_ALARM_OUT RTC Output Type ALARM OUT + * @{ + */ +#define RTC_OUTPUT_TYPE_OPENDRAIN ((uint32_t)0x00000000U) +#define RTC_OUTPUT_TYPE_PUSHPULL ((uint32_t)RTC_OR_ALARMOUTTYPE) + +/** + * @} + */ + +/** @defgroup RTC_Output_ALARM_OUT_Remap RTC Output ALARM OUT Remap + * @{ + */ +#define RTC_OUTPUT_REMAP_NONE ((uint32_t)0x00000000U) +#define RTC_OUTPUT_REMAP_POS1 ((uint32_t)RTC_OR_OUT_RMP) +/** + * @} + */ + +/** @defgroup RTC_AM_PM_Definitions RTC AM PM Definitions + * @{ + */ +#define RTC_HOURFORMAT12_AM ((uint8_t)0x00U) +#define RTC_HOURFORMAT12_PM ((uint8_t)0x40U) + +/** + * @} + */ + +/** @defgroup RTC_DayLightSaving_Definitions RTC DayLightSaving Definitions + * @{ + */ +#define RTC_DAYLIGHTSAVING_SUB1H ((uint32_t)RTC_CR_SUB1H) +#define RTC_DAYLIGHTSAVING_ADD1H ((uint32_t)RTC_CR_ADD1H) +#define RTC_DAYLIGHTSAVING_NONE ((uint32_t)0x00000000U) + +/** + * @} + */ + +/** @defgroup RTC_StoreOperation_Definitions RTC StoreOperation Definitions + * @{ + */ +#define RTC_STOREOPERATION_RESET ((uint32_t)0x00000000U) +#define RTC_STOREOPERATION_SET ((uint32_t)RTC_CR_BCK) + +/** + * @} + */ + +/** @defgroup RTC_Input_parameter_format_definitions RTC Input Parameter Format Definitions + * @{ + */ +#define RTC_FORMAT_BIN ((uint32_t)0x000000000U) +#define RTC_FORMAT_BCD ((uint32_t)0x000000001U) + +/** + * @} + */ + +/** @defgroup RTC_Month_Date_Definitions RTC Month Date Definitions + * @{ + */ + +/* Coded in BCD format */ +#define RTC_MONTH_JANUARY ((uint8_t)0x01U) +#define RTC_MONTH_FEBRUARY ((uint8_t)0x02U) +#define RTC_MONTH_MARCH ((uint8_t)0x03U) +#define RTC_MONTH_APRIL ((uint8_t)0x04U) +#define RTC_MONTH_MAY ((uint8_t)0x05U) +#define RTC_MONTH_JUNE ((uint8_t)0x06U) +#define RTC_MONTH_JULY ((uint8_t)0x07U) +#define RTC_MONTH_AUGUST ((uint8_t)0x08U) +#define RTC_MONTH_SEPTEMBER ((uint8_t)0x09U) +#define RTC_MONTH_OCTOBER ((uint8_t)0x10U) +#define RTC_MONTH_NOVEMBER ((uint8_t)0x11U) +#define RTC_MONTH_DECEMBER ((uint8_t)0x12U) + +/** + * @} + */ + +/** @defgroup RTC_WeekDay_Definitions RTC WeekDay Definitions + * @{ + */ +#define RTC_WEEKDAY_MONDAY ((uint8_t)0x01U) +#define RTC_WEEKDAY_TUESDAY ((uint8_t)0x02U) +#define RTC_WEEKDAY_WEDNESDAY ((uint8_t)0x03U) +#define RTC_WEEKDAY_THURSDAY ((uint8_t)0x04U) +#define RTC_WEEKDAY_FRIDAY ((uint8_t)0x05U) +#define RTC_WEEKDAY_SATURDAY ((uint8_t)0x06U) +#define RTC_WEEKDAY_SUNDAY ((uint8_t)0x07U) + +/** + * @} + */ + +/** @defgroup RTC_AlarmDateWeekDay_Definitions RTC AlarmDateWeekDay Definitions + * @{ + */ +#define RTC_ALARMDATEWEEKDAYSEL_DATE ((uint32_t)0x00000000U) +#define RTC_ALARMDATEWEEKDAYSEL_WEEKDAY RTC_ALRMAR_WDSEL + +/** + * @} + */ + +/** @defgroup RTC_AlarmMask_Definitions RTC AlarmMask Definitions + * @{ + */ +#define RTC_ALARMMASK_NONE ((uint32_t)0x00000000U) +#define RTC_ALARMMASK_DATEWEEKDAY RTC_ALRMAR_MSK4 +#define RTC_ALARMMASK_HOURS RTC_ALRMAR_MSK3 +#define RTC_ALARMMASK_MINUTES RTC_ALRMAR_MSK2 +#define RTC_ALARMMASK_SECONDS RTC_ALRMAR_MSK1 +#define RTC_ALARMMASK_ALL ((uint32_t) (RTC_ALARMMASK_NONE | \ + RTC_ALARMMASK_DATEWEEKDAY | \ + RTC_ALARMMASK_HOURS | \ + RTC_ALARMMASK_MINUTES | \ + RTC_ALARMMASK_SECONDS)) + +/** + * @} + */ + +/** @defgroup RTC_Alarms_Definitions RTC Alarms Definitions + * @{ + */ +#define RTC_ALARM_A RTC_CR_ALRAE +#define RTC_ALARM_B RTC_CR_ALRBE + +/** + * @} + */ + + + /** @defgroup RTC_Alarm_Sub_Seconds_Masks_Definitions RTC Alarm Sub Seconds Masks Definitions + * @{ + */ +#define RTC_ALARMSUBSECONDMASK_ALL ((uint32_t)0x00000000U) /*!< All Alarm SS fields are masked. + There is no comparison on sub seconds + for Alarm */ +#define RTC_ALARMSUBSECONDMASK_SS14_1 RTC_ALRMASSR_MASKSS_0 /*!< SS[14:1] are don't care in Alarm + comparison. Only SS[0] is compared. */ +#define RTC_ALARMSUBSECONDMASK_SS14_2 RTC_ALRMASSR_MASKSS_1 /*!< SS[14:2] are don't care in Alarm + comparison. Only SS[1:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_3 ((uint32_t) (RTC_ALRMASSR_MASKSS_0 | RTC_ALRMASSR_MASKSS_1)) /*!< SS[14:3] are don't care in Alarm + comparison. Only SS[2:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_4 RTC_ALRMASSR_MASKSS_2 /*!< SS[14:4] are don't care in Alarm + comparison. Only SS[3:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_5 ((uint32_t) (RTC_ALRMASSR_MASKSS_0 | RTC_ALRMASSR_MASKSS_2)) /*!< SS[14:5] are don't care in Alarm + comparison. Only SS[4:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_6 ((uint32_t) (RTC_ALRMASSR_MASKSS_1 | RTC_ALRMASSR_MASKSS_2)) /*!< SS[14:6] are don't care in Alarm + comparison. Only SS[5:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_7 ((uint32_t) (RTC_ALRMASSR_MASKSS_0 | RTC_ALRMASSR_MASKSS_1 | RTC_ALRMASSR_MASKSS_2)) /*!< SS[14:7] are don't care in Alarm + ` comparison. Only SS[6:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_8 RTC_ALRMASSR_MASKSS_3 /*!< SS[14:8] are don't care in Alarm + comparison. Only SS[7:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_9 ((uint32_t) (RTC_ALRMASSR_MASKSS_0 | RTC_ALRMASSR_MASKSS_3)) /*!< SS[14:9] are don't care in Alarm + comparison. Only SS[8:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_10 ((uint32_t) (RTC_ALRMASSR_MASKSS_1 | RTC_ALRMASSR_MASKSS_3)) /*!< SS[14:10] are don't care in Alarm + comparison. Only SS[9:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_11 ((uint32_t) (RTC_ALRMASSR_MASKSS_0 | RTC_ALRMASSR_MASKSS_1 | RTC_ALRMASSR_MASKSS_3)) /*!< SS[14:11] are don't care in Alarm + comparison. Only SS[10:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_12 ((uint32_t) (RTC_ALRMASSR_MASKSS_2 | RTC_ALRMASSR_MASKSS_3)) /*!< SS[14:12] are don't care in Alarm + comparison.Only SS[11:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14_13 ((uint32_t) (RTC_ALRMASSR_MASKSS_0 | RTC_ALRMASSR_MASKSS_2 | RTC_ALRMASSR_MASKSS_3)) /*!< SS[14:13] are don't care in Alarm + comparison. Only SS[12:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_SS14 ((uint32_t) (RTC_ALRMASSR_MASKSS_1 | RTC_ALRMASSR_MASKSS_2 | RTC_ALRMASSR_MASKSS_3)) /*!< SS[14] is don't care in Alarm + comparison.Only SS[13:0] are compared */ +#define RTC_ALARMSUBSECONDMASK_NONE RTC_ALRMASSR_MASKSS /*!< SS[14:0] are compared and must match + to activate alarm. */ +/** + * @} + */ + +/** @defgroup RTC_Interrupts_Definitions RTC Interrupts Definitions + * @{ + */ +#define RTC_IT_TS ((uint32_t)RTC_CR_TSIE) /*!< Enable Timestamp Interrupt */ +#define RTC_IT_WUT ((uint32_t)RTC_CR_WUTIE) /*!< Enable Wakeup timer Interrupt */ +#define RTC_IT_ALRA ((uint32_t)RTC_CR_ALRAIE) /*!< Enable Alarm A Interrupt */ +#define RTC_IT_ALRB ((uint32_t)RTC_CR_ALRBIE) /*!< Enable Alarm B Interrupt */ +#define RTC_IT_TAMP ((uint32_t)RTC_TAMPCR_TAMPIE) /*!< Enable all Tamper Interrupt */ + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + +#define RTC_IT_TAMP1 ((uint32_t)RTC_TAMPCR_TAMP1IE) /*!< Enable Tamper 1 Interrupt */ +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ +#define RTC_IT_TAMP2 ((uint32_t)RTC_TAMPCR_TAMP2IE) /*!< Enable Tamper 2 Interrupt */ +/** + * @} + */ + +/** @defgroup RTC_Flags_Definitions RTC Flags Definitions + * @{ + */ +#define RTC_FLAG_RECALPF ((uint32_t)RTC_ISR_RECALPF) +#define RTC_FLAG_TAMP2F ((uint32_t)RTC_ISR_TAMP2F) + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) +#define RTC_FLAG_TAMP1F ((uint32_t)RTC_ISR_TAMP1F) +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + +#define RTC_FLAG_TSOVF ((uint32_t)RTC_ISR_TSOVF) +#define RTC_FLAG_TSF ((uint32_t)RTC_ISR_TSF) +#define RTC_FLAG_WUTF ((uint32_t)RTC_ISR_WUTF) +#define RTC_FLAG_ALRBF ((uint32_t)RTC_ISR_ALRBF) +#define RTC_FLAG_ALRAF ((uint32_t)RTC_ISR_ALRAF) +#define RTC_FLAG_INITF ((uint32_t)RTC_ISR_INITF) +#define RTC_FLAG_RSF ((uint32_t)RTC_ISR_RSF) +#define RTC_FLAG_INITS ((uint32_t)RTC_ISR_INITS) +#define RTC_FLAG_SHPF ((uint32_t)RTC_ISR_SHPF) +#define RTC_FLAG_WUTWF ((uint32_t)RTC_ISR_WUTWF) +#define RTC_FLAG_ALRBWF ((uint32_t)RTC_ISR_ALRBWF) +#define RTC_FLAG_ALRAWF ((uint32_t)RTC_ISR_ALRAWF) +/** + * @} + */ + +/** + * @} + */ + +/* Exported macros -----------------------------------------------------------*/ +/** @defgroup RTC_Exported_Macros RTC Exported Macros + * @{ + */ + +/** @brief Reset RTC handle state + * @param __HANDLE__: RTC handle. + * @retval None + */ +#define __HAL_RTC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_RTC_STATE_RESET) + +/** + * @brief Disable the write protection for RTC registers. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_WRITEPROTECTION_DISABLE(__HANDLE__) \ + do{ \ + (__HANDLE__)->Instance->WPR = 0xCAU; \ + (__HANDLE__)->Instance->WPR = 0x53U; \ + } while(0U) + +/** + * @brief Enable the write protection for RTC registers. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_WRITEPROTECTION_ENABLE(__HANDLE__) \ + do{ \ + (__HANDLE__)->Instance->WPR = 0xFFU; \ + } while(0U) + +/** + * @brief Enable the RTC ALARMA peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_ALARMA_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_ALRAE)) + +/** + * @brief Disable the RTC ALARMA peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_ALARMA_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_ALRAE)) + +/** + * @brief Enable the RTC ALARMB peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_ALARMB_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_ALRBE)) + +/** + * @brief Disable the RTC ALARMB peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_ALARMB_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_ALRBE)) + +/** + * @brief Enable the RTC Alarm interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Alarm interrupt sources to be enabled or disabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_ALRA: Alarm A interrupt + * @arg RTC_IT_ALRB: Alarm B interrupt + * @retval None + */ +#define __HAL_RTC_ALARM_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__)) + +/** + * @brief Disable the RTC Alarm interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Alarm interrupt sources to be enabled or disabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_ALRA: Alarm A interrupt + * @arg RTC_IT_ALRB: Alarm B interrupt + * @retval None + */ +#define __HAL_RTC_ALARM_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__)) + +/** + * @brief Check whether the specified RTC Alarm interrupt has occurred or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Alarm interrupt sources to check. + * This parameter can be: + * @arg RTC_IT_ALRA: Alarm A interrupt + * @arg RTC_IT_ALRB: Alarm B interrupt + * @retval None + */ +#define __HAL_RTC_ALARM_GET_IT(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->ISR)& ((__INTERRUPT__)>> 4U)) != RESET)? SET : RESET) + +/** + * @brief Check whether the specified RTC Alarm interrupt has been enabled or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Alarm interrupt sources to check. + * This parameter can be: + * @arg RTC_IT_ALRA: Alarm A interrupt + * @arg RTC_IT_ALRB: Alarm B interrupt + * @retval None + */ +#define __HAL_RTC_ALARM_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->CR) & (__INTERRUPT__)) != RESET) ? SET : RESET) + +/** + * @brief Get the selected RTC Alarm's flag status. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Alarm Flag sources to check. + * This parameter can be: + * @arg RTC_FLAG_ALRAF + * @arg RTC_FLAG_ALRBF + * @arg RTC_FLAG_ALRAWF + * @arg RTC_FLAG_ALRBWF + * @retval None + */ +#define __HAL_RTC_ALARM_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET)? SET : RESET) + +/** + * @brief Clear the RTC Alarm's pending flags. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Alarm Flag sources to clear. + * This parameter can be: + * @arg RTC_FLAG_ALRAF + * @arg RTC_FLAG_ALRBF + * @retval None + */ +#define __HAL_RTC_ALARM_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~((__FLAG__) | RTC_ISR_INIT) | ((__HANDLE__)->Instance->ISR & RTC_ISR_INIT)) + +/** + * @brief Enable interrupt on the RTC Alarm associated Exti line. + * @retval None + */ +#define __HAL_RTC_ALARM_EXTI_ENABLE_IT() (EXTI->IMR |= RTC_EXTI_LINE_ALARM_EVENT) + +/** + * @brief Disable interrupt on the RTC Alarm associated Exti line. + * @retval None + */ +#define __HAL_RTC_ALARM_EXTI_DISABLE_IT() (EXTI->IMR &= ~(RTC_EXTI_LINE_ALARM_EVENT)) + +/** + * @brief Enable event on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_ENABLE_EVENT() (EXTI->EMR |= RTC_EXTI_LINE_ALARM_EVENT) + +/** + * @brief Disable event on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_DISABLE_EVENT() (EXTI->EMR &= ~(RTC_EXTI_LINE_ALARM_EVENT)) + +/** + * @brief Enable falling edge trigger on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_ENABLE_FALLING_EDGE() (EXTI->FTSR |= RTC_EXTI_LINE_ALARM_EVENT) + +/** + * @brief Disable falling edge trigger on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_DISABLE_FALLING_EDGE() (EXTI->FTSR &= ~(RTC_EXTI_LINE_ALARM_EVENT)) + +/** + * @brief Enable rising edge trigger on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_ENABLE_RISING_EDGE() (EXTI->RTSR |= RTC_EXTI_LINE_ALARM_EVENT) + +/** + * @brief Disable rising edge trigger on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_DISABLE_RISING_EDGE() (EXTI->RTSR &= ~(RTC_EXTI_LINE_ALARM_EVENT)) + +/** + * @brief Enable rising & falling edge trigger on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_ENABLE_RISING_FALLING_EDGE() do { \ + __HAL_RTC_ALARM_EXTI_ENABLE_RISING_EDGE(); \ + __HAL_RTC_ALARM_EXTI_ENABLE_FALLING_EDGE(); \ + } while(0U) + +/** + * @brief Disable rising & falling edge trigger on the RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_DISABLE_RISING_FALLING_EDGE() do { \ + __HAL_RTC_ALARM_EXTI_DISABLE_RISING_EDGE(); \ + __HAL_RTC_ALARM_EXTI_DISABLE_FALLING_EDGE(); \ + } while(0U) + +/** + * @brief Check whether the RTC Alarm associated Exti line interrupt flag is set or not. + * @retval Line Status. + */ +#define __HAL_RTC_ALARM_EXTI_GET_FLAG() (EXTI->PR & RTC_EXTI_LINE_ALARM_EVENT) + +/** + * @brief Clear the RTC Alarm associated Exti line flag. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_CLEAR_FLAG() (EXTI->PR = RTC_EXTI_LINE_ALARM_EVENT) + +/** + * @brief Generate a Software interrupt on RTC Alarm associated Exti line. + * @retval None. + */ +#define __HAL_RTC_ALARM_EXTI_GENERATE_SWIT() (EXTI->SWIER |= RTC_EXTI_LINE_ALARM_EVENT) + +/** + * @} + */ + +/* Include RTC HAL Extended module */ +#include "stm32l0xx_hal_rtc_ex.h" + +/* Exported functions --------------------------------------------------------*/ +/** @defgroup RTC_Exported_Functions RTC Exported Functions + * @{ + */ + +/** @defgroup RTC_Exported_Functions_Group1 Initialization and de-initialization functions + * @{ + */ +/* Initialization and de-initialization functions ****************************/ +HAL_StatusTypeDef HAL_RTC_Init(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTC_DeInit(RTC_HandleTypeDef *hrtc); +void HAL_RTC_MspInit(RTC_HandleTypeDef *hrtc); +void HAL_RTC_MspDeInit(RTC_HandleTypeDef *hrtc); +/** + * @} + */ + +/** @defgroup RTC_Exported_Functions_Group2 RTC Time and Date functions + * @{ + */ +/* RTC Time and Date functions ************************************************/ +HAL_StatusTypeDef HAL_RTC_SetTime(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTime, uint32_t Format); +HAL_StatusTypeDef HAL_RTC_GetTime(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTime, uint32_t Format); +HAL_StatusTypeDef HAL_RTC_SetDate(RTC_HandleTypeDef *hrtc, RTC_DateTypeDef *sDate, uint32_t Format); +HAL_StatusTypeDef HAL_RTC_GetDate(RTC_HandleTypeDef *hrtc, RTC_DateTypeDef *sDate, uint32_t Format); +/** + * @} + */ + +/** @defgroup RTC_Exported_Functions_Group3 RTC Alarm functions + * @{ + */ +/* RTC Alarm functions ********************************************************/ +HAL_StatusTypeDef HAL_RTC_SetAlarm(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Format); +HAL_StatusTypeDef HAL_RTC_SetAlarm_IT(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Format); +HAL_StatusTypeDef HAL_RTC_DeactivateAlarm(RTC_HandleTypeDef *hrtc, uint32_t Alarm); +HAL_StatusTypeDef HAL_RTC_GetAlarm(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Alarm, uint32_t Format); +void HAL_RTC_AlarmIRQHandler(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTC_PollForAlarmAEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout); +void HAL_RTC_AlarmAEventCallback(RTC_HandleTypeDef *hrtc); +/** + * @} + */ + +/** @defgroup RTC_Exported_Functions_Group4 Peripheral Control functions + * @{ + */ +/* Peripheral Control functions ***********************************************/ +HAL_StatusTypeDef HAL_RTC_WaitForSynchro(RTC_HandleTypeDef* hrtc); +/** + * @} + */ + +/** @defgroup RTC_Exported_Functions_Group5 Peripheral State functions + * @{ + */ +/* Peripheral State functions *************************************************/ +HAL_RTCStateTypeDef HAL_RTC_GetState(RTC_HandleTypeDef *hrtc); +/** + * @} + */ + +/** + * @} + */ + +/* Private types -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private constants ---------------------------------------------------------*/ +/** @defgroup RTC_Private_Constants RTC Private Constants + * @{ + */ +/* Masks Definition */ +#define RTC_TR_RESERVED_MASK ((uint32_t) (RTC_TR_PM | RTC_TR_HT | RTC_TR_HU | \ + RTC_TR_MNT | RTC_TR_MNU| RTC_TR_ST | \ + RTC_TR_SU)) +#define RTC_DR_RESERVED_MASK ((uint32_t) (RTC_DR_YT | RTC_DR_YU | RTC_DR_WDU | \ + RTC_DR_MT | RTC_DR_MU | RTC_DR_DT | \ + RTC_DR_DU)) +#define RTC_INIT_MASK ((uint32_t)0xFFFFFFFFU) +#define RTC_RSF_MASK ((uint32_t)~(RTC_ISR_INIT | RTC_ISR_RSF)) + +#define RTC_TIMEOUT_VALUE 1000U + +#define RTC_EXTI_LINE_ALARM_EVENT ((uint32_t)EXTI_IMR_IM17) /*!< External interrupt line 17 Connected to the RTC Alarm event */ + +/** + * @} + */ + +/* Private macros ------------------------------------------------------------*/ +/** @defgroup RTC_Private_Macros RTC Private Macros + * @{ + */ + +/** @defgroup RTC_IS_RTC_Definitions RTC Private macros to check input parameters + * @{ + */ + +#define IS_RTC_HOUR_FORMAT(FORMAT) (((FORMAT) == RTC_HOURFORMAT_12) || \ + ((FORMAT) == RTC_HOURFORMAT_24)) + +#define IS_RTC_OUTPUT_POL(POL) (((POL) == RTC_OUTPUT_POLARITY_HIGH) || \ + ((POL) == RTC_OUTPUT_POLARITY_LOW)) + +#define IS_RTC_OUTPUT_TYPE(TYPE) (((TYPE) == RTC_OUTPUT_TYPE_OPENDRAIN) || \ + ((TYPE) == RTC_OUTPUT_TYPE_PUSHPULL)) + +#define IS_RTC_OUTPUT_REMAP(REMAP) (((REMAP) == RTC_OUTPUT_REMAP_NONE) || \ + ((REMAP) == RTC_OUTPUT_REMAP_POS1)) + +#define IS_RTC_HOURFORMAT12(PM) (((PM) == RTC_HOURFORMAT12_AM) || \ + ((PM) == RTC_HOURFORMAT12_PM)) + +#define IS_RTC_DAYLIGHT_SAVING(SAVE) (((SAVE) == RTC_DAYLIGHTSAVING_SUB1H) || \ + ((SAVE) == RTC_DAYLIGHTSAVING_ADD1H) || \ + ((SAVE) == RTC_DAYLIGHTSAVING_NONE)) + +#define IS_RTC_STORE_OPERATION(OPERATION) (((OPERATION) == RTC_STOREOPERATION_RESET) || \ + ((OPERATION) == RTC_STOREOPERATION_SET)) + +#define IS_RTC_FORMAT(FORMAT) (((FORMAT) == RTC_FORMAT_BIN) || ((FORMAT) == RTC_FORMAT_BCD)) + +#define IS_RTC_YEAR(YEAR) ((YEAR) <= (uint32_t)99U) + +#define IS_RTC_MONTH(MONTH) (((MONTH) >= (uint32_t)1U) && ((MONTH) <= (uint32_t)12U)) + +#define IS_RTC_DATE(DATE) (((DATE) >= (uint32_t)1U) && ((DATE) <= (uint32_t)31U)) + +#define IS_RTC_WEEKDAY(WEEKDAY) (((WEEKDAY) == RTC_WEEKDAY_MONDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_TUESDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_WEDNESDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_THURSDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_FRIDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_SATURDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_SUNDAY)) + +#define IS_RTC_ALARM_DATE_WEEKDAY_DATE(DATE) (((DATE) >(uint32_t)0U) && ((DATE) <= (uint32_t)31U)) + +#define IS_RTC_ALARM_DATE_WEEKDAY_WEEKDAY(WEEKDAY) (((WEEKDAY) == RTC_WEEKDAY_MONDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_TUESDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_WEDNESDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_THURSDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_FRIDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_SATURDAY) || \ + ((WEEKDAY) == RTC_WEEKDAY_SUNDAY)) + +#define IS_RTC_ALARM_DATE_WEEKDAY_SEL(SEL) (((SEL) == RTC_ALARMDATEWEEKDAYSEL_DATE) || \ + ((SEL) == RTC_ALARMDATEWEEKDAYSEL_WEEKDAY)) + +#define IS_RTC_ALARM_MASK(MASK) (((MASK) & ~(RTC_ALARMMASK_ALL)) == (uint32_t)RESET) + +#define IS_RTC_ALARM(ALARM) (((ALARM) == RTC_ALARM_A) || ((ALARM) == RTC_ALARM_B)) + +#define IS_RTC_ALARM_SUB_SECOND_VALUE(VALUE) ((VALUE) <= RTC_ALRMASSR_SS) + +#define IS_RTC_ALARM_SUB_SECOND_MASK(MASK) (((MASK) == RTC_ALARMSUBSECONDMASK_ALL) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_1) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_2) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_3) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_4) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_5) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_6) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_7) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_8) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_9) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_10) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_11) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_12) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_13) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_SS14) || \ + ((MASK) == RTC_ALARMSUBSECONDMASK_NONE)) + +#define IS_RTC_ASYNCH_PREDIV(PREDIV) ((PREDIV) <= (uint32_t)0x7FU) + +#define IS_RTC_SYNCH_PREDIV(PREDIV) ((PREDIV) <= (uint32_t)0x7FFFU) + +#define IS_RTC_HOUR12(HOUR) (((HOUR) > (uint32_t)0U) && ((HOUR) <= (uint32_t)12U)) + +#define IS_RTC_HOUR24(HOUR) ((HOUR) <= (uint32_t)23U) + +#define IS_RTC_MINUTES(MINUTES) ((MINUTES) <= (uint32_t)59U) + +#define IS_RTC_SECONDS(SECONDS) ((SECONDS) <= (uint32_t)59U) + +/** + * @} + */ + +/** + * @} + */ + +/* Private functions -------------------------------------------------------------*/ +/** @defgroup RTC_Private_Functions RTC Private Functions + * @{ + */ +HAL_StatusTypeDef RTC_EnterInitMode(RTC_HandleTypeDef* hrtc); +uint8_t RTC_ByteToBcd2(uint8_t Value); +uint8_t RTC_Bcd2ToByte(uint8_t Value); +/** + * @} + */ + + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_RTC_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h new file mode 100644 index 0000000..f6bb558 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h @@ -0,0 +1,1461 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rtc_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of RTC HAL Extended module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_RTC_EX_H +#define __STM32L0xx_HAL_RTC_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup RTCEx RTCEx + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + +/** @defgroup RTCEx_Exported_Types RTCEx Exported Types + * @{ + */ + +/** + * @brief RTC Tamper structure definition + */ +typedef struct +{ + uint32_t Tamper; /*!< Specifies the Tamper Pin. + This parameter can be a value of @ref RTCEx_Tamper_Pins_Definitions */ + + uint32_t Interrupt; /*!< Specifies the Tamper Interrupt. + This parameter can be a value of @ref RTCEx_Tamper_Interrupt_Definitions */ + + uint32_t Trigger; /*!< Specifies the Tamper Trigger. + This parameter can be a value of @ref RTCEx_Tamper_Trigger_Definitions */ + + uint32_t NoErase; /*!< Specifies the Tamper no erase mode. + This parameter can be a value of @ref RTCEx_Tamper_EraseBackUp_Definitions */ + + uint32_t MaskFlag; /*!< Specifies the Tamper Flag masking. + This parameter can be a value of @ref RTCEx_Tamper_MaskFlag_Definitions */ + + uint32_t Filter; /*!< Specifies the RTC Filter Tamper. + This parameter can be a value of @ref RTCEx_Tamper_Filter_Definitions */ + + uint32_t SamplingFrequency; /*!< Specifies the sampling frequency. + This parameter can be a value of @ref RTCEx_Tamper_Sampling_Frequencies_Definitions */ + + uint32_t PrechargeDuration; /*!< Specifies the Precharge Duration . + This parameter can be a value of @ref RTCEx_Tamper_Pin_Precharge_Duration_Definitions */ + + uint32_t TamperPullUp; /*!< Specifies the Tamper PullUp . + This parameter can be a value of @ref RTCEx_Tamper_Pull_UP_Definitions */ + + uint32_t TimeStampOnTamperDetection; /*!< Specifies the TimeStampOnTamperDetection. + This parameter can be a value of @ref RTCEx_Tamper_TimeStampOnTamperDetection_Definitions */ +}RTC_TamperTypeDef; +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup RTCEx_Exported_Constants RTCEx Exported Constants + * @{ + */ + +/** @defgroup RTCEx_Output_selection_Definitions RTCEx Output Selection Definition + * @{ + */ +#define RTC_OUTPUT_DISABLE ((uint32_t)0x00000000U) +#define RTC_OUTPUT_ALARMA ((uint32_t)RTC_CR_OSEL_0) +#define RTC_OUTPUT_ALARMB ((uint32_t)RTC_CR_OSEL_1) +#define RTC_OUTPUT_WAKEUP ((uint32_t)RTC_CR_OSEL) + +/** + * @} + */ + +/** @defgroup RTCEx_Backup_Registers_Definitions RTCEx Backup Registers Definition + * @{ + */ +#define RTC_BKP_DR0 ((uint32_t)0x00000000U) +#define RTC_BKP_DR1 ((uint32_t)0x00000001U) +#define RTC_BKP_DR2 ((uint32_t)0x00000002U) +#define RTC_BKP_DR3 ((uint32_t)0x00000003U) +#define RTC_BKP_DR4 ((uint32_t)0x00000004U) +/** + * @} + */ + + +/** @defgroup RTCEx_Time_Stamp_Edges_definitions RTCEx Time Stamp Edges definition + * @{ + */ +#define RTC_TIMESTAMPEDGE_RISING ((uint32_t)0x00000000U) +#define RTC_TIMESTAMPEDGE_FALLING RTC_CR_TSEDGE + +/** + * @} + */ + +/** @defgroup RTCEx_TimeStamp_Pin_Selections RTCEx TimeStamp Pin Selection + * @{ + */ +#define RTC_TIMESTAMPPIN_DEFAULT ((uint32_t)0x00000000U) + +/** + * @} + */ + + +/** @defgroup RTCEx_Tamper_Pins_Definitions RTCEx Tamper Pins Definition + * @{ + */ +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + +#define RTC_TAMPER_1 RTC_TAMPCR_TAMP1E + +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + +#define RTC_TAMPER_2 RTC_TAMPCR_TAMP2E + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +#define RTC_TAMPER_3 RTC_TAMPCR_TAMP3E + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ + +/** + * @} + */ + + +/** @defgroup RTCEx_Tamper_Interrupt_Definitions RTCEx Tamper Interrupt Definitions + * @{ + */ +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + +#define RTC_TAMPER1_INTERRUPT RTC_TAMPCR_TAMP1IE + +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + +#define RTC_TAMPER2_INTERRUPT RTC_TAMPCR_TAMP2IE +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +#define RTC_TAMPER3_INTERRUPT RTC_TAMPCR_TAMP3IE + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ +#define RTC_ALL_TAMPER_INTERRUPT RTC_TAMPCR_TAMPIE +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_Trigger_Definitions RTCEx Tamper Trigger Definitions + * @{ + */ +#define RTC_TAMPERTRIGGER_RISINGEDGE ((uint32_t)0x00000000U) +#define RTC_TAMPERTRIGGER_FALLINGEDGE ((uint32_t)0x00000002U) +#define RTC_TAMPERTRIGGER_LOWLEVEL RTC_TAMPERTRIGGER_RISINGEDGE +#define RTC_TAMPERTRIGGER_HIGHLEVEL RTC_TAMPERTRIGGER_FALLINGEDGE + +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_EraseBackUp_Definitions RTCEx Tamper EraseBackUp Definitions +* @{ +*/ +#define RTC_TAMPER_ERASE_BACKUP_ENABLE ((uint32_t)0x00000000U) +#define RTC_TAMPER_ERASE_BACKUP_DISABLE ((uint32_t)0x00020000U) +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_MaskFlag_Definitions RTCEx Tamper MaskFlag Definitions +* @{ +*/ +#define RTC_TAMPERMASK_FLAG_DISABLE ((uint32_t)0x00000000U) +#define RTC_TAMPERMASK_FLAG_ENABLE ((uint32_t)0x00040000U) + +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_Filter_Definitions RTCEx Tamper Filter Definitions + * @{ + */ +#define RTC_TAMPERFILTER_DISABLE ((uint32_t)0x00000000U) /*!< Tamper filter is disabled */ + +#define RTC_TAMPERFILTER_2SAMPLE RTC_TAMPCR_TAMPFLT_0 /*!< Tamper is activated after 2 + consecutive samples at the active level */ +#define RTC_TAMPERFILTER_4SAMPLE RTC_TAMPCR_TAMPFLT_1 /*!< Tamper is activated after 4 + consecutive samples at the active level */ +#define RTC_TAMPERFILTER_8SAMPLE RTC_TAMPCR_TAMPFLT /*!< Tamper is activated after 8 + consecutive samples at the active leve. */ + +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_Sampling_Frequencies_Definitions RTCEx Tamper Sampling Frequencies Definitions + * @{ + */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV32768 ((uint32_t)0x00000000U) /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 32768 */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV16384 RTC_TAMPCR_TAMPFREQ_0 /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 16384 */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV8192 RTC_TAMPCR_TAMPFREQ_1 /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 8192 */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV4096 ((uint32_t) (RTC_TAMPCR_TAMPFREQ_0 | RTC_TAMPCR_TAMPFREQ_1)) /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 4096 */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV2048 RTC_TAMPCR_TAMPFREQ_2 /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 2048 */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV1024 ((uint32_t) (RTC_TAMPCR_TAMPFREQ_0 | RTC_TAMPCR_TAMPFREQ_2)) /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 1024 */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV512 ((uint32_t) (RTC_TAMPCR_TAMPFREQ_1 | RTC_TAMPCR_TAMPFREQ_2)) /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 512 */ +#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV256 ((uint32_t) (RTC_TAMPCR_TAMPFREQ_0 | RTC_TAMPCR_TAMPFREQ_1 | \ + RTC_TAMPCR_TAMPFREQ_2)) /*!< Each of the tamper inputs are sampled + with a frequency = RTCCLK / 256 */ + +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_Pin_Precharge_Duration_Definitions RTCEx Tamper Pin Precharge Duration Definitions + * @{ + */ +#define RTC_TAMPERPRECHARGEDURATION_1RTCCLK ((uint32_t)0x00000000U) /*!< Tamper pins are pre-charged before + sampling during 1 RTCCLK cycle */ +#define RTC_TAMPERPRECHARGEDURATION_2RTCCLK RTC_TAMPCR_TAMPPRCH_0 /*!< Tamper pins are pre-charged before + sampling during 2 RTCCLK cycles */ +#define RTC_TAMPERPRECHARGEDURATION_4RTCCLK RTC_TAMPCR_TAMPPRCH_1 /*!< Tamper pins are pre-charged before + sampling during 4 RTCCLK cycles */ +#define RTC_TAMPERPRECHARGEDURATION_8RTCCLK ((uint32_t)(RTC_TAMPCR_TAMPPRCH_0 | RTC_TAMPCR_TAMPPRCH_1)) /*!< Tamper pins are pre-charged before + sampling during 8 RTCCLK cycles */ + +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_TimeStampOnTamperDetection_Definitions RTCEx Tamper TimeStampOnTamperDetection Definitions + * @{ + */ +#define RTC_TIMESTAMPONTAMPERDETECTION_ENABLE RTC_TAMPCR_TAMPTS /*!< TimeStamp on Tamper Detection event saved */ +#define RTC_TIMESTAMPONTAMPERDETECTION_DISABLE ((uint32_t)0x00000000U) /*!< TimeStamp on Tamper Detection event is not saved */ + +/** + * @} + */ + +/** @defgroup RTCEx_Tamper_Pull_UP_Definitions RTCEx Tamper Pull UP Definitions + * @{ + */ +#define RTC_TAMPER_PULLUP_ENABLE ((uint32_t)0x00000000U) /*!< Tamper pins are pre-charged before sampling */ +#define RTC_TAMPER_PULLUP_DISABLE RTC_TAMPCR_TAMPPUDIS /*!< Tamper pins pre-charge is disabled */ + +/** + * @} + */ + +/** @defgroup RTCEx_Wakeup_Timer_Definitions RTCEx Wakeup Timer Definitions + * @{ + */ +#define RTC_WAKEUPCLOCK_RTCCLK_DIV16 ((uint32_t)0x00000000U) +#define RTC_WAKEUPCLOCK_RTCCLK_DIV8 RTC_CR_WUCKSEL_0 +#define RTC_WAKEUPCLOCK_RTCCLK_DIV4 RTC_CR_WUCKSEL_1 +#define RTC_WAKEUPCLOCK_RTCCLK_DIV2 ((uint32_t) (RTC_CR_WUCKSEL_0 | RTC_CR_WUCKSEL_1)) +#define RTC_WAKEUPCLOCK_CK_SPRE_16BITS RTC_CR_WUCKSEL_2 +#define RTC_WAKEUPCLOCK_CK_SPRE_17BITS ((uint32_t) (RTC_CR_WUCKSEL_1 | RTC_CR_WUCKSEL_2)) +/** + * @} + */ + +/** @defgroup RTCEx_Smooth_calib_period_Definitions RTCEx Smooth calib period Definitions + * @{ + */ +#define RTC_SMOOTHCALIB_PERIOD_32SEC ((uint32_t)0x00000000U) /*!< If RTCCLK = 32768 Hz, Smooth calibation + period is 32s, else 2exp20 RTCCLK pulses */ +#define RTC_SMOOTHCALIB_PERIOD_16SEC RTC_CALR_CALW16 /*!< If RTCCLK = 32768 Hz, Smooth calibation + period is 16s, else 2exp19 RTCCLK pulses */ +#define RTC_SMOOTHCALIB_PERIOD_8SEC RTC_CALR_CALW8 /*!< If RTCCLK = 32768 Hz, Smooth calibation + period is 8s, else 2exp18 RTCCLK pulses */ + +/** + * @} + */ + +/** @defgroup RTCEx_Smooth_calib_Plus_pulses_Definitions RTCEx Smooth calib Plus pulses Definitions + * @{ + */ +#define RTC_SMOOTHCALIB_PLUSPULSES_SET RTC_CALR_CALP /*!< The number of RTCCLK pulses added + during a X -second window = Y - CALM[8:0] + with Y = 512, 256, 128 when X = 32, 16, 8 */ +#define RTC_SMOOTHCALIB_PLUSPULSES_RESET ((uint32_t)0x00000000U) /*!< The number of RTCCLK pulses subbstited + during a 32-second window = CALM[8:0] */ + +/** + * @} + */ + /** @defgroup RTCEx_Calib_Output_selection_Definitions RTCEx Calib Output selection Definitions + * @{ + */ +#define RTC_CALIBOUTPUT_512HZ ((uint32_t)0x00000000U) +#define RTC_CALIBOUTPUT_1HZ RTC_CR_COSEL + +/** + * @} + */ + + +/** @defgroup RTCEx_Add_1_Second_Parameter_Definition RTCEx Add 1 Second Parameter Definitions + * @{ + */ +#define RTC_SHIFTADD1S_RESET ((uint32_t)0x00000000U) +#define RTC_SHIFTADD1S_SET RTC_SHIFTR_ADD1S +/** + * @} + */ + + /** @defgroup RTCEx_Interrupts_Definitions RTCEx Interrupts Definitions + * @{ + */ +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +#define RTC_IT_TAMP3 ((uint32_t)RTC_TAMPCR_TAMP3IE) + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ +/** + * @} + */ + +/** @defgroup RTCEx_Flags_Definitions RTCEx Flags Definitions + * @{ + */ +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +#define RTC_FLAG_TAMP3F ((uint32_t)RTC_ISR_TAMP3F) + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ +/** + * @} + */ + +/** + * @} + */ + +/* Exported macros -----------------------------------------------------------*/ +/** @defgroup RTCEx_Exported_Macros RTCEx Exported Macros + * @{ + */ + +/* ---------------------------------WAKEUPTIMER---------------------------------*/ +/** @defgroup RTCEx_WakeUp_Timer RTC WakeUp Timer + * @{ + */ +/** + * @brief Enable the RTC WakeUp Timer peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_WUTE)) + +/** + * @brief Disable the RTC WakeUp Timer peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_WUTE)) + +/** + * @brief Enable the RTC WakeUpTimer interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC WakeUpTimer interrupt sources to be enabled. + * This parameter can be: + * @arg RTC_IT_WUT: WakeUpTimer interrupt + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__)) + +/** + * @brief Disable the RTC WakeUpTimer interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC WakeUpTimer interrupt sources to be disabled. + * This parameter can be: + * @arg RTC_IT_WUT: WakeUpTimer interrupt + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__)) + +/** + * @brief Check whether the specified RTC WakeUpTimer interrupt has occurred or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC WakeUpTimer interrupt to check. + * This parameter can be: + * @arg RTC_IT_WUT: WakeUpTimer interrupt + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_GET_IT(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 4U)) != RESET) ? SET : RESET) + +/** + * @brief Check whether the specified RTC Wake Up timer interrupt has been enabled or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Wake Up timer interrupt sources to check. + * This parameter can be: + * @arg RTC_IT_WUT: WakeUpTimer interrupt + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->CR) & (__INTERRUPT__)) != RESET) ? SET : RESET) + +/** + * @brief Get the selected RTC WakeUpTimer's flag status. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC WakeUpTimer Flag is pending or not. + * This parameter can be: + * @arg RTC_FLAG_WUTF + * @arg RTC_FLAG_WUTWF + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET) ? SET : RESET) + +/** + * @brief Clear the RTC Wake Up timer's pending flags. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC WakeUpTimer Flag to clear. + * This parameter can be: + * @arg RTC_FLAG_WUTF + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~((__FLAG__) | RTC_ISR_INIT)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT)) + +/* WAKE-UP TIMER EXTI */ +/* ------------------ */ +/** + * @brief Enable interrupt on the RTC WakeUp Timer associated Exti line. + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_IT() (EXTI->IMR |= RTC_EXTI_LINE_WAKEUPTIMER_EVENT) + +/** + * @brief Disable interrupt on the RTC WakeUp Timer associated Exti line. + * @retval None + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_IT() (EXTI->IMR &= ~(RTC_EXTI_LINE_WAKEUPTIMER_EVENT)) + +/** + * @brief Enable event on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_EVENT() (EXTI->EMR |= RTC_EXTI_LINE_WAKEUPTIMER_EVENT) + +/** + * @brief Disable event on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_EVENT() (EXTI->EMR &= ~(RTC_EXTI_LINE_WAKEUPTIMER_EVENT)) + +/** + * @brief Enable falling edge trigger on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_FALLING_EDGE() (EXTI->FTSR |= RTC_EXTI_LINE_WAKEUPTIMER_EVENT) + +/** + * @brief Disable falling edge trigger on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_FALLING_EDGE() (EXTI->FTSR &= ~(RTC_EXTI_LINE_WAKEUPTIMER_EVENT)) + +/** + * @brief Enable rising edge trigger on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_RISING_EDGE() (EXTI->RTSR |= RTC_EXTI_LINE_WAKEUPTIMER_EVENT) + +/** + * @brief Disable rising edge trigger on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_RISING_EDGE() (EXTI->RTSR &= ~(RTC_EXTI_LINE_WAKEUPTIMER_EVENT)) + +/** + * @brief Enable rising & falling edge trigger on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_RISING_FALLING_EDGE() do { \ + __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_RISING_EDGE(); \ + __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_FALLING_EDGE(); \ + } while(0U) + +/** + * @brief Disable rising & falling edge trigger on the RTC WakeUp Timer associated Exti line. + * This parameter can be: + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_RISING_FALLING_EDGE() do { \ + __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_RISING_EDGE(); \ + __HAL_RTC_WAKEUPTIMER_EXTI_DISABLE_FALLING_EDGE(); \ + } while(0U) + +/** + * @brief Check whether the RTC WakeUp Timer associated Exti line interrupt flag is set or not. + * @retval Line Status. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_GET_FLAG() (EXTI->PR & RTC_EXTI_LINE_WAKEUPTIMER_EVENT) + +/** + * @brief Clear the RTC WakeUp Timer associated Exti line flag. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_CLEAR_FLAG() (EXTI->PR = RTC_EXTI_LINE_WAKEUPTIMER_EVENT) + +/** + * @brief Generate a Software interrupt on the RTC WakeUp Timer associated Exti line. + * @retval None. + */ +#define __HAL_RTC_WAKEUPTIMER_EXTI_GENERATE_SWIT() (EXTI->SWIER |= RTC_EXTI_LINE_WAKEUPTIMER_EVENT) +/** + * @} + */ + +/* ---------------------------------TIMESTAMP---------------------------------*/ +/** @defgroup RTCEx_Timestamp RTC Timestamp + * @{ + */ +/** + * @brief Enable the RTC TimeStamp peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_TSE)) + +/** + * @brief Disable the RTC TimeStamp peripheral. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_TSE)) + +/** + * @brief Enable the RTC TimeStamp interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC TimeStamp interrupt source to be enabled. + * This parameter can be: + * @arg RTC_IT_TS: TimeStamp interrupt + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__)) + +/** + * @brief Disable the RTC TimeStamp interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC TimeStamp interrupt source to be disabled. + * This parameter can be: + * @arg RTC_IT_TS: TimeStamp interrupt + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__)) + +/** + * @brief Check whether the specified RTC TimeStamp interrupt has occurred or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC TimeStamp interrupt to check. + * This parameter can be: + * @arg RTC_IT_TS: TimeStamp interrupt + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_GET_IT(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 4U)) != RESET) ? SET : RESET) + +/** + * @brief Check whether the specified RTC Time Stamp interrupt has been enabled or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Time Stamp interrupt source to check. + * This parameter can be: + * @arg RTC_IT_TS: TimeStamp interrupt + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->CR) & (__INTERRUPT__)) != RESET) ? SET : RESET) + +/** + * @brief Get the selected RTC TimeStamp's flag status. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC TimeStamp Flag is pending or not. + * This parameter can be: + * @arg RTC_FLAG_TSF + * @arg RTC_FLAG_TSOVF + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET) ? SET : RESET) + +/** + * @brief Clear the RTC Time Stamp's pending flags. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Alarm Flag to clear. + * This parameter can be: + * @arg RTC_FLAG_TSF + * @retval None + */ +#define __HAL_RTC_TIMESTAMP_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~((__FLAG__) | RTC_ISR_INIT)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT)) + +/** + * @} + */ + +/* ---------------------------------TAMPER------------------------------------*/ +/** @defgroup RTCEx_Tamper RTC Tamper + * @{ + */ + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) +/** + * @brief Enable the RTC Tamper1 input detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TAMPER1_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->TAMPCR |= (RTC_TAMPCR_TAMP1E)) + +/** + * @brief Disable the RTC Tamper1 input detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TAMPER1_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->TAMPCR &= ~(RTC_TAMPCR_TAMP1E)) + +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + +/** + * @brief Enable the RTC Tamper2 input detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TAMPER2_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->TAMPCR |= (RTC_TAMPCR_TAMP2E)) + +/** + * @brief Disable the RTC Tamper2 input detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TAMPER2_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->TAMPCR &= ~(RTC_TAMPCR_TAMP2E)) + + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +/** + * @brief Enable the RTC Tamper3 input detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TAMPER3_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->TAMPCR |= (RTC_TAMPCR_TAMP3E)) + +/** + * @brief Disable the RTC Tamper3 input detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_TAMPER3_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->TAMPCR &= ~(RTC_TAMPCR_TAMP3E)) + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ + + +/**************************************************************************************************/ + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) + +/** + * @brief Enable the RTC Tamper interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt sources to be enabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->TAMPCR |= (__INTERRUPT__)) + +/** + * @brief Disable the RTC Tamper interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt sources to be disabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->TAMPCR &= ~(__INTERRUPT__)) + +#elif defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + +/** + * @brief Enable the RTC Tamper interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt sources to be enabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->TAMPCR |= (__INTERRUPT__)) + +/** + * @brief Disable the RTC Tamper interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt sources to be disabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->TAMPCR &= ~(__INTERRUPT__)) + +#elif defined (STM32L011xx) || defined (STM32L021xx) + +/** + * @brief Enable the RTC Tamper interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt sources to be enabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->TAMPCR |= (__INTERRUPT__)) + +/** + * @brief Disable the RTC Tamper interrupt. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt sources to be disabled. + * This parameter can be any combination of the following values: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->TAMPCR &= ~(__INTERRUPT__)) + +#endif /* (STM32L011xx) || (STM32L021xx) + */ + +/**************************************************************************************************/ + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) + +/** + * @brief Check whether the specified RTC Tamper interrupt has occurred or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt to check. + * This parameter can be: + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_IT(__HANDLE__, __INTERRUPT__) (((__INTERRUPT__) == RTC_IT_TAMP1) ? (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 3U)) != RESET) ? SET : RESET) : \ + ((__INTERRUPT__) == RTC_IT_TAMP2) ? (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 5U)) != RESET) ? SET : RESET)) + +#elif defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + +/** + * @brief Check whether the specified RTC Tamper interrupt has occurred or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt to check. + * This parameter can be: + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_IT(__HANDLE__, __INTERRUPT__) (((__INTERRUPT__) == RTC_IT_TAMP1) ? (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 3U)) != RESET) ? SET : RESET) : \ + ((__INTERRUPT__) == RTC_IT_TAMP2) ? (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 5U)) != RESET) ? SET : RESET) : \ + ((__INTERRUPT__) == RTC_IT_TAMP3) ? (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 7U)) != RESET) ? SET : RESET)) + +#elif defined (STM32L011xx) || defined (STM32L021xx) + +/** + * @brief Check whether the specified RTC Tamper interrupt has occurred or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt to check. + * This parameter can be: + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_IT(__HANDLE__, __INTERRUPT__) (((__INTERRUPT__) == RTC_IT_TAMP2) ? (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 5U)) != RESET) ? SET : RESET) : \ + ((__INTERRUPT__) == RTC_IT_TAMP3) ? (((((__HANDLE__)->Instance->ISR) & ((__INTERRUPT__)>> 7U)) != RESET) ? SET : RESET)) + + +#endif /* (STM32L011xx) || (STM32L021xx) + */ + +/**************************************************************************************************/ + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) + +/** + * @brief Check whether the specified RTC Tamper interrupt has been enabled or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt source to check. + * This parameter can be: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->TAMPCR) & (__INTERRUPT__)) != RESET) ? SET : RESET) + + +/** + * @brief Get the selected RTC Tamper's flag status. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Tamper Flag is pending or not. + * This parameter can be: + * @arg RTC_FLAG_TAMP1F: Tamper1 flag + * @arg RTC_FLAG_TAMP2F: Tamper2 flag + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET) ? SET : RESET) + +/** + * @brief Clear the RTC Tamper's pending flags. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Tamper Flag to clear. + * This parameter can be: + * @arg RTC_FLAG_TAMP1F: Tamper1 flag + * @arg RTC_FLAG_TAMP2F: Tamper2 flag + * @retval None + */ +#define __HAL_RTC_TAMPER_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~((__FLAG__) | RTC_ISR_INIT)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT)) + + +#elif defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + +/** + * @brief Check whether the specified RTC Tamper interrupt has been enabled or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt source to check. + * This parameter can be: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP1: Tamper1 interrupt + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->TAMPCR) & (__INTERRUPT__)) != RESET) ? SET : RESET) + + +/** + * @brief Get the selected RTC Tamper's flag status. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Tamper Flag is pending or not. + * This parameter can be: + * @arg RTC_FLAG_TAMP1F: Tamper1 flag + * @arg RTC_FLAG_TAMP2F: Tamper2 flag + * @arg RTC_FLAG_TAMP3F: Tamper3 flag + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET) ? SET : RESET) + +/** + * @brief Clear the RTC Tamper's pending flags. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Tamper Flag to clear. + * This parameter can be: + * @arg RTC_FLAG_TAMP1F: Tamper1 flag + * @arg RTC_FLAG_TAMP2F: Tamper2 flag + * @arg RTC_FLAG_TAMP3F: Tamper3 flag + * @retval None + */ +#define __HAL_RTC_TAMPER_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~((__FLAG__) | RTC_ISR_INIT)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT)) + +#elif defined (STM32L011xx) || defined (STM32L021xx) + +/** + * @brief Check whether the specified RTC Tamper interrupt has been enabled or not. + * @param __HANDLE__: specifies the RTC handle. + * @param __INTERRUPT__: specifies the RTC Tamper interrupt source to check. + * This parameter can be: + * @arg RTC_IT_TAMP: All tampers interrupts + * @arg RTC_IT_TAMP2: Tamper2 interrupt + * @arg RTC_IT_TAMP3: Tamper3 interrupt + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->TAMPCR) & (__INTERRUPT__)) != RESET) ? SET : RESET) + + +/** + * @brief Get the selected RTC Tamper's flag status. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Tamper Flag is pending or not. + * This parameter can be: + * @arg RTC_FLAG_TAMP2F: Tamper2 flag + * @arg RTC_FLAG_TAMP3F: Tamper3 flag + * @retval None + */ +#define __HAL_RTC_TAMPER_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET) ? SET : RESET) + +/** + * @brief Clear the RTC Tamper's pending flags. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC Tamper Flag to clear. + * This parameter can be: + * @arg RTC_FLAG_TAMP2F: Tamper2 flag + * @arg RTC_FLAG_TAMP3F: Tamper3 flag + * @retval None + */ +#define __HAL_RTC_TAMPER_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~((__FLAG__) | RTC_ISR_INIT)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT)) + +#endif /* (STM32L011xx) || (STM32L021xx) + */ + + +/**************************************************************************************************/ + +/** + * @} + */ + +/* --------------------------TAMPER/TIMESTAMP---------------------------------*/ +/** @defgroup RTCEx_Tamper_Timestamp EXTI RTC Tamper Timestamp EXTI + * @{ + */ + +/* TAMPER TIMESTAMP EXTI */ +/* --------------------- */ +/** + * @brief Enable interrupt on the RTC Tamper and Timestamp associated Exti line. + * @retval None + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_IT() (EXTI->IMR |= RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT) + +/** + * @brief Disable interrupt on the RTC Tamper and Timestamp associated Exti line. + * @retval None + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_IT() (EXTI->IMR &= ~(RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT)) + +/** + * @brief Enable event on the RTC Tamper and Timestamp associated Exti line. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_EVENT() (EXTI->EMR |= RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT) + +/** + * @brief Disable event on the RTC Tamper and Timestamp associated Exti line. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_EVENT() (EXTI->EMR &= ~(RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT)) + +/** + * @brief Enable falling edge trigger on the RTC Tamper and Timestamp associated Exti line. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_FALLING_EDGE() (EXTI->FTSR |= RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT) + +/** + * @brief Disable falling edge trigger on the RTC Tamper and Timestamp associated Exti line. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_FALLING_EDGE() (EXTI->FTSR &= ~(RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT)) + +/** + * @brief Enable rising edge trigger on the RTC Tamper and Timestamp associated Exti line. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_RISING_EDGE() (EXTI->RTSR |= RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT) + +/** + * @brief Disable rising edge trigger on the RTC Tamper and Timestamp associated Exti line. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_RISING_EDGE() (EXTI->RTSR &= ~(RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT)) + +/** + * @brief Enable rising & falling edge trigger on the RTC Tamper and Timestamp associated Exti line. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_RISING_FALLING_EDGE() do { \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_RISING_EDGE(); \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_FALLING_EDGE(); \ + } while(0U) + +/** + * @brief Disable rising & falling edge trigger on the RTC Tamper and Timestamp associated Exti line. + * This parameter can be: + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_RISING_FALLING_EDGE() do { \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_RISING_EDGE(); \ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_DISABLE_FALLING_EDGE(); \ + } while(0U) + +/** + * @brief Check whether the RTC Tamper and Timestamp associated Exti line interrupt flag is set or not. + * @retval Line Status. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_GET_FLAG() (EXTI->PR & RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT) + +/** + * @brief Clear the RTC Tamper and Timestamp associated Exti line flag. + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_CLEAR_FLAG() (EXTI->PR = RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT) + +/** + * @brief Generate a Software interrupt on the RTC Tamper and Timestamp associated Exti line + * @retval None. + */ +#define __HAL_RTC_TAMPER_TIMESTAMP_EXTI_GENERATE_SWIT() (EXTI->SWIER |= RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT) +/** + * @} + */ + +/* ------------------------------Calibration----------------------------------*/ +/** @defgroup RTCEx_Calibration RTC Calibration + * @{ + */ + +/** + * @brief Enable the RTC calibration output. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_CALIBRATION_OUTPUT_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_COE)) + +/** + * @brief Disable the calibration output. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_CALIBRATION_OUTPUT_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_COE)) + +/** + * @brief Enable the clock reference detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_CLOCKREF_DETECTION_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_REFCKON)) + +/** + * @brief Disable the clock reference detection. + * @param __HANDLE__: specifies the RTC handle. + * @retval None + */ +#define __HAL_RTC_CLOCKREF_DETECTION_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_REFCKON)) + +/** + * @brief Get the selected RTC shift operation's flag status. + * @param __HANDLE__: specifies the RTC handle. + * @param __FLAG__: specifies the RTC shift operation Flag is pending or not. + * This parameter can be: + * @arg RTC_FLAG_SHPF + * @retval None + */ +#define __HAL_RTC_SHIFT_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET)? SET : RESET) +/** + * @} + */ + +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ +/** @defgroup RTCEx_Exported_Functions RTCEx Exported Functions + * @{ + */ + +/* RTC TimeStamp and Tamper functions *****************************************/ +/** @defgroup RTCEx_Exported_Functions_Group1 Extended RTC TimeStamp and Tamper functions + * @{ + */ + +HAL_StatusTypeDef HAL_RTCEx_SetTimeStamp(RTC_HandleTypeDef *hrtc, uint32_t TimeStampEdge, uint32_t RTC_TimeStampPin); +HAL_StatusTypeDef HAL_RTCEx_SetTimeStamp_IT(RTC_HandleTypeDef *hrtc, uint32_t TimeStampEdge, uint32_t RTC_TimeStampPin); +HAL_StatusTypeDef HAL_RTCEx_DeactivateTimeStamp(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_GetTimeStamp(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTimeStamp, RTC_DateTypeDef *sTimeStampDate, uint32_t Format); + +HAL_StatusTypeDef HAL_RTCEx_SetTamper(RTC_HandleTypeDef *hrtc, RTC_TamperTypeDef* sTamper); +HAL_StatusTypeDef HAL_RTCEx_SetTamper_IT(RTC_HandleTypeDef *hrtc, RTC_TamperTypeDef* sTamper); +HAL_StatusTypeDef HAL_RTCEx_DeactivateTamper(RTC_HandleTypeDef *hrtc, uint32_t Tamper); +void HAL_RTCEx_TamperTimeStampIRQHandler(RTC_HandleTypeDef *hrtc); + +void HAL_RTCEx_Tamper1EventCallback(RTC_HandleTypeDef *hrtc); +void HAL_RTCEx_Tamper2EventCallback(RTC_HandleTypeDef *hrtc); + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +void HAL_RTCEx_Tamper3EventCallback(RTC_HandleTypeDef *hrtc); + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ + +void HAL_RTCEx_TimeStampEventCallback(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_PollForTimeStampEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout); +HAL_StatusTypeDef HAL_RTCEx_PollForTamper1Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout); +HAL_StatusTypeDef HAL_RTCEx_PollForTamper2Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout); + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +HAL_StatusTypeDef HAL_RTCEx_PollForTamper3Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout); + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ + +/** + * @} + */ + +/* RTC Wake-up functions ******************************************************/ +/** @defgroup RTCEx_Exported_Functions_Group2 Extended RTC Wake-up functions + * @{ + */ + +HAL_StatusTypeDef HAL_RTCEx_SetWakeUpTimer(RTC_HandleTypeDef *hrtc, uint32_t WakeUpCounter, uint32_t WakeUpClock); +HAL_StatusTypeDef HAL_RTCEx_SetWakeUpTimer_IT(RTC_HandleTypeDef *hrtc, uint32_t WakeUpCounter, uint32_t WakeUpClock); +uint32_t HAL_RTCEx_DeactivateWakeUpTimer(RTC_HandleTypeDef *hrtc); +uint32_t HAL_RTCEx_GetWakeUpTimer(RTC_HandleTypeDef *hrtc); +void HAL_RTCEx_WakeUpTimerIRQHandler(RTC_HandleTypeDef *hrtc); +void HAL_RTCEx_WakeUpTimerEventCallback(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_PollForWakeUpTimerEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout); +/** + * @} + */ + +/* Extended Control functions ************************************************/ +/** @defgroup RTCEx_Exported_Functions_Group3 Extended Peripheral Control functions + * @{ + */ + +void HAL_RTCEx_BKUPWrite(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister, uint32_t Data); +uint32_t HAL_RTCEx_BKUPRead(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister); + +HAL_StatusTypeDef HAL_RTCEx_SetSmoothCalib(RTC_HandleTypeDef *hrtc, uint32_t SmoothCalibPeriod, uint32_t SmoothCalibPlusPulses, uint32_t SmoothCalibMinusPulsesValue); +HAL_StatusTypeDef HAL_RTCEx_SetSynchroShift(RTC_HandleTypeDef *hrtc, uint32_t ShiftAdd1S, uint32_t ShiftSubFS); +HAL_StatusTypeDef HAL_RTCEx_SetCalibrationOutPut(RTC_HandleTypeDef *hrtc, uint32_t CalibOutput); +HAL_StatusTypeDef HAL_RTCEx_DeactivateCalibrationOutPut(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_SetRefClock(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_DeactivateRefClock(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_EnableBypassShadow(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_DisableBypassShadow(RTC_HandleTypeDef *hrtc); +/** + * @} + */ + +/* Extended RTC features functions *******************************************/ +/** @defgroup RTCEx_Exported_Functions_Group4 Extended features functions + * @{ + */ +void HAL_RTCEx_AlarmBEventCallback(RTC_HandleTypeDef *hrtc); +HAL_StatusTypeDef HAL_RTCEx_PollForAlarmBEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout); +/** + * @} + */ + +/** + * @} + */ + +/* Private types -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private constants ---------------------------------------------------------*/ +/** @defgroup RTCEx_Private_Constants RTCEx Private Constants + * @{ + */ + +/* Masks Definition */ + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) + +#define RTC_FLAGS_MASK ((uint32_t) (RTC_FLAG_RECALPF | RTC_FLAG_TAMP2F | RTC_FLAG_TAMP1F| \ + RTC_FLAG_TSOVF | RTC_FLAG_TSF | RTC_FLAG_WUTF | \ + RTC_FLAG_ALRBF | RTC_FLAG_ALRAF | \ + RTC_FLAG_INITF | RTC_FLAG_RSF | RTC_FLAG_INITS | \ + RTC_FLAG_SHPF | RTC_FLAG_WUTWF |RTC_FLAG_ALRBWF | \ + RTC_FLAG_ALRAWF)) + +#define RTC_TAMPCR_TAMPXE ((uint32_t) (RTC_TAMPCR_TAMP2E | RTC_TAMPCR_TAMP1E)) +#define RTC_TAMPCR_TAMPXIE ((uint32_t) (RTC_TAMPER1_INTERRUPT | RTC_TAMPER2_INTERRUPT | \ + RTC_ALL_TAMPER_INTERRUPT)) + +#elif defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + +#define RTC_FLAGS_MASK ((uint32_t) (RTC_FLAG_RECALPF | RTC_FLAG_TAMP3F | RTC_FLAG_TAMP2F | \ + RTC_FLAG_TAMP1F| RTC_FLAG_TSOVF | RTC_FLAG_TSF | \ + RTC_FLAG_WUTF | RTC_FLAG_ALRBF | RTC_FLAG_ALRAF | \ + RTC_FLAG_INITF | RTC_FLAG_RSF | \ + RTC_FLAG_INITS | RTC_FLAG_SHPF | RTC_FLAG_WUTWF | \ + RTC_FLAG_ALRBWF | RTC_FLAG_ALRAWF)) + +#define RTC_TAMPCR_TAMPXE ((uint32_t) (RTC_TAMPCR_TAMP3E | RTC_TAMPCR_TAMP2E | RTC_TAMPCR_TAMP1E)) +#define RTC_TAMPCR_TAMPXIE ((uint32_t) (RTC_TAMPER1_INTERRUPT | RTC_TAMPER2_INTERRUPT | \ + RTC_TAMPER3_INTERRUPT | RTC_ALL_TAMPER_INTERRUPT)) + +#elif defined (STM32L011xx) || defined (STM32L021xx) + +#define RTC_FLAGS_MASK ((uint32_t) (RTC_FLAG_RECALPF | RTC_FLAG_TAMP3F | RTC_FLAG_TAMP2F | \ + RTC_FLAG_TSOVF | RTC_FLAG_TSF | \ + RTC_FLAG_WUTF | RTC_FLAG_ALRBF | RTC_FLAG_ALRAF | \ + RTC_FLAG_INITF | RTC_FLAG_RSF | \ + RTC_FLAG_INITS | RTC_FLAG_SHPF | RTC_FLAG_WUTWF | \ + RTC_FLAG_ALRBWF | RTC_FLAG_ALRAWF)) + +#define RTC_TAMPCR_TAMPXE ((uint32_t) (RTC_TAMPCR_TAMP3E | RTC_TAMPCR_TAMP2E)) +#define RTC_TAMPCR_TAMPXIE ((uint32_t) (RTC_TAMPER2_INTERRUPT | \ + RTC_TAMPER3_INTERRUPT | RTC_ALL_TAMPER_INTERRUPT)) +#endif /* (STM32L011xx) || (STM32L021xx) + */ + +#define RTC_EXTI_LINE_TAMPER_TIMESTAMP_EVENT ((uint32_t)EXTI_IMR_IM19) /*!< External interrupt line 19 Connected to the RTC Tamper and Time Stamp events */ +#define RTC_EXTI_LINE_WAKEUPTIMER_EVENT ((uint32_t)EXTI_IMR_IM20) /*!< External interrupt line 20 Connected to the RTC Wakeup event */ + +/** + * @} + */ + +/* Private macros ------------------------------------------------------------*/ +/** @defgroup RTCEx_Private_Macros RTCEx Private Macros + * @{ + */ + +/** @defgroup RTCEx_IS_RTC_Definitions Private macros to check input parameters + * @{ + */ + +#define IS_RTC_OUTPUT(OUTPUT) (((OUTPUT) == RTC_OUTPUT_DISABLE) || \ + ((OUTPUT) == RTC_OUTPUT_ALARMA) || \ + ((OUTPUT) == RTC_OUTPUT_ALARMB) || \ + ((OUTPUT) == RTC_OUTPUT_WAKEUP)) + +#define IS_RTC_BKP(BKP) ((BKP) < (uint32_t) RTC_BKP_NUMBER) + +#define IS_TIMESTAMP_EDGE(EDGE) (((EDGE) == RTC_TIMESTAMPEDGE_RISING) || \ + ((EDGE) == RTC_TIMESTAMPEDGE_FALLING)) + +#define IS_RTC_TAMPER(TAMPER) ((((TAMPER) & ((uint32_t)(0xFFFFFFFFU ^ RTC_TAMPCR_TAMPXE))) == 0x00U) && ((TAMPER) != (uint32_t)RESET)) + +#define IS_RTC_TAMPER_INTERRUPT(INTERRUPT) ((((INTERRUPT) & (uint32_t)(0xFFFFFFFFU ^ RTC_TAMPCR_TAMPXIE)) == 0x00U) && ((INTERRUPT) != (uint32_t)RESET)) + +#define IS_RTC_TIMESTAMP_PIN(PIN) (((PIN) == RTC_TIMESTAMPPIN_DEFAULT)) + +#define IS_RTC_TAMPER_TRIGGER(TRIGGER) (((TRIGGER) == RTC_TAMPERTRIGGER_RISINGEDGE) || \ + ((TRIGGER) == RTC_TAMPERTRIGGER_FALLINGEDGE) || \ + ((TRIGGER) == RTC_TAMPERTRIGGER_LOWLEVEL) || \ + ((TRIGGER) == RTC_TAMPERTRIGGER_HIGHLEVEL)) + +#define IS_RTC_TAMPER_ERASE_MODE(MODE) (((MODE) == RTC_TAMPER_ERASE_BACKUP_ENABLE) || \ + ((MODE) == RTC_TAMPER_ERASE_BACKUP_DISABLE)) + +#define IS_RTC_TAMPER_MASKFLAG_STATE(STATE) (((STATE) == RTC_TAMPERMASK_FLAG_ENABLE) || \ + ((STATE) == RTC_TAMPERMASK_FLAG_DISABLE)) + +#define IS_RTC_TAMPER_FILTER(FILTER) (((FILTER) == RTC_TAMPERFILTER_DISABLE) || \ + ((FILTER) == RTC_TAMPERFILTER_2SAMPLE) || \ + ((FILTER) == RTC_TAMPERFILTER_4SAMPLE) || \ + ((FILTER) == RTC_TAMPERFILTER_8SAMPLE)) + +#define IS_RTC_TAMPER_SAMPLING_FREQ(FREQ) (((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV32768)|| \ + ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV16384)|| \ + ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV8192) || \ + ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV4096) || \ + ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV2048) || \ + ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV1024) || \ + ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV512) || \ + ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV256)) + +#define IS_RTC_TAMPER_PRECHARGE_DURATION(DURATION) (((DURATION) == RTC_TAMPERPRECHARGEDURATION_1RTCCLK) || \ + ((DURATION) == RTC_TAMPERPRECHARGEDURATION_2RTCCLK) || \ + ((DURATION) == RTC_TAMPERPRECHARGEDURATION_4RTCCLK) || \ + ((DURATION) == RTC_TAMPERPRECHARGEDURATION_8RTCCLK)) + +#define IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION(DETECTION) (((DETECTION) == RTC_TIMESTAMPONTAMPERDETECTION_ENABLE) || \ + ((DETECTION) == RTC_TIMESTAMPONTAMPERDETECTION_DISABLE)) + +#define IS_RTC_TAMPER_PULLUP_STATE(STATE) (((STATE) == RTC_TAMPER_PULLUP_ENABLE) || \ + ((STATE) == RTC_TAMPER_PULLUP_DISABLE)) + +#define IS_RTC_WAKEUP_CLOCK(CLOCK) (((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV16) || \ + ((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV8) || \ + ((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV4) || \ + ((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV2) || \ + ((CLOCK) == RTC_WAKEUPCLOCK_CK_SPRE_16BITS) || \ + ((CLOCK) == RTC_WAKEUPCLOCK_CK_SPRE_17BITS)) + +#define IS_RTC_WAKEUP_COUNTER(COUNTER) ((COUNTER) <= RTC_WUTR_WUT) + +#define IS_RTC_SMOOTH_CALIB_PERIOD(PERIOD) (((PERIOD) == RTC_SMOOTHCALIB_PERIOD_32SEC) || \ + ((PERIOD) == RTC_SMOOTHCALIB_PERIOD_16SEC) || \ + ((PERIOD) == RTC_SMOOTHCALIB_PERIOD_8SEC)) + +#define IS_RTC_SMOOTH_CALIB_PLUS(PLUS) (((PLUS) == RTC_SMOOTHCALIB_PLUSPULSES_SET) || \ + ((PLUS) == RTC_SMOOTHCALIB_PLUSPULSES_RESET)) + + +/** @defgroup RTCEx_Smooth_calib_Minus_pulses_Definitions RTCEx Smooth calib Minus pulses Definitions + * @{ + */ +#define IS_RTC_SMOOTH_CALIB_MINUS(VALUE) ((VALUE) <= RTC_CALR_CALM) +/** + * @} + */ + + +#define IS_RTC_SHIFT_ADD1S(SEL) (((SEL) == RTC_SHIFTADD1S_RESET) || \ + ((SEL) == RTC_SHIFTADD1S_SET)) + + + +/** @defgroup RTCEx_Substract_Fraction_Of_Second_Value RTCEx Substract Fraction Of Second Value + * @{ + */ +#define IS_RTC_SHIFT_SUBFS(FS) ((FS) <= RTC_SHIFTR_SUBFS) +/** + * @} + */ +#define IS_RTC_CALIB_OUTPUT(OUTPUT) (((OUTPUT) == RTC_CALIBOUTPUT_512HZ) || \ + ((OUTPUT) == RTC_CALIBOUTPUT_1HZ)) + +/** + * @} + */ + +/** + * @} + */ + + + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_RTC_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h new file mode 100644 index 0000000..751b93e --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h @@ -0,0 +1,1501 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_tim.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of TIM HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_TIM_H +#define __STM32L0xx_HAL_TIM_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup TIM TIM (Timer) + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + + /** @defgroup TIM_Exported_Types TIM Exported Types + * @{ + */ + +/** @defgroup TIM_Base_Configuration TIM base configuration structure + * @{ + */ +/** + * @brief TIM Time base Configuration Structure definition + */ +typedef struct +{ + uint32_t Prescaler; /*!< Specifies the prescaler value used to divide the TIM clock. + This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */ + + uint32_t CounterMode; /*!< Specifies the counter mode. + This parameter can be a value of @ref TIM_Counter_Mode */ + + uint32_t Period; /*!< Specifies the period value to be loaded into the active + Auto-Reload Register at the next update event. + This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF. */ + + uint32_t ClockDivision; /*!< Specifies the clock division. + This parameter can be a value of @ref TIM_ClockDivision */ +} TIM_Base_InitTypeDef; +/** + * @} + */ + +/** @defgroup TIM_Output_Configuration TIM output compare configuration structure + * @{ + */ + +/** + * @brief TIM Output Compare Configuration Structure definition + */ + +typedef struct +{ + uint32_t OCMode; /*!< Specifies the TIM mode. + This parameter can be a value of @ref TIM_Output_Compare_and_PWM_modes */ + + uint32_t Pulse; /*!< Specifies the pulse value to be loaded into the Capture Compare Register. + This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */ + + uint32_t OCPolarity; /*!< Specifies the output polarity. + This parameter can be a value of @ref TIM_Output_Compare_Polarity */ + + uint32_t OCFastMode; /*!< Specifies the Fast mode state. + This parameter can be a value of @ref TIM_Output_Fast_State + @note This parameter is valid only in PWM1 and PWM2 mode. */ + +} TIM_OC_InitTypeDef; +/** + * @} + */ + +/** @defgroup TIM_OnePulse_Configuration TIM One Pulse configuration structure + * @{ + */ +/** + * @brief TIM One Pulse Mode Configuration Structure definition + */ +typedef struct +{ + uint32_t OCMode; /*!< Specifies the TIM mode. + This parameter can be a value of @ref TIM_Output_Compare_and_PWM_modes */ + + uint32_t Pulse; /*!< Specifies the pulse value to be loaded into the Capture Compare Register. + This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */ + + uint32_t OCPolarity; /*!< Specifies the output polarity. + This parameter can be a value of @ref TIM_Output_Compare_Polarity */ + + + uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. + This parameter can be a value of @ref TIM_Input_Capture_Polarity */ + + uint32_t ICSelection; /*!< Specifies the input. + This parameter can be a value of @ref TIM_Input_Capture_Selection */ + + uint32_t ICFilter; /*!< Specifies the input capture filter. + This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ +} TIM_OnePulse_InitTypeDef; +/** + * @} + */ + +/** @defgroup TIM_Input_Capture TIM input capture configuration structure + * @{ + */ +/** + * @brief TIM Input Capture Configuration Structure definition + */ + +typedef struct +{ + uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. + This parameter can be a value of @ref TIM_Input_Capture_Polarity */ + + uint32_t ICSelection; /*!< Specifies the input. + This parameter can be a value of @ref TIM_Input_Capture_Selection */ + + uint32_t ICPrescaler; /*!< Specifies the Input Capture Prescaler. + This parameter can be a value of @ref TIM_Input_Capture_Prescaler */ + + uint32_t ICFilter; /*!< Specifies the input capture filter. + This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ +} TIM_IC_InitTypeDef; +/** + * @} + */ + +/** @defgroup TIM_Encoder TIM encoder configuration structure + * @{ + */ +/** + * @brief TIM Encoder Configuration Structure definition + */ + +typedef struct +{ + uint32_t EncoderMode; /*!< Specifies the active edge of the input signal. + This parameter can be a value of @ref TIM_Encoder_Mode */ + + uint32_t IC1Polarity; /*!< Specifies the active edge of the input signal. + This parameter can be a value of @ref TIM_Input_Capture_Polarity */ + + uint32_t IC1Selection; /*!< Specifies the input. + This parameter can be a value of @ref TIM_Input_Capture_Selection */ + + uint32_t IC1Prescaler; /*!< Specifies the Input Capture Prescaler. + This parameter can be a value of @ref TIM_Input_Capture_Prescaler */ + + uint32_t IC1Filter; /*!< Specifies the input capture filter. + This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ + + uint32_t IC2Polarity; /*!< Specifies the active edge of the input signal. + This parameter can be a value of @ref TIM_Input_Capture_Polarity */ + + uint32_t IC2Selection; /*!< Specifies the input. + This parameter can be a value of @ref TIM_Input_Capture_Selection */ + + uint32_t IC2Prescaler; /*!< Specifies the Input Capture Prescaler. + This parameter can be a value of @ref TIM_Input_Capture_Prescaler */ + + uint32_t IC2Filter; /*!< Specifies the input capture filter. + This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ +} TIM_Encoder_InitTypeDef; +/** + * @} + */ + +/** @defgroup TIM_Clock_Configuration TIM clock configuration structure + * @{ + */ +/** + * @brief Clock Configuration Handle Structure definition + */ +typedef struct +{ + uint32_t ClockSource; /*!< TIM clock sources. + This parameter can be a value of @ref TIM_Clock_Source */ + uint32_t ClockPolarity; /*!< TIM clock polarity. + This parameter can be a value of @ref TIM_Clock_Polarity */ + uint32_t ClockPrescaler; /*!< TIM clock prescaler. + This parameter can be a value of @ref TIM_Clock_Prescaler */ + uint32_t ClockFilter; /*!< TIM clock filter. + This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ +}TIM_ClockConfigTypeDef; +/** + * @} + */ + +/** @defgroup TIM_Clear_Input_Configuration TIM clear input configuration structure + * @{ + */ +/** + * @brief Clear Input Configuration Handle Structure definition + */ +typedef struct +{ + uint32_t ClearInputState; /*!< TIM clear Input state. + This parameter can be ENABLE or DISABLE */ + uint32_t ClearInputSource; /*!< TIM clear Input sources. + This parameter can be a value of @ref TIM_ClearInput_Source */ + uint32_t ClearInputPolarity; /*!< TIM Clear Input polarity. + This parameter can be a value of @ref TIM_ClearInput_Polarity */ + uint32_t ClearInputPrescaler; /*!< TIM Clear Input prescaler. + This parameter can be a value of @ref TIM_ClearInput_Prescaler */ + uint32_t ClearInputFilter; /*!< TIM Clear Input filter. + This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ +}TIM_ClearInputConfigTypeDef; +/** + * @} + */ + +/** @defgroup TIM_Slave_Configuratio TIM slave configuration structure + * @{ + */ +/** + * @brief TIM Slave configuration Structure definition + */ +typedef struct { + uint32_t SlaveMode; /*!< Slave mode selection. + This parameter can be a value of @ref TIM_Slave_Mode */ + uint32_t InputTrigger; /*!< Input Trigger source. + This parameter can be a value of @ref TIM_Trigger_Selection */ + uint32_t TriggerPolarity; /*!< Input Trigger polarity. + This parameter can be a value of @ref TIM_Trigger_Polarity */ + uint32_t TriggerPrescaler; /*!< Input trigger prescaler. + This parameter can be a value of @ref TIM_Trigger_Prescaler */ + uint32_t TriggerFilter; /*!< Input trigger filter. + This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ + +}TIM_SlaveConfigTypeDef; +/** + * @} + */ + +/** @defgroup TIM_State_Definition TIM state definition + * @{ + */ +/** + * @brief HAL State structures definition + */ +typedef enum +{ + HAL_TIM_STATE_RESET = 0x00U, /*!< Peripheral not yet initialized or disabled */ + HAL_TIM_STATE_READY = 0x01U, /*!< Peripheral Initialized and ready for use */ + HAL_TIM_STATE_BUSY = 0x02U, /*!< An internal process is ongoing */ + HAL_TIM_STATE_TIMEOUT = 0x03U, /*!< Timeout state */ + HAL_TIM_STATE_ERROR = 0x04U /*!< Reception process is ongoing */ +}HAL_TIM_StateTypeDef; +/** + * @} + */ + +/** @defgroup TIM_Active_Channel TIM active channel definition + * @{ + */ +/** + * @brief HAL Active channel structures definition + */ +typedef enum +{ + HAL_TIM_ACTIVE_CHANNEL_1 = 0x01U, /*!< The active channel is 1 */ + HAL_TIM_ACTIVE_CHANNEL_2 = 0x02U, /*!< The active channel is 2 */ + HAL_TIM_ACTIVE_CHANNEL_3 = 0x04U, /*!< The active channel is 3 */ + HAL_TIM_ACTIVE_CHANNEL_4 = 0x08U, /*!< The active channel is 4 */ + HAL_TIM_ACTIVE_CHANNEL_CLEARED = 0x00U /*!< All active channels cleared */ +}HAL_TIM_ActiveChannel; +/** + * @} + */ + +/** @defgroup TIM_Handle TIM handler + * @{ + */ +/** + * @brief TIM Time Base Handle Structure definition + */ +typedef struct +{ + TIM_TypeDef *Instance; /*!< Register base address */ + TIM_Base_InitTypeDef Init; /*!< TIM Time Base required parameters */ + HAL_TIM_ActiveChannel Channel; /*!< Active channel */ + DMA_HandleTypeDef *hdma[7]; /*!< DMA Handlers array + This array is accessed by a @ref DMA_Handle_index */ + HAL_LockTypeDef Lock; /*!< Locking object */ +__IO HAL_TIM_StateTypeDef State; /*!< TIM operation state */ +}TIM_HandleTypeDef; +/** + * @} + */ + +/** + * @} + */ +/* Exported constants --------------------------------------------------------*/ +/** @defgroup TIM_Exported_Constants TIM Exported Constants + * @{ + */ + + +#define IS_TIM_PERIOD(__PERIOD__) ((__PERIOD__) <= 0xFFFFU) + +#define IS_TIM_PRESCALER(__PRESCALER__) ((__PRESCALER__) <= 0xFFFFU) + + +/** @defgroup TIM_Input_Channel_Polarity Input channel polarity + * @{ + */ +#define TIM_INPUTCHANNELPOLARITY_RISING ((uint32_t)0x00000000U) /*!< Polarity for TIx source */ +#define TIM_INPUTCHANNELPOLARITY_FALLING (TIM_CCER_CC1P) /*!< Polarity for TIx source */ +#define TIM_INPUTCHANNELPOLARITY_BOTHEDGE (TIM_CCER_CC1P | TIM_CCER_CC1NP) /*!< Polarity for TIx source */ +/** + * @} + */ + +/** @defgroup TIM_ETR_Polarity ETR polarity + * @{ + */ +#define TIM_ETRPOLARITY_INVERTED (TIM_SMCR_ETP) /*!< Polarity for ETR source */ +#define TIM_ETRPOLARITY_NONINVERTED ((uint32_t)0x0000U) /*!< Polarity for ETR source */ +/** + * @} + */ + +/** @defgroup TIM_ETR_Prescaler ETR prescaler + * @{ + */ +#define TIM_ETRPRESCALER_DIV1 ((uint32_t)0x0000U) /*!< No prescaler is used */ +#define TIM_ETRPRESCALER_DIV2 (TIM_SMCR_ETPS_0) /*!< ETR input source is divided by 2 */ +#define TIM_ETRPRESCALER_DIV4 (TIM_SMCR_ETPS_1) /*!< ETR input source is divided by 4 */ +#define TIM_ETRPRESCALER_DIV8 (TIM_SMCR_ETPS) /*!< ETR input source is divided by 8 */ +/** + * @} + */ + +/** @defgroup TIM_Counter_Mode Counter mode + * @{ + */ +#define TIM_COUNTERMODE_UP ((uint32_t)0x0000U) +#define TIM_COUNTERMODE_DOWN TIM_CR1_DIR +#define TIM_COUNTERMODE_CENTERALIGNED1 TIM_CR1_CMS_0 +#define TIM_COUNTERMODE_CENTERALIGNED2 TIM_CR1_CMS_1 +#define TIM_COUNTERMODE_CENTERALIGNED3 TIM_CR1_CMS +/** + * @} + */ +#define IS_TIM_COUNTER_MODE(__MODE__) (((__MODE__) == TIM_COUNTERMODE_UP) || \ + ((__MODE__) == TIM_COUNTERMODE_DOWN) || \ + ((__MODE__) == TIM_COUNTERMODE_CENTERALIGNED1) || \ + ((__MODE__) == TIM_COUNTERMODE_CENTERALIGNED2) || \ + ((__MODE__) == TIM_COUNTERMODE_CENTERALIGNED3)) + + + + +/** @defgroup TIM_ClockDivision Clock division + * @{ + */ +#define TIM_CLOCKDIVISION_DIV1 ((uint32_t)0x0000U) +#define TIM_CLOCKDIVISION_DIV2 (TIM_CR1_CKD_0) +#define TIM_CLOCKDIVISION_DIV4 (TIM_CR1_CKD_1) +/** + * @} + */ +#define IS_TIM_CLOCKDIVISION_DIV(__DIV__) (((__DIV__) == TIM_CLOCKDIVISION_DIV1) || \ + ((__DIV__) == TIM_CLOCKDIVISION_DIV2) || \ + ((__DIV__) == TIM_CLOCKDIVISION_DIV4)) + + +/** @defgroup TIM_Output_Compare_and_PWM_modes Output compare and PWM modes + * @{ + */ +#define TIM_OCMODE_TIMING ((uint32_t)0x0000U) +#define TIM_OCMODE_ACTIVE (TIM_CCMR1_OC1M_0) +#define TIM_OCMODE_INACTIVE (TIM_CCMR1_OC1M_1) +#define TIM_OCMODE_TOGGLE (TIM_CCMR1_OC1M_0 | TIM_CCMR1_OC1M_1) +#define TIM_OCMODE_PWM1 (TIM_CCMR1_OC1M_1 | TIM_CCMR1_OC1M_2) +#define TIM_OCMODE_PWM2 (TIM_CCMR1_OC1M) +#define TIM_OCMODE_FORCED_ACTIVE (TIM_CCMR1_OC1M_0 | TIM_CCMR1_OC1M_2) +#define TIM_OCMODE_FORCED_INACTIVE (TIM_CCMR1_OC1M_2) +/** + * @} + */ + +#define IS_TIM_PWM_MODE(__MODE__) (((__MODE__) == TIM_OCMODE_PWM1) || \ + ((__MODE__) == TIM_OCMODE_PWM2)) + +#define IS_TIM_OC_MODE(__MODE__) (((__MODE__) == TIM_OCMODE_TIMING) || \ + ((__MODE__) == TIM_OCMODE_ACTIVE) || \ + ((__MODE__) == TIM_OCMODE_INACTIVE) || \ + ((__MODE__) == TIM_OCMODE_TOGGLE) || \ + ((__MODE__) == TIM_OCMODE_FORCED_ACTIVE) || \ + ((__MODE__) == TIM_OCMODE_FORCED_INACTIVE)) + + +/** @defgroup TIM_Output_Compare_State Output compare state + * @{ + */ +#define TIM_OUTPUTSTATE_DISABLE ((uint32_t)0x0000U) +#define TIM_OUTPUTSTATE_ENABLE (TIM_CCER_CC1E) +/** + * @} + */ + +/** @defgroup TIM_Output_Fast_State Output fast state + * @{ + */ +#define TIM_OCFAST_DISABLE ((uint32_t)0x0000U) +#define TIM_OCFAST_ENABLE (TIM_CCMR1_OC1FE) +/** + * @} + */ +#define IS_TIM_FAST_STATE(__STATE__) (((__STATE__) == TIM_OCFAST_DISABLE) || \ + ((__STATE__) == TIM_OCFAST_ENABLE)) + +/** @defgroup TIM_Output_Compare_N_State Output compare N state + * @{ + */ +#define TIM_OUTPUTNSTATE_DISABLE ((uint32_t)0x0000U) +#define TIM_OUTPUTNSTATE_ENABLE (TIM_CCER_CC1NE) +/** + * @} + */ + +/** @defgroup TIM_Output_Compare_Polarity Output compare polarity + * @{ + */ +#define TIM_OCPOLARITY_HIGH ((uint32_t)0x0000U) +#define TIM_OCPOLARITY_LOW (TIM_CCER_CC1P) +/** + * @} + */ +#define IS_TIM_OC_POLARITY(__POLARITY__) (((__POLARITY__) == TIM_OCPOLARITY_HIGH) || \ + ((__POLARITY__) == TIM_OCPOLARITY_LOW)) + +/** @defgroup TIM_Channel TIM channels + * @{ + */ +#define TIM_CHANNEL_1 ((uint32_t)0x0000U) +#define TIM_CHANNEL_2 ((uint32_t)0x0004U) +#define TIM_CHANNEL_3 ((uint32_t)0x0008U) +#define TIM_CHANNEL_4 ((uint32_t)0x000CU) +#define TIM_CHANNEL_ALL ((uint32_t)0x0018U) +/** + * @} + */ + +#define IS_TIM_CHANNELS(__CHANNEL__) (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2) || \ + ((__CHANNEL__) == TIM_CHANNEL_3) || \ + ((__CHANNEL__) == TIM_CHANNEL_4) || \ + ((__CHANNEL__) == TIM_CHANNEL_ALL)) + +#define IS_TIM_OPM_CHANNELS(__CHANNEL__) (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2)) + + +/** @defgroup TIM_Input_Capture_Polarity Input capture polarity + * @{ + */ +#define TIM_ICPOLARITY_RISING TIM_INPUTCHANNELPOLARITY_RISING +#define TIM_ICPOLARITY_FALLING TIM_INPUTCHANNELPOLARITY_FALLING +#define TIM_ICPOLARITY_BOTHEDGE TIM_INPUTCHANNELPOLARITY_BOTHEDGE +/** + * @} + */ +#define IS_TIM_IC_POLARITY(__POLARITY__) (((__POLARITY__) == TIM_ICPOLARITY_RISING) || \ + ((__POLARITY__) == TIM_ICPOLARITY_FALLING) || \ + ((__POLARITY__) == TIM_ICPOLARITY_BOTHEDGE)) + + +/** @defgroup TIM_Input_Capture_Selection Input capture selection + * @{ + */ +#define TIM_ICSELECTION_DIRECTTI (TIM_CCMR1_CC1S_0) /*!< TIM Input 1, 2, 3 or 4 is selected to be + connected to IC1, IC2, IC3 or IC4, respectively */ +#define TIM_ICSELECTION_INDIRECTTI (TIM_CCMR1_CC1S_1) /*!< TIM Input 1, 2, 3 or 4 is selected to be + connected to IC2, IC1, IC4 or IC3, respectively */ +#define TIM_ICSELECTION_TRC (TIM_CCMR1_CC1S) /*!< TIM Input 1, 2, 3 or 4 is selected to be connected to TRC */ + +#define IS_TIM_IC_SELECTION(__SELECTION__) (((__SELECTION__) == TIM_ICSELECTION_DIRECTTI) || \ + ((__SELECTION__) == TIM_ICSELECTION_INDIRECTTI) || \ + ((__SELECTION__) == TIM_ICSELECTION_TRC)) +/** + * @} + */ + +/** @defgroup TIM_Input_Capture_Prescaler Input capture prescaler + * @{ + */ +#define TIM_ICPSC_DIV1 ((uint32_t)0x0000U) /*!< Capture performed each time an edge is detected on the capture input */ +#define TIM_ICPSC_DIV2 (TIM_CCMR1_IC1PSC_0) /*!< Capture performed once every 2 events */ +#define TIM_ICPSC_DIV4 (TIM_CCMR1_IC1PSC_1) /*!< Capture performed once every 4 events */ +#define TIM_ICPSC_DIV8 (TIM_CCMR1_IC1PSC) /*!< Capture performed once every 8 events */ +/** + * @} + */ +#define IS_TIM_IC_PRESCALER(__PRESCALER__) (((__PRESCALER__) == TIM_ICPSC_DIV1) || \ + ((__PRESCALER__) == TIM_ICPSC_DIV2) || \ + ((__PRESCALER__) == TIM_ICPSC_DIV4) || \ + ((__PRESCALER__) == TIM_ICPSC_DIV8)) + +/** @defgroup TIM_One_Pulse_Mode One pulse mode + * @{ + */ +#define TIM_OPMODE_SINGLE (TIM_CR1_OPM) +#define TIM_OPMODE_REPETITIVE ((uint32_t)0x0000U) +/** + * @} + */ +#define IS_TIM_OPM_MODE(__MODE__) (((__MODE__) == TIM_OPMODE_SINGLE) || \ + ((__MODE__) == TIM_OPMODE_REPETITIVE)) + +/** @defgroup TIM_Encoder_Mode Encoder_Mode + * @{ + */ +#define TIM_ENCODERMODE_TI1 (TIM_SMCR_SMS_0) +#define TIM_ENCODERMODE_TI2 (TIM_SMCR_SMS_1) +#define TIM_ENCODERMODE_TI12 (TIM_SMCR_SMS_1 | TIM_SMCR_SMS_0) +/** + * @} + */ +#define IS_TIM_ENCODER_MODE(__MODE__) (((__MODE__) == TIM_ENCODERMODE_TI1) || \ + ((__MODE__) == TIM_ENCODERMODE_TI2) || \ + ((__MODE__) == TIM_ENCODERMODE_TI12)) + +/** @defgroup TIM_Interrupt_definition Interrupt definition + * @{ + */ +#define TIM_IT_UPDATE (TIM_DIER_UIE) +#define TIM_IT_CC1 (TIM_DIER_CC1IE) +#define TIM_IT_CC2 (TIM_DIER_CC2IE) +#define TIM_IT_CC3 (TIM_DIER_CC3IE) +#define TIM_IT_CC4 (TIM_DIER_CC4IE) +#define TIM_IT_TRIGGER (TIM_DIER_TIE) +/** + * @} + */ + +/** @defgroup TIM_DMA_sources DMA sources + * @{ + */ +#define TIM_DMA_UPDATE (TIM_DIER_UDE) +#define TIM_DMA_CC1 (TIM_DIER_CC1DE) +#define TIM_DMA_CC2 (TIM_DIER_CC2DE) +#define TIM_DMA_CC3 (TIM_DIER_CC3DE) +#define TIM_DMA_CC4 (TIM_DIER_CC4DE) +#define TIM_DMA_TRIGGER (TIM_DIER_TDE) +/** + * @} + */ +#define IS_TIM_DMA_SOURCE(__SOURCE__) ((((__SOURCE__) & 0xFFFFA0FFU) == 0x00000000U) && ((__SOURCE__) != 0x00000000U)) + + + +/** @defgroup TIM_Event_Source Event sources + * @{ + */ +#define TIM_EVENTSOURCE_UPDATE TIM_EGR_UG +#define TIM_EVENTSOURCE_CC1 TIM_EGR_CC1G +#define TIM_EVENTSOURCE_CC2 TIM_EGR_CC2G +#define TIM_EVENTSOURCE_CC3 TIM_EGR_CC3G +#define TIM_EVENTSOURCE_CC4 TIM_EGR_CC4G +#define TIM_EVENTSOURCE_TRIGGER TIM_EGR_TG +/** + * @} + */ +#define IS_TIM_EVENT_SOURCE(__SOURCE__) ((((__SOURCE__) & 0xFFFFFFA0U) == 0x00000000U) && ((__SOURCE__) != 0x00000000U)) + + +/** @defgroup TIM_Flag_definition Flag definition + * @{ + */ +#define TIM_FLAG_UPDATE (TIM_SR_UIF) +#define TIM_FLAG_CC1 (TIM_SR_CC1IF) +#define TIM_FLAG_CC2 (TIM_SR_CC2IF) +#define TIM_FLAG_CC3 (TIM_SR_CC3IF) +#define TIM_FLAG_CC4 (TIM_SR_CC4IF) +#define TIM_FLAG_TRIGGER (TIM_SR_TIF) +#define TIM_FLAG_CC1OF (TIM_SR_CC1OF) +#define TIM_FLAG_CC2OF (TIM_SR_CC2OF) +#define TIM_FLAG_CC3OF (TIM_SR_CC3OF) +#define TIM_FLAG_CC4OF (TIM_SR_CC4OF) +/** + * @} + */ + +/** @defgroup TIM_Clock_Source Clock source + * @{ + */ +#define TIM_CLOCKSOURCE_ETRMODE2 (TIM_SMCR_ETPS_1) +#define TIM_CLOCKSOURCE_INTERNAL (TIM_SMCR_ETPS_0) +#define TIM_CLOCKSOURCE_ITR0 ((uint32_t)0x0000U) +#define TIM_CLOCKSOURCE_ITR1 (TIM_SMCR_TS_0) +#define TIM_CLOCKSOURCE_ITR2 (TIM_SMCR_TS_1) +#define TIM_CLOCKSOURCE_ITR3 (TIM_SMCR_TS_0 | TIM_SMCR_TS_1) +#define TIM_CLOCKSOURCE_TI1ED (TIM_SMCR_TS_2) +#define TIM_CLOCKSOURCE_TI1 (TIM_SMCR_TS_0 | TIM_SMCR_TS_2) +#define TIM_CLOCKSOURCE_TI2 (TIM_SMCR_TS_1 | TIM_SMCR_TS_2) +#define TIM_CLOCKSOURCE_ETRMODE1 (TIM_SMCR_TS) +/** + * @} + */ + +#define IS_TIM_CLOCKSOURCE(__CLOCK__) (((__CLOCK__) == TIM_CLOCKSOURCE_INTERNAL) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_ETRMODE2) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_ITR0) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_ITR1) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_ITR2) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_ITR3) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_TI1ED) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_TI1) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_TI2) || \ + ((__CLOCK__) == TIM_CLOCKSOURCE_ETRMODE1)) + + +/** @defgroup TIM_Clock_Polarity Clock polarity + * @{ + */ +#define TIM_CLOCKPOLARITY_INVERTED TIM_ETRPOLARITY_INVERTED /*!< Polarity for ETRx clock sources */ +#define TIM_CLOCKPOLARITY_NONINVERTED TIM_ETRPOLARITY_NONINVERTED /*!< Polarity for ETRx clock sources */ +#define TIM_CLOCKPOLARITY_RISING TIM_INPUTCHANNELPOLARITY_RISING /*!< Polarity for TIx clock sources */ +#define TIM_CLOCKPOLARITY_FALLING TIM_INPUTCHANNELPOLARITY_FALLING /*!< Polarity for TIx clock sources */ +#define TIM_CLOCKPOLARITY_BOTHEDGE TIM_INPUTCHANNELPOLARITY_BOTHEDGE /*!< Polarity for TIx clock sources */ +/** + * @} + */ +#define IS_TIM_CLOCKPOLARITY(__POLARITY__) (((__POLARITY__) == TIM_CLOCKPOLARITY_INVERTED) || \ + ((__POLARITY__) == TIM_CLOCKPOLARITY_NONINVERTED) || \ + ((__POLARITY__) == TIM_CLOCKPOLARITY_RISING) || \ + ((__POLARITY__) == TIM_CLOCKPOLARITY_FALLING) || \ + ((__POLARITY__) == TIM_CLOCKPOLARITY_BOTHEDGE)) + +/** @defgroup TIM_Clock_Prescaler Clock prescaler + * @{ + */ +#define TIM_CLOCKPRESCALER_DIV1 TIM_ETRPRESCALER_DIV1 /*!< No prescaler is used */ +#define TIM_CLOCKPRESCALER_DIV2 TIM_ETRPRESCALER_DIV2 /*!< Prescaler for External ETR Clock: Capture performed once every 2 events. */ +#define TIM_CLOCKPRESCALER_DIV4 TIM_ETRPRESCALER_DIV4 /*!< Prescaler for External ETR Clock: Capture performed once every 4 events. */ +#define TIM_CLOCKPRESCALER_DIV8 TIM_ETRPRESCALER_DIV8 /*!< Prescaler for External ETR Clock: Capture performed once every 8 events. */ +/** + * @} + */ +#define IS_TIM_CLOCKPRESCALER(__PRESCALER__) (((__PRESCALER__) == TIM_CLOCKPRESCALER_DIV1) || \ + ((__PRESCALER__) == TIM_CLOCKPRESCALER_DIV2) || \ + ((__PRESCALER__) == TIM_CLOCKPRESCALER_DIV4) || \ + ((__PRESCALER__) == TIM_CLOCKPRESCALER_DIV8)) + + +/* Check clock filter */ +#define IS_TIM_CLOCKFILTER(__ICFILTER__) ((__ICFILTER__) <= 0xFU) + +/** @defgroup TIM_ClearInput_Source Clear input source + * @{ + */ +#define TIM_CLEARINPUTSOURCE_ETR ((uint32_t)0x0001U) +#define TIM_CLEARINPUTSOURCE_NONE ((uint32_t)0x0000U) +/** + * @} + */ + +#define IS_TIM_CLEARINPUT_SOURCE(__SOURCE__) (((__SOURCE__) == TIM_CLEARINPUTSOURCE_NONE) || \ + ((__SOURCE__) == TIM_CLEARINPUTSOURCE_ETR)) + + +/** @defgroup TIM_ClearInput_Polarity Clear input polarity + * @{ + */ +#define TIM_CLEARINPUTPOLARITY_INVERTED TIM_ETRPOLARITY_INVERTED /*!< Polarity for ETRx pin */ +#define TIM_CLEARINPUTPOLARITY_NONINVERTED TIM_ETRPOLARITY_NONINVERTED /*!< Polarity for ETRx pin */ +/** + * @} + */ +#define IS_TIM_CLEARINPUT_POLARITY(__POLARITY__) (((__POLARITY__) == TIM_CLEARINPUTPOLARITY_INVERTED) || \ + ((__POLARITY__) == TIM_CLEARINPUTPOLARITY_NONINVERTED)) + + +/** @defgroup TIM_ClearInput_Prescaler Clear input prescaler + * @{ + */ +#define TIM_CLEARINPUTPRESCALER_DIV1 TIM_ETRPRESCALER_DIV1 /*!< No prescaler is used */ +#define TIM_CLEARINPUTPRESCALER_DIV2 TIM_ETRPRESCALER_DIV2 /*!< Prescaler for External ETR pin: Capture performed once every 2 events. */ +#define TIM_CLEARINPUTPRESCALER_DIV4 TIM_ETRPRESCALER_DIV4 /*!< Prescaler for External ETR pin: Capture performed once every 4 events. */ +#define TIM_CLEARINPUTPRESCALER_DIV8 TIM_ETRPRESCALER_DIV8 /*!< Prescaler for External ETR pin: Capture performed once every 8 events. */ +/** + * @} + */ +#define IS_TIM_CLEARINPUT_PRESCALER(__PRESCALER__) (((__PRESCALER__) == TIM_CLEARINPUTPRESCALER_DIV1) || \ + ((__PRESCALER__) == TIM_CLEARINPUTPRESCALER_DIV2) || \ + ((__PRESCALER__) == TIM_CLEARINPUTPRESCALER_DIV4) || \ + ((__PRESCALER__) == TIM_CLEARINPUTPRESCALER_DIV8)) + + +/* Check IC filter */ +#define IS_TIM_CLEARINPUT_FILTER(ICFILTER) ((ICFILTER) <= 0xFU) + + +/** @defgroup TIM_Master_Mode_Selection TIM Master Mode Selection + * @{ + */ +#define TIM_TRGO_RESET ((uint32_t)0x0000U) +#define TIM_TRGO_ENABLE (TIM_CR2_MMS_0) +#define TIM_TRGO_UPDATE (TIM_CR2_MMS_1) +#define TIM_TRGO_OC1 ((TIM_CR2_MMS_1 | TIM_CR2_MMS_0)) +#define TIM_TRGO_OC1REF (TIM_CR2_MMS_2) +#define TIM_TRGO_OC2REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_0)) +#define TIM_TRGO_OC3REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_1)) +#define TIM_TRGO_OC4REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_1 | TIM_CR2_MMS_0)) +/** + * @} + */ +#define IS_TIM_TRGO_SOURCE(__SOURCE__) (((__SOURCE__) == TIM_TRGO_RESET) || \ + ((__SOURCE__) == TIM_TRGO_ENABLE) || \ + ((__SOURCE__) == TIM_TRGO_UPDATE) || \ + ((__SOURCE__) == TIM_TRGO_OC1) || \ + ((__SOURCE__) == TIM_TRGO_OC1REF) || \ + ((__SOURCE__) == TIM_TRGO_OC2REF) || \ + ((__SOURCE__) == TIM_TRGO_OC3REF) || \ + ((__SOURCE__) == TIM_TRGO_OC4REF)) + + + +/** @defgroup TIM_Slave_Mode Slave mode + * @{ + */ +#define TIM_SLAVEMODE_DISABLE ((uint32_t)0x0000U) +#define TIM_SLAVEMODE_RESET ((uint32_t)0x0004U) +#define TIM_SLAVEMODE_GATED ((uint32_t)0x0005U) +#define TIM_SLAVEMODE_TRIGGER ((uint32_t)0x0006U) +#define TIM_SLAVEMODE_EXTERNAL1 ((uint32_t)0x0007U) +/** + * @} + */ +#define IS_TIM_SLAVE_MODE(__MODE__) (((__MODE__) == TIM_SLAVEMODE_DISABLE) || \ + ((__MODE__) == TIM_SLAVEMODE_GATED) || \ + ((__MODE__) == TIM_SLAVEMODE_RESET) || \ + ((__MODE__) == TIM_SLAVEMODE_TRIGGER) || \ + ((__MODE__) == TIM_SLAVEMODE_EXTERNAL1)) + +/** @defgroup TIM_Master_Slave_Mode Master slave mode + * @{ + */ + +#define TIM_MASTERSLAVEMODE_ENABLE ((uint32_t)0x0080U) +#define TIM_MASTERSLAVEMODE_DISABLE ((uint32_t)0x0000U) +/** + * @} + */ +#define IS_TIM_MSM_STATE(__STATE__) (((__STATE__) == TIM_MASTERSLAVEMODE_ENABLE) || \ + ((__STATE__) == TIM_MASTERSLAVEMODE_DISABLE)) + +/** @defgroup TIM_Trigger_Selection Trigger selection + * @{ + */ +#define TIM_TS_ITR0 ((uint32_t)0x0000U) +#define TIM_TS_ITR1 ((uint32_t)0x0010U) +#define TIM_TS_ITR2 ((uint32_t)0x0020U) +#define TIM_TS_ITR3 ((uint32_t)0x0030U) +#define TIM_TS_TI1F_ED ((uint32_t)0x0040U) +#define TIM_TS_TI1FP1 ((uint32_t)0x0050U) +#define TIM_TS_TI2FP2 ((uint32_t)0x0060U) +#define TIM_TS_ETRF ((uint32_t)0x0070U) +#define TIM_TS_NONE ((uint32_t)0xFFFFU) +/** + * @} + */ +#define IS_TIM_TRIGGER_SELECTION(__SELECTION__) (((__SELECTION__) == TIM_TS_ITR0) || \ + ((__SELECTION__) == TIM_TS_ITR1) || \ + ((__SELECTION__) == TIM_TS_ITR2) || \ + ((__SELECTION__) == TIM_TS_ITR3) || \ + ((__SELECTION__) == TIM_TS_TI1F_ED) || \ + ((__SELECTION__) == TIM_TS_TI1FP1) || \ + ((__SELECTION__) == TIM_TS_TI2FP2) || \ + ((__SELECTION__) == TIM_TS_ETRF)) +#define IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION(__SELECTION__) (((__SELECTION__) == TIM_TS_ITR0) || \ + ((__SELECTION__) == TIM_TS_ITR1) || \ + ((__SELECTION__) == TIM_TS_ITR2) || \ + ((__SELECTION__) == TIM_TS_ITR3) || \ + ((__SELECTION__) == TIM_TS_NONE)) + + +/** @defgroup TIM_Trigger_Polarity Trigger polarity + * @{ + */ +#define TIM_TRIGGERPOLARITY_INVERTED TIM_ETRPOLARITY_INVERTED /*!< Polarity for ETRx trigger sources */ +#define TIM_TRIGGERPOLARITY_NONINVERTED TIM_ETRPOLARITY_NONINVERTED /*!< Polarity for ETRx trigger sources */ +#define TIM_TRIGGERPOLARITY_RISING TIM_INPUTCHANNELPOLARITY_RISING /*!< Polarity for TIxFPx or TI1_ED trigger sources */ +#define TIM_TRIGGERPOLARITY_FALLING TIM_INPUTCHANNELPOLARITY_FALLING /*!< Polarity for TIxFPx or TI1_ED trigger sources */ +#define TIM_TRIGGERPOLARITY_BOTHEDGE TIM_INPUTCHANNELPOLARITY_BOTHEDGE /*!< Polarity for TIxFPx or TI1_ED trigger sources */ +/** + * @} + */ +#define IS_TIM_TRIGGERPOLARITY(__POLARITY__) (((__POLARITY__) == TIM_TRIGGERPOLARITY_INVERTED ) || \ + ((__POLARITY__) == TIM_TRIGGERPOLARITY_NONINVERTED) || \ + ((__POLARITY__) == TIM_TRIGGERPOLARITY_RISING ) || \ + ((__POLARITY__) == TIM_TRIGGERPOLARITY_FALLING ) || \ + ((__POLARITY__) == TIM_TRIGGERPOLARITY_BOTHEDGE )) + + +/** @defgroup TIM_Trigger_Prescaler Trigger prescaler + * @{ + */ +#define TIM_TRIGGERPRESCALER_DIV1 TIM_ETRPRESCALER_DIV1 /*!< No prescaler is used */ +#define TIM_TRIGGERPRESCALER_DIV2 TIM_ETRPRESCALER_DIV2 /*!< Prescaler for External ETR Trigger: Capture performed once every 2 events. */ +#define TIM_TRIGGERPRESCALER_DIV4 TIM_ETRPRESCALER_DIV4 /*!< Prescaler for External ETR Trigger: Capture performed once every 4 events. */ +#define TIM_TRIGGERPRESCALER_DIV8 TIM_ETRPRESCALER_DIV8 /*!< Prescaler for External ETR Trigger: Capture performed once every 8 events. */ +/** + * @} + */ +#define IS_TIM_TRIGGERPRESCALER(__PRESCALER__) (((__PRESCALER__) == TIM_TRIGGERPRESCALER_DIV1) || \ + ((__PRESCALER__) == TIM_TRIGGERPRESCALER_DIV2) || \ + ((__PRESCALER__) == TIM_TRIGGERPRESCALER_DIV4) || \ + ((__PRESCALER__) == TIM_TRIGGERPRESCALER_DIV8)) + + +/* Check trigger filter */ +#define IS_TIM_TRIGGERFILTER(__ICFILTER__) ((__ICFILTER__) <= 0xFU) + + + /** @defgroup TIM_TI1_Selection TI1 selection + * @{ + */ +#define TIM_TI1SELECTION_CH1 ((uint32_t)0x0000U) +#define TIM_TI1SELECTION_XORCOMBINATION (TIM_CR2_TI1S) +/** + * @} + */ +#define IS_TIM_TI1SELECTION(__TI1SELECTION__) (((__TI1SELECTION__) == TIM_TI1SELECTION_CH1) || \ + ((__TI1SELECTION__) == TIM_TI1SELECTION_XORCOMBINATION)) + + +/** @defgroup TIM_DMA_Base_address DMA base address + * @{ + */ +#define TIM_DMABASE_CR1 (0x00000000U) +#define TIM_DMABASE_CR2 (0x00000001U) +#define TIM_DMABASE_SMCR (0x00000002U) +#define TIM_DMABASE_DIER (0x00000003U) +#define TIM_DMABASE_SR (0x00000004U) +#define TIM_DMABASE_EGR (0x00000005U) +#define TIM_DMABASE_CCMR1 (0x00000006U) +#define TIM_DMABASE_CCMR2 (0x00000007U) +#define TIM_DMABASE_CCER (0x00000008U) +#define TIM_DMABASE_CNT (0x00000009U) +#define TIM_DMABASE_PSC (0x0000000AU) +#define TIM_DMABASE_ARR (0x0000000BU) +#define TIM_DMABASE_CCR1 (0x0000000DU) +#define TIM_DMABASE_CCR2 (0x0000000EU) +#define TIM_DMABASE_CCR3 (0x0000000FU) +#define TIM_DMABASE_CCR4 (0x00000010U) +#define TIM_DMABASE_DCR (0x00000012U) +#define TIM_DMABASE_OR (0x00000013U) +/** + * @} + */ +#define IS_TIM_DMA_BASE(__BASE__) (((__BASE__) == TIM_DMABASE_CR1) || \ + ((__BASE__) == TIM_DMABASE_CR2) || \ + ((__BASE__) == TIM_DMABASE_SMCR) || \ + ((__BASE__) == TIM_DMABASE_DIER) || \ + ((__BASE__) == TIM_DMABASE_SR) || \ + ((__BASE__) == TIM_DMABASE_EGR) || \ + ((__BASE__) == TIM_DMABASE_CCMR1) || \ + ((__BASE__) == TIM_DMABASE_CCMR2 ) || \ + ((__BASE__) == TIM_DMABASE_CCER) || \ + ((__BASE__) == TIM_DMABASE_CNT) || \ + ((__BASE__) == TIM_DMABASE_PSC) || \ + ((__BASE__) == TIM_DMABASE_ARR) || \ + ((__BASE__) == TIM_DMABASE_CCR1) || \ + ((__BASE__) == TIM_DMABASE_CCR2) || \ + ((__BASE__) == TIM_DMABASE_CCR3) || \ + ((__BASE__) == TIM_DMABASE_CCR4) || \ + ((__BASE__) == TIM_DMABASE_DCR) || \ + ((__BASE__) == TIM_DMABASE_OR)) + + +/** @defgroup TIM_DMA_Burst_Length DMA burst length + * @{ + */ +#define TIM_DMABURSTLENGTH_1TRANSFER (0x00000000U) +#define TIM_DMABURSTLENGTH_2TRANSFERS (0x00000100U) +#define TIM_DMABURSTLENGTH_3TRANSFERS (0x00000200U) +#define TIM_DMABURSTLENGTH_4TRANSFERS (0x00000300U) +#define TIM_DMABURSTLENGTH_5TRANSFERS (0x00000400U) +#define TIM_DMABURSTLENGTH_6TRANSFERS (0x00000500U) +#define TIM_DMABURSTLENGTH_7TRANSFERS (0x00000600U) +#define TIM_DMABURSTLENGTH_8TRANSFERS (0x00000700U) +#define TIM_DMABURSTLENGTH_9TRANSFERS (0x00000800U) +#define TIM_DMABURSTLENGTH_10TRANSFERS (0x00000900U) +#define TIM_DMABURSTLENGTH_11TRANSFERS (0x00000A00U) +#define TIM_DMABURSTLENGTH_12TRANSFERS (0x00000B00U) +#define TIM_DMABURSTLENGTH_13TRANSFERS (0x00000C00U) +#define TIM_DMABURSTLENGTH_14TRANSFERS (0x00000D00U) +#define TIM_DMABURSTLENGTH_15TRANSFERS (0x00000E00U) +#define TIM_DMABURSTLENGTH_16TRANSFERS (0x00000F00U) +#define TIM_DMABURSTLENGTH_17TRANSFERS (0x00001000U) +#define TIM_DMABURSTLENGTH_18TRANSFERS (0x00001100U) +/** + * @} + */ +#define IS_TIM_DMA_LENGTH(__LENGTH__) (((__LENGTH__) == TIM_DMABURSTLENGTH_1TRANSFER ) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_2TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_3TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_4TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_5TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_6TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_7TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_8TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_9TRANSFERS ) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_10TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_11TRANSFERS ) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_12TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_13TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_14TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_15TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_16TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_17TRANSFERS) || \ + ((__LENGTH__) == TIM_DMABURSTLENGTH_18TRANSFERS )) + + +/* Check IC filter */ +#define IS_TIM_IC_FILTER(__ICFILTER__) ((__ICFILTER__) <= 0xFU) + +/** @defgroup DMA_Handle_index DMA handle index + * @{ + */ +#define TIM_DMA_ID_UPDATE ((uint16_t) 0x0U) /*!< Index of the DMA handle used for Update DMA requests */ +#define TIM_DMA_ID_CC1 ((uint16_t) 0x1U) /*!< Index of the DMA handle used for Capture/Compare 1 DMA requests */ +#define TIM_DMA_ID_CC2 ((uint16_t) 0x2U) /*!< Index of the DMA handle used for Capture/Compare 2 DMA requests */ +#define TIM_DMA_ID_CC3 ((uint16_t) 0x3U) /*!< Index of the DMA handle used for Capture/Compare 3 DMA requests */ +#define TIM_DMA_ID_CC4 ((uint16_t) 0x4U) /*!< Index of the DMA handle used for Capture/Compare 4 DMA requests */ +#define TIM_DMA_ID_TRIGGER ((uint16_t) 0x5U) /*!< Index of the DMA handle used for Trigger DMA requests */ +/** + * @} + */ + +/** @defgroup Channel_CC_State Channel state + * @{ + */ +#define TIM_CCx_ENABLE ((uint32_t)0x0001U) +#define TIM_CCx_DISABLE ((uint32_t)0x0000U) +/** + * @} + */ + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ +/** @defgroup TIM_Exported_Macro TIM Exported Macro + * @{ + */ + +/** @brief Reset UART handle state + * @param __HANDLE__ : TIM handle + * @retval None + */ +#define __HAL_TIM_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_TIM_STATE_RESET) + +/** + * @brief Enable the TIM peripheral. + * @param __HANDLE__ : TIM handle + * @retval None + */ +#define __HAL_TIM_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1|=(TIM_CR1_CEN)) + +/* The counter of a timer instance is disabled only if all the CCx channels have + been disabled */ +#define TIM_CCER_CCxE_MASK ((uint32_t)(TIM_CCER_CC1E | TIM_CCER_CC2E | TIM_CCER_CC3E | TIM_CCER_CC4E)) + +/** + * @brief Disable the TIM peripheral. + * @param __HANDLE__ : TIM handle + * @retval None + */ +#define __HAL_TIM_DISABLE(__HANDLE__) \ + do { \ + if (((__HANDLE__)->Instance->CCER & TIM_CCER_CCxE_MASK) == 0U) \ + { \ + (__HANDLE__)->Instance->CR1 &= ~(TIM_CR1_CEN); \ + } \ + } while(0) + +#define __HAL_TIM_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->DIER |= (__INTERRUPT__)) +#define __HAL_TIM_ENABLE_DMA(__HANDLE__, __DMA__) ((__HANDLE__)->Instance->DIER |= (__DMA__)) +#define __HAL_TIM_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->DIER &= ~(__INTERRUPT__)) +#define __HAL_TIM_DISABLE_DMA(__HANDLE__, __DMA__) ((__HANDLE__)->Instance->DIER &= ~(__DMA__)) +#define __HAL_TIM_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR &(__FLAG__)) == (__FLAG__)) +#define __HAL_TIM_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__)) + +#define __HAL_TIM_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->DIER & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET) +#define __HAL_TIM_CLEAR_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->SR = ~(__INTERRUPT__)) + +#define __HAL_TIM_IS_TIM_COUNTING_DOWN(__HANDLE__) (((__HANDLE__)->Instance->CR1 &(TIM_CR1_DIR)) == (TIM_CR1_DIR)) +#define __HAL_TIM_SET_PRESCALER(__HANDLE__, __PRESC__) ((__HANDLE__)->Instance->PSC = (__PRESC__)) + +#define TIM_SET_ICPRESCALERVALUE(__HANDLE__, __CHANNEL__, __ICPSC__) \ +(((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCMR1 |= (__ICPSC__)) :\ + ((__CHANNEL__) == TIM_CHANNEL_2) ? ((__HANDLE__)->Instance->CCMR1 |= ((__ICPSC__) << 8U)) :\ + ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCMR2 |= (__ICPSC__)) :\ + ((__HANDLE__)->Instance->CCMR2 |= ((__ICPSC__) << 8))) + +#define TIM_RESET_ICPRESCALERVALUE(__HANDLE__, __CHANNEL__) \ +(((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCMR1 &= (uint16_t)~TIM_CCMR1_IC1PSC) :\ + ((__CHANNEL__) == TIM_CHANNEL_2) ? ((__HANDLE__)->Instance->CCMR1 &= (uint16_t)~TIM_CCMR1_IC2PSC) :\ + ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCMR2 &= (uint16_t)~TIM_CCMR2_IC3PSC) :\ + ((__HANDLE__)->Instance->CCMR2 &= (uint16_t)~TIM_CCMR2_IC4PSC)) + +#define TIM_SET_CAPTUREPOLARITY(__HANDLE__, __CHANNEL__, __POLARITY__) \ +(((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCER |= (__POLARITY__)) :\ + ((__CHANNEL__) == TIM_CHANNEL_2) ? ((__HANDLE__)->Instance->CCER |= ((__POLARITY__) << 4U)) :\ + ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCER |= ((__POLARITY__) << 8U)) :\ + ((__HANDLE__)->Instance->CCER |= (((__POLARITY__) << 12U) & TIM_CCER_CC4P))) + +#define TIM_RESET_CAPTUREPOLARITY(__HANDLE__, __CHANNEL__) \ +(((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCER &= (uint16_t)~(TIM_CCER_CC1P | TIM_CCER_CC1NP)) :\ + ((__CHANNEL__) == TIM_CHANNEL_2) ? ((__HANDLE__)->Instance->CCER &= (uint16_t)~(TIM_CCER_CC2P | TIM_CCER_CC2NP)) :\ + ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCER &= (uint16_t)~(TIM_CCER_CC3P | TIM_CCER_CC3NP)) :\ + ((__HANDLE__)->Instance->CCER &= (uint16_t)~TIM_CCER_CC4P)) + +/** + * @brief Sets the TIM Capture Compare Register value on runtime without + * calling another time ConfigChannel function. + * @param __HANDLE__ : TIM handle. + * @param __CHANNEL__ : TIM Channels to be configured. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @param __COMPARE__: specifies the Capture Compare register new value. + * @retval None + */ +#define __HAL_TIM_SET_COMPARE(__HANDLE__, __CHANNEL__, __COMPARE__) \ +(*(__IO uint32_t *)(&((__HANDLE__)->Instance->CCR1) + ((__CHANNEL__) >> 2U)) = (__COMPARE__)) + +/** + * @brief Gets the TIM Capture Compare Register value on runtime + * @param __HANDLE__ : TIM handle. + * @param __CHANNEL__ : TIM Channel associated with the capture compare register + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: get capture/compare 1 register value + * @arg TIM_CHANNEL_2: get capture/compare 2 register value + * @arg TIM_CHANNEL_3: get capture/compare 3 register value + * @arg TIM_CHANNEL_4: get capture/compare 4 register value + * @retval None + */ +#define __HAL_TIM_GET_COMPARE(__HANDLE__, __CHANNEL__) \ + (*(__IO uint32_t *)(&((__HANDLE__)->Instance->CCR1) + ((__CHANNEL__) >> 2U))) + +/** + * @brief Sets the TIM Counter Register value on runtime. + * @param __HANDLE__ : TIM handle. + * @param __COUNTER__: specifies the Counter register new value. + * @retval None + */ +#define __HAL_TIM_SET_COUNTER(__HANDLE__, __COUNTER__) ((__HANDLE__)->Instance->CNT = (__COUNTER__)) + +/** + * @brief Gets the TIM Counter Register value on runtime. + * @param __HANDLE__ : TIM handle. + * @retval None + */ +#define __HAL_TIM_GET_COUNTER(__HANDLE__) ((__HANDLE__)->Instance->CNT) + +/** + * @brief Sets the TIM Autoreload Register value on runtime without calling + * another time any Init function. + * @param __HANDLE__ : TIM handle. + * @param __AUTORELOAD__: specifies the Counter register new value. + * @retval None + */ +#define __HAL_TIM_SET_AUTORELOAD(__HANDLE__, __AUTORELOAD__) \ + do{ \ + (__HANDLE__)->Instance->ARR = (__AUTORELOAD__); \ + (__HANDLE__)->Init.Period = (__AUTORELOAD__); \ + } while(0) +/** + * @brief Gets the TIM Autoreload Register value on runtime + * @param __HANDLE__ : TIM handle. + * @retval None + */ +#define __HAL_TIM_GET_AUTORELOAD(__HANDLE__) ((__HANDLE__)->Instance->ARR) + +/** + * @brief Sets the TIM Clock Division value on runtime without calling + * another time any Init function. + * @param __HANDLE__ : TIM handle. + * @param __CKD__: specifies the clock division value. + * This parameter can be one of the following value: + * @arg TIM_CLOCKDIVISION_DIV1 + * @arg TIM_CLOCKDIVISION_DIV2 + * @arg TIM_CLOCKDIVISION_DIV4 + * @retval None + */ +#define __HAL_TIM_SET_CLOCKDIVISION(__HANDLE__, __CKD__) \ + do{ \ + (__HANDLE__)->Instance->CR1 &= (uint16_t)(~TIM_CR1_CKD); \ + (__HANDLE__)->Instance->CR1 |= (__CKD__); \ + (__HANDLE__)->Init.ClockDivision = (__CKD__); \ + } while(0) +/** + * @brief Gets the TIM Clock Division value on runtime + * @param __HANDLE__ : TIM handle. + * @retval None + */ +#define __HAL_TIM_GET_CLOCKDIVISION(__HANDLE__) ((__HANDLE__)->Instance->CR1 & TIM_CR1_CKD) + +/** + * @brief Sets the TIM Input Capture prescaler on runtime without calling + * another time HAL_TIM_IC_ConfigChannel() function. + * @param __HANDLE__ : TIM handle. + * @param __CHANNEL__ : TIM Channels to be configured. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @param __ICPSC__: specifies the Input Capture4 prescaler new value. + * This parameter can be one of the following values: + * @arg TIM_ICPSC_DIV1: no prescaler + * @arg TIM_ICPSC_DIV2: capture is done once every 2 events + * @arg TIM_ICPSC_DIV4: capture is done once every 4 events + * @arg TIM_ICPSC_DIV8: capture is done once every 8 events + * @retval None + */ +#define __HAL_TIM_SET_ICPRESCALER(__HANDLE__, __CHANNEL__, __ICPSC__) \ + do{ \ + TIM_RESET_ICPRESCALERVALUE((__HANDLE__), (__CHANNEL__)); \ + TIM_SET_ICPRESCALERVALUE((__HANDLE__), (__CHANNEL__), (__ICPSC__)); \ + } while(0) + +/** + * @brief Gets the TIM Input Capture prescaler on runtime + * @param __HANDLE__ : TIM handle. + * @param __CHANNEL__ : TIM Channels to be configured. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: get input capture 1 prescaler value + * @arg TIM_CHANNEL_2: get input capture 2 prescaler value + * @arg TIM_CHANNEL_3: get input capture 3 prescaler value + * @arg TIM_CHANNEL_4: get input capture 4 prescaler value + * @retval None + */ +#define __HAL_TIM_GET_ICPRESCALER(__HANDLE__, __CHANNEL__) \ + (((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCMR1 & TIM_CCMR1_IC1PSC) :\ + ((__CHANNEL__) == TIM_CHANNEL_2) ? (((__HANDLE__)->Instance->CCMR1 & TIM_CCMR1_IC2PSC) >> 8) :\ + ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCMR2 & TIM_CCMR2_IC3PSC) :\ + (((__HANDLE__)->Instance->CCMR2 & TIM_CCMR2_IC4PSC)) >> 8U) + + +/** + * @brief Set the Update Request Source (URS) bit of the TIMx_CR1 register + * @param __HANDLE__: TIM handle. + * @note When the URS bit of the TIMx_CR1 register is set, only counter + * overflow/underflow generates an update interrupt or DMA request (if + * enabled) + * @retval None + */ +#define __HAL_TIM_URS_ENABLE(__HANDLE__) \ + ((__HANDLE__)->Instance->CR1|= (TIM_CR1_URS)) + +/** + * @brief Reset the Update Request Source (URS) bit of the TIMx_CR1 register + * @param __HANDLE__: TIM handle. + * @note When the URS bit of the TIMx_CR1 register is reset, any of the + * following events generate an update interrupt or DMA request (if + * enabled): + * Counter overflow/underflow + * Setting the UG bit + * Update generation through the slave mode controller + * @retval None + */ +#define __HAL_TIM_URS_DISABLE(__HANDLE__) \ + ((__HANDLE__)->Instance->CR1&=~(TIM_CR1_URS)) + +/** + * @brief Sets the TIM Capture x input polarity on runtime. + * @param __HANDLE__: TIM handle. + * @param __CHANNEL__: TIM Channels to be configured. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @param __POLARITY__: Polarity for TIx source + * @arg TIM_INPUTCHANNELPOLARITY_RISING: Rising Edge + * @arg TIM_INPUTCHANNELPOLARITY_FALLING: Falling Edge + * @arg TIM_INPUTCHANNELPOLARITY_BOTHEDGE: Rising and Falling Edge + * @note The polarity TIM_INPUTCHANNELPOLARITY_BOTHEDGE is not authorized for TIM Channel 4. + * @retval None + */ +#define __HAL_TIM_SET_CAPTUREPOLARITY(__HANDLE__, __CHANNEL__, __POLARITY__) \ + do{ \ + TIM_RESET_CAPTUREPOLARITY((__HANDLE__), (__CHANNEL__)); \ + TIM_SET_CAPTUREPOLARITY((__HANDLE__), (__CHANNEL__), (__POLARITY__)); \ + }while(0) + +/** + * @} + */ + +/* Include TIM HAL Extension module */ +#include "stm32l0xx_hal_tim_ex.h" + +/* Exported functions --------------------------------------------------------*/ +/** @defgroup TIM_Exported_Functions TIM Exported Functions + * @{ + */ + +/* Exported functions --------------------------------------------------------*/ +/* Time Base functions ********************************************************/ + +/** @defgroup TIM_Exported_Functions_Group1 Timer Base functions + * @brief Time Base functions + * @{ + */ +HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *htim); +HAL_StatusTypeDef HAL_TIM_Base_DeInit(TIM_HandleTypeDef *htim); +void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *htim); +void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *htim); +/* Blocking mode: Polling */ +HAL_StatusTypeDef HAL_TIM_Base_Start(TIM_HandleTypeDef *htim); +HAL_StatusTypeDef HAL_TIM_Base_Stop(TIM_HandleTypeDef *htim); +/* Non-Blocking mode: Interrupt */ +HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *htim); +HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *htim); +/* Non-Blocking mode: DMA */ +HAL_StatusTypeDef HAL_TIM_Base_Start_DMA(TIM_HandleTypeDef *htim, uint32_t *pData, uint16_t Length); +HAL_StatusTypeDef HAL_TIM_Base_Stop_DMA(TIM_HandleTypeDef *htim); + +/** + * @} + */ + + +/* Timer Output Compare functions **********************************************/ + +/** @defgroup TIM_Exported_Functions_Group2 Timer Output Compare functions + * @brief Timer Output Compare functions + * @{ + */ + +HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *htim); +HAL_StatusTypeDef HAL_TIM_OC_DeInit(TIM_HandleTypeDef *htim); +void HAL_TIM_OC_MspInit(TIM_HandleTypeDef *htim); +void HAL_TIM_OC_MspDeInit(TIM_HandleTypeDef *htim); +/* Blocking mode: Polling */ +HAL_StatusTypeDef HAL_TIM_OC_Start(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_OC_Stop(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: Interrupt */ +HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_OC_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: DMA */ +HAL_StatusTypeDef HAL_TIM_OC_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length); +HAL_StatusTypeDef HAL_TIM_OC_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel); +/** + * @} + */ + + +/* Timer PWM functions *********************************************************/ + +/** @defgroup TIM_Exported_Functions_Group3 Timer PWM functions + * @brief Timer PWM functions + * @{ + */ +HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *htim); +HAL_StatusTypeDef HAL_TIM_PWM_DeInit(TIM_HandleTypeDef *htim); +void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *htim); +void HAL_TIM_PWM_MspDeInit(TIM_HandleTypeDef *htim); +/* Blocking mode: Polling */ +HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_PWM_Stop(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: Interrupt */ +HAL_StatusTypeDef HAL_TIM_PWM_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_PWM_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: DMA */ +HAL_StatusTypeDef HAL_TIM_PWM_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length); +HAL_StatusTypeDef HAL_TIM_PWM_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel); +/** + * @} + */ + +/* Timer Input Capture functions ***********************************************/ + +/** @defgroup TIM_Exported_Functions_Group4 Timer Input Capture functions + * @brief Timer Input Capture functions + * @{ + */ +HAL_StatusTypeDef HAL_TIM_IC_Init(TIM_HandleTypeDef *htim); +HAL_StatusTypeDef HAL_TIM_IC_DeInit(TIM_HandleTypeDef *htim); +void HAL_TIM_IC_MspInit(TIM_HandleTypeDef *htim); +void HAL_TIM_IC_MspDeInit(TIM_HandleTypeDef *htim); +/* Blocking mode: Polling */ +HAL_StatusTypeDef HAL_TIM_IC_Start(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_IC_Stop(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: Interrupt */ +HAL_StatusTypeDef HAL_TIM_IC_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_IC_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: DMA */ +HAL_StatusTypeDef HAL_TIM_IC_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length); +HAL_StatusTypeDef HAL_TIM_IC_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel); +/** + * @} + */ + +/* Timer One Pulse functions ***************************************************/ + +/** @defgroup TIM_Exported_Functions_Group5 Timer One Pulse functions + * @brief Timer One Pulse functions + * @{ + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Init(TIM_HandleTypeDef *htim, uint32_t OnePulseMode); +HAL_StatusTypeDef HAL_TIM_OnePulse_DeInit(TIM_HandleTypeDef *htim); +void HAL_TIM_OnePulse_MspInit(TIM_HandleTypeDef *htim); +void HAL_TIM_OnePulse_MspDeInit(TIM_HandleTypeDef *htim); +/* Blocking mode: Polling */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Start(TIM_HandleTypeDef *htim, uint32_t OutputChannel); +HAL_StatusTypeDef HAL_TIM_OnePulse_Stop(TIM_HandleTypeDef *htim, uint32_t OutputChannel); + +/* Non-Blocking mode: Interrupt */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Start_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel); +HAL_StatusTypeDef HAL_TIM_OnePulse_Stop_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel); + +/** + * @} + */ + +/* Timer Encoder functions *****************************************************/ + +/** @defgroup TIM_Exported_Functions_Group6 Timer Encoder functions + * @brief Timer Encoder functions + * @{ + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *htim, TIM_Encoder_InitTypeDef* sConfig); +HAL_StatusTypeDef HAL_TIM_Encoder_DeInit(TIM_HandleTypeDef *htim); +void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef *htim); +void HAL_TIM_Encoder_MspDeInit(TIM_HandleTypeDef *htim); +/* Blocking mode: Polling */ +HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_Encoder_Stop(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: Interrupt */ +HAL_StatusTypeDef HAL_TIM_Encoder_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_Encoder_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel); +/* Non-Blocking mode: DMA */ +HAL_StatusTypeDef HAL_TIM_Encoder_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData1, uint32_t *pData2, uint16_t Length); +HAL_StatusTypeDef HAL_TIM_Encoder_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel); + +/** + * @} + */ + +/* Interrupt Handler functions **********************************************/ + +/** @defgroup TIM_Exported_Functions_Group7 Timer IRQ handler management + * @brief Interrupt Handler functions + * @{ + */ +void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim); +/** + * @} + */ + +/* Control functions *********************************************************/ + +/** @defgroup TIM_Exported_Functions_Group8 Peripheral Control functions + * @brief Control functions + * @{ + */ +HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OC_InitTypeDef* sConfig, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OC_InitTypeDef* sConfig, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_IC_ConfigChannel(TIM_HandleTypeDef *htim, TIM_IC_InitTypeDef* sConfig, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_OnePulse_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OnePulse_InitTypeDef* sConfig, uint32_t OutputChannel, uint32_t InputChannel); +HAL_StatusTypeDef HAL_TIM_ConfigOCrefClear(TIM_HandleTypeDef *htim, TIM_ClearInputConfigTypeDef * sClearInputConfig, uint32_t Channel); +HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *htim, TIM_ClockConfigTypeDef * sClockSourceConfig); +HAL_StatusTypeDef HAL_TIM_ConfigTI1Input(TIM_HandleTypeDef *htim, uint32_t TI1_Selection); +HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchronization(TIM_HandleTypeDef *htim, TIM_SlaveConfigTypeDef * sSlaveConfig); +HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchronization_IT(TIM_HandleTypeDef *htim, TIM_SlaveConfigTypeDef * sSlaveConfig); +HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStart(TIM_HandleTypeDef *htim, uint32_t BurstBaseAddress, uint32_t BurstRequestSrc, \ + uint32_t *BurstBuffer, uint32_t BurstLength); +HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStop(TIM_HandleTypeDef *htim, uint32_t BurstRequestSrc); +HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStart(TIM_HandleTypeDef *htim, uint32_t BurstBaseAddress, uint32_t BurstRequestSrc, \ + uint32_t *BurstBuffer, uint32_t BurstLength); +HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStop(TIM_HandleTypeDef *htim, uint32_t BurstRequestSrc); +HAL_StatusTypeDef HAL_TIM_GenerateEvent(TIM_HandleTypeDef *htim, uint32_t EventSource); +uint32_t HAL_TIM_ReadCapturedValue(TIM_HandleTypeDef *htim, uint32_t Channel); + +/** + * @} + */ + +/* Callback in non blocking modes (Interrupt and DMA) *************************/ + +/** @defgroup TIM_Exported_Functions_Group9 Timer Callbacks functions + * @brief Callback functions + * @{ + */ +void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim); +void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *htim); +void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim); +void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim); +void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim); +void HAL_TIM_ErrorCallback(TIM_HandleTypeDef *htim); +/** + * @} + */ + + +/* Peripheral State functions **************************************************/ + +/** @defgroup TIM_Exported_Functions_Group10 Peripheral State functions + * @brief Peripheral State functions + * @{ + */ +HAL_TIM_StateTypeDef HAL_TIM_Base_GetState(TIM_HandleTypeDef *htim); +HAL_TIM_StateTypeDef HAL_TIM_OC_GetState(TIM_HandleTypeDef *htim); +HAL_TIM_StateTypeDef HAL_TIM_PWM_GetState(TIM_HandleTypeDef *htim); +HAL_TIM_StateTypeDef HAL_TIM_IC_GetState(TIM_HandleTypeDef *htim); +HAL_TIM_StateTypeDef HAL_TIM_OnePulse_GetState(TIM_HandleTypeDef *htim); +HAL_TIM_StateTypeDef HAL_TIM_Encoder_GetState(TIM_HandleTypeDef *htim); +void TIM_DMADelayPulseCplt(DMA_HandleTypeDef *hdma); +void TIM_DMAError(DMA_HandleTypeDef *hdma); +void TIM_DMACaptureCplt(DMA_HandleTypeDef *hdma); + +/** + * @} + */ + +/** + * @} + */ + +/* Define the private group ***********************************/ +/**************************************************************/ +/** @defgroup TIM_Private TIM Private + * @{ + */ +/** + * @} + */ +/**************************************************************/ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_TIM_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h new file mode 100644 index 0000000..46b08c1 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h @@ -0,0 +1,287 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_tim_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of TIM HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_TIM_EX_H +#define __STM32L0xx_HAL_TIM_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup TIMEx TIMEx + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + /** @defgroup TIM_Exported_Types TIM Exported Types + * @{ + */ +/** + * @brief TIM Master configuration Structure definition + */ +typedef struct { + uint32_t MasterOutputTrigger; /*!< Trigger output (TRGO) selection + This parameter can be a value of @ref TIM_Master_Mode_Selection */ + uint32_t MasterSlaveMode; /*!< Master/slave mode selection + This parameter can be a value of @ref TIM_Master_Slave_Mode */ +}TIM_MasterConfigTypeDef; + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup TIMEx_Exported_Constants TIMEx Exported Constants + * @{ + */ + +/** @defgroup TIMEx_Trigger_Selection Trigger selection + * @{ + */ +#define TIM_TRGO_RESET ((uint32_t)0x0000U) +#define TIM_TRGO_ENABLE (TIM_CR2_MMS_0) +#define TIM_TRGO_UPDATE (TIM_CR2_MMS_1) +#define TIM_TRGO_OC1 ((TIM_CR2_MMS_1 | TIM_CR2_MMS_0)) +#define TIM_TRGO_OC1REF (TIM_CR2_MMS_2) +#define TIM_TRGO_OC2REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_0)) +#define TIM_TRGO_OC3REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_1)) +#define TIM_TRGO_OC4REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_1 | TIM_CR2_MMS_0)) + +#define IS_TIM_TRGO_SOURCE(__SOURCE__) (((__SOURCE__) == TIM_TRGO_RESET) || \ + ((__SOURCE__) == TIM_TRGO_ENABLE) || \ + ((__SOURCE__) == TIM_TRGO_UPDATE) || \ + ((__SOURCE__) == TIM_TRGO_OC1) || \ + ((__SOURCE__) == TIM_TRGO_OC1REF) || \ + ((__SOURCE__) == TIM_TRGO_OC2REF) || \ + ((__SOURCE__) == TIM_TRGO_OC3REF) || \ + ((__SOURCE__) == TIM_TRGO_OC4REF)) + +/** + * @} + */ + +/** @defgroup TIMEx_Remap Remaping + * @{ + */ +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) \ + || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) + +#define TIM2_ETR_GPIO ((uint32_t)0x0U) +#define TIM2_ETR_HSI48 TIM2_OR_ETR_RMP_2 +#define TIM2_ETR_HSI16 (TIM2_OR_ETR_RMP_1 | TIM2_OR_ETR_RMP_0) +#define TIM2_ETR_LSE (TIM2_OR_ETR_RMP_2 | TIM2_OR_ETR_RMP_0) +#define TIM2_ETR_COMP2_OUT (TIM2_OR_ETR_RMP_2 | TIM2_OR_ETR_RMP_1) +#define TIM2_ETR_COMP1_OUT TIM2_OR_ETR_RMP + +#elif defined (STM32L011xx) || defined (STM32L021xx) || defined (STM32L031xx) || defined (STM32L041xx) + +#define TIM2_ETR_GPIO ((uint32_t)0x0U) +#define TIM2_ETR_HSI16 (TIM2_OR_ETR_RMP_1 | TIM2_OR_ETR_RMP_0) +#define TIM2_ETR_LSE (TIM2_OR_ETR_RMP_2 | TIM2_OR_ETR_RMP_0) +#define TIM2_ETR_COMP2_OUT (TIM2_OR_ETR_RMP_2 | TIM2_OR_ETR_RMP_1) +#define TIM2_ETR_COMP1_OUT TIM2_OR_ETR_RMP + +#else + +#define TIM2_ETR_GPIO ((uint32_t)0x0U) +#define TIM2_ETR_HSI48 TIM2_OR_ETR_RMP_2 +#define TIM2_ETR_LSE (TIM2_OR_ETR_RMP_2 | TIM2_OR_ETR_RMP_0) +#define TIM2_ETR_COMP2_OUT (TIM2_OR_ETR_RMP_2 | TIM2_OR_ETR_RMP_1) +#define TIM2_ETR_COMP1_OUT TIM2_OR_ETR_RMP + +#endif + + + +#define TIM2_TI4_GPIO ((uint32_t)0x0U) +#define TIM2_TI4_COMP2 TIM2_OR_TI4_RMP_0 +#define TIM2_TI4_COMP1 TIM2_OR_TI4_RMP_1 + +#define TIM21_ETR_GPIO ((uint32_t)0x0U) +#define TIM21_ETR_COMP2_OUT TIM21_OR_ETR_RMP_0 +#define TIM21_ETR_COMP1_OUT TIM21_OR_ETR_RMP_1 +#define TIM21_ETR_LSE TIM21_OR_ETR_RMP +#define TIM21_TI1_GPIO ((uint32_t)0x0U) +#define TIM21_TI1_MCO TIM21_OR_TI1_RMP +#define TIM21_TI1_RTC_WKUT_IT TIM21_OR_TI1_RMP_0 +#define TIM21_TI1_HSE_RTC TIM21_OR_TI1_RMP_1 +#define TIM21_TI1_MSI (TIM21_OR_TI1_RMP_0 | TIM21_OR_TI1_RMP_1) +#define TIM21_TI1_LSE TIM21_OR_TI1_RMP_2 +#define TIM21_TI1_LSI (TIM21_OR_TI1_RMP_2 | TIM21_OR_TI1_RMP_0) +#define TIM21_TI1_COMP1_OUT (TIM21_OR_TI1_RMP_2 | TIM21_OR_TI1_RMP_1) +#define TIM21_TI2_GPIO ((uint32_t)0x0U) +#define TIM21_TI2_COMP2_OUT TIM21_OR_TI2_RMP + +#if !defined(STM32L011xx) && !defined(STM32L021xx) +#define TIM22_ETR_GPIO ((uint32_t)0x0U) +#define TIM22_ETR_COMP2_OUT TIM22_OR_ETR_RMP_0 +#define TIM22_ETR_COMP1_OUT TIM22_OR_ETR_RMP_1 +#define TIM22_ETR_LSE TIM22_OR_ETR_RMP +#define TIM22_TI1_GPIO1 ((uint32_t)0x0U) +#define TIM22_TI1_COMP2_OUT TIM22_OR_TI1_RMP_0 +#define TIM22_TI1_COMP1_OUT TIM22_OR_TI1_RMP_1 +#define TIM22_TI1_GPIO2 TIM22_OR_TI1_RMP +#endif + +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) \ + || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) + +#define TIM3_TI4_GPIO_DEF ((uint32_t)0x0U) +#define TIM3_TI4_GPIOC9_AF2 TIM3_OR_TI4_RMP +#define TIM3_TI2_GPIO_DEF ((uint32_t)0x0U) +#define TIM3_TI2_GPIOB5_AF4 TIM3_OR_TI2_RMP +#define TIM3_TI1_USB_SOF ((uint32_t)0x0U) +#define TIM3_TI1_GPIO TIM3_OR_TI1_RMP +#define TIM3_ETR_GPIO ((uint32_t)0x0U) +#define TIM3_ETR_HSI TIM3_OR_ETR_RMP_1 + +#endif /*defined (STM32L07Xxx) or defined (STM32L08Xxx) */ + + +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) \ + || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) + + +#define IS_TIM_REMAP(__INSTANCE__, __TIM_REMAP__) \ + ((((__INSTANCE__) == TIM2) && ((__TIM_REMAP__) <= (TIM2_OR_TI4_RMP | TIM2_OR_ETR_RMP))) || \ + (((__INSTANCE__) == TIM22) && ((__TIM_REMAP__) <= (TIM22_OR_TI1_RMP | TIM22_OR_ETR_RMP))) || \ + (((__INSTANCE__) == TIM21) && ((__TIM_REMAP__) <= (TIM21_OR_ETR_RMP | TIM21_OR_TI1_RMP | TIM21_OR_TI2_RMP))) || \ + (((__INSTANCE__) == TIM3) && ((__TIM_REMAP__) <= (TIM3_OR_ETR_RMP | TIM3_OR_TI1_RMP | TIM3_OR_TI2_RMP | TIM3_OR_TI4_RMP)))) + +#define IS_CHANNEL_AVAILABLE(__INSTANCE__, __CHANNEL__) \ + ((((__INSTANCE__) == TIM2) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2) || \ + ((__CHANNEL__) == TIM_CHANNEL_3) || \ + ((__CHANNEL__) == TIM_CHANNEL_4))) || \ + (((__INSTANCE__) == TIM3) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2) || \ + ((__CHANNEL__) == TIM_CHANNEL_3) || \ + ((__CHANNEL__) == TIM_CHANNEL_4))) || \ + (((__INSTANCE__) == TIM21) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2))) || \ + (((__INSTANCE__) == TIM22) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2)))) + +#elif defined (STM32L011xx) || defined (STM32L021xx) + +#define IS_TIM_REMAP(__INSTANCE__, __TIM_REMAP__) \ + ((((__INSTANCE__) == TIM2) && ((__TIM_REMAP__) <= (TIM2_OR_TI4_RMP | TIM2_OR_ETR_RMP))) || \ + (((__INSTANCE__) == TIM21) && ((__TIM_REMAP__) <= (TIM21_OR_ETR_RMP | TIM21_OR_TI1_RMP | TIM21_OR_TI2_RMP)))) + +#define IS_CHANNEL_AVAILABLE(__INSTANCE__, __CHANNEL__) \ + ((((__INSTANCE__) == TIM2) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2) || \ + ((__CHANNEL__) == TIM_CHANNEL_3) || \ + ((__CHANNEL__) == TIM_CHANNEL_4))) || \ + (((__INSTANCE__) == TIM21) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2)))) + +#else + +#define IS_TIM_REMAP(__INSTANCE__, __TIM_REMAP__) \ + ((((__INSTANCE__) == TIM2) && ((__TIM_REMAP__) <= (TIM2_OR_TI4_RMP | TIM2_OR_ETR_RMP))) || \ + (((__INSTANCE__) == TIM22) && ((__TIM_REMAP__) <= (TIM22_OR_TI1_RMP | TIM22_OR_ETR_RMP))) || \ + (((__INSTANCE__) == TIM21) && ((__TIM_REMAP__) <= (TIM21_OR_ETR_RMP | TIM21_OR_TI1_RMP | TIM21_OR_TI2_RMP)))) + +#define IS_CHANNEL_AVAILABLE(__INSTANCE__, __CHANNEL__) \ + ((((__INSTANCE__) == TIM2) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2) || \ + ((__CHANNEL__) == TIM_CHANNEL_3) || \ + ((__CHANNEL__) == TIM_CHANNEL_4))) || \ + (((__INSTANCE__) == TIM21) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2))) || \ + (((__INSTANCE__) == TIM22) && (((__CHANNEL__) == TIM_CHANNEL_1) || \ + ((__CHANNEL__) == TIM_CHANNEL_2)))) + +#endif /*defined (STM32L07Xxx) or defined (STM32L08Xxx) */ + + +/** + * @} + */ + +/** + * @} + */ + + +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ +/* Control functions ***********************************************************/ + +/** @defgroup TIMEx_Exported_Functions TIMEx Exported Functions + * @{ + */ + +/** @defgroup TIMEx_Exported_Functions_Group1 TIMEx Peripheral Control functions + * @{ + */ + +HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap); +HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, TIM_MasterConfigTypeDef * sMasterConfig); + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_TIM_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h new file mode 100644 index 0000000..ef4395d --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h @@ -0,0 +1,1470 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_uart.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of UART HAL module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_UART_H +#define __STM32L0xx_HAL_UART_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup UART + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/** @defgroup UART_Exported_Types UART Exported Types + * @{ + */ + +/** + * @brief UART Init Structure definition + */ +typedef struct +{ + uint32_t BaudRate; /*!< This member configures the UART communication baud rate. + The baud rate register is computed using the following formula: + - If oversampling is 16 or in LIN mode, + Baud Rate Register = ((PCLKx) / ((huart->Init.BaudRate))) + - If oversampling is 8, + Baud Rate Register[15:4] = ((2 * PCLKx) / ((huart->Init.BaudRate)))[15:4] + Baud Rate Register[3] = 0 + Baud Rate Register[2:0] = (((2 * PCLKx) / ((huart->Init.BaudRate)))[3:0]) >> 1 */ + + uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame. + This parameter can be a value of @ref UARTEx_Word_Length. */ + + uint32_t StopBits; /*!< Specifies the number of stop bits transmitted. + This parameter can be a value of @ref UART_Stop_Bits. */ + + uint32_t Parity; /*!< Specifies the parity mode. + This parameter can be a value of @ref UART_Parity + @note When parity is enabled, the computed parity is inserted + at the MSB position of the transmitted data (9th bit when + the word length is set to 9 data bits; 8th bit when the + word length is set to 8 data bits). */ + + uint32_t Mode; /*!< Specifies whether the Receive or Transmit mode is enabled or disabled. + This parameter can be a value of @ref UART_Mode. */ + + uint32_t HwFlowCtl; /*!< Specifies whether the hardware flow control mode is enabled + or disabled. + This parameter can be a value of @ref UART_Hardware_Flow_Control. */ + + uint32_t OverSampling; /*!< Specifies whether the Over sampling 8 is enabled or disabled, to achieve higher speed (up to f_PCLK/8). + This parameter can be a value of @ref UART_Over_Sampling. */ + + uint32_t OneBitSampling; /*!< Specifies whether a single sample or three samples' majority vote is selected. + Selecting the single sample method increases the receiver tolerance to clock + deviations. This parameter can be a value of @ref UART_OneBit_Sampling. */ +}UART_InitTypeDef; + +/** + * @brief UART Advanced Features initalization structure definition + */ +typedef struct +{ + uint32_t AdvFeatureInit; /*!< Specifies which advanced UART features is initialized. Several + Advanced Features may be initialized at the same time . + This parameter can be a value of @ref UART_Advanced_Features_Initialization_Type. */ + + uint32_t TxPinLevelInvert; /*!< Specifies whether the TX pin active level is inverted. + This parameter can be a value of @ref UART_Tx_Inv. */ + + uint32_t RxPinLevelInvert; /*!< Specifies whether the RX pin active level is inverted. + This parameter can be a value of @ref UART_Rx_Inv. */ + + uint32_t DataInvert; /*!< Specifies whether data are inverted (positive/direct logic + vs negative/inverted logic). + This parameter can be a value of @ref UART_Data_Inv. */ + + uint32_t Swap; /*!< Specifies whether TX and RX pins are swapped. + This parameter can be a value of @ref UART_Rx_Tx_Swap. */ + + uint32_t OverrunDisable; /*!< Specifies whether the reception overrun detection is disabled. + This parameter can be a value of @ref UART_Overrun_Disable. */ + + uint32_t DMADisableonRxError; /*!< Specifies whether the DMA is disabled in case of reception error. + This parameter can be a value of @ref UART_DMA_Disable_on_Rx_Error. */ + + uint32_t AutoBaudRateEnable; /*!< Specifies whether auto Baud rate detection is enabled. + This parameter can be a value of @ref UART_AutoBaudRate_Enable */ + + uint32_t AutoBaudRateMode; /*!< If auto Baud rate detection is enabled, specifies how the rate + detection is carried out. + This parameter can be a value of @ref UART_AutoBaud_Rate_Mode. */ + + uint32_t MSBFirst; /*!< Specifies whether MSB is sent first on UART line. + This parameter can be a value of @ref UART_MSB_First. */ +} UART_AdvFeatureInitTypeDef; + + + +/** + * @brief HAL UART State structures definition + * @note HAL UART State value is a combination of 2 different substates: gState and RxState. + * - gState contains UART state information related to global Handle management + * and also information related to Tx operations. + * gState value coding follow below described bitmap : + * b7-b6 Error information + * 00 : No Error + * 01 : (Not Used) + * 10 : Timeout + * 11 : Error + * b5 IP initilisation status + * 0 : Reset (IP not initialized) + * 1 : Init done (IP not initialized. HAL UART Init function already called) + * b4-b3 (not used) + * xx : Should be set to 00 + * b2 Intrinsic process state + * 0 : Ready + * 1 : Busy (IP busy with some configuration or internal operations) + * b1 (not used) + * x : Should be set to 0 + * b0 Tx state + * 0 : Ready (no Tx operation ongoing) + * 1 : Busy (Tx operation ongoing) + * - RxState contains information related to Rx operations. + * RxState value coding follow below described bitmap : + * b7-b6 (not used) + * xx : Should be set to 00 + * b5 IP initilisation status + * 0 : Reset (IP not initialized) + * 1 : Init done (IP not initialized) + * b4-b2 (not used) + * xxx : Should be set to 000 + * b1 Rx state + * 0 : Ready (no Rx operation ongoing) + * 1 : Busy (Rx operation ongoing) + * b0 (not used) + * x : Should be set to 0. + */ +typedef enum +{ + HAL_UART_STATE_RESET = 0x00U, /*!< Peripheral is not initialized + Value is allowed for gState and RxState */ + HAL_UART_STATE_READY = 0x20U, /*!< Peripheral Initialized and ready for use + Value is allowed for gState and RxState */ + HAL_UART_STATE_BUSY = 0x24U, /*!< an internal process is ongoing + Value is allowed for gState only */ + HAL_UART_STATE_BUSY_TX = 0x21U, /*!< Data Transmission process is ongoing + Value is allowed for gState only */ + HAL_UART_STATE_BUSY_RX = 0x22U, /*!< Data Reception process is ongoing + Value is allowed for RxState only */ + HAL_UART_STATE_BUSY_TX_RX = 0x23U, /*!< Data Transmission and Reception process is ongoing + Not to be used for neither gState nor RxState. + Value is result of combination (Or) between gState and RxState values */ + HAL_UART_STATE_TIMEOUT = 0xA0U, /*!< Timeout state + Value is allowed for gState only */ + HAL_UART_STATE_ERROR = 0xE0U /*!< Error + Value is allowed for gState only */ +}HAL_UART_StateTypeDef; + +/** + * @brief HAL UART Error Code structure definition + */ +typedef enum +{ + HAL_UART_ERROR_NONE = 0x00, /*!< No error */ + HAL_UART_ERROR_PE = 0x01, /*!< Parity error */ + HAL_UART_ERROR_NE = 0x02, /*!< Noise error */ + HAL_UART_ERROR_FE = 0x04, /*!< frame error */ + HAL_UART_ERROR_ORE = 0x08, /*!< Overrun error */ + HAL_UART_ERROR_DMA = 0x10, /*!< DMA transfer error */ + HAL_UART_ERROR_BUSY = 0x20 /*!< Busy Error */ +}HAL_UART_ErrorTypeDef; + +/** + * @brief UART clock sources definition + */ +typedef enum +{ + UART_CLOCKSOURCE_PCLK1 = 0x00, /*!< PCLK1 clock source */ + UART_CLOCKSOURCE_PCLK2 = 0x01, /*!< PCLK2 clock source */ + UART_CLOCKSOURCE_HSI = 0x02, /*!< HSI clock source */ + UART_CLOCKSOURCE_SYSCLK = 0x04, /*!< SYSCLK clock source */ + UART_CLOCKSOURCE_LSE = 0x08, /*!< LSE clock source */ + UART_CLOCKSOURCE_UNDEFINED = 0x10 /*!< Undefined clock source */ +}UART_ClockSourceTypeDef; + +/** + * @brief UART handle Structure definition + */ +typedef struct +{ + USART_TypeDef *Instance; /*!< UART registers base address */ + + UART_InitTypeDef Init; /*!< UART communication parameters */ + + UART_AdvFeatureInitTypeDef AdvancedInit; /*!< UART Advanced Features initialization parameters */ + + uint8_t *pTxBuffPtr; /*!< Pointer to UART Tx transfer Buffer */ + + uint16_t TxXferSize; /*!< UART Tx Transfer size */ + + __IO uint16_t TxXferCount; /*!< UART Tx Transfer Counter */ + + uint8_t *pRxBuffPtr; /*!< Pointer to UART Rx transfer Buffer */ + + uint16_t RxXferSize; /*!< UART Rx Transfer size */ + + __IO uint16_t RxXferCount; /*!< UART Rx Transfer Counter */ + + uint16_t Mask; /*!< UART Rx RDR register mask */ + + DMA_HandleTypeDef *hdmatx; /*!< UART Tx DMA Handle parameters */ + + DMA_HandleTypeDef *hdmarx; /*!< UART Rx DMA Handle parameters */ + + HAL_LockTypeDef Lock; /*!< Locking object */ + + __IO HAL_UART_StateTypeDef gState; /*!< UART state information related to global Handle management + and also related to Tx operations. + This parameter can be a value of @ref HAL_UART_StateTypeDef */ + + __IO HAL_UART_StateTypeDef RxState; /*!< UART state information related to Rx operations. + This parameter can be a value of @ref HAL_UART_StateTypeDef */ + + __IO uint32_t ErrorCode; /*!< UART Error code */ + +}UART_HandleTypeDef; + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup UART_Exported_Constants UART Exported Constants + * @{ + */ + +/** @defgroup UART_Stop_Bits UART Number of Stop Bits + * @{ + */ +#define UART_STOPBITS_1 ((uint32_t)0x00000000U) /*!< UART frame with 1 stop bit */ +#define UART_STOPBITS_1_5 (USART_CR2_STOP_0 | USART_CR2_STOP_1) /*!< UART frame with 1.5 stop bits */ +#define UART_STOPBITS_2 USART_CR2_STOP_1 /*!< UART frame with 2 stop bits */ +/** + * @} + */ + +/** @defgroup UART_Parity UART Parity + * @{ + */ +#define UART_PARITY_NONE ((uint32_t)0x00000000U) /*!< No parity */ +#define UART_PARITY_EVEN ((uint32_t)USART_CR1_PCE) /*!< Even parity */ +#define UART_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS)) /*!< Odd parity */ +/** + * @} + */ + +/** @defgroup UART_Hardware_Flow_Control UART Hardware Flow Control + * @{ + */ +#define UART_HWCONTROL_NONE ((uint32_t)0x00000000U) /*!< No hardware control */ +#define UART_HWCONTROL_RTS ((uint32_t)USART_CR3_RTSE) /*!< Request To Send */ +#define UART_HWCONTROL_CTS ((uint32_t)USART_CR3_CTSE) /*!< Clear To Send */ +#define UART_HWCONTROL_RTS_CTS ((uint32_t)(USART_CR3_RTSE | USART_CR3_CTSE)) /*!< Request and Clear To Send */ +/** + * @} + */ + +/** @defgroup UART_Mode UART Transfer Mode + * @{ + */ +#define UART_MODE_RX ((uint32_t)USART_CR1_RE) /*!< RX mode */ +#define UART_MODE_TX ((uint32_t)USART_CR1_TE) /*!< TX mode */ +#define UART_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE)) /*!< RX and TX mode */ +/** + * @} + */ + +/** @defgroup UART_State UART State + * @{ + */ +#define UART_STATE_DISABLE ((uint32_t)0x00000000U) /*!< UART disabled */ +#define UART_STATE_ENABLE ((uint32_t)USART_CR1_UE) /*!< UART enabled */ +/** + * @} + */ + +/** @defgroup UART_Over_Sampling UART Over Sampling + * @{ + */ +#define UART_OVERSAMPLING_16 ((uint32_t)0x00000000U) /*!< Oversampling by 16 */ +#define UART_OVERSAMPLING_8 ((uint32_t)USART_CR1_OVER8) /*!< Oversampling by 8 */ +/** + * @} + */ + +/** @defgroup UART_OneBit_Sampling UART One Bit Sampling Method + * @{ + */ +#define UART_ONE_BIT_SAMPLE_DISABLE ((uint32_t)0x00000000U) /*!< One-bit sampling disable */ +#define UART_ONE_BIT_SAMPLE_ENABLE ((uint32_t)USART_CR3_ONEBIT) /*!< One-bit sampling enable */ +/** + * @} + */ + +/** @defgroup UART_AutoBaud_Rate_Mode UART Advanced Feature AutoBaud Rate Mode + * @{ + */ +#define UART_ADVFEATURE_AUTOBAUDRATE_ONSTARTBIT ((uint32_t)0x00000000) /*!< Auto Baud rate detection on start bit */ +#define UART_ADVFEATURE_AUTOBAUDRATE_ONFALLINGEDGE ((uint32_t)USART_CR2_ABRMODE_0) /*!< Auto Baud rate detection on falling edge */ +#define UART_ADVFEATURE_AUTOBAUDRATE_ON0X7FFRAME ((uint32_t)USART_CR2_ABRMODE_1) /*!< Auto Baud rate detection on 0x7F frame detection */ +#define UART_ADVFEATURE_AUTOBAUDRATE_ON0X55FRAME ((uint32_t)USART_CR2_ABRMODE) /*!< Auto Baud rate detection on 0x55 frame detection */ +/** + * @} + */ + +/** @defgroup UART_Receiver_TimeOut UART Receiver TimeOut + * @{ + */ +#define UART_RECEIVER_TIMEOUT_DISABLE ((uint32_t)0x00000000U) /*!< UART receiver timeout disable */ +#define UART_RECEIVER_TIMEOUT_ENABLE ((uint32_t)USART_CR2_RTOEN) /*!< UART receiver timeout enable */ +/** + * @} + */ + +/** @defgroup UART_LIN UART Local Interconnection Network mode + * @{ + */ +#define UART_LIN_DISABLE ((uint32_t)0x00000000U) /*!< Local Interconnect Network disable */ +#define UART_LIN_ENABLE ((uint32_t)USART_CR2_LINEN) /*!< Local Interconnect Network enable */ +/** + * @} + */ + +/** @defgroup UART_LIN_Break_Detection UART LIN Break Detection + * @{ + */ +#define UART_LINBREAKDETECTLENGTH_10B ((uint32_t)0x00000000U) /*!< LIN 10-bit break detection length */ +#define UART_LINBREAKDETECTLENGTH_11B ((uint32_t)USART_CR2_LBDL) /*!< LIN 11-bit break detection length */ +/** + * @} + */ + +/** @defgroup UART_DMA_Tx UART DMA Tx + * @{ + */ +#define UART_DMA_TX_DISABLE ((uint32_t)0x00000000U) /*!< UART DMA TX disabled */ +#define UART_DMA_TX_ENABLE ((uint32_t)USART_CR3_DMAT) /*!< UART DMA TX enabled */ +/** + * @} + */ + +/** @defgroup UART_DMA_Rx UART DMA Rx + * @{ + */ +#define UART_DMA_RX_DISABLE ((uint32_t)0x00000000U) /*!< UART DMA RX disabled */ +#define UART_DMA_RX_ENABLE ((uint32_t)USART_CR3_DMAR) /*!< UART DMA RX enabled */ +/** + * @} + */ + +/** @defgroup UART_Half_Duplex_Selection UART Half Duplex Selection + * @{ + */ +#define UART_HALF_DUPLEX_DISABLE ((uint32_t)0x00000000U) /*!< UART half-duplex disabled */ +#define UART_HALF_DUPLEX_ENABLE ((uint32_t)USART_CR3_HDSEL) /*!< UART half-duplex enabled */ +/** + * @} + */ + +/** @defgroup UART_WakeUp_Methods UART WakeUp Methods + * @{ + */ +#define UART_WAKEUPMETHOD_IDLELINE ((uint32_t)0x00000000U) /*!< UART wake-up on idle line */ +#define UART_WAKEUPMETHOD_ADDRESSMARK ((uint32_t)USART_CR1_WAKE) /*!< UART wake-up on address mark */ +/** + * @} + */ + +/** @defgroup UART_Request_Parameters UART Request Parameters + * @{ + */ +#define UART_AUTOBAUD_REQUEST ((uint32_t)USART_RQR_ABRRQ) /*!< Auto-Baud Rate Request */ +#define UART_SENDBREAK_REQUEST ((uint32_t)USART_RQR_SBKRQ) /*!< Send Break Request */ +#define UART_MUTE_MODE_REQUEST ((uint32_t)USART_RQR_MMRQ) /*!< Mute Mode Request */ +#define UART_RXDATA_FLUSH_REQUEST ((uint32_t)USART_RQR_RXFRQ) /*!< Receive Data flush Request */ +#define UART_TXDATA_FLUSH_REQUEST ((uint32_t)USART_RQR_TXFRQ) /*!< Transmit data flush Request */ +/** + * @} + */ + +/** @defgroup UART_Advanced_Features_Initialization_Type UART Advanced Feature Initialization Type + * @{ + */ +#define UART_ADVFEATURE_NO_INIT ((uint32_t)0x00000000U) /*!< No advanced feature initialization */ +#define UART_ADVFEATURE_TXINVERT_INIT ((uint32_t)0x00000001U) /*!< TX pin active level inversion */ +#define UART_ADVFEATURE_RXINVERT_INIT ((uint32_t)0x00000002U) /*!< RX pin active level inversion */ +#define UART_ADVFEATURE_DATAINVERT_INIT ((uint32_t)0x00000004U) /*!< Binary data inversion */ +#define UART_ADVFEATURE_SWAP_INIT ((uint32_t)0x00000008U) /*!< TX/RX pins swap */ +#define UART_ADVFEATURE_RXOVERRUNDISABLE_INIT ((uint32_t)0x00000010U) /*!< RX overrun disable */ +#define UART_ADVFEATURE_DMADISABLEONERROR_INIT ((uint32_t)0x00000020U) /*!< DMA disable on Reception Error */ +#define UART_ADVFEATURE_AUTOBAUDRATE_INIT ((uint32_t)0x00000040U) /*!< Auto Baud rate detection initialization */ +#define UART_ADVFEATURE_MSBFIRST_INIT ((uint32_t)0x00000080U) /*!< Most significant bit sent/received first */ +/** + * @} + */ + +/** @defgroup UART_Tx_Inv UART Advanced Feature TX Pin Active Level Inversion + * @{ + */ +#define UART_ADVFEATURE_TXINV_DISABLE ((uint32_t)0x00000000U) /*!< TX pin active level inversion disable */ +#define UART_ADVFEATURE_TXINV_ENABLE ((uint32_t)USART_CR2_TXINV) /*!< TX pin active level inversion enable */ +/** + * @} + */ + +/** @defgroup UART_Rx_Inv UART Advanced Feature RX Pin Active Level Inversion + * @{ + */ +#define UART_ADVFEATURE_RXINV_DISABLE ((uint32_t)0x00000000U) /*!< RX pin active level inversion disable */ +#define UART_ADVFEATURE_RXINV_ENABLE ((uint32_t)USART_CR2_RXINV) /*!< RX pin active level inversion enable */ +/** + * @} + */ + +/** @defgroup UART_Data_Inv UART Advanced Feature Binary Data Inversion + * @{ + */ +#define UART_ADVFEATURE_DATAINV_DISABLE ((uint32_t)0x00000000U) /*!< Binary data inversion disable */ +#define UART_ADVFEATURE_DATAINV_ENABLE ((uint32_t)USART_CR2_DATAINV) /*!< Binary data inversion enable */ +/** + * @} + */ + +/** @defgroup UART_Rx_Tx_Swap UART Advanced Feature RX TX Pins Swap + * @{ + */ +#define UART_ADVFEATURE_SWAP_DISABLE ((uint32_t)0x00000000U) /*!< TX/RX pins swap disable */ +#define UART_ADVFEATURE_SWAP_ENABLE ((uint32_t)USART_CR2_SWAP) /*!< TX/RX pins swap enable */ +/** + * @} + */ + +/** @defgroup UART_Overrun_Disable UART Advanced Feature Overrun Disable + * @{ + */ +#define UART_ADVFEATURE_OVERRUN_ENABLE ((uint32_t)0x00000000U) /*!< RX overrun enable */ +#define UART_ADVFEATURE_OVERRUN_DISABLE ((uint32_t)USART_CR3_OVRDIS) /*!< RX overrun disable */ +/** + * @} + */ + +/** @defgroup UART_AutoBaudRate_Enable UART Advanced Feature Auto BaudRate Enable + * @{ + */ +#define UART_ADVFEATURE_AUTOBAUDRATE_DISABLE ((uint32_t)0x00000000U) /*!< RX Auto Baud rate detection enable */ +#define UART_ADVFEATURE_AUTOBAUDRATE_ENABLE ((uint32_t)USART_CR2_ABREN) /*!< RX Auto Baud rate detection disable */ +/** + * @} + */ + +/** @defgroup UART_DMA_Disable_on_Rx_Error UART Advanced Feature DMA Disable On Rx Error + * @{ + */ +#define UART_ADVFEATURE_DMA_ENABLEONRXERROR ((uint32_t)0x00000000U) /*!< DMA enable on Reception Error */ +#define UART_ADVFEATURE_DMA_DISABLEONRXERROR ((uint32_t)USART_CR3_DDRE) /*!< DMA disable on Reception Error */ +/** + * @} + */ + +/** @defgroup UART_MSB_First UART Advanced Feature MSB First + * @{ + */ +#define UART_ADVFEATURE_MSBFIRST_DISABLE ((uint32_t)0x00000000U) /*!< Most significant bit sent/received first disable */ +#define UART_ADVFEATURE_MSBFIRST_ENABLE ((uint32_t)USART_CR2_MSBFIRST) /*!< Most significant bit sent/received first enable */ +/** + * @} + */ + +/** @defgroup UART_Stop_Mode_Enable UART Advanced Feature Stop Mode Enable + * @{ + */ +#define UART_ADVFEATURE_STOPMODE_DISABLE ((uint32_t)0x00000000U) /*!< UART stop mode disable */ +#define UART_ADVFEATURE_STOPMODE_ENABLE ((uint32_t)USART_CR1_UESM) /*!< UART stop mode enable */ +/** + * @} + */ + +/** @defgroup UART_Mute_Mode UART Advanced Feature Mute Mode Enable + * @{ + */ +#define UART_ADVFEATURE_MUTEMODE_DISABLE ((uint32_t)0x00000000U) /*!< UART mute mode disable */ +#define UART_ADVFEATURE_MUTEMODE_ENABLE ((uint32_t)USART_CR1_MME) /*!< UART mute mode enable */ +/** + * @} + */ + +/** @defgroup UART_CR2_ADDRESS_LSB_POS UART Address-matching LSB Position In CR2 Register + * @{ + */ +#define UART_CR2_ADDRESS_LSB_POS ((uint32_t) 24U) /*!< UART address-matching LSB position in CR2 register */ +/** + * @} + */ + +/** @defgroup UART_WakeUp_from_Stop_Selection UART WakeUp From Stop Selection + * @{ + */ +#define UART_WAKEUP_ON_ADDRESS ((uint32_t)0x00000000U) /*!< UART wake-up on address */ +#define UART_WAKEUP_ON_STARTBIT ((uint32_t)USART_CR3_WUS_1) /*!< UART wake-up on start bit */ +#define UART_WAKEUP_ON_READDATA_NONEMPTY ((uint32_t)USART_CR3_WUS) /*!< UART wake-up on receive data register not empty */ +/** + * @} + */ + +/** @defgroup UART_DriverEnable_Polarity UART DriverEnable Polarity + * @{ + */ +#define UART_DE_POLARITY_HIGH ((uint32_t)0x00000000U) /*!< Driver enable signal is active high */ +#define UART_DE_POLARITY_LOW ((uint32_t)USART_CR3_DEP) /*!< Driver enable signal is active low */ +/** + * @} + */ + +/** @defgroup UART_CR1_DEAT_ADDRESS_LSB_POS UART Driver Enable Assertion Time LSB Position In CR1 Register + * @{ + */ +#define UART_CR1_DEAT_ADDRESS_LSB_POS ((uint32_t) 21U) /*!< UART Driver Enable assertion time LSB position in CR1 register */ +/** + * @} + */ + +/** @defgroup UART_CR1_DEDT_ADDRESS_LSB_POS UART Driver Enable DeAssertion Time LSB Position In CR1 Register + * @{ + */ +#define UART_CR1_DEDT_ADDRESS_LSB_POS ((uint32_t) 16U) /*!< UART Driver Enable de-assertion time LSB position in CR1 register */ +/** + * @} + */ + +/** @defgroup UART_Interruption_Mask UART Interruptions Flag Mask + * @{ + */ +#define UART_IT_MASK ((uint32_t)0x001FU) /*!< UART interruptions flags mask */ +/** + * @} + */ + +/** @defgroup UART_TimeOut_Value UART polling-based communications time-out value + * @{ + */ +#define HAL_UART_TIMEOUT_VALUE 0x1FFFFFF /*!< UART polling-based communications time-out value */ +/** + * @} + */ + +/** @defgroup UART_Flags UART Status Flags + * Elements values convention: 0xXXXX + * - 0xXXXX : Flag mask in the ISR register + * @{ + */ +#define UART_FLAG_REACK USART_ISR_REACK /*!< UART receive enable acknowledge flag */ +#define UART_FLAG_TEACK USART_ISR_TEACK /*!< UART transmit enable acknowledge flag */ +#define UART_FLAG_WUF USART_ISR_WUF /*!< UART wake-up from stop mode flag */ +#define UART_FLAG_RWU USART_ISR_RWU /*!< UART receiver wake-up from mute mode flag */ +#define UART_FLAG_SBKF USART_ISR_SBKF /*!< UART send break flag */ +#define UART_FLAG_CMF USART_ISR_CMF /*!< UART character match flag */ +#define UART_FLAG_BUSY USART_ISR_BUSY /*!< UART busy flag */ +#define UART_FLAG_ABRF USART_ISR_ABRF /*!< UART auto Baud rate flag */ +#define UART_FLAG_ABRE USART_ISR_ABRE /*!< UART auto Baud rate error */ +#define UART_FLAG_EOBF USART_ISR_EOBF /*!< UART end of block flag */ +#define UART_FLAG_RTOF USART_ISR_RTOF /*!< UART receiver timeout flag */ +#define UART_FLAG_CTS USART_ISR_CTS /*!< UART clear to send flag */ +#define UART_FLAG_CTSIF USART_ISR_CTSIF /*!< UART clear to send interrupt flag */ +#define UART_FLAG_LBDF USART_ISR_LBDF /*!< UART LIN break detection flag */ +#define UART_FLAG_TXE USART_ISR_TXE /*!< UART transmit data register empty */ +#define UART_FLAG_TC USART_ISR_TC /*!< UART transmission complete */ +#define UART_FLAG_RXNE USART_ISR_RXNE /*!< UART read data register not empty */ +#define UART_FLAG_IDLE USART_ISR_IDLE /*!< UART idle flag */ +#define UART_FLAG_ORE USART_ISR_ORE /*!< UART overrun error */ +#define UART_FLAG_NE USART_ISR_NE /*!< UART noise error */ +#define UART_FLAG_FE USART_ISR_FE /*!< UART frame error */ +#define UART_FLAG_PE USART_ISR_PE /*!< UART parity error */ +/** + * @} + */ + +/** @defgroup UART_Interrupt_definition UART Interrupts Definition + * Elements values convention: 000ZZZZZ0XXYYYYYb + * - YYYYY : Interrupt source position in the XX register (5bits) + * - XX : Interrupt source register (2bits) + * - 01: CR1 register + * - 10: CR2 register + * - 11: CR3 register + * - ZZZZZ : Flag position in the ISR register(5bits) + * @{ + */ +#define UART_IT_PE ((uint32_t)0x0028) /*!< UART parity error interruption */ +#define UART_IT_TXE ((uint32_t)0x0727) /*!< UART transmit data register empty interruption */ +#define UART_IT_TC ((uint32_t)0x0626) /*!< UART transmission complete interruption */ +#define UART_IT_RXNE ((uint32_t)0x0525) /*!< UART read data register not empty interruption */ +#define UART_IT_IDLE ((uint32_t)0x0424) /*!< UART idle interruption */ +#define UART_IT_LBD ((uint32_t)0x0846) /*!< UART LIN break detection interruption */ +#define UART_IT_CTS ((uint32_t)0x096A) /*!< UART CTS interruption */ +#define UART_IT_CM ((uint32_t)0x112E) /*!< UART character match interruption */ +#define UART_IT_WUF ((uint32_t)0x1476) /*!< UART wake-up from stop mode interruption */ + +/** Elements values convention: 000000000XXYYYYYb + * - YYYYY : Interrupt source position in the XX register (5bits) + * - XX : Interrupt source register (2bits) + * - 01: CR1 register + * - 10: CR2 register + * - 11: CR3 register + */ +#define UART_IT_ERR ((uint32_t)0x0060) /*!< UART error interruption */ + +/** Elements values convention: 0000ZZZZ00000000b + * - ZZZZ : Flag position in the ISR register(4bits) + */ +#define UART_IT_ORE ((uint32_t)0x0300) /*!< UART overrun error interruption */ +#define UART_IT_NE ((uint32_t)0x0200) /*!< UART noise error interruption */ +#define UART_IT_FE ((uint32_t)0x0100) /*!< UART frame error interruption */ +/** + * @} + */ + +/** @defgroup UART_IT_CLEAR_Flags UART Interruption Clear Flags + * @{ + */ +#define UART_CLEAR_PEF USART_ICR_PECF /*!< Parity Error Clear Flag */ +#define UART_CLEAR_FEF USART_ICR_FECF /*!< Framing Error Clear Flag */ +#define UART_CLEAR_NEF USART_ICR_NCF /*!< Noise detected Clear Flag */ +#define UART_CLEAR_OREF USART_ICR_ORECF /*!< Overrun Error Clear Flag */ +#define UART_CLEAR_IDLEF USART_ICR_IDLECF /*!< IDLE line detected Clear Flag */ +#define UART_CLEAR_TCF USART_ICR_TCCF /*!< Transmission Complete Clear Flag */ +#define UART_CLEAR_LBDF USART_ICR_LBDCF /*!< LIN Break Detection Clear Flag */ +#define UART_CLEAR_CTSF USART_ICR_CTSCF /*!< CTS Interrupt Clear Flag */ +#define UART_CLEAR_RTOF USART_ICR_RTOCF /*!< Receiver Time Out Clear Flag */ +#define UART_CLEAR_EOBF USART_ICR_EOBCF /*!< End Of Block Clear Flag */ +#define UART_CLEAR_CMF USART_ICR_CMCF /*!< Character Match Clear Flag */ +#define UART_CLEAR_WUF USART_ICR_WUCF /*!< Wake Up from stop mode Clear Flag */ +/** + * @} + */ + + +/** + * @} + */ + +/* Exported macros -----------------------------------------------------------*/ +/** @defgroup UART_Exported_Macros UART Exported Macros + * @{ + */ + +/** @brief Reset UART handle states. + * @param __HANDLE__: UART handle. + * @retval None + */ +#define __HAL_UART_RESET_HANDLE_STATE(__HANDLE__) do{ \ + (__HANDLE__)->gState = HAL_UART_STATE_RESET; \ + (__HANDLE__)->RxState = HAL_UART_STATE_RESET; \ + } while(0) +/** @brief Flush the UART Data registers. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_FLUSH_DRREGISTER(__HANDLE__) \ + do{ \ + SET_BIT((__HANDLE__)->Instance->RQR, UART_RXDATA_FLUSH_REQUEST); \ + SET_BIT((__HANDLE__)->Instance->RQR, UART_TXDATA_FLUSH_REQUEST); \ + } while(0) + +/** @brief Clear the specified UART pending flag. + * @param __HANDLE__: specifies the UART Handle. + * @param __FLAG__: specifies the flag to check. + * This parameter can be any combination of the following values: + * @arg @ref UART_CLEAR_PEF Parity Error Clear Flag + * @arg @ref UART_CLEAR_FEF Framing Error Clear Flag + * @arg @ref UART_CLEAR_NEF Noise detected Clear Flag + * @arg @ref UART_CLEAR_OREF Overrun Error Clear Flag + * @arg @ref UART_CLEAR_IDLEF IDLE line detected Clear Flag + * @arg @ref UART_CLEAR_TCF Transmission Complete Clear Flag + * @arg @ref UART_CLEAR_LBDF LIN Break Detection Clear Flag + * @arg @ref UART_CLEAR_CTSF CTS Interrupt Clear Flag + * @arg @ref UART_CLEAR_RTOF Receiver Time Out Clear Flag + * @arg @ref UART_CLEAR_EOBF End Of Block Clear Flag + * @arg @ref UART_CLEAR_CMF Character Match Clear Flag + * @arg @ref UART_CLEAR_WUF Wake Up from stop mode Clear Flag + * @retval None + */ +#define __HAL_UART_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__)) + +/** @brief Clear the UART PE pending flag. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_CLEAR_PEFLAG(__HANDLE__) __HAL_UART_CLEAR_FLAG((__HANDLE__), UART_CLEAR_PEF) + +/** @brief Clear the UART FE pending flag. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_CLEAR_FEFLAG(__HANDLE__) __HAL_UART_CLEAR_FLAG((__HANDLE__), UART_CLEAR_FEF) + +/** @brief Clear the UART NE pending flag. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_CLEAR_NEFLAG(__HANDLE__) __HAL_UART_CLEAR_FLAG((__HANDLE__), UART_CLEAR_NEF) + +/** @brief Clear the UART ORE pending flag. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_CLEAR_OREFLAG(__HANDLE__) __HAL_UART_CLEAR_FLAG((__HANDLE__), UART_CLEAR_OREF) + +/** @brief Clear the UART IDLE pending flag. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_CLEAR_IDLEFLAG(__HANDLE__) __HAL_UART_CLEAR_FLAG((__HANDLE__), UART_CLEAR_IDLEF) + +/** @brief Check whether the specified UART flag is set or not. + * @param __HANDLE__: specifies the UART Handle. + * @param __FLAG__: specifies the flag to check. + * This parameter can be one of the following values: + * @arg @ref UART_FLAG_REACK Receive enable acknowledge flag + * @arg @ref UART_FLAG_TEACK Transmit enable acknowledge flag + * @arg @ref UART_FLAG_WUF Wake up from stop mode flag + * @arg @ref UART_FLAG_RWU Receiver wake up flag (if the UART in mute mode) + * @arg @ref UART_FLAG_SBKF Send Break flag + * @arg @ref UART_FLAG_CMF Character match flag + * @arg @ref UART_FLAG_BUSY Busy flag + * @arg @ref UART_FLAG_ABRF Auto Baud rate detection flag + * @arg @ref UART_FLAG_ABRE Auto Baud rate detection error flag + * @arg @ref UART_FLAG_EOBF End of block flag + * @arg @ref UART_FLAG_RTOF Receiver timeout flag + * @arg @ref UART_FLAG_CTS CTS Change flag + * @arg @ref UART_FLAG_LBDF LIN Break detection flag + * @arg @ref UART_FLAG_TXE Transmit data register empty flag + * @arg @ref UART_FLAG_TC Transmission Complete flag + * @arg @ref UART_FLAG_RXNE Receive data register not empty flag + * @arg @ref UART_FLAG_IDLE Idle Line detection flag + * @arg @ref UART_FLAG_ORE Overrun Error flag + * @arg @ref UART_FLAG_NE Noise Error flag + * @arg @ref UART_FLAG_FE Framing Error flag + * @arg @ref UART_FLAG_PE Parity Error flag + * @retval The new state of __FLAG__ (TRUE or FALSE). + */ +#define __HAL_UART_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) + +/** @brief Enable the specified UART interrupt. + * @param __HANDLE__: specifies the UART Handle. + * @param __INTERRUPT__: specifies the UART interrupt source to enable. + * This parameter can be one of the following values: + * @arg @ref UART_IT_WUF Wakeup from stop mode interrupt + * @arg @ref UART_IT_CM Character match interrupt + * @arg @ref UART_IT_CTS CTS change interrupt + * @arg @ref UART_IT_LBD LIN Break detection interrupt + * @arg @ref UART_IT_TXE Transmit Data Register empty interrupt + * @arg @ref UART_IT_TC Transmission complete interrupt + * @arg @ref UART_IT_RXNE Receive Data register not empty interrupt + * @arg @ref UART_IT_IDLE Idle line detection interrupt + * @arg @ref UART_IT_PE Parity Error interrupt + * @arg @ref UART_IT_ERR Error interrupt (Frame error, noise error, overrun error) + * @retval None + */ +#define __HAL_UART_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1U)? ((__HANDLE__)->Instance->CR1 |= (1U << ((__INTERRUPT__) & UART_IT_MASK))): \ + ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2U)? ((__HANDLE__)->Instance->CR2 |= (1U << ((__INTERRUPT__) & UART_IT_MASK))): \ + ((__HANDLE__)->Instance->CR3 |= (1U << ((__INTERRUPT__) & UART_IT_MASK)))) + + +/** @brief Disable the specified UART interrupt. + * @param __HANDLE__: specifies the UART Handle. + * @param __INTERRUPT__: specifies the UART interrupt source to disable. + * This parameter can be one of the following values: + * @arg @ref UART_IT_WUF Wakeup from stop mode interrupt + * @arg @ref UART_IT_CM Character match interrupt + * @arg @ref UART_IT_CTS CTS change interrupt + * @arg @ref UART_IT_LBD LIN Break detection interrupt + * @arg @ref UART_IT_TXE Transmit Data Register empty interrupt + * @arg @ref UART_IT_TC Transmission complete interrupt + * @arg @ref UART_IT_RXNE Receive Data register not empty interrupt + * @arg @ref UART_IT_IDLE Idle line detection interrupt + * @arg @ref UART_IT_PE Parity Error interrupt + * @arg @ref UART_IT_ERR Error interrupt (Frame error, noise error, overrun error) + * @retval None + */ +#define __HAL_UART_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1U)? ((__HANDLE__)->Instance->CR1 &= ~ (1U << ((__INTERRUPT__) & UART_IT_MASK))): \ + ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2U)? ((__HANDLE__)->Instance->CR2 &= ~ (1U << ((__INTERRUPT__) & UART_IT_MASK))): \ + ((__HANDLE__)->Instance->CR3 &= ~ (1U << ((__INTERRUPT__) & UART_IT_MASK)))) + +/** @brief Check whether the specified UART interrupt has occurred or not. + * @param __HANDLE__: specifies the UART Handle. + * @param __IT__: specifies the UART interrupt to check. + * This parameter can be one of the following values: + * @arg @ref UART_IT_WUF Wakeup from stop mode interrupt + * @arg @ref UART_IT_CM Character match interrupt + * @arg @ref UART_IT_CTS CTS change interrupt + * @arg @ref UART_IT_LBD LIN Break detection interrupt + * @arg @ref UART_IT_TXE Transmit Data Register empty interrupt + * @arg @ref UART_IT_TC Transmission complete interrupt + * @arg @ref UART_IT_RXNE Receive Data register not empty interrupt + * @arg @ref UART_IT_IDLE Idle line detection interrupt + * @arg @ref UART_IT_ORE Overrun Error interrupt + * @arg @ref UART_IT_NE Noise Error interrupt + * @arg @ref UART_IT_FE Framing Error interrupt + * @arg @ref UART_IT_PE Parity Error interrupt + * @retval The new state of __IT__ (TRUE or FALSE). + */ +#define __HAL_UART_GET_IT(__HANDLE__, __IT__) ((__HANDLE__)->Instance->ISR & ((uint32_t)1U << ((__IT__)>> 0x08U))) + +/** @brief Check whether the specified UART interrupt source is enabled or not. + * @param __HANDLE__: specifies the UART Handle. + * @param __IT__: specifies the UART interrupt source to check. + * This parameter can be one of the following values: + * @arg @ref UART_IT_WUF Wakeup from stop mode interrupt + * @arg @ref UART_IT_CM Character match interrupt + * @arg @ref UART_IT_CTS CTS change interrupt + * @arg @ref UART_IT_LBD LIN Break detection interrupt + * @arg @ref UART_IT_TXE Transmit Data Register empty interrupt + * @arg @ref UART_IT_TC Transmission complete interrupt + * @arg @ref UART_IT_RXNE Receive Data register not empty interrupt + * @arg @ref UART_IT_IDLE Idle line detection interrupt + * @arg @ref UART_IT_ERR Error interrupt (Frame error, noise error, overrun error) + * @arg @ref UART_IT_PE Parity Error interrupt + * @retval The new state of __IT__ (TRUE or FALSE). + */ +#define __HAL_UART_GET_IT_SOURCE(__HANDLE__, __IT__) ((((((uint8_t)(__IT__)) >> 5U) == 1U)? (__HANDLE__)->Instance->CR1:(((((uint8_t)(__IT__)) >> 5U) == 2U)? \ + (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & ((uint32_t)1U << (((uint16_t)(__IT__)) & UART_IT_MASK))) + +/** @brief Clear the specified UART ISR flag, in setting the proper ICR register flag. + * @param __HANDLE__: specifies the UART Handle. + * @param __IT_CLEAR__: specifies the interrupt clear register flag that needs to be set + * to clear the corresponding interrupt + * This parameter can be one of the following values: + * @arg @ref UART_CLEAR_PEF Parity Error Clear Flag + * @arg @ref UART_CLEAR_FEF Framing Error Clear Flag + * @arg @ref UART_CLEAR_NEF Noise detected Clear Flag + * @arg @ref UART_CLEAR_OREF Overrun Error Clear Flag + * @arg @ref UART_CLEAR_IDLEF IDLE line detected Clear Flag + * @arg @ref UART_CLEAR_TCF Transmission Complete Clear Flag + * @arg @ref UART_CLEAR_LBDF LIN Break Detection Clear Flag + * @arg @ref UART_CLEAR_CTSF CTS Interrupt Clear Flag + * @arg @ref UART_CLEAR_RTOF Receiver Time Out Clear Flag + * @arg @ref UART_CLEAR_EOBF End Of Block Clear Flag + * @arg @ref UART_CLEAR_CMF Character Match Clear Flag + * @arg @ref UART_CLEAR_WUF Wake Up from stop mode Clear Flag + * @retval None + */ +#define __HAL_UART_CLEAR_IT(__HANDLE__, __IT_CLEAR__) ((__HANDLE__)->Instance->ICR = (uint32_t)(__IT_CLEAR__)) + +/** @brief Set a specific UART request flag. + * @param __HANDLE__: specifies the UART Handle. + * @param __REQ__: specifies the request flag to set + * This parameter can be one of the following values: + * @arg @ref UART_AUTOBAUD_REQUEST Auto-Baud Rate Request + * @arg @ref UART_SENDBREAK_REQUEST Send Break Request + * @arg @ref UART_MUTE_MODE_REQUEST Mute Mode Request + * @arg @ref UART_RXDATA_FLUSH_REQUEST Receive Data flush Request + * @arg @ref UART_TXDATA_FLUSH_REQUEST Transmit data flush Request + * @retval None + */ +#define __HAL_UART_SEND_REQ(__HANDLE__, __REQ__) ((__HANDLE__)->Instance->RQR |= (uint32_t)(__REQ__)) + +/** @brief Enable the UART one bit sample method. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) + +/** @brief Disable the UART one bit sample method. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint32_t)~((uint32_t)USART_CR3_ONEBIT)) + +/** @brief Enable UART. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) + +/** @brief Disable UART. + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) + +/** @brief Enable CTS flow control. + * @note This macro allows to enable CTS hardware flow control for a given UART instance, + * without need to call HAL_UART_Init() function. + * As involving direct access to UART registers, usage of this macro should be fully endorsed by user. + * @note As macro is expected to be used for modifying CTS Hw flow control feature activation, without need + * for USART instance Deinit/Init, following conditions for macro call should be fulfilled : + * - UART instance should have already been initialised (through call of HAL_UART_Init() ) + * - macro could only be called when corresponding UART instance is disabled (i.e. __HAL_UART_DISABLE(__HANDLE__)) + * and should be followed by an Enable macro (i.e. __HAL_UART_ENABLE(__HANDLE__)). + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_HWCONTROL_CTS_ENABLE(__HANDLE__) \ + do{ \ + SET_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \ + (__HANDLE__)->Init.HwFlowCtl |= USART_CR3_CTSE; \ + } while(0) + +/** @brief Disable CTS flow control. + * @note This macro allows to disable CTS hardware flow control for a given UART instance, + * without need to call HAL_UART_Init() function. + * As involving direct access to UART registers, usage of this macro should be fully endorsed by user. + * @note As macro is expected to be used for modifying CTS Hw flow control feature activation, without need + * for USART instance Deinit/Init, following conditions for macro call should be fulfilled : + * - UART instance should have already been initialised (through call of HAL_UART_Init() ) + * - macro could only be called when corresponding UART instance is disabled (i.e. __HAL_UART_DISABLE(__HANDLE__)) + * and should be followed by an Enable macro (i.e. __HAL_UART_ENABLE(__HANDLE__)). + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_HWCONTROL_CTS_DISABLE(__HANDLE__) \ + do{ \ + CLEAR_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \ + (__HANDLE__)->Init.HwFlowCtl &= ~(USART_CR3_CTSE); \ + } while(0) + +/** @brief Enable RTS flow control. + * @note This macro allows to enable RTS hardware flow control for a given UART instance, + * without need to call HAL_UART_Init() function. + * As involving direct access to UART registers, usage of this macro should be fully endorsed by user. + * @note As macro is expected to be used for modifying RTS Hw flow control feature activation, without need + * for USART instance Deinit/Init, following conditions for macro call should be fulfilled : + * - UART instance should have already been initialised (through call of HAL_UART_Init() ) + * - macro could only be called when corresponding UART instance is disabled (i.e. __HAL_UART_DISABLE(__HANDLE__)) + * and should be followed by an Enable macro (i.e. __HAL_UART_ENABLE(__HANDLE__)). + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_HWCONTROL_RTS_ENABLE(__HANDLE__) \ + do{ \ + SET_BIT((__HANDLE__)->Instance->CR3, USART_CR3_RTSE); \ + (__HANDLE__)->Init.HwFlowCtl |= USART_CR3_RTSE; \ + } while(0) + +/** @brief Disable RTS flow control. + * @note This macro allows to disable RTS hardware flow control for a given UART instance, + * without need to call HAL_UART_Init() function. + * As involving direct access to UART registers, usage of this macro should be fully endorsed by user. + * @note As macro is expected to be used for modifying RTS Hw flow control feature activation, without need + * for USART instance Deinit/Init, following conditions for macro call should be fulfilled : + * - UART instance should have already been initialised (through call of HAL_UART_Init() ) + * - macro could only be called when corresponding UART instance is disabled (i.e. __HAL_UART_DISABLE(__HANDLE__)) + * and should be followed by an Enable macro (i.e. __HAL_UART_ENABLE(__HANDLE__)). + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_HWCONTROL_RTS_DISABLE(__HANDLE__) \ + do{ \ + CLEAR_BIT((__HANDLE__)->Instance->CR3, USART_CR3_RTSE);\ + (__HANDLE__)->Init.HwFlowCtl &= ~(USART_CR3_RTSE); \ + } while(0) + +/** @brief macros to enable the UART's one bit sampling method + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_ONE_BIT_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) + +/** @brief macros to disable the UART's one bit sampling method + * @param __HANDLE__: specifies the UART Handle. + * @retval None + */ +#define __HAL_UART_ONE_BIT_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT)) + + +/** + * @} + */ + +/* Private macros --------------------------------------------------------*/ +/** @defgroup UART_Private_Macros UART Private Macros + * @{ + */ +/** @brief BRR division operation to set BRR register with LPUART. + * @param __PCLK__: LPUART clock. + * @param __BAUD__: Baud rate set by the user. + * @retval Division result + */ +#define UART_DIV_LPUART(__PCLK__, __BAUD__) ((((uint64_t)(__PCLK__)*256U) + ((__BAUD__)/2U)) / (__BAUD__)) + +/** @brief BRR division operation to set BRR register in 8-bit oversampling mode. + * @param __PCLK__: UART clock. + * @param __BAUD__: Baud rate set by the user. + * @retval Division result + */ +#define UART_DIV_SAMPLING8(__PCLK__, __BAUD__) ((((__PCLK__)*2U) + ((__BAUD__)/2U)) / (__BAUD__)) + +/** @brief BRR division operation to set BRR register in 16-bit oversampling mode. + * @param __PCLK__: UART clock. + * @param __BAUD__: Baud rate set by the user. + * @retval Division result + */ +#define UART_DIV_SAMPLING16(__PCLK__, __BAUD__) (((__PCLK__) + ((__BAUD__)/2U)) / (__BAUD__)) + +/** @brief Check whether or not UART instance is Low Power UART. + * @param __HANDLE__: specifies the UART Handle. + * @retval SET (instance is LPUART) or RESET (instance isn't LPUART) + */ +#define UART_INSTANCE_LOWPOWER(__HANDLE__) (((__HANDLE__)->Instance == LPUART1) ? SET : RESET ) + +/** @brief Check UART Baud rate. + * @param __BAUDRATE__: Baudrate specified by the user. + * The maximum Baud Rate is derived from the maximum clock on L0 (i.e. 32 MHz) + * divided by the smallest oversampling used on the USART (i.e. 8) + * @retval SET (__BAUDRATE__ is valid) or RESET (__BAUDRATE__ is invalid) + */ +#define IS_UART_BAUDRATE(__BAUDRATE__) ((__BAUDRATE__) < 4000001) + +/** @brief Check UART byte address + * @param ADDRESS: UART 8-bit address for wake-up process scheme + * @retval Test result (TRUE or FALSE). + */ +#define IS_UART_7B_ADDRESS(ADDRESS) ((ADDRESS) <= 0x7F) + +/** @brief Check UART 4-bit address + * @param ADDRESS: UART 4-bit address for wake-up process scheme + * @retval Test result (TRUE or FALSE). + */ +#define IS_UART_4B_ADDRESS(ADDRESS) ((ADDRESS) <= 0xF) + +/** @brief Check UART assertion time. + * @param __TIME__: 5-bit value assertion time. + * @retval Test result (TRUE or FALSE). + */ +#define IS_UART_ASSERTIONTIME(__TIME__) ((__TIME__) <= 0x1F) + +/** @brief Check UART deassertion time. + * @param __TIME__: 5-bit value deassertion time. + * @retval Test result (TRUE or FALSE). + */ +#define IS_UART_DEASSERTIONTIME(__TIME__) ((__TIME__) <= 0x1F) + +/** + * @brief Ensure that UART frame number of stop bits is valid. + * @param __STOPBITS__: UART frame number of stop bits. + * @retval SET (__STOPBITS__ is valid) or RESET (__STOPBITS__ is invalid) + */ +#define IS_UART_STOPBITS(__STOPBITS__) (((__STOPBITS__) == UART_STOPBITS_1) || \ + ((__STOPBITS__) == UART_STOPBITS_1_5) || \ + ((__STOPBITS__) == UART_STOPBITS_2)) + +/** + * @brief Ensure that LPUART frame number of stop bits is valid. + * @param __STOPBITS__: LPUART frame number of stop bits. + * @retval SET (__STOPBITS__ is valid) or RESET (__STOPBITS__ is invalid) + */ +#define IS_LPUART_STOPBITS(__STOPBITS__) (((__STOPBITS__) == UART_STOPBITS_1) || \ + ((__STOPBITS__) == UART_STOPBITS_2)) + +/** + * @brief Ensure that UART frame parity is valid. + * @param __PARITY__: UART frame parity. + * @retval SET (__PARITY__ is valid) or RESET (__PARITY__ is invalid) + */ +#define IS_UART_PARITY(__PARITY__) (((__PARITY__) == UART_PARITY_NONE) || \ + ((__PARITY__) == UART_PARITY_EVEN) || \ + ((__PARITY__) == UART_PARITY_ODD)) + +/** + * @brief Ensure that UART hardware flow control is valid. + * @param __CONTROL__: UART hardware flow control. + * @retval SET (__CONTROL__ is valid) or RESET (__CONTROL__ is invalid) + */ +#define IS_UART_HARDWARE_FLOW_CONTROL(__CONTROL__)\ + (((__CONTROL__) == UART_HWCONTROL_NONE) || \ + ((__CONTROL__) == UART_HWCONTROL_RTS) || \ + ((__CONTROL__) == UART_HWCONTROL_CTS) || \ + ((__CONTROL__) == UART_HWCONTROL_RTS_CTS)) + +/** + * @brief Ensure that UART communication mode is valid. + * @param __MODE__: UART communication mode. + * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid) + */ +#define IS_UART_MODE(__MODE__) ((((__MODE__) & (~((uint32_t)(UART_MODE_TX_RX)))) == (uint32_t)0x00U) && ((__MODE__) != (uint32_t)0x00U)) + +/** + * @brief Ensure that UART state is valid. + * @param __STATE__: UART state. + * @retval SET (__STATE__ is valid) or RESET (__STATE__ is invalid) + */ +#define IS_UART_STATE(__STATE__) (((__STATE__) == UART_STATE_DISABLE) || \ + ((__STATE__) == UART_STATE_ENABLE)) + +/** + * @brief Ensure that UART oversampling is valid. + * @param __SAMPLING__: UART oversampling. + * @retval SET (__SAMPLING__ is valid) or RESET (__SAMPLING__ is invalid) + */ +#define IS_UART_OVERSAMPLING(__SAMPLING__) (((__SAMPLING__) == UART_OVERSAMPLING_16) || \ + ((__SAMPLING__) == UART_OVERSAMPLING_8)) + +/** + * @brief Ensure that UART frame sampling is valid. + * @param __ONEBIT__: UART frame sampling. + * @retval SET (__ONEBIT__ is valid) or RESET (__ONEBIT__ is invalid) + */ +#define IS_UART_ONE_BIT_SAMPLE(__ONEBIT__) (((__ONEBIT__) == UART_ONE_BIT_SAMPLE_DISABLE) || \ + ((__ONEBIT__) == UART_ONE_BIT_SAMPLE_ENABLE)) + +/** + * @brief Ensure that UART auto Baud rate detection mode is valid. + * @param __MODE__: UART auto Baud rate detection mode. + * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid) + */ +#define IS_UART_ADVFEATURE_AUTOBAUDRATEMODE(__MODE__) (((__MODE__) == UART_ADVFEATURE_AUTOBAUDRATE_ONSTARTBIT) || \ + ((__MODE__) == UART_ADVFEATURE_AUTOBAUDRATE_ONFALLINGEDGE) || \ + ((__MODE__) == UART_ADVFEATURE_AUTOBAUDRATE_ON0X7FFRAME) || \ + ((__MODE__) == UART_ADVFEATURE_AUTOBAUDRATE_ON0X55FRAME)) + +/** + * @brief Ensure that UART receiver timeout setting is valid. + * @param __TIMEOUT__: UART receiver timeout setting. + * @retval SET (__TIMEOUT__ is valid) or RESET (__TIMEOUT__ is invalid) + */ +#define IS_UART_RECEIVER_TIMEOUT(__TIMEOUT__) (((__TIMEOUT__) == UART_RECEIVER_TIMEOUT_DISABLE) || \ + ((__TIMEOUT__) == UART_RECEIVER_TIMEOUT_ENABLE)) + +/** + * @brief Ensure that UART LIN state is valid. + * @param __LIN__: UART LIN state. + * @retval SET (__LIN__ is valid) or RESET (__LIN__ is invalid) + */ +#define IS_UART_LIN(__LIN__) (((__LIN__) == UART_LIN_DISABLE) || \ + ((__LIN__) == UART_LIN_ENABLE)) + +/** + * @brief Ensure that UART LIN break detection length is valid. + * @param __LENGTH__: UART LIN break detection length. + * @retval SET (__LENGTH__ is valid) or RESET (__LENGTH__ is invalid) + */ +#define IS_UART_LIN_BREAK_DETECT_LENGTH(__LENGTH__) (((__LENGTH__) == UART_LINBREAKDETECTLENGTH_10B) || \ + ((__LENGTH__) == UART_LINBREAKDETECTLENGTH_11B)) + +/** + * @brief Ensure that UART DMA TX state is valid. + * @param __DMATX__: UART DMA TX state. + * @retval SET (__DMATX__ is valid) or RESET (__DMATX__ is invalid) + */ +#define IS_UART_DMA_TX(__DMATX__) (((__DMATX__) == UART_DMA_TX_DISABLE) || \ + ((__DMATX__) == UART_DMA_TX_ENABLE)) + +/** + * @brief Ensure that UART DMA RX state is valid. + * @param __DMARX__: UART DMA RX state. + * @retval SET (__DMARX__ is valid) or RESET (__DMARX__ is invalid) + */ +#define IS_UART_DMA_RX(__DMARX__) (((__DMARX__) == UART_DMA_RX_DISABLE) || \ + ((__DMARX__) == UART_DMA_RX_ENABLE)) + +/** + * @brief Ensure that UART half-duplex state is valid. + * @param __HDSEL__: UART half-duplex state. + * @retval SET (__HDSEL__ is valid) or RESET (__HDSEL__ is invalid) + */ +#define IS_UART_HALF_DUPLEX(__HDSEL__) (((__HDSEL__) == UART_HALF_DUPLEX_DISABLE) || \ + ((__HDSEL__) == UART_HALF_DUPLEX_ENABLE)) + +/** + * @brief Ensure that UART wake-up method is valid. + * @param __WAKEUP__: UART wake-up method . + * @retval SET (__WAKEUP__ is valid) or RESET (__WAKEUP__ is invalid) + */ +#define IS_UART_WAKEUPMETHOD(__WAKEUP__) (((__WAKEUP__) == UART_WAKEUPMETHOD_IDLELINE) || \ + ((__WAKEUP__) == UART_WAKEUPMETHOD_ADDRESSMARK)) + +/** + * @brief Ensure that UART request parameter is valid. + * @param __PARAM__: UART request parameter. + * @retval SET (__PARAM__ is valid) or RESET (__PARAM__ is invalid) + */ +#define IS_UART_REQUEST_PARAMETER(__PARAM__) (((__PARAM__) == UART_AUTOBAUD_REQUEST) || \ + ((__PARAM__) == UART_SENDBREAK_REQUEST) || \ + ((__PARAM__) == UART_MUTE_MODE_REQUEST) || \ + ((__PARAM__) == UART_RXDATA_FLUSH_REQUEST) || \ + ((__PARAM__) == UART_TXDATA_FLUSH_REQUEST)) + +/** + * @brief Ensure that UART advanced features initialization is valid. + * @param __INIT__: UART advanced features initialization. + * @retval SET (__INIT__ is valid) or RESET (__INIT__ is invalid) + */ +#define IS_UART_ADVFEATURE_INIT(__INIT__) ((__INIT__) <= (UART_ADVFEATURE_NO_INIT | \ + UART_ADVFEATURE_TXINVERT_INIT | \ + UART_ADVFEATURE_RXINVERT_INIT | \ + UART_ADVFEATURE_DATAINVERT_INIT | \ + UART_ADVFEATURE_SWAP_INIT | \ + UART_ADVFEATURE_RXOVERRUNDISABLE_INIT | \ + UART_ADVFEATURE_DMADISABLEONERROR_INIT | \ + UART_ADVFEATURE_AUTOBAUDRATE_INIT | \ + UART_ADVFEATURE_MSBFIRST_INIT)) + +/** + * @brief Ensure that UART frame TX inversion setting is valid. + * @param __TXINV__: UART frame TX inversion setting. + * @retval SET (__TXINV__ is valid) or RESET (__TXINV__ is invalid) + */ +#define IS_UART_ADVFEATURE_TXINV(__TXINV__) (((__TXINV__) == UART_ADVFEATURE_TXINV_DISABLE) || \ + ((__TXINV__) == UART_ADVFEATURE_TXINV_ENABLE)) + +/** + * @brief Ensure that UART frame RX inversion setting is valid. + * @param __RXINV__: UART frame RX inversion setting. + * @retval SET (__RXINV__ is valid) or RESET (__RXINV__ is invalid) + */ +#define IS_UART_ADVFEATURE_RXINV(__RXINV__) (((__RXINV__) == UART_ADVFEATURE_RXINV_DISABLE) || \ + ((__RXINV__) == UART_ADVFEATURE_RXINV_ENABLE)) + +/** + * @brief Ensure that UART frame data inversion setting is valid. + * @param __DATAINV__: UART frame data inversion setting. + * @retval SET (__DATAINV__ is valid) or RESET (__DATAINV__ is invalid) + */ +#define IS_UART_ADVFEATURE_DATAINV(__DATAINV__) (((__DATAINV__) == UART_ADVFEATURE_DATAINV_DISABLE) || \ + ((__DATAINV__) == UART_ADVFEATURE_DATAINV_ENABLE)) + +/** + * @brief Ensure that UART frame RX/TX pins swap setting is valid. + * @param __SWAP__: UART frame RX/TX pins swap setting. + * @retval SET (__SWAP__ is valid) or RESET (__SWAP__ is invalid) + */ +#define IS_UART_ADVFEATURE_SWAP(__SWAP__) (((__SWAP__) == UART_ADVFEATURE_SWAP_DISABLE) || \ + ((__SWAP__) == UART_ADVFEATURE_SWAP_ENABLE)) + +/** + * @brief Ensure that UART frame overrun setting is valid. + * @param __OVERRUN__: UART frame overrun setting. + * @retval SET (__OVERRUN__ is valid) or RESET (__OVERRUN__ is invalid) + */ +#define IS_UART_OVERRUN(__OVERRUN__) (((__OVERRUN__) == UART_ADVFEATURE_OVERRUN_ENABLE) || \ + ((__OVERRUN__) == UART_ADVFEATURE_OVERRUN_DISABLE)) + +/** + * @brief Ensure that UART auto Baud rate state is valid. + * @param __AUTOBAUDRATE__: UART auto Baud rate state. + * @retval SET (__AUTOBAUDRATE__ is valid) or RESET (__AUTOBAUDRATE__ is invalid) + */ +#define IS_UART_ADVFEATURE_AUTOBAUDRATE(__AUTOBAUDRATE__) (((__AUTOBAUDRATE__) == UART_ADVFEATURE_AUTOBAUDRATE_DISABLE) || \ + ((__AUTOBAUDRATE__) == UART_ADVFEATURE_AUTOBAUDRATE_ENABLE)) + +/** + * @brief Ensure that UART DMA enabling or disabling on error setting is valid. + * @param __DMA__: UART DMA enabling or disabling on error setting. + * @retval SET (__DMA__ is valid) or RESET (__DMA__ is invalid) + */ +#define IS_UART_ADVFEATURE_DMAONRXERROR(__DMA__) (((__DMA__) == UART_ADVFEATURE_DMA_ENABLEONRXERROR) || \ + ((__DMA__) == UART_ADVFEATURE_DMA_DISABLEONRXERROR)) + +/** + * @brief Ensure that UART frame MSB first setting is valid. + * @param __MSBFIRST__: UART frame MSB first setting. + * @retval SET (__MSBFIRST__ is valid) or RESET (__MSBFIRST__ is invalid) + */ +#define IS_UART_ADVFEATURE_MSBFIRST(__MSBFIRST__) (((__MSBFIRST__) == UART_ADVFEATURE_MSBFIRST_DISABLE) || \ + ((__MSBFIRST__) == UART_ADVFEATURE_MSBFIRST_ENABLE)) + +/** + * @brief Ensure that UART stop mode state is valid. + * @param __STOPMODE__: UART stop mode state. + * @retval SET (__STOPMODE__ is valid) or RESET (__STOPMODE__ is invalid) + */ +#define IS_UART_ADVFEATURE_STOPMODE(__STOPMODE__) (((__STOPMODE__) == UART_ADVFEATURE_STOPMODE_DISABLE) || \ + ((__STOPMODE__) == UART_ADVFEATURE_STOPMODE_ENABLE)) + +/** + * @brief Ensure that UART mute mode state is valid. + * @param __MUTE__: UART mute mode state. + * @retval SET (__MUTE__ is valid) or RESET (__MUTE__ is invalid) + */ +#define IS_UART_MUTE_MODE(__MUTE__) (((__MUTE__) == UART_ADVFEATURE_MUTEMODE_DISABLE) || \ + ((__MUTE__) == UART_ADVFEATURE_MUTEMODE_ENABLE)) + +/** + * @brief Ensure that UART wake-up selection is valid. + * @param __WAKE__: UART wake-up selection. + * @retval SET (__WAKE__ is valid) or RESET (__WAKE__ is invalid) + */ +#define IS_UART_WAKEUP_SELECTION(__WAKE__) (((__WAKE__) == UART_WAKEUP_ON_ADDRESS) || \ + ((__WAKE__) == UART_WAKEUP_ON_STARTBIT) || \ + ((__WAKE__) == UART_WAKEUP_ON_READDATA_NONEMPTY)) + +/** + * @brief Ensure that UART driver enable polarity is valid. + * @param __POLARITY__: UART driver enable polarity. + * @retval SET (__POLARITY__ is valid) or RESET (__POLARITY__ is invalid) + */ +#define IS_UART_DE_POLARITY(__POLARITY__) (((__POLARITY__) == UART_DE_POLARITY_HIGH) || \ + ((__POLARITY__) == UART_DE_POLARITY_LOW)) + +/** + * @} + */ + +/* Include UART HAL Extended module */ +#include "stm32l0xx_hal_uart_ex.h" + +/* Exported functions --------------------------------------------------------*/ +/** @addtogroup UART_Exported_Functions UART Exported Functions + * @{ + */ + +/** @addtogroup UART_Exported_Functions_Group1 Initialization and de-initialization functions + * @{ + */ + +/* Initialization and de-initialization functions ****************************/ +HAL_StatusTypeDef HAL_UART_Init(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_HalfDuplex_Init(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_LIN_Init(UART_HandleTypeDef *huart, uint32_t BreakDetectLength); +HAL_StatusTypeDef HAL_MultiProcessor_Init(UART_HandleTypeDef *huart, uint8_t Address, uint32_t WakeUpMethod); +HAL_StatusTypeDef HAL_UART_DeInit (UART_HandleTypeDef *huart); +void HAL_UART_MspInit(UART_HandleTypeDef *huart); +void HAL_UART_MspDeInit(UART_HandleTypeDef *huart); + +/** + * @} + */ + +/** @addtogroup UART_Exported_Functions_Group2 IO operation functions + * @{ + */ + +/* IO operation functions *****************************************************/ +HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_UART_Receive(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout); +HAL_StatusTypeDef HAL_UART_Transmit_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_UART_Receive_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_UART_Transmit_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_UART_Receive_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size); +HAL_StatusTypeDef HAL_UART_DMAPause(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UART_DMAResume(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UART_DMAStop(UART_HandleTypeDef *huart); +/* Transfer Abort functions */ +HAL_StatusTypeDef HAL_UART_Abort(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UART_AbortTransmit(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UART_AbortReceive(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UART_Abort_IT(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UART_AbortTransmit_IT(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UART_AbortReceive_IT(UART_HandleTypeDef *huart); + +void HAL_UART_IRQHandler(UART_HandleTypeDef *huart); +void HAL_UART_TxHalfCpltCallback(UART_HandleTypeDef *huart); +void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart); +void HAL_UART_RxHalfCpltCallback(UART_HandleTypeDef *huart); +void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart); +void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart); +void HAL_UART_AbortCpltCallback (UART_HandleTypeDef *huart); +void HAL_UART_AbortTransmitCpltCallback (UART_HandleTypeDef *huart); +void HAL_UART_AbortReceiveCpltCallback (UART_HandleTypeDef *huart); + +/** + * @} + */ + +/** @addtogroup UART_Exported_Functions_Group3 Peripheral Control functions + * @{ + */ + +/* Peripheral Control functions ************************************************/ +HAL_StatusTypeDef HAL_LIN_SendBreak(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_MultiProcessor_EnableMuteMode(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_MultiProcessor_DisableMuteMode(UART_HandleTypeDef *huart); +void HAL_MultiProcessor_EnterMuteMode(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_HalfDuplex_EnableTransmitter(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_HalfDuplex_EnableReceiver(UART_HandleTypeDef *huart); + +/** + * @} + */ + +/** @addtogroup UART_Exported_Functions_Group4 Peripheral State and Error functions + * @{ + */ + +/* Peripheral State and Errors functions **************************************************/ +HAL_UART_StateTypeDef HAL_UART_GetState(UART_HandleTypeDef *huart); +uint32_t HAL_UART_GetError(UART_HandleTypeDef *huart); + +/** + * @} + */ + +/** + * @} + */ + +/* Private functions -----------------------------------------------------------*/ +/** @addtogroup UART_Private_Functions UART Private Functions + * @{ + */ + +HAL_StatusTypeDef UART_SetConfig(UART_HandleTypeDef *huart); +HAL_StatusTypeDef UART_CheckIdleState(UART_HandleTypeDef *huart); +HAL_StatusTypeDef UART_WaitOnFlagUntilTimeout(UART_HandleTypeDef *huart, uint32_t Flag, FlagStatus Status, uint32_t Tickstart, uint32_t Timeout); +void UART_AdvFeatureConfig(UART_HandleTypeDef *huart); + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_UART_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h new file mode 100644 index 0000000..fbe093f --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h @@ -0,0 +1,439 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_uart_ex.h + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Header file of UART HAL Extended module. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_UART_EX_H +#define __STM32L0xx_HAL_UART_EX_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal_def.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup UARTEx + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/** @defgroup UARTEx_Exported_Types UARTEx Exported Types + * @{ + */ + +/** + * @brief UART wake up from stop mode parameters + */ +typedef struct +{ + uint32_t WakeUpEvent; /*!< Specifies which event will activat the Wakeup from Stop mode flag (WUF). + This parameter can be a value of @ref UART_WakeUp_from_Stop_Selection. + If set to UART_WAKEUP_ON_ADDRESS, the two other fields below must + be filled up. */ + + uint16_t AddressLength; /*!< Specifies whether the address is 4 or 7-bit long. + This parameter can be a value of @ref UARTEx_WakeUp_Address_Length. */ + + uint8_t Address; /*!< UART/USART node address (7-bit long max). */ +} UART_WakeUpTypeDef; + +/** + * @} + */ + +/* Exported constants --------------------------------------------------------*/ +/** @defgroup UARTEx_Exported_Constants UARTEx Exported Constants + * @{ + */ + +/** @defgroup UARTEx_Word_Length UART Word Length + * @{ + */ +#define UART_WORDLENGTH_7B ((uint32_t)USART_CR1_M1) /*!< 7-bit long UART frame */ +#define UART_WORDLENGTH_8B ((uint32_t)0x00000000U) /*!< 8-bit long UART frame */ +#define UART_WORDLENGTH_9B ((uint32_t)USART_CR1_M0) /*!< 9-bit long UART frame */ +/** + * @} + */ + +/** @defgroup UARTEx_WakeUp_Address_Length UART Extended WakeUp Address Length + * @{ + */ +#define UART_ADDRESS_DETECT_4B ((uint32_t)0x00000000U) /*!< 4-bit long wake-up address */ +#define UART_ADDRESS_DETECT_7B ((uint32_t)USART_CR2_ADDM7) /*!< 7-bit long wake-up address */ +/** + * @} + */ + +/** + * @} + */ + +/* Exported macros -----------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ +/** @addtogroup UARTEx_Exported_Functions + * @{ + */ + +/** @addtogroup UARTEx_Exported_Functions_Group1 + * @{ + */ + +/* Initialization and de-initialization functions ****************************/ +HAL_StatusTypeDef HAL_RS485Ex_Init(UART_HandleTypeDef *huart, uint32_t Polarity, uint32_t AssertionTime, uint32_t DeassertionTime); + +/** + * @} + */ + +/* IO operation functions *****************************************************/ + +/** @addtogroup UARTEx_Exported_Functions_Group3 + * @{ + */ + +/* Peripheral Control functions **********************************************/ +HAL_StatusTypeDef HAL_UARTEx_StopModeWakeUpSourceConfig(UART_HandleTypeDef *huart, UART_WakeUpTypeDef WakeUpSelection); +HAL_StatusTypeDef HAL_UARTEx_EnableStopMode(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UARTEx_DisableStopMode(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_MultiProcessorEx_AddressLength_Set(UART_HandleTypeDef *huart, uint32_t AddressLength); +HAL_StatusTypeDef HAL_UARTEx_EnableClockStopMode(UART_HandleTypeDef *huart); +HAL_StatusTypeDef HAL_UARTEx_DisableClockStopMode(UART_HandleTypeDef *huart); +void HAL_UARTEx_WakeupCallback(UART_HandleTypeDef *huart); + +/** + * @} + */ + +/** + * @} + */ + +/* Private macros ------------------------------------------------------------*/ +/** @defgroup UARTEx_Private_Macros UARTEx Private Macros + * @{ + */ + +/** @brief Report the UART clock source. + * @param __HANDLE__: specifies the UART Handle. + * @param __CLOCKSOURCE__: output variable. + * @retval UART clocking source, written in __CLOCKSOURCE__. + */ +#if defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) +#define UART_GETCLOCKSOURCE(__HANDLE__,__CLOCKSOURCE__) \ + do { \ + if((__HANDLE__)->Instance == USART2) \ + { \ + switch(__HAL_RCC_GET_USART2_SOURCE()) \ + { \ + case RCC_USART2CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_USART2CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART2CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART2CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == LPUART1) \ + { \ + switch(__HAL_RCC_GET_LPUART1_SOURCE()) \ + { \ + case RCC_LPUART1CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_LPUART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_LPUART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_LPUART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + } while(0) + +#elif defined (STM32L051xx) || defined (STM32L052xx) || defined (STM32L053xx) || defined (STM32L061xx) || defined (STM32L062xx) || defined (STM32L063xx) + +#define UART_GETCLOCKSOURCE(__HANDLE__,__CLOCKSOURCE__) \ + do { \ + if((__HANDLE__)->Instance == USART1) \ + { \ + switch(__HAL_RCC_GET_USART1_SOURCE()) \ + { \ + case RCC_USART1CLKSOURCE_PCLK2: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK2; \ + break; \ + case RCC_USART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == USART2) \ + { \ + switch(__HAL_RCC_GET_USART2_SOURCE()) \ + { \ + case RCC_USART2CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_USART2CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART2CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART2CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == LPUART1) \ + { \ + switch(__HAL_RCC_GET_LPUART1_SOURCE()) \ + { \ + case RCC_LPUART1CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_LPUART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_LPUART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_LPUART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + } while(0) + +#else + +#define UART_GETCLOCKSOURCE(__HANDLE__,__CLOCKSOURCE__) \ + do { \ + if((__HANDLE__)->Instance == USART1) \ + { \ + switch(__HAL_RCC_GET_USART1_SOURCE()) \ + { \ + case RCC_USART1CLKSOURCE_PCLK2: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK2; \ + break; \ + case RCC_USART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == USART2) \ + { \ + switch(__HAL_RCC_GET_USART2_SOURCE()) \ + { \ + case RCC_USART2CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_USART2CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_USART2CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_USART2CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + else if((__HANDLE__)->Instance == USART4) \ + { \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + } \ + else if((__HANDLE__)->Instance == USART5) \ + { \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + } \ + else if((__HANDLE__)->Instance == LPUART1) \ + { \ + switch(__HAL_RCC_GET_LPUART1_SOURCE()) \ + { \ + case RCC_LPUART1CLKSOURCE_PCLK1: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_PCLK1; \ + break; \ + case RCC_LPUART1CLKSOURCE_HSI: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_HSI; \ + break; \ + case RCC_LPUART1CLKSOURCE_SYSCLK: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_SYSCLK; \ + break; \ + case RCC_LPUART1CLKSOURCE_LSE: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_LSE; \ + break; \ + default: \ + (__CLOCKSOURCE__) = UART_CLOCKSOURCE_UNDEFINED; \ + break; \ + } \ + } \ + } while(0) +#endif /* (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || defined (STM32L021xx) */ + +/** @brief Report the UART mask to apply to retrieve the received data + * according to the word length and to the parity bits activation. + * @note If PCE = 1, the parity bit is not included in the data extracted + * by the reception API(). + * This masking operation is not carried out in the case of + * DMA transfers. + * @param __HANDLE__: specifies the UART Handle. + * @retval None, the mask to apply to UART RDR register is stored in (__HANDLE__)->Mask field. + */ +#define UART_MASK_COMPUTATION(__HANDLE__) \ + do { \ + if ((__HANDLE__)->Init.WordLength == UART_WORDLENGTH_9B) \ + { \ + if ((__HANDLE__)->Init.Parity == UART_PARITY_NONE) \ + { \ + (__HANDLE__)->Mask = 0x01FF ; \ + } \ + else \ + { \ + (__HANDLE__)->Mask = 0x00FF ; \ + } \ + } \ + else if ((__HANDLE__)->Init.WordLength == UART_WORDLENGTH_8B) \ + { \ + if ((__HANDLE__)->Init.Parity == UART_PARITY_NONE) \ + { \ + (__HANDLE__)->Mask = 0x00FF ; \ + } \ + else \ + { \ + (__HANDLE__)->Mask = 0x007F ; \ + } \ + } \ + else if ((__HANDLE__)->Init.WordLength == UART_WORDLENGTH_7B) \ + { \ + if ((__HANDLE__)->Init.Parity == UART_PARITY_NONE) \ + { \ + (__HANDLE__)->Mask = 0x007F ; \ + } \ + else \ + { \ + (__HANDLE__)->Mask = 0x003F ; \ + } \ + } \ +} while(0) + + +/** + * @brief Ensure that UART frame length is valid. + * @param __LENGTH__: UART frame length. + * @retval SET (__LENGTH__ is valid) or RESET (__LENGTH__ is invalid) + */ +#define IS_UART_WORD_LENGTH(__LENGTH__) (((__LENGTH__) == UART_WORDLENGTH_7B) || \ + ((__LENGTH__) == UART_WORDLENGTH_8B) || \ + ((__LENGTH__) == UART_WORDLENGTH_9B)) + +/** + * @brief Ensure that UART wake-up address length is valid. + * @param __ADDRESS__: UART wake-up address length. + * @retval SET (__ADDRESS__ is valid) or RESET (__ADDRESS__ is invalid) + */ +#define IS_UART_ADDRESSLENGTH_DETECT(__ADDRESS__) (((__ADDRESS__) == UART_ADDRESS_DETECT_4B) || \ + ((__ADDRESS__) == UART_ADDRESS_DETECT_7B)) + +/** + * @} + */ + +/* Private functions ---------------------------------------------------------*/ + +/** + * @} + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_UART_EX_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c new file mode 100644 index 0000000..190344c --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c @@ -0,0 +1,562 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief HAL module driver. + * This is the common part of the HAL initialization + * + @verbatim + ============================================================================== + ##### How to use this driver ##### + ============================================================================== + [..] + The common HAL driver contains a set of generic and common APIs that can be + used by the PPP peripheral drivers and the user to start using the HAL. + [..] + The HAL contains two APIs categories: + (+) Common HAL APIs + (+) Services HAL APIs + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +#ifdef HAL_MODULE_ENABLED + +/** @addtogroup HAL + * @brief HAL module driver. + * @{ + */ + +/** @addtogroup HAL_Exported_Constants + * @{ + */ + + +/** @defgroup SysTick System Tick + * @{ + */ +/** + * @brief uwTick_variable uwTick variable + */ +__IO uint32_t uwTick; + +/** + * @} + */ + +/** @defgroup HAL_Version HAL Version + * @{ + */ + +/** + * @brief STM32L0xx HAL Driver version number V1.8.1 + */ +#define __STM32L0xx_HAL_VERSION_MAIN (0x01U) /*!< [31:24] main version */ +#define __STM32L0xx_HAL_VERSION_SUB1 (0x08U) /*!< [23:16] sub1 version */ +#define __STM32L0xx_HAL_VERSION_SUB2 (0x01U) /*!< [15:8] sub2 version */ +#define __STM32L0xx_HAL_VERSION_RC (0x00U) /*!< [7:0] release candidate */ +#define __STM32L0xx_HAL_VERSION ((__STM32L0xx_HAL_VERSION_MAIN << 24U)\ + |(__STM32L0xx_HAL_VERSION_SUB1 << 16U)\ + |(__STM32L0xx_HAL_VERSION_SUB2 << 8U )\ + |(__STM32L0xx_HAL_VERSION_RC)) + +#define IDCODE_DEVID_MASK ((uint32_t)0x00000FFFU) + +/** + * @} + */ + +/** + * @} + */ +/** @defgroup HAL_Private HAL Private + * @{ + */ + + +/** + * @} + */ + +/** @addtogroup HAL_Exported_Functions HAL Exported Functions + * @{ + */ + +/** @addtogroup HAL_Exported_Functions_Group1 + * @brief Initialization and de-initialization functions + * +@verbatim + =============================================================================== + ##### Initialization and de-initialization functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Initializes the Flash interface, the NVIC allocation and initial clock + configuration. It initializes the source of time base also when timeout + is needed and the backup domain when enabled. + (+) de-Initializes common part of the HAL. + (+) Configure The time base source to have 1ms time base with a dedicated + Tick interrupt priority. + (++) Systick timer is used by default as source of time base, but user + can eventually implement his proper time base source (a general purpose + timer for example or other time source), keeping in mind that Time base + duration should be kept 1ms since PPP_TIMEOUT_VALUEs are defined and + handled in milliseconds basis. + (++) Time base configuration function (HAL_InitTick ()) is called automatically + at the beginning of the program after reset by HAL_Init() or at any time + when clock is configured, by HAL_RCC_ClockConfig(). + (++) Source of time base is configured to generate interrupts at regular + time intervals. Care must be taken if HAL_Delay() is called from a + peripheral ISR process, the Tick interrupt line must have higher priority + (numerically lower) than the peripheral interrupt. Otherwise the caller + ISR process will be blocked. + (++) functions affecting time base configurations are declared as __weak + to make override possible in case of other implementations in user file. + +@endverbatim + * @{ + */ + +/** + * @brief This function configures the Flash prefetch, Flash preread and Buffer cache, + * Configures time base source, NVIC and Low level hardware + * @note This function is called at the beginning of program after reset and before + * the clock configuration + * @note The time base configuration is based on MSI clock when exiting from Reset. + * Once done, time base tick start incrementing. + * In the default implementation,Systick is used as source of time base. + * the tick variable is incremented each 1ms in its ISR. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_Init(void) +{ + /* Configure Buffer cache, Flash prefetch, Flash preread */ +#if (BUFFER_CACHE_DISABLE != 0) + __HAL_FLASH_BUFFER_CACHE_DISABLE(); +#endif /* BUFFER_CACHE_DISABLE */ + +#if (PREREAD_ENABLE != 0) + __HAL_FLASH_PREREAD_BUFFER_ENABLE(); +#endif /* PREREAD_ENABLE */ + +#if (PREFETCH_ENABLE != 0) + __HAL_FLASH_PREFETCH_BUFFER_ENABLE(); +#endif /* PREFETCH_ENABLE */ + + /* Use systick as time base source and configure 1ms tick (default clock after Reset is MSI) */ + + HAL_InitTick(TICK_INT_PRIORITY); + + /* Init the low level hardware */ + HAL_MspInit(); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief This function de-Initializes common part of the HAL and stops the source + * of time base. + * @note This function is optional. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DeInit(void) +{ + /* Reset of all peripherals */ + __HAL_RCC_APB1_FORCE_RESET(); + __HAL_RCC_APB1_RELEASE_RESET(); + + __HAL_RCC_APB2_FORCE_RESET(); + __HAL_RCC_APB2_RELEASE_RESET(); + + __HAL_RCC_AHB_FORCE_RESET(); + __HAL_RCC_AHB_RELEASE_RESET(); + + __HAL_RCC_IOP_FORCE_RESET(); + __HAL_RCC_IOP_RELEASE_RESET(); + + /* De-Init the low level hardware */ + HAL_MspDeInit(); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Initializes the MSP. + * @retval None + */ +__weak void HAL_MspInit(void) +{ + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitializes the MSP. + * @retval None + */ +__weak void HAL_MspDeInit(void) +{ + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_MspDeInit could be implemented in the user file + */ +} + + +/** + * @brief This function configures the source of the time base. + * The time source is configured to have 1ms time base with a dedicated + * Tick interrupt priority. + * @note This function is called automatically at the beginning of program after + * reset by HAL_Init() or at any time when clock is reconfigured by HAL_RCC_ClockConfig(). + * @note In the default implementation, SysTick timer is the source of time base. + * It is used to generate interrupts at regular time intervals. + * Care must be taken if HAL_Delay() is called from a peripheral ISR process, + * The the SysTick interrupt must have higher priority (numerically lower) + * than the peripheral interrupt. Otherwise the caller ISR process will be blocked. + * The function is declared as __Weak to be overwritten in case of other + * implementation in user file. + * @param TickPriority: Tick interrupt priority. + * @retval HAL status + */ +__weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) +{ + /*Configure the SysTick to have interrupt in 1ms time basis*/ + HAL_SYSTICK_Config(SystemCoreClock/1000U); + + /*Configure the SysTick IRQ priority */ + HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority ,0U); + + /* Return function status */ + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup HAL_Exported_Functions_Group2 + * @brief Peripheral Control functions + * +@verbatim + =============================================================================== + ##### HAL Control functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Provide a tick value in millisecond + (+) Provide a blocking delay in millisecond + (+) Suspend the time base source interrupt + (+) Resume the time base source interrupt + (+) Get the HAL API driver version + (+) Get the device identifier + (+) Get the device revision identifier + (+) Configure low power mode behavior when the MCU is in Debug mode + (+) Manage the VEREFINT feature (activation, lock, output selection) + +@endverbatim + * @{ + */ + +/** + * @brief This function is called to increment a global variable "uwTick" + * used as application time base. + * @note In the default implementation, this variable is incremented each 1ms + * in Systick ISR. + * @note This function is declared as __weak to be overwritten in case of other + * implementations in user file. + * @retval None + */ +__weak void HAL_IncTick(void) +{ + uwTick++; +} + +/** + * @brief Provides a tick value in millisecond. + * @note This function is declared as __weak to be overwritten in case of other + * implementations in user file. + * @retval tick value + */ +__weak uint32_t HAL_GetTick(void) +{ + return uwTick; +} + +/** + * @brief This function provides accurate delay (in ms) based on a variable incremented. + * @note In the default implementation , SysTick timer is the source of time base. + * It is used to generate interrupts at regular time intervals where uwTick + * is incremented. + * @note ThiS function is declared as __weak to be overwritten in case of other + * implementations in user file. + * @param Delay: specifies the delay time length, in milliseconds. + * @retval None + */ +__weak void HAL_Delay(__IO uint32_t Delay) +{ + uint32_t tickstart = 0U; + tickstart = HAL_GetTick(); + while((HAL_GetTick() - tickstart) < Delay) + { + } +} + +/** + * @brief Suspends the Tick increment. + * @note In the default implementation , SysTick timer is the source of time base. It is + * used to generate interrupts at regular time intervals. Once HAL_SuspendTick() + * is called, the the SysTick interrupt will be disabled and so Tick increment + * is suspended. + * @note This function is declared as __weak to be overwritten in case of other + * implementations in user file. + * @retval None + */ +__weak void HAL_SuspendTick(void) +{ + /* Disable SysTick Interrupt */ + SysTick->CTRL &= ~SysTick_CTRL_TICKINT_Msk; +} + +/** + * @brief Resumes the Tick increment. + * @note In the default implementation , SysTick timer is the source of time base. It is + * used to generate interrupts at regular time intervals. Once HAL_ResumeTick() + * is called, the the SysTick interrupt will be enabled and so Tick increment + * is resumed. + * @note This function is declared as __weak to be overwritten in case of other + * implementations in user file. + * @retval None + */ +__weak void HAL_ResumeTick(void) +{ + /* Enable SysTick Interrupt */ + SysTick->CTRL |= SysTick_CTRL_TICKINT_Msk; +} + +/** + * @brief Returns the HAL revision + * @retval version: 0xXYZR (8bits for each decimal, R for RC) + */ +uint32_t HAL_GetHalVersion(void) +{ + return __STM32L0xx_HAL_VERSION; +} + +/** + * @brief Returns the device revision identifier. + * @retval Device revision identifier + */ +uint32_t HAL_GetREVID(void) +{ + return((DBGMCU->IDCODE) >> 16U); +} + +/** + * @brief Returns the device identifier. + * @retval Device identifier + */ +uint32_t HAL_GetDEVID(void) +{ + return((DBGMCU->IDCODE) & IDCODE_DEVID_MASK); +} + +/** + * @brief Enables the Debug Module during SLEEP mode + * @retval None + */ +void HAL_DBGMCU_EnableDBGSleepMode(void) +{ + SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP); +} + +/** + * @brief Disables the Debug Module during SLEEP mode + * @retval None + */ +void HAL_DBGMCU_DisableDBGSleepMode(void) +{ + CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP); +} + +/** + * @brief Enables the Debug Module during STOP mode + * @retval None + */ +void HAL_DBGMCU_EnableDBGStopMode(void) +{ + SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP); +} + +/** + * @brief Disables the Debug Module during STOP mode + * @retval None + */ +void HAL_DBGMCU_DisableDBGStopMode(void) +{ + CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP); +} + +/** + * @brief Enables the Debug Module during STANDBY mode + * @retval None + */ +void HAL_DBGMCU_EnableDBGStandbyMode(void) +{ + SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY); +} + +/** + * @brief Disables the Debug Module during STANDBY mode + * @retval None + */ +void HAL_DBGMCU_DisableDBGStandbyMode(void) +{ + CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY); +} + +/** + * @brief Enable low power mode behavior when the MCU is in Debug mode. + * @param Periph: specifies the low power mode. + * This parameter can be any combination of the following values: + * @arg DBGMCU_SLEEP: Keep debugger connection during SLEEP mode + * @arg DBGMCU_STOP: Keep debugger connection during STOP mode + * @arg DBGMCU_STANDBY: Keep debugger connection during STANDBY mode + * @retval None + */ +void HAL_DBGMCU_DBG_EnableLowPowerConfig(uint32_t Periph) +{ + /* Check the parameters */ + assert_param(IS_DBGMCU_PERIPH(Periph)); + + DBGMCU->CR |= Periph; + +} +/** + * @brief Disable low power mode behavior when the MCU is in Debug mode. + * @param Periph: specifies the low power mode. + * This parameter can be any combination of the following values: + * @arg DBGMCU_SLEEP: Keep debugger connection during SLEEP mode + * @arg DBGMCU_STOP: Keep debugger connection during STOP mode + * @arg DBGMCU_STANDBY: Keep debugger connection during STANDBY mode + * @retval None + */ +void HAL_DBGMCU_DBG_DisableLowPowerConfig(uint32_t Periph) +{ + /* Check the parameters */ + assert_param(IS_DBGMCU_PERIPH(Periph)); + { + DBGMCU->CR &= ~Periph; + } +} + +/** + * @brief Returns the boot mode as configured by user. + * @retval The boot mode as configured by user. The returned value can be one + * of the following values: + * - 0x00000000 : Boot is configured in Main Flash memory + * - 0x00000100 : Boot is configured in System Flash memory + * - 0x00000300 : Boot is configured in Embedded SRAM memory + */ +uint32_t HAL_SYSCFG_GetBootMode(void) +{ + return (SYSCFG->CFGR1 & SYSCFG_CFGR1_BOOT_MODE); +} + +/** + * @brief Selects the output of internal reference voltage (VREFINT). + * The VREFINT output can be routed to(PB0) or + * (PB1) or both. + * @param SYSCFG_Vrefint_OUTPUT: new state of the Vrefint output. + * This parameter can be one of the following values: + * @arg SYSCFG_VREFINT_OUT_NONE + * @arg SYSCFG_VREFINT_OUT_PB0 + * @arg SYSCFG_VREFINT_OUT_PB1 + * @arg SYSCFG_VREFINT_OUT_PB0_PB1 + * @retval None + */ +void HAL_SYSCFG_VREFINT_OutputSelect(uint32_t SYSCFG_Vrefint_OUTPUT) +{ + /* Check the parameters */ + assert_param(IS_SYSCFG_VREFINT_OUT_SELECT(SYSCFG_Vrefint_OUTPUT)); + + /* Set the output Vrefint pin */ + SYSCFG->CFGR3 &= ~(SYSCFG_CFGR3_VREF_OUT); + SYSCFG->CFGR3 |= (uint32_t)(SYSCFG_Vrefint_OUTPUT); +} + +/** + * @brief Lock the SYSCFG VREF register values + * @retval None + */ +void HAL_SYSCFG_Enable_Lock_VREFINT(void) +{ + /* Enable the LOCK by setting REF_LOCK bit in the CFGR3 register */ + SET_BIT(SYSCFG->CFGR3, SYSCFG_CFGR3_REF_LOCK); +} + +/** + * @brief Unlock the overall SYSCFG VREF register values + * @retval None + */ +void HAL_SYSCFG_Disable_Lock_VREFINT(void) +{ + /* Disable the LOCK by setting REF_LOCK bit in the CFGR3 register */ + CLEAR_BIT(SYSCFG->CFGR3, SYSCFG_CFGR3_REF_LOCK); +} + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ +#endif /* HAL_MODULE_ENABLED */ +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c new file mode 100644 index 0000000..e84a55d --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c @@ -0,0 +1,398 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_cortex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief CORTEX HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the CORTEX: + * + Initialization and de-initialization functions + * + Peripheral Control functions + * + @verbatim + ============================================================================== + ##### How to use this driver ##### + ============================================================================== + + [..] + *** How to configure Interrupts using CORTEX HAL driver *** + =========================================================== + [..] + This section provide functions allowing to configure the NVIC interrupts (IRQ). + The Cortex-M0+ exceptions are managed by CMSIS functions. + (#) Enable and Configure the priority of the selected IRQ Channels. + The priority can be 0..3. + + -@- Lower priority values gives higher priority. + -@- Priority Order: + (#@) Lowest priority. + (#@) Lowest hardware priority (IRQn position). + + (#) Configure the priority of the selected IRQ Channels using HAL_NVIC_SetPriority() + + (#) Enable the selected IRQ Channels using HAL_NVIC_EnableIRQ() + + [..] + *** How to configure Systick using CORTEX HAL driver *** + ======================================================== + [..] + Setup SysTick Timer for time base + + (+) The HAL_SYSTICK_Config()function calls the SysTick_Config() function which + is a CMSIS function that: + (++) Configures the SysTick Reload register with value passed as function parameter. + (++) Configures the SysTick IRQ priority to the lowest value (0x03). + (++) Resets the SysTick Counter register. + (++) Configures the SysTick Counter clock source to be Core Clock Source (HCLK). + (++) Enables the SysTick Interrupt. + (++) Starts the SysTick Counter. + + (+) You can change the SysTick Clock source to be HCLK_Div8 by calling the function + HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK_DIV8) just after the + HAL_SYSTICK_Config() function call. The HAL_SYSTICK_CLKSourceConfig() function is defined + inside the stm32l0xx_hal_cortex.c file. + + (+) You can change the SysTick IRQ priority by calling the + HAL_NVIC_SetPriority(SysTick_IRQn,...) function just after the HAL_SYSTICK_Config() function + call. The HAL_NVIC_SetPriority() call the NVIC_SetPriority() function which is a CMSIS function. + + (+) To adjust the SysTick time base, use the following formula: + + Reload Value = SysTick Counter Clock (Hz) x Desired Time base (s) + (++) Reload Value is the parameter to be passed for HAL_SYSTICK_Config() function + (++) Reload Value should not exceed 0xFFFFFF + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +#ifdef HAL_CORTEX_MODULE_ENABLED + +/** @addtogroup CORTEX + * @brief CORTEX HAL module driver + * @{ + */ + +/* Private types -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private constants ---------------------------------------------------------*/ +/* Private macros ------------------------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ + +/** @addtogroup CORTEX_Exported_Functions + * @{ + */ + + +/** @addtogroup CORTEX_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Initialization and Configuration functions + * +@verbatim + ============================================================================== + ##### Initialization and de-initialization functions ##### + ============================================================================== + [..] + This section provides the CORTEX HAL driver functions allowing to configure Interrupts + Systick functionalities + +@endverbatim + * @{ + */ + +/** + * @brief Sets the priority of an interrupt. + * @param IRQn: External interrupt number . + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to stm32l0xx.h file) + * @param PreemptPriority: The pre-emption priority for the IRQn channel. + * This parameter can be a value between 0 and 3. + * A lower priority value indicates a higher priority + * @param SubPriority: The subpriority level for the IRQ channel. + * 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) +{ + /* Check the parameters */ + assert_param(IS_NVIC_PREEMPTION_PRIORITY(PreemptPriority)); + NVIC_SetPriority(IRQn,PreemptPriority); +} + +/** + * @brief Enables a device specific interrupt in the NVIC interrupt controller. + * @note To configure interrupts priority correctly, the NVIC_PriorityGroupConfig() + * function should be called before. + * @param IRQn External interrupt number . + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to stm32l0xx.h file) + * @retval None + */ +void HAL_NVIC_EnableIRQ(IRQn_Type IRQn) +{ + /* Check the parameters */ + assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); + + /* Enable interrupt */ + NVIC_EnableIRQ(IRQn); +} + +/** + * @brief Disables a device specific interrupt in the NVIC interrupt controller. + * @param IRQn External interrupt number . + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to stm32l0xx.h file) + * @retval None + */ +void HAL_NVIC_DisableIRQ(IRQn_Type IRQn) +{ + /* Check the parameters */ + assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); + + /* Disable interrupt */ + NVIC_DisableIRQ(IRQn); +} + +/** + * @brief Initiates a system reset request to reset the MCU. + * @retval None + */ +void HAL_NVIC_SystemReset(void) +{ + /* System Reset */ + NVIC_SystemReset(); +} + +/** + * @brief Initializes the System Timer and its interrupt, and starts the System Tick Timer. + * Counter is in free running mode to generate periodic interrupts. + * @param TicksNumb: Specifies the ticks Number of ticks between two interrupts. + * @retval status: - 0 Function succeeded. + * - 1 Function failed. + */ +uint32_t HAL_SYSTICK_Config(uint32_t TicksNumb) +{ + return SysTick_Config(TicksNumb); +} +/** + * @} + */ + +/** @addtogroup CORTEX_Exported_Functions_Group2 Peripheral Control functions + * @brief Cortex control functions + * +@verbatim + ============================================================================== + ##### Peripheral Control functions ##### + ============================================================================== + [..] + This subsection provides a set of functions allowing to control the CORTEX + (NVIC, SYSTICK) functionalities. + + +@endverbatim + * @{ + */ + + +/** + * @brief Gets the priority of an interrupt. + * @param IRQn: External interrupt number. + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32l0xxxx.h)) + * @retval None + */ +uint32_t HAL_NVIC_GetPriority(IRQn_Type IRQn) +{ + /* Get priority for Cortex-M system or device specific interrupts */ + return NVIC_GetPriority(IRQn); +} + +/** + * @brief Sets Pending bit of an external interrupt. + * @param IRQn: External interrupt number + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to stm32l0xx.h file) + * @retval None + */ +void HAL_NVIC_SetPendingIRQ(IRQn_Type IRQn) +{ + /* Set interrupt pending */ + NVIC_SetPendingIRQ(IRQn); +} + +/** + * @brief Gets Pending Interrupt (reads the pending register in the NVIC + * and returns the pending bit for the specified interrupt). + * @param IRQn: External interrupt number . + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to stm32l0xx.h file) + * @retval status: - 0 Interrupt status is not pending. + * - 1 Interrupt status is pending. + */ +uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type IRQn) +{ + /* Return 1 if pending else 0 */ + return NVIC_GetPendingIRQ(IRQn); +} + +/** + * @brief Clears the pending bit of an external interrupt. + * @param IRQn: External interrupt number . + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to stm32l0xx.h file) + * @retval None + */ +void HAL_NVIC_ClearPendingIRQ(IRQn_Type IRQn) +{ + /* Clear pending interrupt */ + NVIC_ClearPendingIRQ(IRQn); +} + + +/** + * @brief Configures the SysTick clock source. + * @param CLKSource: specifies the SysTick clock source. + * This parameter can be one of the following values: + * @arg SYSTICK_CLKSOURCE_HCLK_DIV8: AHB clock divided by 8 selected as SysTick clock source. + * @arg SYSTICK_CLKSOURCE_HCLK: AHB clock selected as SysTick clock source. + * @retval None + */ +void HAL_SYSTICK_CLKSourceConfig(uint32_t CLKSource) +{ + /* Check the parameters */ + assert_param(IS_SYSTICK_CLK_SOURCE(CLKSource)); + if (CLKSource == SYSTICK_CLKSOURCE_HCLK) + { + SysTick->CTRL |= SYSTICK_CLKSOURCE_HCLK; + } + else + { + SysTick->CTRL &= ~SYSTICK_CLKSOURCE_HCLK; + } +} + +/** + * @brief This function handles SYSTICK interrupt request. + * @retval None + */ +void HAL_SYSTICK_IRQHandler(void) +{ + HAL_SYSTICK_Callback(); +} + +/** + * @brief SYSTICK callback. + * @retval None + */ +__weak void HAL_SYSTICK_Callback(void) +{ + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_SYSTICK_Callback could be implemented in the user file + */ +} + +#if (__MPU_PRESENT == 1) +/** + * @brief Initialize and configure the Region and the memory to be protected. + * @param MPU_Init: Pointer to a MPU_Region_InitTypeDef structure that contains + * the initialization and configuration information. + * @retval None + */ +void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *MPU_Init) +{ + /* Check the parameters */ + assert_param(IS_MPU_REGION_NUMBER(MPU_Init->Number)); + assert_param(IS_MPU_REGION_ENABLE(MPU_Init->Enable)); + + /* Set the Region number */ + MPU->RNR = MPU_Init->Number; + + if ((MPU_Init->Enable) == MPU_REGION_ENABLE) + { + /* Check the parameters */ + assert_param(IS_MPU_INSTRUCTION_ACCESS(MPU_Init->DisableExec)); + assert_param(IS_MPU_REGION_PERMISSION_ATTRIBUTE(MPU_Init->AccessPermission)); + assert_param(IS_MPU_ACCESS_SHAREABLE(MPU_Init->IsShareable)); + assert_param(IS_MPU_ACCESS_CACHEABLE(MPU_Init->IsCacheable)); + assert_param(IS_MPU_ACCESS_BUFFERABLE(MPU_Init->IsBufferable)); + assert_param(IS_MPU_SUB_REGION_DISABLE(MPU_Init->SubRegionDisable)); + assert_param(IS_MPU_REGION_SIZE(MPU_Init->Size)); + + /* Set the base adsress and set the 4 LSB to 0 */ + MPU->RBAR = (MPU_Init->BaseAddress) & 0xfffffff0U; + + /* Fill the field RASR */ + MPU->RASR = ((uint32_t)MPU_Init->DisableExec << MPU_RASR_XN_Pos) | + ((uint32_t)MPU_Init->AccessPermission << MPU_RASR_AP_Pos) | + ((uint32_t)MPU_Init->IsShareable << MPU_RASR_S_Pos) | + ((uint32_t)MPU_Init->IsCacheable << MPU_RASR_C_Pos) | + ((uint32_t)MPU_Init->IsBufferable << MPU_RASR_B_Pos) | + ((uint32_t)MPU_Init->SubRegionDisable << MPU_RASR_SRD_Pos) | + ((uint32_t)MPU_Init->Size << MPU_RASR_SIZE_Pos) | + ((uint32_t)MPU_Init->Enable << MPU_RASR_ENABLE_Pos); + } + else + { + MPU->RBAR = 0x00U; + MPU->RASR = 0x00U; + } +} +#endif /* __MPU_PRESENT */ + + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_CORTEX_MODULE_ENABLED */ +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c new file mode 100644 index 0000000..5c6d4b2 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c @@ -0,0 +1,815 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_dma.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief DMA HAL module driver. + * + * This file provides firmware functions to manage the following + * functionalities of the Direct Memory Access (DMA) peripheral: + * + Initialization/de-initialization functions + * + I/O operation functions + * + Peripheral State functions + * + * + @verbatim + ============================================================================== + ##### How to use this driver ##### + ============================================================================== + [..] + (#) Enable and configure the peripheral to be connected to the DMA Channel + (except for internal SRAM / FLASH memories: no initialization is + necessary). + + (#) For a given Channel, program the required configuration through the following parameters: + Channel request, Transfer Direction, Source and Destination data formats, + Circular, Normal or peripheral flow control mode, Channel Priority level, + Source and Destination Increment mode using HAL_DMA_Init() function. + + *** Polling mode IO operation *** + ================================= + [..] + (+) Use HAL_DMA_Start() to start DMA transfer after the configuration of Source + address and destination address and the Length of data to be transferred + (+) Use HAL_DMA_PollForTransfer() to poll for the end of current transfer, in this + case a fixed Timeout can be configured by User depending from his application. + + *** Interrupt mode IO operation *** + =================================== + [..] + (+) Configure the DMA interrupt priority using HAL_NVIC_SetPriority() + (+) Enable the DMA IRQ handler using HAL_NVIC_EnableIRQ() + (+) Use HAL_DMA_Start_IT() to start DMA transfer after the configuration of + Source address and destination address and the Length of data to be transferred. In this + case the DMA interrupt is configured + (+) Use HAL_DMA_IRQHandler() called under DMA_IRQHandler() Interrupt subroutine + (+) At the end of data transfer HAL_DMA_IRQHandler() function is executed and user can + add his own function by customization of function pointer XferCpltCallback and + XferErrorCallback (i.e a member of DMA handle structure). + + (#) Use HAL_DMA_GetState() function to return the DMA state and HAL_DMA_GetError() in case of error + detection. + + (#) Use HAL_DMA_Abort() function to abort the current transfer + + -@- In Memory-to-Memory transfer mode, Circular mode is not allowed. + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ +#ifdef HAL_DMA_MODULE_ENABLED + +/** @addtogroup DMA DMA + * @brief DMA HAL module driver + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/** @addtogroup DMA_Private + * + * @{ + */ +#define HAL_TIMEOUT_DMA_ABORT ((uint32_t)1000U) /* 1s */ + + +static void DMA_SetConfig(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength); +/** + * @} + */ + +/** @addtogroup DMA_Exported_Functions DMA Exported Functions + * @{ + */ + +/** @addtogroup DMA_Exported_Functions_Group1 + * @brief Initialization/de-initialization functions + * +@verbatim + =============================================================================== + ##### Initialization and de-initialization functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Initialize and configure the DMA + (+) De-Initialize the DMA + +@endverbatim + * @{ + */ + +/** + * @brief Initializes the DMA according to the specified + * parameters in the DMA_InitTypeDef and create the associated handle. + * @param hdma: Pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *hdma) +{ + uint32_t tmp = 0U; + + /* Check the DMA peripheral state */ + if(hdma == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_DMA_ALL_INSTANCE(hdma->Instance)); + assert_param(IS_DMA_ALL_REQUEST(hdma->Init.Request)); + assert_param(IS_DMA_DIRECTION(hdma->Init.Direction)); + assert_param(IS_DMA_PERIPHERAL_INC_STATE(hdma->Init.PeriphInc)); + assert_param(IS_DMA_MEMORY_INC_STATE(hdma->Init.MemInc)); + assert_param(IS_DMA_PERIPHERAL_DATA_SIZE(hdma->Init.PeriphDataAlignment)); + assert_param(IS_DMA_MEMORY_DATA_SIZE(hdma->Init.MemDataAlignment)); + assert_param(IS_DMA_MODE(hdma->Init.Mode)); + assert_param(IS_DMA_PRIORITY(hdma->Init.Priority)); + + if(hdma->State == HAL_DMA_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + hdma->Lock = HAL_UNLOCKED; + } + + /* Change DMA peripheral state */ + hdma->State = HAL_DMA_STATE_BUSY; + + /* Get the CR register value */ + tmp = hdma->Instance->CCR; + + /* Clear PL, MSIZE, PSIZE, MINC, PINC, CIRC, DIR bits */ + tmp &= ((uint32_t)~(DMA_CCR_PL | DMA_CCR_MSIZE | DMA_CCR_PSIZE | \ + DMA_CCR_MINC | DMA_CCR_PINC | DMA_CCR_CIRC | \ + DMA_CCR_DIR)); + + /* Prepare the DMA Channel configuration */ + tmp |= hdma->Init.Direction | + hdma->Init.PeriphInc | hdma->Init.MemInc | + hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment | + hdma->Init.Mode | hdma->Init.Priority; + + /* Write to DMA Channel CR register */ + hdma->Instance->CCR = tmp; + + /* Write to DMA channel selection register */ + if (hdma->Instance == DMA1_Channel1) + { + /*Reset request selection for DMA1 Channel1*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C1S; + + /* Configure request selection for DMA1 Channel1 */ + DMA1_CSELR->CSELR |= hdma->Init.Request; + } + else if (hdma->Instance == DMA1_Channel2) + { + /*Reset request selection for DMA1 Channel2*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C2S; + + /* Configure request selection for DMA1 Channel2 */ + DMA1_CSELR->CSELR |= (uint32_t)(hdma->Init.Request << 4U); + } + else if (hdma->Instance == DMA1_Channel3) + { + /*Reset request selection for DMA1 Channel3*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C3S; + + /* Configure request selection for DMA1 Channel3 */ + DMA1_CSELR->CSELR |= (uint32_t) (hdma->Init.Request << 8U); + } + else if (hdma->Instance == DMA1_Channel4) + { + /*Reset request selection for DMA1 Channel4*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C4S; + + /* Configure request selection for DMA1 Channel4 */ + DMA1_CSELR->CSELR |= (uint32_t) (hdma->Init.Request << 12U); + } + else if (hdma->Instance == DMA1_Channel5) + { + /*Reset request selection for DMA1 Channel5*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C5S; + + /* Configure request selection for DMA1 Channel5 */ + DMA1_CSELR->CSELR |= (uint32_t) (hdma->Init.Request << 16U); + } +#if !defined (STM32L011xx) && !defined (STM32L021xx) + else if (hdma->Instance == DMA1_Channel6) + { + /*Reset request selection for DMA1 Channel6*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C6S; + + /* Configure request selection for DMA1 Channel6 */ + DMA1_CSELR->CSELR |= (uint32_t) (hdma->Init.Request << 20U); + } + else if (hdma->Instance == DMA1_Channel7) + { + /*Reset request selection for DMA1 Channel7*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C7S; + + /* Configure request selection for DMA1 Channel7 */ + DMA1_CSELR->CSELR |= (uint32_t) (hdma->Init.Request << 24U); + } +#endif + /* Initialize the DMA state*/ + hdma->State = HAL_DMA_STATE_READY; + + return HAL_OK; +} + +/** + * @brief DeInitializes the DMA peripheral + * @param hdma: pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DMA_DeInit(DMA_HandleTypeDef *hdma) +{ + /* Check the DMA peripheral state */ + if(hdma == NULL) + { + return HAL_ERROR; + } + + /* Check the DMA peripheral state */ + if(hdma->State == HAL_DMA_STATE_BUSY) + { + return HAL_ERROR; + } + + /* Disable the selected DMA Channelx */ + __HAL_DMA_DISABLE(hdma); + + /* Reset DMA Channel control register */ + hdma->Instance->CCR = 0U; + + /* Reset DMA Channel Number of Data to Transfer register */ + hdma->Instance->CNDTR = 0U; + + /* Reset DMA Channel peripheral address register */ + hdma->Instance->CPAR = 0U; + + /* Reset DMA Channel memory address register */ + hdma->Instance->CMAR = 0U; + + /* Clear all flags */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_GI_FLAG_INDEX(hdma)); + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_TC_FLAG_INDEX(hdma)); + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma)); + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma)); + + /* Reset DMA channel selection register */ + if (hdma->Instance == DMA1_Channel1) + { + /*Reset DMA request*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C1S; + } + else if (hdma->Instance == DMA1_Channel2) + { + /*Reset DMA request*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C2S; + } + else if (hdma->Instance == DMA1_Channel3) + { + /*Reset DMA request*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C3S; + } + else if (hdma->Instance == DMA1_Channel4) + { + /*Reset DMA request*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C4S; + } + else if (hdma->Instance == DMA1_Channel5) + { + /*Reset DMA request*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C5S; + } +#if !defined (STM32L011xx) && !defined (STM32L021xx) + else if (hdma->Instance == DMA1_Channel6) + { + /*Reset DMA request*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C6S; + } + else if (hdma->Instance == DMA1_Channel7) + { + /*Reset DMA request*/ + DMA1_CSELR->CSELR &= ~DMA_CSELR_C7S; + } +#endif + /* Initialise the error code */ + hdma->ErrorCode = HAL_DMA_ERROR_NONE; + + /* Initialize the DMA state */ + hdma->State = HAL_DMA_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(hdma); + + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup DMA_Exported_Functions_Group2 + * @brief I/O operation functions + * +@verbatim + =============================================================================== + ##### IO operation functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Configure the source, destination address and data length and Start DMA transfer + (+) Configure the source, destination address and data length and + Start DMA transfer with interrupt + (+) Abort DMA transfer + (+) Poll for transfer complete + (+) Handle DMA interrupt request + +@endverbatim + * @{ + */ + +/** + * @brief Starts the DMA Transfer. + * @param hdma : pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @param SrcAddress: The source memory Buffer address + * @param DstAddress: The destination memory Buffer address + * @param DataLength: The length of data to be transferred from source to destination + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DMA_Start(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength) +{ + /* Process locked */ + __HAL_LOCK(hdma); + + /* Change DMA peripheral state */ + hdma->State = HAL_DMA_STATE_BUSY; + + /* Check the parameters */ + assert_param(IS_DMA_BUFFER_SIZE(DataLength)); + + /* Disable the peripheral */ + __HAL_DMA_DISABLE(hdma); + + /* Configure the source, destination address and the data length */ + DMA_SetConfig(hdma, SrcAddress, DstAddress, DataLength); + + /* Enable the Peripheral */ + __HAL_DMA_ENABLE(hdma); + + return HAL_OK; +} + +/** + * @brief Start the DMA Transfer with interrupt enabled. + * @param hdma: pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @param SrcAddress: The source memory Buffer address + * @param DstAddress: The destination memory Buffer address + * @param DataLength: The length of data to be transferred from source to destination + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength) +{ + /* Process locked */ + __HAL_LOCK(hdma); + + /* Change DMA peripheral state */ + hdma->State = HAL_DMA_STATE_BUSY; + + /* Check the parameters */ + assert_param(IS_DMA_BUFFER_SIZE(DataLength)); + + /* Disable the peripheral */ + __HAL_DMA_DISABLE(hdma); + + /* Configure the source, destination address and the data length */ + DMA_SetConfig(hdma, SrcAddress, DstAddress, DataLength); + + /* Enable the transfer complete interrupt */ + __HAL_DMA_ENABLE_IT(hdma, DMA_IT_TC); + + /* Enable the Half transfer complete interrupt */ + __HAL_DMA_ENABLE_IT(hdma, DMA_IT_HT); + + /* Enable the transfer Error interrupt */ + __HAL_DMA_ENABLE_IT(hdma, DMA_IT_TE); + + /* Enable the Peripheral */ + __HAL_DMA_ENABLE(hdma); + + return HAL_OK; +} + +/** + * @brief Aborts the DMA Transfer. + * @param hdma : pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) +{ + uint32_t tickstart = 0U; + + /* Disable the channel */ + __HAL_DMA_DISABLE(hdma); + + /* Get timeout */ + tickstart = HAL_GetTick(); + + /* Check if the DMA Channel is effectively disabled */ + while((hdma->Instance->CCR & DMA_CCR_EN) != 0U) + { + /* Check for the Timeout */ + if( (HAL_GetTick() - tickstart ) > HAL_TIMEOUT_DMA_ABORT) + { + /* Update error code */ + hdma->ErrorCode |= HAL_DMA_ERROR_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hdma); + + /* Change the DMA state */ + hdma->State = HAL_DMA_STATE_TIMEOUT; + + return HAL_TIMEOUT; + } + } + /* Process Unlocked */ + __HAL_UNLOCK(hdma); + + /* Change the DMA state*/ + hdma->State = HAL_DMA_STATE_READY; + + return HAL_OK; +} + +/** + * @brief Aborts the DMA Transfer in Interrupt mode. + * @param hdma : pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Stream. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma) +{ + HAL_StatusTypeDef status = HAL_OK; + + if(HAL_DMA_STATE_BUSY != hdma->State) + { + /* no transfer ongoing */ + hdma->ErrorCode = HAL_DMA_ERROR_NO_XFER; + + status = HAL_ERROR; + } + else + { + /* Disable DMA IT */ + __HAL_DMA_DISABLE_IT(hdma, (DMA_IT_TC | DMA_IT_HT | DMA_IT_TE)); + + /* Disable the channel */ + __HAL_DMA_DISABLE(hdma); + + /* Clear all flags */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_GI_FLAG_INDEX(hdma)); + + /* Change the DMA state */ + hdma->State = HAL_DMA_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hdma); + + /* Call User Abort callback */ + if(hdma->XferAbortCallback != NULL) + { + hdma->XferAbortCallback(hdma); + } + } + return status; +} + +/** + * @brief Polling for transfer complete. + * @param hdma: pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @param CompleteLevel: Specifies the DMA level complete. + * @param Timeout: Timeout duration. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *hdma, uint32_t CompleteLevel, uint32_t Timeout) +{ + uint32_t temp; + uint32_t tickstart = 0U; + + /* Get the level transfer complete flag */ + if(CompleteLevel == HAL_DMA_FULL_TRANSFER) + { + /* Transfer Complete flag */ + temp = __HAL_DMA_GET_TC_FLAG_INDEX(hdma); + } + else + { + /* Half Transfer Complete flag */ + temp = __HAL_DMA_GET_HT_FLAG_INDEX(hdma); + } + + /* Get timeout */ + tickstart = HAL_GetTick(); + + while(__HAL_DMA_GET_FLAG(hdma, temp) == RESET) + { + if((__HAL_DMA_GET_FLAG(hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma)) != RESET)) + { + /* Clear the transfer error flags */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma)); + + /* Update error code */ + SET_BIT(hdma->ErrorCode, HAL_DMA_ERROR_TE); + + /* Change the DMA state */ + hdma->State= HAL_DMA_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hdma); + + return HAL_ERROR; + } + /* Check for the Timeout */ + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - tickstart ) > Timeout)) + { + /* Update error code */ + SET_BIT(hdma->ErrorCode, HAL_DMA_ERROR_TIMEOUT); + + /* Change the DMA state */ + hdma->State= HAL_DMA_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hdma); + + return HAL_TIMEOUT; + } + } + } + + if(CompleteLevel == HAL_DMA_FULL_TRANSFER) + { + /* Clear the transfer complete flag */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_TC_FLAG_INDEX(hdma)); + + /* The selected Channelx EN bit is cleared (DMA is disabled and + all transfers are complete) */ + hdma->State = HAL_DMA_STATE_READY; + + /* Process unlocked */ + __HAL_UNLOCK(hdma); + } + else + { + /* Clear the half transfer complete flag */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma)); + + /* The selected Channelx EN bit is cleared (DMA is disabled and + all transfers are complete) */ + hdma->State = HAL_DMA_STATE_READY_HALF; + + /* Process unlocked */ + __HAL_UNLOCK(hdma); + } + + return HAL_OK; +} +/** + * @brief Handles DMA interrupt request. + * @param hdma: pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @retval None + */ +void HAL_DMA_IRQHandler(DMA_HandleTypeDef *hdma) +{ + /* Transfer Error Interrupt management ***************************************/ + if(__HAL_DMA_GET_FLAG(hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma)) != RESET) + { + if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_TE) != RESET) + { + /* Disable the transfer error interrupt */ + __HAL_DMA_DISABLE_IT(hdma, DMA_IT_TE); + + /* Clear the transfer error flag */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_TE_FLAG_INDEX(hdma)); + + /* Update error code */ + hdma->ErrorCode |= HAL_DMA_ERROR_TE; + + /* Change the DMA state */ + hdma->State = HAL_DMA_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hdma); + + if (hdma->XferErrorCallback != NULL) + { + /* Transfer error callback */ + hdma->XferErrorCallback(hdma); + } + } + } + + /* Half Transfer Complete Interrupt management ******************************/ + if(__HAL_DMA_GET_FLAG(hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma)) != RESET) + { + if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_HT) != RESET) + { + /* Disable the half transfer interrupt if the DMA mode is not CIRCULAR */ + if((hdma->Instance->CCR & DMA_CCR_CIRC) == 0U) + { + /* Disable the half transfer interrupt */ + __HAL_DMA_DISABLE_IT(hdma, DMA_IT_HT); + } + /* Clear the half transfer complete flag */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_HT_FLAG_INDEX(hdma)); + + /* Change DMA peripheral state */ + hdma->State = HAL_DMA_STATE_READY_HALF; + + if(hdma->XferHalfCpltCallback != NULL) + { + /* Half transfer callback */ + hdma->XferHalfCpltCallback(hdma); + } + } + } + + /* Transfer Complete Interrupt management ***********************************/ + if(__HAL_DMA_GET_FLAG(hdma, __HAL_DMA_GET_TC_FLAG_INDEX(hdma)) != RESET) + { + if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_TC) != RESET) + { + if((hdma->Instance->CCR & DMA_CCR_CIRC) == 0U) + { + /* Disable the transfer complete interrupt */ + __HAL_DMA_DISABLE_IT(hdma, DMA_IT_TC); + } + /* Clear the transfer complete flag */ + __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_TC_FLAG_INDEX(hdma)); + + /* Update error code */ + hdma->ErrorCode |= HAL_DMA_ERROR_NONE; + + /* Change the DMA state */ + hdma->State = HAL_DMA_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hdma); + + if(hdma->XferCpltCallback != NULL) + { + /* Transfer complete callback */ + hdma->XferCpltCallback(hdma); + } + } + } +} + +/** + * @} + */ + +/** @addtogroup DMA_Exported_Functions_Group3 + * @brief Peripheral State functions + * +@verbatim + =============================================================================== + ##### Peripheral State functions ##### + =============================================================================== + [..] + This subsection provides functions allowing to + (+) Check the DMA state + (+) Get error code + +@endverbatim + * @{ + */ + +/** + * @brief Returns the DMA state. + * @param hdma: pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @retval HAL state + */ +HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *hdma) +{ + return hdma->State; +} + +/** + * @brief Return the DMA error code + * @param hdma : pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @retval DMA Error Code + */ +uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *hdma) +{ + return hdma->ErrorCode; +} + +/** + * @} + */ + +/** + * @} + */ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ + + +/* Private function prototypes -----------------------------------------------*/ +/** @addtogroup DMA_Private + * @{ + */ + + /* + * @brief Sets the DMA Transfer parameter. + * @param hdma: pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA Channel. + * @param SrcAddress: The source memory Buffer address + * @param DstAddress: The destination memory Buffer address + * @param DataLength: The length of data to be transferred from source to destination + * @retval HAL status + */ +static void DMA_SetConfig(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength) +{ + /* Configure DMA Channel data length */ + hdma->Instance->CNDTR = DataLength; + + /* Peripheral to Memory */ + if((hdma->Init.Direction) == DMA_MEMORY_TO_PERIPH) + { + /* Configure DMA Channel destination address */ + hdma->Instance->CPAR = DstAddress; + + /* Configure DMA Channel source address */ + hdma->Instance->CMAR = SrcAddress; + } + /* Memory to Peripheral */ + else + { + /* Configure DMA Channel source address */ + hdma->Instance->CPAR = SrcAddress; + + /* Configure DMA Channel destination address */ + hdma->Instance->CMAR = DstAddress; + } +} +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_DMA_MODULE_ENABLED */ +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c new file mode 100644 index 0000000..e178863 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c @@ -0,0 +1,753 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_flash.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief FLASH HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the internal FLASH memory: + * + Program operations functions + * + Memory Control functions + * + Peripheral State functions + * + @verbatim + ============================================================================== + ##### FLASH peripheral features ##### + ============================================================================== + [..] The Flash memory interface manages CPU AHB I-Code and D-Code accesses + to the Flash memory. It implements the erase and program Flash memory operations + and the read and write protection mechanisms. + + [..] The Flash memory interface accelerates code execution with a system of instruction + prefetch. + + [..] The FLASH main features are: + (+) Flash memory read operations + (+) Flash memory program/erase operations + (+) Read / write protections + (+) Prefetch on I-Code + (+) Option Bytes programming + + + ##### How to use this driver ##### + ============================================================================== + [..] + This driver provides functions and macros to configure and program the FLASH + memory of all STM32L0xx devices. + + (#) FLASH Memory I/O Programming functions: this group includes all needed + functions to erase and program the main memory: + (++) Lock and Unlock the FLASH interface + (++) Erase function: Erase page + (++) Program functions: Fast Word and Half Page(should be + executed from internal SRAM). + + (#) DATA EEPROM Programming functions: this group includes all + needed functions to erase and program the DATA EEPROM memory: + (++) Lock and Unlock the DATA EEPROM interface. + (++) Erase function: Erase Byte, erase HalfWord, erase Word, erase + Double Word (should be executed from internal SRAM). + (++) Program functions: Fast Program Byte, Fast Program Half-Word, + FastProgramWord, Program Byte, Program Half-Word, + Program Word and Program Double-Word (should be executed + from internal SRAM). + + (#) FLASH Option Bytes Programming functions: this group includes all needed + functions to manage the Option Bytes: + (++) Lock and Unlock the Option Bytes + (++) Set/Reset the write protection + (++) Set the Read protection Level + (++) Program the user Option Bytes + (++) Launch the Option Bytes loader + (++) Set/Get the Read protection Level. + (++) Set/Get the BOR level. + (++) Get the Write protection. + (++) Get the user option bytes. + + (#) Interrupts and flags management functions : this group + includes all needed functions to: + (++) Handle FLASH interrupts + (++) Wait for last FLASH operation according to its status + (++) Get error flag status + + (#) FLASH Interface configuration functions: this group includes + the management of following features: + (++) Enable/Disable the RUN PowerDown mode. + (++) Enable/Disable the SLEEP PowerDown mode. + + (#) FLASH Peripheral State methods: this group includes + the management of following features: + (++) Wait for the FLASH operation + (++) Get the specific FLASH error flag + + [..] In addition to these function, this driver includes a set of macros allowing + to handle the following operations: + + (+) Set/Get the latency + (+) Enable/Disable the prefetch buffer + (+) Enable/Disable the preread buffer + (+) Enable/Disable the Flash power-down + (+) Enable/Disable the FLASH interrupts + (+) Monitor the FLASH flags status + + ##### Programming operation functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to manage the FLASH + program operations. + + [..] The FLASH Memory Programming functions, includes the following functions: + (+) HAL_FLASH_Unlock(void); + (+) HAL_FLASH_Lock(void); + (+) HAL_FLASH_Program(uint32_t TypeProgram, uint32_t Address, uint32_t Data) + (+) HAL_FLASH_Program_IT(uint32_t TypeProgram, uint32_t Address, uint32_t Data) + + [..] Any operation of erase or program should follow these steps: + (#) Call the HAL_FLASH_Unlock() function to enable the flash control register and + program memory access. + (#) Call the desired function to erase page or program data. + (#) Call the HAL_FLASH_Lock() to disable the flash program memory access + (recommended to protect the FLASH memory against possible unwanted operation). + + ##### Option Bytes Programming functions ##### + ============================================================================== + + [..] The FLASH_Option Bytes Programming_functions, includes the following functions: + (+) HAL_FLASH_OB_Unlock(void); + (+) HAL_FLASH_OB_Lock(void); + (+) HAL_FLASH_OB_Launch(void); + (+) HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *pOBInit); + (+) HAL_FLASHEx_OBGetConfig(FLASH_OBProgramInitTypeDef *pOBInit); + + [..] Any operation of erase or program should follow these steps: + (#) Call the HAL_FLASH_OB_Unlock() function to enable the Flash option control + register access. + (#) Call the following functions to program the desired option bytes. + (++) HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *pOBInit); + (#) Once all needed option bytes to be programmed are correctly written, call the + HAL_FLASH_OB_Launch(void) function to launch the Option Bytes programming process. + (#) Call the HAL_FLASH_OB_Lock() to disable the Flash option control register access (recommended + to protect the option Bytes against possible unwanted operations). + + [..] Proprietary code Read Out Protection (PcROP): + (#) The PcROP sector is selected by using the same option bytes as the Write + protection. As a result, these 2 options are exclusive each other. + (#) To activate PCROP mode for Flash sectors(s), you need to follow the sequence below: + (++) Use this function HAL_FLASHEx_AdvOBProgram with PCROPState = OB_PCROP_STATE_ENABLE. + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +#ifdef HAL_FLASH_MODULE_ENABLED + +/** @defgroup FLASH FLASH + * @brief FLASH HAL module driver + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/** @defgroup FLASH_Private_Constants FLASH Private Constants + * @{ + */ +/** + * @} + */ + +/* Private macro ---------------------------- ---------------------------------*/ +/** @defgroup FLASH_Private_Macros FLASH Private Macros + * @{ + */ + +/** + * @} + */ + +/* Private variables ---------------------------------------------------------*/ +/** @defgroup FLASH_Private_Variables FLASH Private Variables + * @{ + */ +/* Variables used for Erase pages under interruption*/ +FLASH_ProcessTypeDef pFlash; +/** + * @} + */ + +/* Private function prototypes -----------------------------------------------*/ +/** @defgroup FLASH_Private_Functions FLASH Private Functions + * @{ + */ +static void FLASH_SetErrorCode(void); +extern void FLASH_PageErase(uint32_t PageAddress); +/** + * @} + */ + +/* Exported functions ---------------------------------------------------------*/ +/** @defgroup FLASH_Exported_Functions FLASH Exported Functions + * @{ + */ + +/** @defgroup FLASH_Exported_Functions_Group1 Programming operation functions + * @brief Programming operation functions + * +@verbatim +@endverbatim + * @{ + */ + +/** + * @brief Program word at a specified address + * @note To correctly run this function, the HAL_FLASH_Unlock() function + * must be called before. + * Call the HAL_FLASH_Lock() to disable the flash memory access + * (recommended to protect the FLASH memory against possible unwanted operation). + * + * @param TypeProgram Indicate the way to program at a specified address. + * This parameter can be a value of @ref FLASH_Type_Program + * @param Address Specifie the address to be programmed. + * @param Data Specifie the data to be programmed + * + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASH_Program(uint32_t TypeProgram, uint32_t Address, uint32_t Data) +{ + HAL_StatusTypeDef status = HAL_ERROR; + + /* Process Locked */ + __HAL_LOCK(&pFlash); + + /* Check the parameters */ + assert_param(IS_FLASH_TYPEPROGRAM(TypeProgram)); + assert_param(IS_FLASH_PROGRAM_ADDRESS(Address)); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /*Program word (32-bit) at a specified address.*/ + *(__IO uint32_t *)Address = Data; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + + return status; +} + +/** + * @brief Program word at a specified address with interrupt enabled. + * + * @param TypeProgram Indicate the way to program at a specified address. + * This parameter can be a value of @ref FLASH_Type_Program + * @param Address Specifie the address to be programmed. + * @param Data Specifie the data to be programmed + * + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t TypeProgram, uint32_t Address, uint32_t Data) +{ + HAL_StatusTypeDef status = HAL_OK; + + /* Process Locked */ + __HAL_LOCK(&pFlash); + + /* Check the parameters */ + assert_param(IS_FLASH_TYPEPROGRAM(TypeProgram)); + assert_param(IS_FLASH_PROGRAM_ADDRESS(Address)); + + /* Enable End of FLASH Operation and Error source interrupts */ + __HAL_FLASH_ENABLE_IT(FLASH_IT_EOP | FLASH_IT_ERR); + + pFlash.Address = Address; + pFlash.ProcedureOnGoing = FLASH_PROC_PROGRAM; + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + if(TypeProgram == FLASH_TYPEPROGRAM_WORD) + { + /* Program word (32-bit) at a specified address. */ + *(__IO uint32_t *)Address = Data; + } + return status; +} + +/** + * @brief This function handles FLASH interrupt request. + * @retval None + */ +void HAL_FLASH_IRQHandler(void) +{ + uint32_t addresstmp = 0; + + /* Check FLASH operation error flags */ + + /* WARNING : On the first cut of STM32L031xx and STM32L041xx devices, + * (RefID = 0x1000) the FLASH_FLAG_OPTVERR bit was not behaving + * as expected. If the user run an application using the first + * cut of the STM32L031xx device or the first cut of the STM32L041xx + * device, the check on the FLASH_FLAG_OPTVERR bit should be ignored. + * + * Note :The revId of the device can be retrieved via the HAL_GetREVID() + * function. + * + */ + + if( __HAL_FLASH_GET_FLAG(FLASH_FLAG_WRPERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_PGAERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_SIZERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_OPTVERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_RDERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_FWWERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_NOTZEROERR) ) + { + if(pFlash.ProcedureOnGoing == FLASH_PROC_PAGEERASE) + { + /* Return the faulty sector */ + addresstmp = pFlash.Page; + pFlash.Page = 0xFFFFFFFFU; + } + else + { + /* Return the faulty address */ + addresstmp = pFlash.Address; + } + /* Save the Error code */ + FLASH_SetErrorCode(); + + /* FLASH error interrupt user callback */ + HAL_FLASH_OperationErrorCallback(addresstmp); + + /* Stop the procedure ongoing */ + pFlash.ProcedureOnGoing = FLASH_PROC_NONE; + } + + /* Check FLASH End of Operation flag */ + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_EOP)) + { + /* Clear FLASH End of Operation pending bit */ + __HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_EOP); + + /* Process can continue only if no error detected */ + if(pFlash.ProcedureOnGoing != FLASH_PROC_NONE) + { + if(pFlash.ProcedureOnGoing == FLASH_PROC_PAGEERASE) + { + /* Nb of pages to erased can be decreased */ + pFlash.NbPagesToErase--; + + /* Check if there are still pages to erase */ + if(pFlash.NbPagesToErase != 0U) + { + addresstmp = pFlash.Page; + /*Indicate user which sector has been erased */ + HAL_FLASH_EndOfOperationCallback(addresstmp); + + /*Increment sector number*/ + addresstmp = pFlash.Page + FLASH_PAGE_SIZE; + pFlash.Page = addresstmp; + + /* If the erase operation is completed, disable the ERASE Bit */ + CLEAR_BIT(FLASH->PECR, FLASH_PECR_ERASE); + + FLASH_PageErase(addresstmp); + } + else + { + /* No more pages to Erase, user callback can be called. */ + /* Reset Sector and stop Erase pages procedure */ + pFlash.Page = addresstmp = 0xFFFFFFFFU; + pFlash.ProcedureOnGoing = FLASH_PROC_NONE; + /* FLASH EOP interrupt user callback */ + HAL_FLASH_EndOfOperationCallback(addresstmp); + } + } + else + { + /* If the program operation is completed, disable the PROG Bit */ + CLEAR_BIT(FLASH->PECR, FLASH_PECR_PROG); + + /* Program ended. Return the selected address */ + /* FLASH EOP interrupt user callback */ + HAL_FLASH_EndOfOperationCallback(pFlash.Address); + + /* Reset Address and stop Program procedure */ + pFlash.Address = 0xFFFFFFFFU; + pFlash.ProcedureOnGoing = FLASH_PROC_NONE; + } + } + } + + + if(pFlash.ProcedureOnGoing == FLASH_PROC_NONE) + { + /* Operation is completed, disable the PROG and ERASE */ + CLEAR_BIT(FLASH->PECR, (FLASH_PECR_ERASE | FLASH_PECR_PROG)); + + /* Disable End of FLASH Operation and Error source interrupts */ + __HAL_FLASH_DISABLE_IT(FLASH_IT_EOP | FLASH_IT_ERR); + + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + } +} + +/** + * @brief FLASH end of operation interrupt callback + * @param ReturnValue: The value saved in this parameter depends on the ongoing procedure + * - Pages Erase: Address of the page which has been erased + * (if 0xFFFFFFFF, it means that all the selected pages have been erased) + * - Program: Address which was selected for data program + * @retval none + */ +__weak void HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(ReturnValue); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_FLASH_EndOfOperationCallback could be implemented in the user file + */ +} + +/** + * @brief FLASH operation error interrupt callback + * @param ReturnValue: The value saved in this parameter depends on the ongoing procedure + * - Pages Erase: Address of the page which returned an error + * - Program: Address which was selected for data program + * @retval none + */ +__weak void HAL_FLASH_OperationErrorCallback(uint32_t ReturnValue) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(ReturnValue); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_FLASH_OperationErrorCallback could be implemented in the user file + */ +} + +/** + * @} + */ + +/** @defgroup FLASH_Exported_Functions_Group2 Peripheral Control functions + * @brief management functions + * +@verbatim + =============================================================================== + ##### Peripheral Control functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to control the FLASH + memory operations. + +@endverbatim + * @{ + */ + +/** + * @brief Unlock the FLASH control register access + * @retval HAL Status + */ +HAL_StatusTypeDef HAL_FLASH_Unlock(void) +{ + if (HAL_IS_BIT_SET(FLASH->PECR, FLASH_PECR_PRGLOCK)) + { + /* Unlocking FLASH_PECR register access*/ + if(HAL_IS_BIT_SET(FLASH->PECR, FLASH_PECR_PELOCK)) + { + WRITE_REG(FLASH->PEKEYR, FLASH_PEKEY1); + WRITE_REG(FLASH->PEKEYR, FLASH_PEKEY2); + } + + /* Unlocking the program memory access */ + WRITE_REG(FLASH->PRGKEYR, FLASH_PRGKEY1); + WRITE_REG(FLASH->PRGKEYR, FLASH_PRGKEY2); + } + else + { + return HAL_ERROR; + } + + return HAL_OK; +} + +/** + * @brief Locks the FLASH control register access + * @retval HAL Status + */ +HAL_StatusTypeDef HAL_FLASH_Lock(void) +{ + /* Set the PRGLOCK Bit to lock the FLASH Registers access */ + SET_BIT(FLASH->PECR, FLASH_PECR_PRGLOCK); + + return HAL_OK; +} + +/** + * @brief Unlock the FLASH Option Control Registers access. + * @retval HAL Status + */ +HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void) +{ + if(HAL_IS_BIT_SET(FLASH->PECR, FLASH_PECR_OPTLOCK)) + { + /* Unlocking FLASH_PECR register access*/ + if(HAL_IS_BIT_SET(FLASH->PECR, FLASH_PECR_PELOCK)) + { + /* Unlocking FLASH_PECR register access*/ + WRITE_REG(FLASH->PEKEYR, FLASH_PEKEY1); + WRITE_REG(FLASH->PEKEYR, FLASH_PEKEY2); + } + + /* Unlocking the option bytes block access */ + WRITE_REG(FLASH->OPTKEYR, FLASH_OPTKEY1); + WRITE_REG(FLASH->OPTKEYR, FLASH_OPTKEY2); + } + else + { + return HAL_ERROR; + } + + return HAL_OK; +} + +/** + * @brief Lock the FLASH Option Control Registers access. + * @retval HAL Status + */ +HAL_StatusTypeDef HAL_FLASH_OB_Lock(void) +{ + /* Set the OPTLOCK Bit to lock the option bytes block access */ + SET_BIT(FLASH->PECR, FLASH_PECR_OPTLOCK); + + return HAL_OK; +} + +/** + * @brief Launch the option byte loading. + * @note This function will reset automatically the MCU. + * @retval HAL Status + */ +HAL_StatusTypeDef HAL_FLASH_OB_Launch(void) +{ + /* Set the OBL_Launch bit to launch the option byte loading */ + SET_BIT(FLASH->PECR, FLASH_PECR_OBL_LAUNCH); + + /* Wait for last operation to be completed */ + return(FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE)); +} + +/** + * @} + */ + +/** @defgroup FLASH_Exported_Functions_Group3 Peripheral errors functions + * @brief Peripheral errors functions + * +@verbatim + =============================================================================== + ##### Peripheral Errors functions ##### + =============================================================================== + [..] + This subsection permit to get in run-time errors of the FLASH peripheral. + +@endverbatim + * @{ + */ + +/** + * @brief Get the specific FLASH error flag. + * @retval FLASH_ErrorCode The returned value can be: + * @ref FLASH_Error_Codes + */ +uint32_t HAL_FLASH_GetError(void) +{ + return pFlash.ErrorCode; +} + +/** + * @} + */ + +/** + * @} + */ + +/** @addtogroup FLASH_Private_Functions + * @{ + */ + +/** + * @brief Wait for a FLASH operation to complete. + * @param Timeout maximum flash operation timeout + * @retval HAL Status + */ +HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t Timeout) +{ + /* Wait for the FLASH operation to complete by polling on BUSY flag to be reset. + Even if the FLASH operation fails, the BUSY flag will be reset and an error + flag will be set */ + + uint32_t tickstart = HAL_GetTick(); + + while(__HAL_FLASH_GET_FLAG(FLASH_FLAG_BSY)) + { + if (Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U) || ((HAL_GetTick()-tickstart) > Timeout)) + { + return HAL_TIMEOUT; + } + } + } + + /* Check FLASH End of Operation flag */ + if (__HAL_FLASH_GET_FLAG(FLASH_FLAG_EOP)) + { + /* Clear FLASH End of Operation pending bit */ + __HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_EOP); + } + + if( __HAL_FLASH_GET_FLAG(FLASH_FLAG_WRPERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_PGAERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_SIZERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_OPTVERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_RDERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_FWWERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_NOTZEROERR) ) + { + /*Save the error code*/ + + /* WARNING : On the first cut of STM32L031xx and STM32L041xx devices, + * (RefID = 0x1000) the FLASH_FLAG_OPTVERR bit was not behaving + * as expected. If the user run an application using the first + * cut of the STM32L031xx device or the first cut of the STM32L041xx + * device, this error should be ignored. The revId of the device + * can be retrieved via the HAL_GetREVID() function. + * + */ + FLASH_SetErrorCode(); + return HAL_ERROR; + } + + /* There is no error flag set */ + return HAL_OK; +} + + +/** + * @brief Set the specific FLASH error flag. + * @retval None + */ +static void FLASH_SetErrorCode(void) +{ + uint32_t flags = 0; + + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_WRPERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_WRP; + flags |= FLASH_FLAG_WRPERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_PGAERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_PGA; + flags |= FLASH_FLAG_PGAERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_SIZERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_SIZE; + flags |= FLASH_FLAG_SIZERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_OPTVERR)) + { + /* WARNING : On the first cut of STM32L031xx and STM32L041xx devices, + * (RefID = 0x1000) the FLASH_FLAG_OPTVERR bit was not behaving + * as expected. If the user run an application using the first + * cut of the STM32L031xx device or the first cut of the STM32L041xx + * device, this error should be ignored. The revId of the device + * can be retrieved via the HAL_GetREVID() function. + * + */ + pFlash.ErrorCode |= HAL_FLASH_ERROR_OPTV; + flags |= FLASH_FLAG_OPTVERR; + } + + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_RDERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_RD; + flags |= FLASH_FLAG_RDERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_FWWERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_FWWERR; + flags |= HAL_FLASH_ERROR_FWWERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_NOTZEROERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_NOTZERO; + flags |= FLASH_FLAG_NOTZEROERR; + } + + /* Clear FLASH error pending bits */ + __HAL_FLASH_CLEAR_FLAG(flags); +} +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_FLASH_MODULE_ENABLED */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c new file mode 100644 index 0000000..5688896 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c @@ -0,0 +1,1272 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_flash_ex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Extended FLASH HAL module driver. + * + * This file provides firmware functions to manage the following + * functionalities of the internal FLASH memory: + * + FLASH Interface configuration + * + FLASH Memory Erasing + * + DATA EEPROM Programming/Erasing + * + Option Bytes Programming + * + Interrupts management + * + @verbatim + ============================================================================== + ##### Flash peripheral Extended features ##### + ============================================================================== + + [..] Comparing to other products, the FLASH interface for STM32L0xx + devices contains the following additional features + (+) Erase functions + (+) DATA_EEPROM memory management + (+) BOOT option bit configuration + (+) PCROP protection for all sectors + + ##### How to use this driver ##### + ============================================================================== + [..] This driver provides functions to configure and program the FLASH memory + of all STM32L0xx. It includes: + (+) Full DATA_EEPROM erase and program management + (+) Boot activation + (+) PCROP protection configuration and control for all pages + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ +#ifdef HAL_FLASH_MODULE_ENABLED + +/** @addtogroup FLASH + * @{ + */ +/** @addtogroup FLASH_Private_Variables + * @{ + */ +/* Variables used for Erase pages under interruption*/ +extern FLASH_ProcessTypeDef pFlash; +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup FLASHEx FLASHEx + * @brief FLASH HAL Extension module driver + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/** @defgroup FLASHEx_Private_Constants FLASHEx Private Constants + * @{ + */ +/** + * @} + */ + +/* Private macro -------------------------------------------------------------*/ +/** @defgroup FLASHEx_Private_Macros FLASHEx Private Macros + * @{ + */ +/** + * @} + */ + +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/** @defgroup FLASHEx_Private_Functions FLASHEx Private Functions + * @{ + */ +void FLASH_PageErase(uint32_t PageAddress); +#if defined(FLASH_OPTR_BFB2) +static HAL_StatusTypeDef FLASH_OB_BootConfig(uint8_t OB_BOOT); +#endif /* FLASH_OPTR_BFB2 */ +static HAL_StatusTypeDef FLASH_OB_RDPConfig(uint8_t OB_RDP); +static HAL_StatusTypeDef FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY); +static HAL_StatusTypeDef FLASH_OB_BORConfig(uint8_t OB_BOR); +static uint8_t FLASH_OB_GetRDP(void); +static uint8_t FLASH_OB_GetUser(void); +static uint8_t FLASH_OB_GetBOR(void); +static uint8_t FLASH_OB_GetBOOTBit1(void); +static HAL_StatusTypeDef FLASH_OB_BOOTBit1Config(uint8_t OB_BootBit1); +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) +static HAL_StatusTypeDef FLASH_OB_ProtectedSectorsConfig(uint32_t Sector, uint32_t Sector2, uint32_t NewState); +#else +static HAL_StatusTypeDef FLASH_OB_ProtectedSectorsConfig(uint32_t Sector, uint32_t NewState); +#endif +static uint32_t FLASH_OB_GetWRP(void); +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) +static uint32_t FLASH_OB_GetWRP2(void); +#endif + +/** + * @} + */ + +/* Exported functions ---------------------------------------------------------*/ +/** @defgroup FLASHEx_Exported_Functions FLASHEx Exported Functions + * @{ + */ + +/** @defgroup FLASHEx_Exported_Functions_Group1 FLASHEx Memory Erasing functions + * @brief FLASH Memory Erasing functions + * +@verbatim + ============================================================================== + ##### FLASH Erasing Programming functions ##### + ============================================================================== + + [..] The FLASH Memory Erasing functions, includes the following functions: + (+) @ref HAL_FLASHEx_Erase: return only when erase has been done + (+) @ref HAL_FLASHEx_Erase_IT: end of erase is done when @ref HAL_FLASH_EndOfOperationCallback + is called with parameter 0xFFFFFFFF + + [..] Any operation of erase should follow these steps: + (#) Call the @ref HAL_FLASH_Unlock() function to enable the flash control register and + program memory access. + (#) Call the desired function to erase page. + (#) Call the @ref HAL_FLASH_Lock() to disable the flash program memory access + (recommended to protect the FLASH memory against possible unwanted operation). + +@endverbatim + * @{ + */ + +/** + * @brief Erase the specified FLASH memory Pages + * @note To correctly run this function, the @ref HAL_FLASH_Unlock() function + * must be called before. + * Call the @ref HAL_FLASH_Lock() to disable the flash memory access + * (recommended to protect the FLASH memory against possible unwanted operation) + * @param[in] pEraseInit pointer to an FLASH_EraseInitTypeDef structure that + * contains the configuration information for the erasing. + * + * @param[out] PageError pointer to variable that + * contains the configuration information on faulty page in case of error + * (0xFFFFFFFF means that all the pages have been correctly erased) + * + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASHEx_Erase(FLASH_EraseInitTypeDef *pEraseInit, uint32_t *PageError) +{ + HAL_StatusTypeDef status = HAL_ERROR; + uint32_t address = 0U; + + /* Process Locked */ + __HAL_LOCK(&pFlash); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if (status == HAL_OK) + { + /*Initialization of PageError variable*/ + *PageError = 0xFFFFFFFFU; + + /* Check the parameters */ + assert_param(IS_NBPAGES(pEraseInit->NbPages)); + assert_param(IS_FLASH_TYPEERASE(pEraseInit->TypeErase)); + assert_param(IS_FLASH_PROGRAM_ADDRESS(pEraseInit->PageAddress)); + assert_param(IS_FLASH_PROGRAM_ADDRESS((pEraseInit->PageAddress & ~(FLASH_PAGE_SIZE - 1U)) + pEraseInit->NbPages * FLASH_PAGE_SIZE - 1U)); + + /* Erase page by page to be done*/ + for(address = pEraseInit->PageAddress; + address < ((pEraseInit->NbPages * FLASH_PAGE_SIZE) + pEraseInit->PageAddress); + address += FLASH_PAGE_SIZE) + { + FLASH_PageErase(address); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + /* If the erase operation is completed, disable the ERASE Bit */ + CLEAR_BIT(FLASH->PECR, FLASH_PECR_PROG); + CLEAR_BIT(FLASH->PECR, FLASH_PECR_ERASE); + + if (status != HAL_OK) + { + /* In case of error, stop erase procedure and return the faulty address */ + *PageError = address; + break; + } + } + } + + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + + return status; +} + +/** + * @brief Perform a page erase of the specified FLASH memory pages with interrupt enabled + * @note To correctly run this function, the @ref HAL_FLASH_Unlock() function + * must be called before. + * Call the @ref HAL_FLASH_Lock() to disable the flash memory access + * (recommended to protect the FLASH memory against possible unwanted operation) + * End of erase is done when @ref HAL_FLASH_EndOfOperationCallback is called with parameter + * 0xFFFFFFFF + * @param pEraseInit pointer to an FLASH_EraseInitTypeDef structure that + * contains the configuration information for the erasing. + * + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASHEx_Erase_IT(FLASH_EraseInitTypeDef *pEraseInit) +{ + HAL_StatusTypeDef status = HAL_ERROR; + + /* If procedure already ongoing, reject the next one */ + if (pFlash.ProcedureOnGoing != FLASH_PROC_NONE) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_NBPAGES(pEraseInit->NbPages)); + assert_param(IS_FLASH_TYPEERASE(pEraseInit->TypeErase)); + assert_param(IS_FLASH_PROGRAM_ADDRESS(pEraseInit->PageAddress)); + assert_param(IS_FLASH_PROGRAM_ADDRESS((pEraseInit->PageAddress & ~(FLASH_PAGE_SIZE - 1)) + pEraseInit->NbPages * FLASH_PAGE_SIZE - 1)); + + /* Process Locked */ + __HAL_LOCK(&pFlash); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if (status == HAL_OK) + { + /* Enable End of FLASH Operation and Error source interrupts */ + __HAL_FLASH_ENABLE_IT(FLASH_IT_EOP | FLASH_IT_ERR); + + pFlash.ProcedureOnGoing = FLASH_PROC_PAGEERASE; + pFlash.NbPagesToErase = pEraseInit->NbPages; + pFlash.Page = pEraseInit->PageAddress; + + /*Erase 1st page and wait for IT*/ + FLASH_PageErase(pEraseInit->PageAddress); + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + } + + return status; +} + +/** + * @} + */ + +/** @defgroup FLASHEx_Exported_Functions_Group2 Option Bytes Programming functions + * @brief Option Bytes Programming functions + * +@verbatim + ============================================================================== + ##### Option Bytes Programming functions ##### + ============================================================================== + + [..] Any operation of erase or program should follow these steps: + (#) Call the @ref HAL_FLASH_OB_Unlock() function to enable the Flash option control + register access. + (#) Call following function to program the desired option bytes. + (++) @ref HAL_FLASHEx_OBProgram: + - To Enable/Disable the desired sector write protection. + - To set the desired read Protection Level. + - To configure the user option Bytes: IWDG, STOP and the Standby. + - To Set the BOR level. + (#) Once all needed option bytes to be programmed are correctly written, call the + @ref HAL_FLASH_OB_Launch(void) function to launch the Option Bytes programming process. + (#) Call the @ref HAL_FLASH_OB_Lock() to disable the Flash option control register access (recommended + to protect the option Bytes against possible unwanted operations). + + [..] Proprietary code Read Out Protection (PcROP): + (#) The PcROP sector is selected by using the same option bytes as the Write + protection (nWRPi bits). As a result, these 2 options are exclusive each other. + (#) In order to activate the PcROP (change the function of the nWRPi option bits), + the WPRMOD option bit must be activated. + (#) The active value of nWRPi bits is inverted when PCROP mode is active, this + means: if WPRMOD = 1 and nWRPi = 1 (default value), then the user sector "i" + is read/write protected. + (#) To activate PCROP mode for Flash sector(s), you need to call the following function: + (++) @ref HAL_FLASHEx_AdvOBProgram in selecting sectors to be read/write protected + (++) @ref HAL_FLASHEx_OB_SelectPCROP to enable the read/write protection + +@endverbatim + * @{ + */ + +/** + * @brief Program option bytes + * @param pOBInit pointer to an FLASH_OBInitStruct structure that + * contains the configuration information for the programming. + * + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASHEx_OBProgram(FLASH_OBProgramInitTypeDef *pOBInit) +{ + HAL_StatusTypeDef status = HAL_ERROR; + + /* Process Locked */ + __HAL_LOCK(&pFlash); + + /* Check the parameters */ + assert_param(IS_OPTIONBYTE(pOBInit->OptionType)); + + /*Write protection configuration*/ + if((pOBInit->OptionType & OPTIONBYTE_WRP) == OPTIONBYTE_WRP) + { + assert_param(IS_WRPSTATE(pOBInit->WRPState)); +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) + status = FLASH_OB_ProtectedSectorsConfig(pOBInit->WRPSector, pOBInit->WRPSector2, pOBInit->WRPState); +#else + status = FLASH_OB_ProtectedSectorsConfig(pOBInit->WRPSector, pOBInit->WRPState); +#endif + if (status != HAL_OK) + { + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + return status; + } + } + + /* Read protection configuration*/ + if((pOBInit->OptionType & OPTIONBYTE_RDP) == OPTIONBYTE_RDP) + { + status = FLASH_OB_RDPConfig(pOBInit->RDPLevel); + if (status != HAL_OK) + { + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + return status; + } + } + + /* USER configuration*/ + if((pOBInit->OptionType & OPTIONBYTE_USER) == OPTIONBYTE_USER) + { + status = FLASH_OB_UserConfig(pOBInit->USERConfig & OB_IWDG_SW, + pOBInit->USERConfig & OB_STOP_NORST, + pOBInit->USERConfig & OB_STDBY_NORST); + if (status != HAL_OK) + { + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + return status; + } + } + + /* BOR Level configuration*/ + if((pOBInit->OptionType & OPTIONBYTE_BOR) == OPTIONBYTE_BOR) + { + status = FLASH_OB_BORConfig(pOBInit->BORLevel); + if (status != HAL_OK) + { + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + return status; + } + } + + /* Program BOOT Bit1 config option byte */ + if ((pOBInit->OptionType & OPTIONBYTE_BOOT_BIT1) == OPTIONBYTE_BOOT_BIT1) + { + status = FLASH_OB_BOOTBit1Config(pOBInit->BOOTBit1Config); + } + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + + return status; +} + +/** + * @brief Get the Option byte configuration + * @param pOBInit pointer to an FLASH_OBInitStruct structure that + * contains the configuration information for the programming. + * + * @retval None + */ +void HAL_FLASHEx_OBGetConfig(FLASH_OBProgramInitTypeDef *pOBInit) +{ + pOBInit->OptionType = OPTIONBYTE_WRP | OPTIONBYTE_RDP | OPTIONBYTE_USER | OPTIONBYTE_BOR; + + /* Get WRP sector */ + pOBInit->WRPSector = FLASH_OB_GetWRP(); + +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) + pOBInit->WRPSector2 = FLASH_OB_GetWRP2(); +#endif + + /*Get RDP Level*/ + pOBInit->RDPLevel = FLASH_OB_GetRDP(); + + /*Get USER*/ + pOBInit->USERConfig = FLASH_OB_GetUser(); + + /*Get BOR Level*/ + pOBInit->BORLevel = FLASH_OB_GetBOR(); + + /* Get BOOT bit 1 config OB */ + pOBInit->BOOTBit1Config = FLASH_OB_GetBOOTBit1(); +} + +#if defined(FLASH_OPTR_WPRMOD) || defined(FLASH_OPTR_BFB2) + +/** + * @brief Program option bytes + * @param pAdvOBInit pointer to an FLASH_AdvOBProgramInitTypeDef structure that + * contains the configuration information for the programming. + * + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASHEx_AdvOBProgram (FLASH_AdvOBProgramInitTypeDef *pAdvOBInit) +{ + HAL_StatusTypeDef status = HAL_ERROR; + + /* Check the parameters */ + assert_param(IS_OBEX(pAdvOBInit->OptionType)); + +#if defined(FLASH_OPTR_WPRMOD) + + /* Program PCROP option byte*/ + if ((pAdvOBInit->OptionType & OPTIONBYTE_PCROP) == OPTIONBYTE_PCROP) + { + /* Check the parameters */ + assert_param(IS_PCROPSTATE(pAdvOBInit->PCROPState)); +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) + status = FLASH_OB_ProtectedSectorsConfig(pAdvOBInit->PCROPSector, pAdvOBInit->PCROPSector2, pAdvOBInit->PCROPState); +#else + status = FLASH_OB_ProtectedSectorsConfig(pAdvOBInit->PCROPSector, pAdvOBInit->PCROPState); +#endif + } + +#endif /* FLASH_OPTR_WPRMOD */ + +#if defined(FLASH_OPTR_BFB2) + + /* Program BOOT config option byte */ + if ((pAdvOBInit->OptionType & OPTIONBYTE_BOOTCONFIG) == OPTIONBYTE_BOOTCONFIG) + { + status = FLASH_OB_BootConfig(pAdvOBInit->BootConfig); + } + +#endif /* FLASH_OPTR_BFB2 */ + + return status; +} + +/** + * @brief Get the OBEX byte configuration + * @param pAdvOBInit pointer to an FLASH_AdvOBProgramInitTypeDef structure that + * contains the configuration information for the programming. + * + * @retval None + */ +void HAL_FLASHEx_AdvOBGetConfig(FLASH_AdvOBProgramInitTypeDef *pAdvOBInit) +{ + pAdvOBInit->OptionType = 0; + +#if defined(FLASH_OPTR_WPRMOD) + + pAdvOBInit->OptionType |= OPTIONBYTE_PCROP; + + + /* Get PCROP state */ + pAdvOBInit->PCROPState = (FLASH->OPTR & FLASH_OPTR_WPRMOD) >> FLASH_OPTR_WPRMOD_Pos; + /* Get PCROP protected sector */ + pAdvOBInit->PCROPSector = FLASH->WRPR; + +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) + /* Get PCROP protected sector */ + pAdvOBInit->PCROPSector2 = FLASH->WRPR2; +#endif +#endif /* FLASH_OPTR_WPRMOD */ + +#if defined(FLASH_OPTR_BFB2) + + pAdvOBInit->OptionType |= OPTIONBYTE_BOOTCONFIG; + + /* Get Boot config OB */ + pAdvOBInit->BootConfig = (FLASH->OPTR & FLASH_OPTR_BFB2) >> 16U; + +#endif /* FLASH_OPTR_BFB2 */ +} + +#endif /* FLASH_OPTR_WPRMOD || FLASH_OPTR_BFB2 */ + +#if defined(FLASH_OPTR_WPRMOD) + +/** + * @brief Select the Protection Mode (WPRMOD). + * @note Once WPRMOD bit is active, unprotection of a protected sector is not possible + * @note Read a protected sector will set RDERR Flag and write a protected sector will set WRPERR Flag + * @retval HAL status + */ +HAL_StatusTypeDef HAL_FLASHEx_OB_SelectPCROP(void) +{ + HAL_StatusTypeDef status = HAL_OK; + uint16_t tmp1 = 0; + uint32_t tmp2 = 0; + uint8_t optiontmp = 0; + uint16_t optiontmp2 = 0; + + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + /* Mask RDP Byte */ + optiontmp = (uint8_t)(*(__IO uint8_t *)(OB_BASE)); + + /* Update Option Byte */ + optiontmp2 = (uint16_t)(OB_PCROP_SELECTED | optiontmp); + + /* calculate the option byte to write */ + tmp1 = (uint16_t)(~(optiontmp2 )); + tmp2 = (uint32_t)(((uint32_t)((uint32_t)(tmp1) << 16U)) | ((uint32_t)optiontmp2)); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* program PCRop */ + OB->RDP = tmp2; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Return the Read protection operation Status */ + return status; +} + +/** + * @brief Deselect the Protection Mode (WPRMOD). + * @note Once WPRMOD bit is active, unprotection of a protected sector is not possible + * @note Read a protected sector will set RDERR Flag and write a protected sector will set WRPERR Flag + * @retval HAL status + */ +HAL_StatusTypeDef HAL_FLASHEx_OB_DeSelectPCROP(void) +{ + HAL_StatusTypeDef status = HAL_OK; + uint16_t tmp1 = 0; + uint32_t tmp2 = 0; + uint8_t optiontmp = 0; + uint16_t optiontmp2 = 0; + + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + /* Mask RDP Byte */ + optiontmp = (uint8_t)(*(__IO uint8_t *)(OB_BASE)); + + /* Update Option Byte */ + optiontmp2 = (uint16_t)(OB_PCROP_DESELECTED | optiontmp); + + /* calculate the option byte to write */ + tmp1 = (uint16_t)(~(optiontmp2 )); + tmp2 = (uint32_t)(((uint32_t)((uint32_t)(tmp1) << 16U)) | ((uint32_t)optiontmp2)); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* program PCRop */ + OB->RDP = tmp2; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Return the Read protection operation Status */ + return status; +} + +#endif /* FLASH_OPTR_WPRMOD */ + +/** + * @} + */ + +/** @defgroup FLASHEx_Exported_Functions_Group3 DATA EEPROM Programming functions + * @brief DATA EEPROM Programming functions + * +@verbatim + =============================================================================== + ##### DATA EEPROM Programming functions ##### + =============================================================================== + + [..] Any operation of erase or program should follow these steps: + (#) Call the @ref HAL_FLASHEx_DATAEEPROM_Unlock() function to enable the data EEPROM access + and Flash program erase control register access. + (#) Call the desired function to erase or program data. + (#) Call the @ref HAL_FLASHEx_DATAEEPROM_Lock() to disable the data EEPROM access + and Flash program erase control register access(recommended + to protect the DATA_EEPROM against possible unwanted operation). + +@endverbatim + * @{ + */ + +/** + * @brief Unlocks the data memory and FLASH_PECR register access. + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Unlock(void) +{ + if((FLASH->PECR & FLASH_PECR_PELOCK) != RESET) + { + /* Unlocking the Data memory and FLASH_PECR register access*/ + FLASH->PEKEYR = FLASH_PEKEY1; + FLASH->PEKEYR = FLASH_PEKEY2; + } + else + { + return HAL_ERROR; + } + return HAL_OK; +} + +/** + * @brief Locks the Data memory and FLASH_PECR register access. + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Lock(void) +{ + /* Set the PELOCK Bit to lock the data memory and FLASH_PECR register access */ + SET_BIT(FLASH->PECR, FLASH_PECR_PELOCK); + + return HAL_OK; +} + +/** + * @brief Erase a word in data memory. + * @param Address specifies the address to be erased. + * @note To correctly run this function, the @ref HAL_FLASHEx_DATAEEPROM_Unlock() function + * must be called before. + * Call the @ref HAL_FLASHEx_DATAEEPROM_Lock() to the data EEPROM access + * and Flash program erase control register access(recommended to protect + * the DATA_EEPROM against possible unwanted operation). + * @retval HAL_StatusTypeDef HAL Status + */ +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Erase(uint32_t Address) +{ + HAL_StatusTypeDef status = HAL_OK; + + /* Check the parameters */ + assert_param(IS_FLASH_DATA_ADDRESS(Address)); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* Write 00000000h to valid address in the data memory */ + *(__IO uint32_t *) Address = 0x00000000U; + + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Return the erase status */ + return status; +} + +/** + * @brief Program word at a specified address + * @note To correctly run this function, the @ref HAL_FLASHEx_DATAEEPROM_Unlock() function + * must be called before. + * Call the @ref HAL_FLASHEx_DATAEEPROM_Unlock() to he data EEPROM access + * and Flash program erase control register access(recommended to protect + * the DATA_EEPROM against possible unwanted operation). + * @note The function @ref HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram() can be called before + * this function to configure the Fixed Time Programming. + * @param TypeProgram Indicate the way to program at a specified address. + * This parameter can be a value of @ref FLASHEx_Type_Program_Data + * @param Address specifie the address to be programmed. + * @param Data specifie the data to be programmed + * + * @retval HAL_StatusTypeDef HAL Status + */ + +HAL_StatusTypeDef HAL_FLASHEx_DATAEEPROM_Program(uint32_t TypeProgram, uint32_t Address, uint32_t Data) +{ + HAL_StatusTypeDef status = HAL_ERROR; + + /* Process Locked */ + __HAL_LOCK(&pFlash); + + /* Check the parameters */ + assert_param(IS_TYPEPROGRAMDATA(TypeProgram)); + assert_param(IS_FLASH_DATA_ADDRESS(Address)); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + if(TypeProgram == FLASH_TYPEPROGRAMDATA_WORD) + { + /* Program word (32-bit) at a specified address.*/ + *(__IO uint32_t *)Address = Data; + } + else if(TypeProgram == FLASH_TYPEPROGRAMDATA_HALFWORD) + { + /* Program halfword (16-bit) at a specified address.*/ + *(__IO uint16_t *)Address = (uint16_t) Data; + } + else if(TypeProgram == FLASH_TYPEPROGRAMDATA_BYTE) + { + /* Program byte (8-bit) at a specified address.*/ + *(__IO uint8_t *)Address = (uint8_t) Data; + } + else + { + status = HAL_ERROR; + } + + if (status != HAL_OK) + { + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + } + + /* Process Unlocked */ + __HAL_UNLOCK(&pFlash); + + return status; +} + +/** + * @brief Enable DATA EEPROM fixed Time programming (2*Tprog). + * @retval None + */ +void HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram(void) +{ + SET_BIT(FLASH->PECR, FLASH_PECR_FIX); +} + +/** + * @brief Disables DATA EEPROM fixed Time programming (2*Tprog). + * @retval None + */ +void HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram(void) +{ + CLEAR_BIT(FLASH->PECR, FLASH_PECR_FIX); +} + +/** + * @} + */ + +/** + * @} + */ + +/** @addtogroup FLASHEx_Private_Functions + * @{ + */ + +/* +============================================================================== + OPTIONS BYTES +============================================================================== +*/ +/** + * @brief Enables or disables the read out protection. + * @note To correctly run this function, the @ref HAL_FLASH_OB_Unlock() function + * must be called before. + * @param OB_RDP specifies the read protection level. + * This parameter can be: + * @arg @ref OB_RDP_LEVEL_0 No protection + * @arg @ref OB_RDP_LEVEL_1 Read protection of the memory + * @arg @ref OB_RDP_LEVEL_2 Chip protection + * + * !!!Warning!!! When enabling OB_RDP_LEVEL_2 it's no more possible to go back to level 1 or 0 + * + * @retval HAL status + */ +static HAL_StatusTypeDef FLASH_OB_RDPConfig(uint8_t OB_RDP) +{ + HAL_StatusTypeDef status = HAL_OK; + uint32_t tmp1 = 0U, tmp2 = 0U, tmp3 = 0U; + + /* Check the parameters */ + assert_param(IS_OB_RDP(OB_RDP)); + + tmp1 = (uint32_t)(OB->RDP & FLASH_OPTR_RDPROT); + +#if defined(FLASH_OPTR_WPRMOD) + /* Mask WPRMOD bit */ + tmp3 = (uint32_t)(OB->RDP & FLASH_OPTR_WPRMOD); +#endif + + /* calculate the option byte to write */ + tmp1 = (~((uint32_t)(OB_RDP | tmp3))); + tmp2 = (uint32_t)(((uint32_t)((uint32_t)(tmp1) << 16U)) | ((uint32_t)(OB_RDP | tmp3))); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* program read protection level */ + OB->RDP = tmp2; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Return the Read protection operation Status */ + return status; +} + +/** + * @brief Programs the FLASH brownout reset threshold level Option Byte. + * @param OB_BOR Selects the brownout reset threshold level. + * This parameter can be one of the following values: + * @arg @ref OB_BOR_OFF BOR is disabled at power down, the reset is asserted when the VDD + * power supply reaches the PDR(Power Down Reset) threshold (1.5V) + * @arg @ref OB_BOR_LEVEL1 BOR Reset threshold levels for 1.7V - 1.8V VDD power supply + * @arg @ref OB_BOR_LEVEL2 BOR Reset threshold levels for 1.9V - 2.0V VDD power supply + * @arg @ref OB_BOR_LEVEL3 BOR Reset threshold levels for 2.3V - 2.4V VDD power supply + * @arg @ref OB_BOR_LEVEL4 BOR Reset threshold levels for 2.55V - 2.65V VDD power supply + * @arg @ref OB_BOR_LEVEL5 BOR Reset threshold levels for 2.8V - 2.9V VDD power supply + * @retval HAL status + */ +static HAL_StatusTypeDef FLASH_OB_BORConfig(uint8_t OB_BOR) +{ + HAL_StatusTypeDef status = HAL_OK; + uint32_t tmp = 0, tmp1 = 0; + + /* Check the parameters */ + assert_param(IS_OB_BOR_LEVEL(OB_BOR)); + + /* Get the User Option byte register */ + tmp1 = OB->USER & ((~FLASH_OPTR_BOR_LEV) >> 16U); + + /* Calculate the option byte to write - [0xFF | nUSER | 0x00 | USER]*/ + tmp = (uint32_t)~((OB_BOR | tmp1)) << 16U; + tmp |= (OB_BOR | tmp1); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* Write the BOR Option Byte */ + OB->USER = tmp; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Return the Option Byte BOR programmation Status */ + return status; +} + +/** + * @brief Sets or resets the BOOT bit1 option bit. + * @param OB_BootBit1 Set or Reset the BOOT bit1 option bit. + * This parameter can be one of the following values: + * @arg @ref OB_BOOT_BIT1_RESET BOOT1 option bit reset + * @arg @ref OB_BOOT_BIT1_SET BOOT1 option bit set + * @retval HAL status + */ +static HAL_StatusTypeDef FLASH_OB_BOOTBit1Config(uint8_t OB_BootBit1) +{ + HAL_StatusTypeDef status = HAL_OK; + uint32_t tmp = 0, tmp1 = 0, OB_Bits = ((uint32_t) OB_BootBit1) << 15; + + /* Check the parameters */ + assert_param(IS_OB_BOOT1(OB_BootBit1)); + + /* Get the User Option byte register */ + tmp1 = OB->USER & ((~FLASH_OPTR_BOOT1) >> 16U); + + /* Calculate the user option byte to write */ + tmp = (~(OB_Bits | tmp1)) << 16U; + tmp |= OB_Bits | tmp1; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + /* Program OB */ + OB->USER = tmp; + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + return status; +} + +/** + * @brief Returns the FLASH User Option Bytes values. + * @retval The FLASH User Option Bytes. + */ +static uint8_t FLASH_OB_GetUser(void) +{ + /* Return the User Option Byte */ + return (uint8_t)((FLASH->OPTR & FLASH_OPTR_USER) >> 16U); +} + +/** + * @brief Returns the FLASH Read Protection level. + * @retval FLASH RDP level + * This parameter can be one of the following values: + * @arg @ref OB_RDP_LEVEL_0 No protection + * @arg @ref OB_RDP_LEVEL_1 Read protection of the memory + * @arg @ref OB_RDP_LEVEL_2 Full chip protection + */ +static uint8_t FLASH_OB_GetRDP(void) +{ + return (uint8_t)(FLASH->OPTR & FLASH_OPTR_RDPROT); +} + +/** + * @brief Returns the FLASH BOR level. + * @retval The BOR level Option Bytes. + */ +static uint8_t FLASH_OB_GetBOR(void) +{ + /* Return the BOR level */ + return (uint8_t)((FLASH->OPTR & (uint32_t)FLASH_OPTR_BOR_LEV) >> 16U); +} + +/** + * @brief Returns the FLASH BOOT bit1 value. + * @retval The BOOT bit 1 value Option Bytes. + */ +static uint8_t FLASH_OB_GetBOOTBit1(void) +{ + /* Return the BOR level */ + return (FLASH->OPTR & FLASH_OPTR_BOOT1) >> FLASH_OPTR_BOOT1_Pos; + +} + +/** + * @brief Returns the FLASH Write Protection Option Bytes value. + * @retval The FLASH Write Protection Option Bytes value. + */ +static uint32_t FLASH_OB_GetWRP(void) +{ + /* Return the FLASH write protection Register value */ + return (uint32_t)(FLASH->WRPR); +} + +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) +/** + * @brief Returns the FLASH Write Protection Option Bytes value. + * @retval The FLASH Write Protection Option Bytes value. + */ +static uint32_t FLASH_OB_GetWRP2(void) +{ + /* Return the FLASH write protection Register value */ + return (uint32_t)(FLASH->WRPR2); +} +#endif /* STM32L071xx || STM32L072xx || STM32L073xx || STM32L081xx || STM32L082xx || STM32L083xx */ + +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) +/** + * @brief Write Option Byte of the desired pages of the Flash. + * @param Sector specifies the sectors to be write protected. + * @param Sector2 specifies the sectors to be write protected (only stm32l07xxx and stm32l08xxx devices) + * @param NewState new state of the specified FLASH Pages Write protection. + * This parameter can be: + * @arg @ref OB_WRPSTATE_ENABLE + * @arg @ref OB_WRPSTATE_DISABLE + * @retval HAL_StatusTypeDef + */ +static HAL_StatusTypeDef FLASH_OB_ProtectedSectorsConfig(uint32_t Sector, uint32_t Sector2, uint32_t NewState) +#else +/** + * @brief Write Option Byte of the desired pages of the Flash. + * @param Sector specifies the sectors to be write protected. + * @param NewState new state of the specified FLASH Pages Write protection. + * This parameter can be: + * @arg @ref OB_WRPSTATE_ENABLE + * @arg @ref OB_WRPSTATE_DISABLE + * @retval HAL_StatusTypeDef + */ +static HAL_StatusTypeDef FLASH_OB_ProtectedSectorsConfig(uint32_t Sector, uint32_t NewState) +#endif +{ + HAL_StatusTypeDef status = HAL_OK; + uint32_t WRP_Data = 0; + uint32_t OB_WRP = Sector; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* Update WRP only if at least 1 selected sector */ + if (OB_WRP != 0x00000000U) + { + if ((OB_WRP & WRP_MASK_LOW) != 0x00000000U) + { + if (NewState != OB_WRPSTATE_DISABLE) + { + WRP_Data = (uint16_t)(((OB_WRP & WRP_MASK_LOW) | OB->WRP01)); + OB->WRP01 = (uint32_t)(~(WRP_Data) << 16U) | (WRP_Data); + } + else + { + WRP_Data = (uint16_t)(~OB_WRP & (WRP_MASK_LOW & OB->WRP01)); + OB->WRP01 = (uint32_t)((~WRP_Data) << 16U) | (WRP_Data); + } + } + } +#if defined(STM32L071xx) || defined(STM32L072xx) || defined(STM32L073xx) || defined(STM32L081xx) || defined(STM32L082xx) || defined(STM32L083xx) + /* Update WRP only if at least 1 selected sector */ + if (OB_WRP != 0x00000000U) + { + if ((OB_WRP & WRP_MASK_HIGH) != 0x00000000U) + { + if (NewState != OB_WRPSTATE_DISABLE) + { + WRP_Data = (uint16_t)((((OB_WRP & WRP_MASK_HIGH) >> 16U | OB->WRP23))); + OB->WRP23 = (uint32_t)(~(WRP_Data) << 16U) | (WRP_Data); + } + else + { + WRP_Data = (uint16_t)((((~OB_WRP & WRP_MASK_HIGH) >> 16U & OB->WRP23))); + OB->WRP23 = (uint32_t)((~WRP_Data) << 16U) | (WRP_Data); + } + } + } + + OB_WRP = Sector2; + /* Update WRP only if at least 1 selected sector */ + if (OB_WRP != 0x00000000U) + { + if ((OB_WRP & WRP_MASK_LOW) != 0x00000000U) + { + if (NewState != OB_WRPSTATE_DISABLE) + { + WRP_Data = (uint16_t)(((OB_WRP & WRP_MASK_LOW) | OB->WRP45)); + OB->WRP45 =(uint32_t)(~(WRP_Data) << 16U) | (WRP_Data); + } + else + { + WRP_Data = (uint16_t)(~OB_WRP & (WRP_MASK_LOW & OB->WRP45)); + OB->WRP45 = (uint32_t)((~WRP_Data) << 16U) | (WRP_Data); + } + } + } +#endif /* STM32L071xx || STM32L072xx || STM32L073xx || STM32L081xx || STM32L082xx || STM32L083xx */ + } + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + /* Return the write protection operation Status */ + return status; +} + +/** + * @brief Programs the FLASH User Option Byte: IWDG_SW / RST_STOP / RST_STDBY. + * @param OB_IWDG Selects the WDG mode. + * This parameter can be one of the following values: + * @arg @ref OB_IWDG_SW Software WDG selected + * @arg @ref OB_IWDG_HW Hardware WDG selected + * @param OB_STOP Reset event when entering STOP mode. + * This parameter can be one of the following values: + * @arg @ref OB_STOP_NORST No reset generated when entering in STOP + * @arg @ref OB_STOP_RST Reset generated when entering in STOP + * @param OB_STDBY Reset event when entering Standby mode. + * This parameter can be one of the following values: + * @arg @ref OB_STDBY_NORST No reset generated when entering in STANDBY + * @arg @ref OB_STDBY_RST Reset generated when entering in STANDBY + * @retval HAL status + */ +static HAL_StatusTypeDef FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY) +{ + HAL_StatusTypeDef status = HAL_OK; + uint32_t tmp = 0, tmp1 = 0; + + /* Check the parameters */ + assert_param(IS_OB_IWDG_SOURCE(OB_IWDG)); + assert_param(IS_OB_STOP_SOURCE(OB_STOP)); + assert_param(IS_OB_STDBY_SOURCE(OB_STDBY)); + + /* Get the User Option byte register */ + tmp1 = OB->USER & ((~FLASH_OPTR_USER) >> 16U); + + /* Calculate the user option byte to write */ + tmp = (uint32_t)(((uint32_t)~((uint32_t)((uint32_t)(OB_IWDG) | (uint32_t)(OB_STOP) | (uint32_t)(OB_STDBY) | tmp1))) << 16U); + tmp |= ((uint32_t)(OB_IWDG) | ((uint32_t)OB_STOP) | (uint32_t)(OB_STDBY) | tmp1); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* Write the User Option Byte */ + OB->USER = tmp; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Return the Option Byte program Status */ + return status; +} + +#if defined(FLASH_OPTR_BFB2) +/** + * @brief Configures to boot from Bank1 or Bank2. + * @param OB_BOOT select the FLASH Bank to boot from. + * This parameter can be one of the following values: + * This parameter can be one of the following values: + * @arg @ref OB_BOOT_BANK1 BFB2 option bit reset + * @arg @ref OB_BOOT_BANK2 BFB2 option bit set + * @retval HAL status + */ +static HAL_StatusTypeDef FLASH_OB_BootConfig(uint8_t OB_BOOT) +{ + HAL_StatusTypeDef status = HAL_OK; + uint32_t tmp = 0U, tmp1 = 0U; + + /* Check the parameters */ + assert_param(IS_OB_BOOT_BANK(OB_BOOT)); + + /* Get the User Option byte register and BOR Level*/ + tmp1 = OB->USER & ((~FLASH_OPTR_BFB2) >> 16U); + + /* Calculate the option byte to write */ + tmp = (uint32_t)~(OB_BOOT | tmp1) << 16U; + tmp |= (OB_BOOT | tmp1); + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* Write the BOOT Option Byte */ + OB->USER = tmp; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* Return the Option Byte program Status */ + return status; +} + +#endif /* FLASH_OPTR_BFB2 */ + +/** + * @} + */ + +/** + * @} + */ + +/** @addtogroup FLASH + * @{ + */ + + +/** @addtogroup FLASH_Private_Functions + * @{ + */ + +/** + * @brief Erases a specified page in program memory. + * @param PageAddress The page address in program memory to be erased. + * @note A Page is erased in the Program memory only if the address to load + * is the start address of a page (multiple of @ref FLASH_PAGE_SIZE bytes). + * @retval None + */ +void FLASH_PageErase(uint32_t PageAddress) +{ + /* Clean the error context */ + pFlash.ErrorCode = HAL_FLASH_ERROR_NONE; + + /* Set the ERASE bit */ + SET_BIT(FLASH->PECR, FLASH_PECR_ERASE); + + /* Set PROG bit */ + SET_BIT(FLASH->PECR, FLASH_PECR_PROG); + + /* Write 00000000h to the first word of the program page to erase */ + *(__IO uint32_t *)(uint32_t)(PageAddress & ~(FLASH_PAGE_SIZE - 1)) = 0x00000000; +} + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_FLASH_MODULE_ENABLED */ +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c new file mode 100644 index 0000000..62b94c3 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c @@ -0,0 +1,539 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_flash_ramfunc.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief FLASH RAMFUNC driver. + * This file provides a Flash firmware functions which should be + * executed from internal SRAM + * + * @verbatim + + *** ARM Compiler *** + -------------------- + [..] RAM functions are defined using the toolchain options. + Functions that are be executed in RAM should reside in a separate + source module. Using the 'Options for File' dialog you can simply change + the 'Code / Const' area of a module to a memory space in physical RAM. + Available memory areas are declared in the 'Target' tab of the + Options for Target' dialog. + + *** ICCARM Compiler *** + ----------------------- + [..] RAM functions are defined using a specific toolchain keyword "__ramfunc". + + *** GNU Compiler *** + -------------------- + [..] RAM functions are defined using a specific toolchain attribute + "__attribute__((section(".RamFunc")))". + +@endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +#ifdef HAL_FLASH_MODULE_ENABLED + +/** @addtogroup FLASH + * @{ + */ +/** @addtogroup FLASH_Private_Variables + * @{ + */ +extern FLASH_ProcessTypeDef pFlash; +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup FLASH_RAMFUNC FLASH_RAMFUNC + * @brief FLASH functions executed from RAM + * @{ + */ + + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/** @defgroup FLASH_RAMFUNC_Private_Functions FLASH RAM Private Functions + * @{ + */ + +static __RAM_FUNC FLASHRAM_WaitForLastOperation(uint32_t Timeout); +static __RAM_FUNC FLASHRAM_SetErrorCode(void); + +/** + * @} + */ + +/* Private functions ---------------------------------------------------------*/ + +/** @defgroup FLASH_RAMFUNC_Exported_Functions FLASH RAM Exported Functions + * +@verbatim + =============================================================================== + ##### ramfunc functions ##### + =============================================================================== + [..] + This subsection provides a set of functions that should be executed from RAM + transfers. + +@endverbatim + * @{ + */ + +/** @defgroup FLASH_RAMFUNC_Exported_Functions_Group1 Peripheral features functions + * @{ + */ + +/** + * @brief Enable the power down mode during RUN mode. + * @note This function can be used only when the user code is running from Internal SRAM. + * @retval HAL status + */ +__RAM_FUNC HAL_FLASHEx_EnableRunPowerDown(void) +{ + /* Enable the Power Down in Run mode*/ + __HAL_FLASH_POWER_DOWN_ENABLE(); + + return HAL_OK; +} + +/** + * @brief Disable the power down mode during RUN mode. + * @note This function can be used only when the user code is running from Internal SRAM. + * @retval HAL status + */ +__RAM_FUNC HAL_FLASHEx_DisableRunPowerDown(void) +{ + /* Disable the Power Down in Run mode*/ + __HAL_FLASH_POWER_DOWN_DISABLE(); + + return HAL_OK; +} + +/** + * @} + */ + +/** @defgroup FLASH_RAMFUNC_Exported_Functions_Group2 Programming and erasing operation functions + * +@verbatim +@endverbatim + * @{ + */ + +#if defined(FLASH_PECR_PARALLBANK) +/** + * @brief Erases a specified 2 pages in program memory in parallel. + * @note This function can be used only for STM32L07xxx/STM32L08xxx devices. + * To correctly run this function, the @ref HAL_FLASH_Unlock() function + * must be called before. + * Call the @ref HAL_FLASH_Lock() to disable the flash memory access + * (recommended to protect the FLASH memory against possible unwanted operation). + * @param Page_Address1: The page address in program memory to be erased in + * the first Bank (BANK1). This parameter should be between FLASH_BASE + * and FLASH_BANK1_END. + * @param Page_Address2: The page address in program memory to be erased in + * the second Bank (BANK2). This parameter should be between FLASH_BANK2_BASE + * and FLASH_BANK2_END. + * @note A Page is erased in the Program memory only if the address to load + * is the start address of a page (multiple of @ref FLASH_PAGE_SIZE bytes). + * @retval HAL status + */ +__RAM_FUNC HAL_FLASHEx_EraseParallelPage(uint32_t Page_Address1, uint32_t Page_Address2) +{ + HAL_StatusTypeDef status = HAL_OK; + + /* Wait for last operation to be completed */ + status = FLASHRAM_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Proceed to erase the page */ + SET_BIT(FLASH->PECR, FLASH_PECR_PARALLBANK); + SET_BIT(FLASH->PECR, FLASH_PECR_ERASE); + SET_BIT(FLASH->PECR, FLASH_PECR_PROG); + + /* Write 00000000h to the first word of the first program page to erase */ + *(__IO uint32_t *)Page_Address1 = 0x00000000U; + /* Write 00000000h to the first word of the second program page to erase */ + *(__IO uint32_t *)Page_Address2 = 0x00000000U; + + /* Wait for last operation to be completed */ + status = FLASHRAM_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + /* If the erase operation is completed, disable the ERASE, PROG and PARALLBANK bits */ + CLEAR_BIT(FLASH->PECR, FLASH_PECR_PROG); + CLEAR_BIT(FLASH->PECR, FLASH_PECR_ERASE); + CLEAR_BIT(FLASH->PECR, FLASH_PECR_PARALLBANK); + } + /* Return the Erase Status */ + return status; +} + +/** + * @brief Program 2 half pages in program memory in parallel (half page size is 16 Words). + * @note This function can be used only for STM32L07xxx/STM32L08xxx devices. + * @param Address1: specifies the first address to be written in the first bank + * (BANK1). This parameter should be between FLASH_BASE and (FLASH_BANK1_END - FLASH_PAGE_SIZE). + * @param pBuffer1: pointer to the buffer containing the data to be written + * to the first half page in the first bank. + * @param Address2: specifies the second address to be written in the second bank + * (BANK2). This parameter should be between FLASH_BANK2_BASE and (FLASH_BANK2_END - FLASH_PAGE_SIZE). + * @param pBuffer2: pointer to the buffer containing the data to be written + * to the second half page in the second bank. + * @note To correctly run this function, the @ref HAL_FLASH_Unlock() function + * must be called before. + * Call the @ref HAL_FLASH_Lock() to disable the flash memory access + * (recommended to protect the FLASH memory against possible unwanted operation). + * @note Half page write is possible only from SRAM. + * @note A half page is written to the program memory only if the first + * address to load is the start address of a half page (multiple of 64 + * bytes) and the 15 remaining words to load are in the same half page. + * @note During the Program memory half page write all read operations are + * forbidden (this includes DMA read operations and debugger read + * operations such as breakpoints, periodic updates, etc.). + * @note If a PGAERR is set during a Program memory half page write, the + * complete write operation is aborted. Software should then reset the + * FPRG and PROG/DATA bits and restart the write operation from the + * beginning. + * @retval HAL status + */ +__RAM_FUNC HAL_FLASHEx_ProgramParallelHalfPage(uint32_t Address1, uint32_t* pBuffer1, uint32_t Address2, uint32_t* pBuffer2) +{ + uint32_t count = 0U; + HAL_StatusTypeDef status = HAL_OK; + + /* Wait for last operation to be completed */ + status = FLASHRAM_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Proceed to program the new half page */ + SET_BIT(FLASH->PECR, FLASH_PECR_PARALLBANK); + SET_BIT(FLASH->PECR, FLASH_PECR_FPRG); + SET_BIT(FLASH->PECR, FLASH_PECR_PROG); + + /* Wait for last operation to be completed */ + status = FLASHRAM_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + if(status == HAL_OK) + { + /* Disable all IRQs */ + __disable_irq(); + + /* Write the first half page directly with 16 different words */ + while(count < 16U) + { + /* Address1 doesn't need to be increased */ + *(__IO uint32_t*) Address1 = *pBuffer1; + pBuffer1++; + count ++; + } + + /* Write the second half page directly with 16 different words */ + count = 0U; + while(count < 16U) + { + /* Address2 doesn't need to be increased */ + *(__IO uint32_t*) Address2 = *pBuffer2; + pBuffer2++; + count ++; + } + + /* Enable IRQs */ + __enable_irq(); + + /* Wait for last operation to be completed */ + status = FLASHRAM_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + } + + /* if the write operation is completed, disable the PROG, FPRG and PARALLBANK bits */ + CLEAR_BIT(FLASH->PECR, FLASH_PECR_PROG); + CLEAR_BIT(FLASH->PECR, FLASH_PECR_FPRG); + CLEAR_BIT(FLASH->PECR, FLASH_PECR_PARALLBANK); + } + + /* Return the Write Status */ + return status; +} +#endif /* FLASH_PECR_PARALLBANK */ + +/** + * @brief Program a half page in program memory. + * @param Address: specifies the address to be written. + * @param pBuffer: pointer to the buffer containing the data to be written to + * the half page. + * @note To correctly run this function, the @ref HAL_FLASH_Unlock() function + * must be called before. + * Call the @ref HAL_FLASH_Lock() to disable the flash memory access + * (recommended to protect the FLASH memory against possible unwanted operation) + * @note Half page write is possible only from SRAM. + * @note A half page is written to the program memory only if the first + * address to load is the start address of a half page (multiple of 64 + * bytes) and the 15 remaining words to load are in the same half page. + * @note During the Program memory half page write all read operations are + * forbidden (this includes DMA read operations and debugger read + * operations such as breakpoints, periodic updates, etc.). + * @note If a PGAERR is set during a Program memory half page write, the + * complete write operation is aborted. Software should then reset the + * FPRG and PROG/DATA bits and restart the write operation from the + * beginning. + * @retval HAL status + */ +__RAM_FUNC HAL_FLASHEx_HalfPageProgram(uint32_t Address, uint32_t* pBuffer) +{ + uint32_t count = 0U; + HAL_StatusTypeDef status = HAL_OK; + + /* Wait for last operation to be completed */ + status = FLASHRAM_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + if(status == HAL_OK) + { + /* Proceed to program the new half page */ + SET_BIT(FLASH->PECR, FLASH_PECR_FPRG); + SET_BIT(FLASH->PECR, FLASH_PECR_PROG); + + /* Disable all IRQs */ + __disable_irq(); + + /* Write one half page directly with 16 different words */ + while(count < 16U) + { + /* Address doesn't need to be increased */ + *(__IO uint32_t*) Address = *pBuffer; + pBuffer++; + count ++; + } + + /* Enable IRQs */ + __enable_irq(); + + /* Wait for last operation to be completed */ + status = FLASHRAM_WaitForLastOperation(FLASH_TIMEOUT_VALUE); + + /* If the write operation is completed, disable the PROG and FPRG bits */ + CLEAR_BIT(FLASH->PECR, FLASH_PECR_PROG); + CLEAR_BIT(FLASH->PECR, FLASH_PECR_FPRG); + } + + /* Return the Write Status */ + return status; +} + +/** + * @} + */ + +/** @defgroup FLASH_RAMFUNC_Exported_Functions_Group3 Peripheral errors functions + * @brief Peripheral errors functions + * +@verbatim + =============================================================================== + ##### Peripheral errors functions ##### + =============================================================================== + [..] + This subsection permit to get in run-time errors of the FLASH peripheral. + +@endverbatim + * @{ + */ + +/** + * @brief Get the specific FLASH errors flag. + * @param Error pointer is the error value. It can be a mixed of: + * @arg @ref HAL_FLASH_ERROR_RD FLASH Read Protection error flag (PCROP) + * @arg @ref HAL_FLASH_ERROR_SIZE FLASH Programming Parallelism error flag + * @arg @ref HAL_FLASH_ERROR_PGA FLASH Programming Alignment error flag + * @arg @ref HAL_FLASH_ERROR_WRP FLASH Write protected error flag + * @arg @ref HAL_FLASH_ERROR_OPTV FLASH Option valid error flag + * @arg @ref HAL_FLASH_ERROR_FWWERR FLASH Write or Erase operation aborted + * @arg @ref HAL_FLASH_ERROR_NOTZERO FLASH Write operation is done in a not-erased region + * @retval HAL Status + */ +__RAM_FUNC HAL_FLASHEx_GetError(uint32_t * Error) +{ + *Error = pFlash.ErrorCode; + return HAL_OK; +} + +/** + * @} + */ + +/** + * @} + */ + +/** @addtogroup FLASH_RAMFUNC_Private_Functions + * @{ + */ + +/** + * @brief Set the specific FLASH error flag. + * @retval HAL Status + */ +static __RAM_FUNC FLASHRAM_SetErrorCode(void) +{ + uint32_t flags = 0; + + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_WRPERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_WRP; + flags |= FLASH_FLAG_WRPERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_PGAERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_PGA; + flags |= FLASH_FLAG_PGAERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_SIZERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_SIZE; + flags |= FLASH_FLAG_SIZERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_OPTVERR)) + { + /* WARNING : On the first cut of STM32L031xx and STM32L041xx devices, + * (RefID = 0x1000) the FLASH_FLAG_OPTVERR bit was not behaving + * as expected. If the user run an application using the first + * cut of the STM32L031xx device or the first cut of the STM32L041xx + * device, this error should be ignored. The revId of the device + * can be retrieved via the HAL_GetREVID() function. + * + */ + pFlash.ErrorCode |= HAL_FLASH_ERROR_OPTV; + flags |= FLASH_FLAG_OPTVERR; + } + + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_RDERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_RD; + flags |= FLASH_FLAG_RDERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_FWWERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_FWWERR; + flags |= HAL_FLASH_ERROR_FWWERR; + } + if(__HAL_FLASH_GET_FLAG(FLASH_FLAG_NOTZEROERR)) + { + pFlash.ErrorCode |= HAL_FLASH_ERROR_NOTZERO; + flags |= FLASH_FLAG_NOTZEROERR; + } + + /* Clear FLASH error pending bits */ + __HAL_FLASH_CLEAR_FLAG(flags); + + return HAL_OK; +} + +/** + * @brief Wait for a FLASH operation to complete. + * @param Timeout: maximum flash operationtimeout + * @retval HAL status + */ +static __RAM_FUNC FLASHRAM_WaitForLastOperation(uint32_t Timeout) +{ + /* Wait for the FLASH operation to complete by polling on BUSY flag to be reset. + Even if the FLASH operation fails, the BUSY flag will be reset and an error + flag will be set */ + + while(__HAL_FLASH_GET_FLAG(FLASH_FLAG_BSY) && (Timeout != 0x00U)) + { + Timeout--; + } + + if(Timeout == 0x00U) + { + return HAL_TIMEOUT; + } + + /* Check FLASH End of Operation flag */ + if (__HAL_FLASH_GET_FLAG(FLASH_FLAG_EOP)) + { + /* Clear FLASH End of Operation pending bit */ + __HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_EOP); + } + + if( __HAL_FLASH_GET_FLAG(FLASH_FLAG_WRPERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_PGAERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_SIZERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_OPTVERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_RDERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_FWWERR) || + __HAL_FLASH_GET_FLAG(FLASH_FLAG_NOTZEROERR) ) + { + /*Save the error code*/ + + /* WARNING : On the first cut of STM32L031xx and STM32L041xx devices, + * (RefID = 0x1000) the FLASH_FLAG_OPTVERR bit was not behaving + * as expected. If the user run an application using the first + * cut of the STM32L031xx device or the first cut of the STM32L041xx + * device, this error should be ignored. The revId of the device + * can be retrieved via the HAL_GetREVID() function. + * + */ + FLASHRAM_SetErrorCode(); + return HAL_ERROR; + } + + /* There is no error flag set */ + return HAL_OK; +} + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_FLASH_MODULE_ENABLED */ +/** + * @} + */ + + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c new file mode 100644 index 0000000..e83b6ae --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c @@ -0,0 +1,547 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_gpio.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief GPIO HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the General Purpose Input/Output (GPIO) peripheral: + * + Initialization and de-initialization functions + * + IO operation functions + * + @verbatim + ============================================================================== + ##### GPIO Peripheral features ##### + ============================================================================== + [..] + (+) Each port bit of the general-purpose I/O (GPIO) ports can be individually + configured by software in several modes: + (++) Input mode + (++) Analog mode + (++) Output mode + (++) Alternate function mode + (++) External interrupt/event lines + + (+) During and just after reset, the alternate functions and external interrupt + lines are not active and the I/O ports are configured in input floating mode. + + (+) All GPIO pins have weak internal pull-up and pull-down resistors, which can be + activated or not. + + (+) In Output or Alternate mode, each IO can be configured on open-drain or push-pull + type and the IO speed can be selected depending on the VDD value. + + (+) The microcontroller IO pins are connected to onboard peripherals/modules through a + multiplexer that allows only one peripheral alternate function (AF) connected + to an IO pin at a time. In this way, there can be no conflict between peripherals + sharing the same IO pin. + + (+) All ports have external interrupt/event capability. To use external interrupt + lines, the port must be configured in input mode. All available GPIO pins are + connected to the 16 external interrupt/event lines from EXTI0 to EXTI15. + + (+) The external interrupt/event controller consists of up to 28 edge detectors + (16 lines are connected to GPIO) for generating event/interrupt requests (each + input line can be independently configured to select the type (interrupt or event) + and the corresponding trigger event (rising or falling or both). Each line can + also be masked independently. + + ##### How to use this driver ##### + ============================================================================== + [..] + (#) Enable the GPIO IOPORT clock using the following function: __HAL_RCC_GPIOx_CLK_ENABLE(). + + (#) Configure the GPIO pin(s) using HAL_GPIO_Init(). + (++) Configure the IO mode using "Mode" member from GPIO_InitTypeDef structure + (++) Activate Pull-up, Pull-down resistor using "Pull" member from GPIO_InitTypeDef + structure. + (++) In case of Output or alternate function mode selection: the speed is + configured through "Speed" member from GPIO_InitTypeDef structure. + (++) In alternate mode is selection, the alternate function connected to the IO + is configured through "Alternate" member from GPIO_InitTypeDef structure. + (++) Analog mode is required when a pin is to be used as ADC channel + or DAC output. + (++) In case of external interrupt/event selection the "Mode" member from + GPIO_InitTypeDef structure select the type (interrupt or event) and + the corresponding trigger event (rising or falling or both). + + (#) In case of external interrupt/event mode selection, configure NVIC IRQ priority + mapped to the EXTI line using HAL_NVIC_SetPriority() and enable it using + HAL_NVIC_EnableIRQ(). + + (#) HAL_GPIO_DeInit allows to set register values to their reset value. This function + is also to be used when unconfiguring pin which was used as an external interrupt + or in event mode. That is the only way to reset the corresponding bit in + EXTI & SYSCFG registers. + + (#) To get the level of a pin configured in input mode use HAL_GPIO_ReadPin(). + + (#) To set/reset the level of a pin configured in output mode use + HAL_GPIO_WritePin()/HAL_GPIO_TogglePin(). + + (#) To lock pin configuration until next reset use HAL_GPIO_LockPin(). + + (#) During and just after reset, the alternate functions are not + active and the GPIO pins are configured in input floating mode (except JTAG + pins). + + (#) The LSE oscillator pins OSC32_IN and OSC32_OUT can be used as general purpose + (PC14 and PC15, respectively) when the LSE oscillator is off. The LSE has + priority over the GPIO function. + + (#) The HSE oscillator pins OSC_IN/OSC_OUT can be used as + general purpose PH0 and PH1, respectively, when the HSE oscillator is off. + The HSE has priority over the GPIO function. + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +#ifdef HAL_GPIO_MODULE_ENABLED + +/** @addtogroup GPIO + * @brief GPIO HAL module driver + * @{ + */ + +/** @addtogroup GPIO_Private + * @{ + */ +/* Private define ------------------------------------------------------------*/ + + +#define GPIO_MODE ((uint32_t)0x00000003U) +#define EXTI_MODE ((uint32_t)0x10000000U) +#define GPIO_MODE_IT ((uint32_t)0x00010000U) +#define GPIO_MODE_EVT ((uint32_t)0x00020000U) +#define RISING_EDGE ((uint32_t)0x00100000U) +#define FALLING_EDGE ((uint32_t)0x00200000U) +#define GPIO_OUTPUT_TYPE ((uint32_t)0x00000010U) + +#define GPIO_NUMBER ((uint32_t)16U) + +/** + * @} + */ +/** @addtogroup GPIO_Exported_Functions + * @{ + */ + +/** @addtogroup GPIO_Exported_Functions_Group1 + * @brief Initialization and de-initialization functions + * +@verbatim + =============================================================================== + ##### Initialization and de-initialization functions ##### + =============================================================================== + +@endverbatim + * @{ + */ + +/** + * @brief Initializes the GPIOx peripheral according to the specified parameters in the GPIO_Init. + * @param GPIOx: where x can be (A..E and H) to select the GPIO peripheral for STM32L0XX family devices. + * Note that GPIOE is not available on all devices. + * @param GPIO_Init: pointer to a GPIO_InitTypeDef structure that contains + * the configuration information for the specified GPIO peripheral. + * @retval None + */ +void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init) +{ + uint32_t position = 0x00U; + uint32_t iocurrent = 0x00U; + uint32_t temp = 0x00U; + + /* Check the parameters */ + assert_param(IS_GPIO_MODE(GPIO_Init->Mode)); + assert_param(IS_GPIO_PULL(GPIO_Init->Pull)); + assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,(GPIO_Init->Pin))); + + /* Configure the port pins */ + while (((GPIO_Init->Pin) >> position) != 0) + { + /* Get the IO position */ + iocurrent = (GPIO_Init->Pin) & (1U << position); + + if(iocurrent) + { + /*--------------------- GPIO Mode Configuration ------------------------*/ + /* In case of Alternate function mode selection */ + if((GPIO_Init->Mode == GPIO_MODE_AF_PP) || (GPIO_Init->Mode == GPIO_MODE_AF_OD)) + { + /* Check if the Alternate function is compliant with the GPIO in use */ + assert_param(IS_GPIO_AF_AVAILABLE(GPIOx,(GPIO_Init->Alternate))); + /* Configure Alternate function mapped with the current IO */ + temp = GPIOx->AFR[position >> 3U]; + temp &= ~((uint32_t)0xFU << ((uint32_t)(position & (uint32_t)0x07U) * 4U)) ; + temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & (uint32_t)0x07U) * 4U)) ; + GPIOx->AFR[position >> 3U] = temp; + } + + /* In case of Output or Alternate function mode selection */ + if((GPIO_Init->Mode == GPIO_MODE_OUTPUT_PP) || (GPIO_Init->Mode == GPIO_MODE_AF_PP) || + (GPIO_Init->Mode == GPIO_MODE_OUTPUT_OD) || (GPIO_Init->Mode == GPIO_MODE_AF_OD)) + { + /* Check the Speed parameter */ + assert_param(IS_GPIO_SPEED(GPIO_Init->Speed)); + /* Configure the IO Speed */ + temp = GPIOx->OSPEEDR; + temp &= ~(GPIO_OSPEEDER_OSPEED0 << (position * 2U)); + temp |= (GPIO_Init->Speed << (position * 2U)); + GPIOx->OSPEEDR = temp; + + /* Configure the IO Output Type */ + temp= GPIOx->OTYPER; + temp &= ~(GPIO_OTYPER_OT_0 << position) ; + temp |= (((GPIO_Init->Mode & GPIO_OUTPUT_TYPE) >> 4U) << position); + GPIOx->OTYPER = temp; + } + + /* Configure IO Direction mode (Input, Output, Alternate or Analog) */ + temp = GPIOx->MODER; + temp &= ~(GPIO_MODER_MODE0 << (position * 2U)); + temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2U)); + GPIOx->MODER = temp; + + /* Activate the Pull-up or Pull down resistor for the current IO */ + temp = GPIOx->PUPDR; + temp &= ~(GPIO_PUPDR_PUPD0 << (position * 2U)); + temp |= ((GPIO_Init->Pull) << (position * 2U)); + GPIOx->PUPDR = temp; + + /*--------------------- EXTI Mode Configuration ------------------------*/ + /* Configure the External Interrupt or event for the current IO */ + if((GPIO_Init->Mode & EXTI_MODE) == EXTI_MODE) + { + /* Enable SYSCFG Clock */ + __HAL_RCC_SYSCFG_CLK_ENABLE(); + + temp = SYSCFG->EXTICR[position >> 2U]; + CLEAR_BIT(temp, ((uint32_t)0x0FU) << (4U * (position & 0x03U))); + SET_BIT(temp, (GPIO_GET_INDEX(GPIOx)) << (4 * (position & 0x03U))); + SYSCFG->EXTICR[position >> 2U] = temp; + + /* Clear EXTI line configuration */ + temp = EXTI->IMR; + temp &= ~((uint32_t)iocurrent); + if((GPIO_Init->Mode & GPIO_MODE_IT) == GPIO_MODE_IT) + { + temp |= iocurrent; + } + EXTI->IMR = temp; + + temp = EXTI->EMR; + temp &= ~((uint32_t)iocurrent); + if((GPIO_Init->Mode & GPIO_MODE_EVT) == GPIO_MODE_EVT) + { + temp |= iocurrent; + } + EXTI->EMR = temp; + + /* Clear Rising Falling edge configuration */ + temp = EXTI->RTSR; + temp &= ~((uint32_t)iocurrent); + if((GPIO_Init->Mode & RISING_EDGE) == RISING_EDGE) + { + temp |= iocurrent; + } + EXTI->RTSR = temp; + + temp = EXTI->FTSR; + temp &= ~((uint32_t)iocurrent); + if((GPIO_Init->Mode & FALLING_EDGE) == FALLING_EDGE) + { + temp |= iocurrent; + } + EXTI->FTSR = temp; + } + } + position++; + } +} + +/** + * @brief De-initializes the GPIOx peripheral registers to their default reset values. + * @param GPIOx: where x can be (A..E and H) to select the GPIO peripheral for STM32L0XX family devices. + * Note that GPIOE is not available on all devices. + * @param GPIO_Pin: specifies the port bit to be written. + * This parameter can be one of GPIO_PIN_x where x can be (0..15). + * All port bits are not necessarily available on all GPIOs. + * @retval None + */ +void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin) +{ + uint32_t position = 0x00U; + uint32_t iocurrent = 0x00U; + uint32_t tmp = 0x00U; + + /* Check the parameters */ + assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); + + /* Configure the port pins */ + while ((GPIO_Pin >> position) != 0) + { + /* Get the IO position */ + iocurrent = (GPIO_Pin) & (1U << position); + + if(iocurrent) + { + /*------------------------- GPIO Mode Configuration --------------------*/ + /* Configure IO Direction in Input Floting Mode */ + GPIOx->MODER |= (GPIO_MODER_MODE0 << (position * 2U)); + + /* Configure the default Alternate Function in current IO */ + GPIOx->AFR[position >> 3U] &= ~((uint32_t)0xFU << ((uint32_t)(position & (uint32_t)0x07U) * 4U)) ; + + /* Configure the default value for IO Speed */ + GPIOx->OSPEEDR &= ~(GPIO_OSPEEDER_OSPEED0 << (position * 2U)); + + /* Configure the default value IO Output Type */ + GPIOx->OTYPER &= ~(GPIO_OTYPER_OT_0 << position) ; + + /* Deactivate the Pull-up oand Pull-down resistor for the current IO */ + GPIOx->PUPDR &= ~(GPIO_PUPDR_PUPD0 << (position * 2U)); + + /*------------------------- EXTI Mode Configuration --------------------*/ + /* Clear the External Interrupt or Event for the current IO */ + + tmp = SYSCFG->EXTICR[position >> 2U]; + tmp &= (((uint32_t)0x0FU) << (4U * (position & 0x03U))); + if(tmp == (GPIO_GET_INDEX(GPIOx) << (4U * (position & 0x03U)))) + { + tmp = ((uint32_t)0x0FU) << (4U * (position & 0x03U)); + SYSCFG->EXTICR[position >> 2U] &= ~tmp; + + /* Clear EXTI line configuration */ + EXTI->IMR &= ~((uint32_t)iocurrent); + EXTI->EMR &= ~((uint32_t)iocurrent); + + /* Clear Rising Falling edge configuration */ + EXTI->RTSR &= ~((uint32_t)iocurrent); + EXTI->FTSR &= ~((uint32_t)iocurrent); + } + } + position++; + } +} + +/** + * @} + */ + +/** @addtogroup GPIO_Exported_Functions_Group2 + * @brief GPIO Read and Write + * +@verbatim + =============================================================================== + ##### IO operation functions ##### + =============================================================================== + +@endverbatim + * @{ + */ + +/** + * @brief Reads the specified input port pin. + * @param GPIOx: where x can be (A..E and H) to select the GPIO peripheral for STM32L0xx family devices. + * Note that GPIOE is not available on all devices. + * @param GPIO_Pin: specifies the port bit to read. + * This parameter can be GPIO_PIN_x where x can be (0..15). + * All port bits are not necessarily available on all GPIOs. + * @retval The input port pin value. + */ +GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) +{ + GPIO_PinState bitstatus; + + /* Check the parameters */ + assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); + + if((GPIOx->IDR & GPIO_Pin) != (uint32_t)GPIO_PIN_RESET) + { + bitstatus = GPIO_PIN_SET; + } + else + { + bitstatus = GPIO_PIN_RESET; + } + return bitstatus; +} + +/** + * @brief Sets or clears the selected data port bit. + * + * @note This function uses GPIOx_BSRR register to allow atomic read/modify + * accesses. In this way, there is no risk of an IRQ occurring between + * the read and the modify access. + * + * @param GPIOx: where x can be (A..E and H) to select the GPIO peripheral for STM32L0xx family devices. + * Note that GPIOE is not available on all devices. + * @param GPIO_Pin: specifies the port bit to be written. + * This parameter can be one of GPIO_PIN_x where x can be (0..15). + * All port bits are not necessarily available on all GPIOs. + * @param PinState: specifies the value to be written to the selected bit. + * This parameter can be one of the GPIO_PinState enum values: + * GPIO_PIN_RESET: to clear the port pin + * GPIO_PIN_SET: to set the port pin + * @retval None + */ +void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState) +{ + /* Check the parameters */ + assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); + assert_param(IS_GPIO_PIN_ACTION(PinState)); + + if(PinState != GPIO_PIN_RESET) + { + GPIOx->BSRR = GPIO_Pin; + } + else + { + GPIOx->BRR = GPIO_Pin ; + } +} + +/** + * @brief Toggles the specified GPIO pins. + * @param GPIOx: Where x can be (A..E and H) to select the GPIO peripheral for STM32L0xx family devices. + * Note that GPIOE is not available on all devices. + * All port bits are not necessarily available on all GPIOs. + * @param GPIO_Pin: Specifies the pins to be toggled. + * @retval None + */ +void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) +{ + /* Check the parameters */ + assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); + + GPIOx->ODR ^= GPIO_Pin; +} + +/** +* @brief Locks GPIO Pins configuration registers. +* @note The locked registers are GPIOx_MODER, GPIOx_OTYPER, GPIOx_OSPEEDR, +* GPIOx_PUPDR, GPIOx_AFRL and GPIOx_AFRH. +* @note The configuration of the locked GPIO pins can no longer be modified +* until the next reset. +* @param GPIOx: where x can be (A..E and H) to select the GPIO peripheral for STM32L0xx family. +* Note that GPIOE is not available on all devices. +* @param GPIO_Pin: specifies the port bit to be locked. +* This parameter can be any combination of GPIO_Pin_x where x can be (0..15). +* All port bits are not necessarily available on all GPIOs. +* @retval None +*/ +HAL_StatusTypeDef HAL_GPIO_LockPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) +{ + __IO uint32_t tmp = GPIO_LCKR_LCKK; + + /* Check the parameters */ + assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); + + /* Apply lock key write sequence */ + tmp |= GPIO_Pin; + /* Set LCKx bit(s): LCKK='1' + LCK[15-0] */ + GPIOx->LCKR = tmp; + /* Reset LCKx bit(s): LCKK='0' + LCK[15-0] */ + GPIOx->LCKR = GPIO_Pin; + /* Set LCKx bit(s): LCKK='1' + LCK[15-0] */ + GPIOx->LCKR = tmp; + /* Read LCKK bit*/ + tmp = GPIOx->LCKR; + + if((GPIOx->LCKR & GPIO_LCKR_LCKK) != RESET) + { + return HAL_OK; + } + else + { + return HAL_ERROR; + } +} +/** + * @brief This function handles EXTI interrupt request. + * @param GPIO_Pin: Specifies the pins connected to the EXTI line. + * @retval None + */ +void HAL_GPIO_EXTI_IRQHandler(uint16_t GPIO_Pin) +{ + /* EXTI line interrupt detected */ + if(__HAL_GPIO_EXTI_GET_IT(GPIO_Pin) != RESET) + { + __HAL_GPIO_EXTI_CLEAR_IT(GPIO_Pin); + HAL_GPIO_EXTI_Callback(GPIO_Pin); + } +} + +/** + * @brief EXTI line detection callbacks. + * @param GPIO_Pin: Specifies the pins connected to the EXTI line. + * @retval None + */ +__weak void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(GPIO_Pin); + + /* NOTE: This function Should not be modified, when the callback is needed, + the HAL_GPIO_EXTI_Callback could be implemented in the user file + */ +} + +/** + * @} + */ + + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_GPIO_MODULE_ENABLED */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c new file mode 100644 index 0000000..67c68b6 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c @@ -0,0 +1,4867 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_i2c.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief I2C HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the Inter Integrated Circuit (I2C) peripheral: + * + Initialization and de-initialization functions + * + IO operation functions + * + Peripheral State and Errors functions + * + @verbatim + ============================================================================== + ##### How to use this driver ##### + ============================================================================== + [..] + The I2C HAL driver can be used as follows: + + (#) Declare a I2C_HandleTypeDef handle structure, for example: + I2C_HandleTypeDef hi2c; + + (#)Initialize the I2C low level resources by implementing the HAL_I2C_MspInit() API: + (##) Enable the I2Cx interface clock + (##) I2C pins configuration + (+++) Enable the clock for the I2C GPIOs + (+++) Configure I2C pins as alternate function open-drain + (##) NVIC configuration if you need to use interrupt process + (+++) Configure the I2Cx interrupt priority + (+++) Enable the NVIC I2C IRQ Channel + (##) DMA Configuration if you need to use DMA process + (+++) Declare a DMA_HandleTypeDef handle structure for the transmit or receive channel + (+++) Enable the DMAx interface clock using + (+++) Configure the DMA handle parameters + (+++) Configure the DMA Tx or Rx channel + (+++) Associate the initialized DMA handle to the hi2c DMA Tx or Rx handle + (+++) Configure the priority and enable the NVIC for the transfer complete interrupt on + the DMA Tx or Rx channel + + (#) Configure the Communication Clock Timing, Own Address1, Master Addressing mode, Dual Addressing mode, + Own Address2, Own Address2 Mask, General call and Nostretch mode in the hi2c Init structure. + + (#) Initialize the I2C registers by calling the HAL_I2C_Init(), configures also the low level Hardware + (GPIO, CLOCK, NVIC...etc) by calling the customized HAL_I2C_MspInit(&hi2c) API. + + (#) To check if target device is ready for communication, use the function HAL_I2C_IsDeviceReady() + + (#) For I2C IO and IO MEM operations, three operation modes are available within this driver : + + *** Polling mode IO operation *** + ================================= + [..] + (+) Transmit in master mode an amount of data in blocking mode using HAL_I2C_Master_Transmit() + (+) Receive in master mode an amount of data in blocking mode using HAL_I2C_Master_Receive() + (+) Transmit in slave mode an amount of data in blocking mode using HAL_I2C_Slave_Transmit() + (+) Receive in slave mode an amount of data in blocking mode using HAL_I2C_Slave_Receive() + + *** Polling mode IO MEM operation *** + ===================================== + [..] + (+) Write an amount of data in blocking mode to a specific memory address using HAL_I2C_Mem_Write() + (+) Read an amount of data in blocking mode from a specific memory address using HAL_I2C_Mem_Read() + + + *** Interrupt mode IO operation *** + =================================== + [..] + (+) Transmit in master mode an amount of data in non-blocking mode using HAL_I2C_Master_Transmit_IT() + (+) At transmission end of transfer, HAL_I2C_MasterTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MasterTxCpltCallback() + (+) Receive in master mode an amount of data in non-blocking mode using HAL_I2C_Master_Receive_IT() + (+) At reception end of transfer, HAL_I2C_MasterRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MasterRxCpltCallback() + (+) Transmit in slave mode an amount of data in non-blocking mode using HAL_I2C_Slave_Transmit_IT() + (+) At transmission end of transfer, HAL_I2C_SlaveTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_SlaveTxCpltCallback() + (+) Receive in slave mode an amount of data in non-blocking mode using HAL_I2C_Slave_Receive_IT() + (+) At reception end of transfer, HAL_I2C_SlaveRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_SlaveRxCpltCallback() + (+) In case of transfer Error, HAL_I2C_ErrorCallback() function is executed and user can + add his own code by customization of function pointer HAL_I2C_ErrorCallback() + (+) Abort a master I2C process communication with Interrupt using HAL_I2C_Master_Abort_IT() + (+) End of abort process, HAL_I2C_AbortCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_AbortCpltCallback() + (+) Discard a slave I2C process communication using __HAL_I2C_GENERATE_NACK() macro. + This action will inform Master to generate a Stop condition to discard the communication. + + + *** Interrupt mode IO sequential operation *** + ============================================== + [..] + (@) These interfaces allow to manage a sequential transfer with a repeated start condition + when a direction change during transfer + [..] + (+) A specific option field manage the different steps of a sequential transfer + (+) Option field values are defined through @ref I2C_XFEROPTIONS and are listed below: + (++) I2C_FIRST_AND_LAST_FRAME: No sequential usage, functionnal is same as associated interfaces in no sequential mode + (++) I2C_FIRST_FRAME: Sequential usage, this option allow to manage a sequence with start condition, address + and data to transfer without a final stop condition + (++) I2C_FIRST_AND_NEXT_FRAME: Sequential usage (Master only), this option allow to manage a sequence with start condition, address + and data to transfer without a final stop condition, an then permit a call the same master sequential interface + several times (like HAL_I2C_Master_Sequential_Transmit_IT() then HAL_I2C_Master_Sequential_Transmit_IT()) + (++) I2C_NEXT_FRAME: Sequential usage, this option allow to manage a sequence with a restart condition, address + and with new data to transfer if the direction change or manage only the new data to transfer + if no direction change and without a final stop condition in both cases + (++) I2C_LAST_FRAME: Sequential usage, this option allow to manage a sequance with a restart condition, address + and with new data to transfer if the direction change or manage only the new data to transfer + if no direction change and with a final stop condition in both cases + + (+) Differents sequential I2C interfaces are listed below: + (++) Sequential transmit in master I2C mode an amount of data in non-blocking mode using HAL_I2C_Master_Sequential_Transmit_IT() + (+++) At transmission end of current frame transfer, HAL_I2C_MasterTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MasterTxCpltCallback() + (++) Sequential receive in master I2C mode an amount of data in non-blocking mode using HAL_I2C_Master_Sequential_Receive_IT() + (+++) At reception end of current frame transfer, HAL_I2C_MasterRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MasterRxCpltCallback() + (++) Abort a master I2C process communication with Interrupt using HAL_I2C_Master_Abort_IT() + (+++) End of abort process, HAL_I2C_AbortCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_AbortCpltCallback() + (++) Enable/disable the Address listen mode in slave I2C mode using HAL_I2C_EnableListen_IT() HAL_I2C_DisableListen_IT() + (+++) When address slave I2C match, HAL_I2C_AddrCallback() is executed and user can + add his own code to check the Address Match Code and the transmission direction request by master (Write/Read). + (+++) At Listen mode end HAL_I2C_ListenCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_ListenCpltCallback() + (++) Sequential transmit in slave I2C mode an amount of data in non-blocking mode using HAL_I2C_Slave_Sequential_Transmit_IT() + (+++) At transmission end of current frame transfer, HAL_I2C_SlaveTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_SlaveTxCpltCallback() + (++) Sequential receive in slave I2C mode an amount of data in non-blocking mode using HAL_I2C_Slave_Sequential_Receive_IT() + (+++) At reception end of current frame transfer, HAL_I2C_SlaveRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_SlaveRxCpltCallback() + (++) In case of transfer Error, HAL_I2C_ErrorCallback() function is executed and user can + add his own code by customization of function pointer HAL_I2C_ErrorCallback() + (++) Abort a master I2C process communication with Interrupt using HAL_I2C_Master_Abort_IT() + (++) End of abort process, HAL_I2C_AbortCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_AbortCpltCallback() + (++) Discard a slave I2C process communication using __HAL_I2C_GENERATE_NACK() macro. + This action will inform Master to generate a Stop condition to discard the communication. + + *** Interrupt mode IO MEM operation *** + ======================================= + [..] + (+) Write an amount of data in non-blocking mode with Interrupt to a specific memory address using + HAL_I2C_Mem_Write_IT() + (+) At Memory end of write transfer, HAL_I2C_MemTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MemTxCpltCallback() + (+) Read an amount of data in non-blocking mode with Interrupt from a specific memory address using + HAL_I2C_Mem_Read_IT() + (+) At Memory end of read transfer, HAL_I2C_MemRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MemRxCpltCallback() + (+) In case of transfer Error, HAL_I2C_ErrorCallback() function is executed and user can + add his own code by customization of function pointer HAL_I2C_ErrorCallback() + + *** DMA mode IO operation *** + ============================== + [..] + (+) Transmit in master mode an amount of data in non-blocking mode (DMA) using + HAL_I2C_Master_Transmit_DMA() + (+) At transmission end of transfer, HAL_I2C_MasterTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MasterTxCpltCallback() + (+) Receive in master mode an amount of data in non-blocking mode (DMA) using + HAL_I2C_Master_Receive_DMA() + (+) At reception end of transfer, HAL_I2C_MasterRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MasterRxCpltCallback() + (+) Transmit in slave mode an amount of data in non-blocking mode (DMA) using + HAL_I2C_Slave_Transmit_DMA() + (+) At transmission end of transfer, HAL_I2C_SlaveTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_SlaveTxCpltCallback() + (+) Receive in slave mode an amount of data in non-blocking mode (DMA) using + HAL_I2C_Slave_Receive_DMA() + (+) At reception end of transfer, HAL_I2C_SlaveRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_SlaveRxCpltCallback() + (+) In case of transfer Error, HAL_I2C_ErrorCallback() function is executed and user can + add his own code by customization of function pointer HAL_I2C_ErrorCallback() + (+) Abort a master I2C process communication with Interrupt using HAL_I2C_Master_Abort_IT() + (+) End of abort process, HAL_I2C_AbortCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_AbortCpltCallback() + (+) Discard a slave I2C process communication using __HAL_I2C_GENERATE_NACK() macro. + This action will inform Master to generate a Stop condition to discard the communication. + + *** DMA mode IO MEM operation *** + ================================= + [..] + (+) Write an amount of data in non-blocking mode with DMA to a specific memory address using + HAL_I2C_Mem_Write_DMA() + (+) At Memory end of write transfer, HAL_I2C_MemTxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MemTxCpltCallback() + (+) Read an amount of data in non-blocking mode with DMA from a specific memory address using + HAL_I2C_Mem_Read_DMA() + (+) At Memory end of read transfer, HAL_I2C_MemRxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_I2C_MemRxCpltCallback() + (+) In case of transfer Error, HAL_I2C_ErrorCallback() function is executed and user can + add his own code by customization of function pointer HAL_I2C_ErrorCallback() + + + *** I2C HAL driver macros list *** + ================================== + [..] + Below the list of most used macros in I2C HAL driver. + + (+) __HAL_I2C_ENABLE: Enable the I2C peripheral + (+) __HAL_I2C_DISABLE: Disable the I2C peripheral + (+) __HAL_I2C_GENERATE_NACK: Generate a Non-Acknowledge I2C peripheral in Slave mode + (+) __HAL_I2C_GET_FLAG: Check whether the specified I2C flag is set or not + (+) __HAL_I2C_CLEAR_FLAG: Clear the specified I2C pending flag + (+) __HAL_I2C_ENABLE_IT: Enable the specified I2C interrupt + (+) __HAL_I2C_DISABLE_IT: Disable the specified I2C interrupt + + [..] + (@) You can refer to the I2C HAL driver header file for more useful macros + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup I2C I2C + * @brief I2C HAL module driver + * @{ + */ + +#ifdef HAL_I2C_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ + +/** @defgroup I2C_Private_Define I2C Private Define + * @{ + */ +#define TIMING_CLEAR_MASK (0xF0FFFFFFU) /*!< I2C TIMING clear register Mask */ +#define I2C_TIMEOUT_ADDR (10000U) /*!< 10 s */ +#define I2C_TIMEOUT_BUSY (25U) /*!< 25 ms */ +#define I2C_TIMEOUT_DIR (25U) /*!< 25 ms */ +#define I2C_TIMEOUT_RXNE (25U) /*!< 25 ms */ +#define I2C_TIMEOUT_STOPF (25U) /*!< 25 ms */ +#define I2C_TIMEOUT_TC (25U) /*!< 25 ms */ +#define I2C_TIMEOUT_TCR (25U) /*!< 25 ms */ +#define I2C_TIMEOUT_TXIS (25U) /*!< 25 ms */ +#define I2C_TIMEOUT_FLAG (25U) /*!< 25 ms */ + +#define MAX_NBYTE_SIZE 255U +#define SlaveAddr_SHIFT 7U +#define SlaveAddr_MSK 0x06U + +/* Private define for @ref PreviousState usage */ +#define I2C_STATE_MSK ((uint32_t)((HAL_I2C_STATE_BUSY_TX | HAL_I2C_STATE_BUSY_RX) & (~((uint32_t)HAL_I2C_STATE_READY)))) /*!< Mask State define, keep only RX and TX bits */ +#define I2C_STATE_NONE ((uint32_t)(HAL_I2C_MODE_NONE)) /*!< Default Value */ +#define I2C_STATE_MASTER_BUSY_TX ((uint32_t)((HAL_I2C_STATE_BUSY_TX & I2C_STATE_MSK) | HAL_I2C_MODE_MASTER)) /*!< Master Busy TX, combinaison of State LSB and Mode enum */ +#define I2C_STATE_MASTER_BUSY_RX ((uint32_t)((HAL_I2C_STATE_BUSY_RX & I2C_STATE_MSK) | HAL_I2C_MODE_MASTER)) /*!< Master Busy RX, combinaison of State LSB and Mode enum */ +#define I2C_STATE_SLAVE_BUSY_TX ((uint32_t)((HAL_I2C_STATE_BUSY_TX & I2C_STATE_MSK) | HAL_I2C_MODE_SLAVE)) /*!< Slave Busy TX, combinaison of State LSB and Mode enum */ +#define I2C_STATE_SLAVE_BUSY_RX ((uint32_t)((HAL_I2C_STATE_BUSY_RX & I2C_STATE_MSK) | HAL_I2C_MODE_SLAVE)) /*!< Slave Busy RX, combinaison of State LSB and Mode enum */ +#define I2C_STATE_MEM_BUSY_TX ((uint32_t)((HAL_I2C_STATE_BUSY_TX & I2C_STATE_MSK) | HAL_I2C_MODE_MEM)) /*!< Memory Busy TX, combinaison of State LSB and Mode enum */ +#define I2C_STATE_MEM_BUSY_RX ((uint32_t)((HAL_I2C_STATE_BUSY_RX & I2C_STATE_MSK) | HAL_I2C_MODE_MEM)) /*!< Memory Busy RX, combinaison of State LSB and Mode enum */ + + +/* Private define to centralize the enable/disable of Interrupts */ +#define I2C_XFER_TX_IT (0x00000001U) +#define I2C_XFER_RX_IT (0x00000002U) +#define I2C_XFER_LISTEN_IT (0x00000004U) + +#define I2C_XFER_ERROR_IT (0x00000011U) +#define I2C_XFER_CPLT_IT (0x00000012U) +#define I2C_XFER_RELOAD_IT (0x00000012U) + +/* Private define Sequential Transfer Options default/reset value */ +#define I2C_NO_OPTION_FRAME (0xFFFF0000U) +/** + * @} + */ + +/* Private macro -------------------------------------------------------------*/ +#define I2C_GET_DMA_REMAIN_DATA(__HANDLE__) ((((__HANDLE__)->State) == HAL_I2C_STATE_BUSY_TX) ? \ + ((uint32_t)((__HANDLE__)->hdmatx->Instance->CNDTR)) : \ + ((uint32_t)((__HANDLE__)->hdmarx->Instance->CNDTR))) + +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ + +/** @defgroup I2C_Private_Functions I2C Private Functions + * @{ + */ +/* Private functions to handle DMA transfer */ +static void I2C_DMAMasterTransmitCplt(DMA_HandleTypeDef *hdma); +static void I2C_DMAMasterReceiveCplt(DMA_HandleTypeDef *hdma); +static void I2C_DMASlaveTransmitCplt(DMA_HandleTypeDef *hdma); +static void I2C_DMASlaveReceiveCplt(DMA_HandleTypeDef *hdma); +static void I2C_DMAError(DMA_HandleTypeDef *hdma); +static void I2C_DMAAbort(DMA_HandleTypeDef *hdma); + +/* Private functions to handle IT transfer */ +static void I2C_ITAddrCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags); +static void I2C_ITMasterSequentialCplt(I2C_HandleTypeDef *hi2c); +static void I2C_ITSlaveSequentialCplt(I2C_HandleTypeDef *hi2c); +static void I2C_ITMasterCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags); +static void I2C_ITSlaveCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags); +static void I2C_ITListenCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags); +static void I2C_ITError(I2C_HandleTypeDef *hi2c, uint32_t ErrorCode); + +/* Private functions to handle IT transfer */ +static HAL_StatusTypeDef I2C_RequestMemoryWrite(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart); +static HAL_StatusTypeDef I2C_RequestMemoryRead(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart); + +/* Private functions for I2C transfer IRQ handler */ +static HAL_StatusTypeDef I2C_Master_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources); +static HAL_StatusTypeDef I2C_Slave_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources); +static HAL_StatusTypeDef I2C_Master_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources); +static HAL_StatusTypeDef I2C_Slave_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources); + +/* Private functions to handle flags during polling transfer */ +static HAL_StatusTypeDef I2C_WaitOnFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Flag, FlagStatus Status, uint32_t Timeout, uint32_t Tickstart); +static HAL_StatusTypeDef I2C_WaitOnTXISFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart); +static HAL_StatusTypeDef I2C_WaitOnRXNEFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart); +static HAL_StatusTypeDef I2C_WaitOnSTOPFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart); +static HAL_StatusTypeDef I2C_IsAcknowledgeFailed(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart); + +/* Private functions to centralize the enable/disable of Interrupts */ +static HAL_StatusTypeDef I2C_Enable_IRQ(I2C_HandleTypeDef *hi2c, uint16_t InterruptRequest); +static HAL_StatusTypeDef I2C_Disable_IRQ(I2C_HandleTypeDef *hi2c, uint16_t InterruptRequest); + +/* Private functions to flush TXDR register */ +static void I2C_Flush_TXDR(I2C_HandleTypeDef *hi2c); + +/* Private functions to handle start, restart or stop a transfer */ +static void I2C_TransferConfig(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t Size, uint32_t Mode, uint32_t Request); +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** @defgroup I2C_Exported_Functions I2C Exported Functions + * @{ + */ + +/** @defgroup I2C_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Initialization and Configuration functions + * +@verbatim + =============================================================================== + ##### Initialization and de-initialization functions ##### + =============================================================================== + [..] This subsection provides a set of functions allowing to initialize and + deinitialize the I2Cx peripheral: + + (+) User must Implement HAL_I2C_MspInit() function in which he configures + all related peripherals resources (CLOCK, GPIO, DMA, IT and NVIC ). + + (+) Call the function HAL_I2C_Init() to configure the selected device with + the selected configuration: + (++) Clock Timing + (++) Own Address 1 + (++) Addressing mode (Master, Slave) + (++) Dual Addressing mode + (++) Own Address 2 + (++) Own Address 2 Mask + (++) General call mode + (++) Nostretch mode + + (+) Call the function HAL_I2C_DeInit() to restore the default configuration + of the selected I2Cx peripheral. + +@endverbatim + * @{ + */ + +/** + * @brief Initializes the I2C according to the specified parameters + * in the I2C_InitTypeDef and initialize the associated handle. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Init(I2C_HandleTypeDef *hi2c) +{ + /* Check the I2C handle allocation */ + if(hi2c == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance)); + assert_param(IS_I2C_OWN_ADDRESS1(hi2c->Init.OwnAddress1)); + assert_param(IS_I2C_ADDRESSING_MODE(hi2c->Init.AddressingMode)); + assert_param(IS_I2C_DUAL_ADDRESS(hi2c->Init.DualAddressMode)); + assert_param(IS_I2C_OWN_ADDRESS2(hi2c->Init.OwnAddress2)); + assert_param(IS_I2C_OWN_ADDRESS2_MASK(hi2c->Init.OwnAddress2Masks)); + assert_param(IS_I2C_GENERAL_CALL(hi2c->Init.GeneralCallMode)); + assert_param(IS_I2C_NO_STRETCH(hi2c->Init.NoStretchMode)); + + if(hi2c->State == HAL_I2C_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + hi2c->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, CORTEX...etc */ + HAL_I2C_MspInit(hi2c); + } + + hi2c->State = HAL_I2C_STATE_BUSY; + + /* Disable the selected I2C peripheral */ + __HAL_I2C_DISABLE(hi2c); + + /*---------------------------- I2Cx TIMINGR Configuration ------------------*/ + /* Configure I2Cx: Frequency range */ + hi2c->Instance->TIMINGR = hi2c->Init.Timing & TIMING_CLEAR_MASK; + + /*---------------------------- I2Cx OAR1 Configuration ---------------------*/ + /* Disable Own Address1 before set the Own Address1 configuration */ + hi2c->Instance->OAR1 &= ~I2C_OAR1_OA1EN; + + /* Configure I2Cx: Own Address1 and ack own address1 mode */ + if(hi2c->Init.AddressingMode == I2C_ADDRESSINGMODE_7BIT) + { + hi2c->Instance->OAR1 = (I2C_OAR1_OA1EN | hi2c->Init.OwnAddress1); + } + else /* I2C_ADDRESSINGMODE_10BIT */ + { + hi2c->Instance->OAR1 = (I2C_OAR1_OA1EN | I2C_OAR1_OA1MODE | hi2c->Init.OwnAddress1); + } + + /*---------------------------- I2Cx CR2 Configuration ----------------------*/ + /* Configure I2Cx: Addressing Master mode */ + if(hi2c->Init.AddressingMode == I2C_ADDRESSINGMODE_10BIT) + { + hi2c->Instance->CR2 = (I2C_CR2_ADD10); + } + /* Enable the AUTOEND by default, and enable NACK (should be disable only during Slave process */ + hi2c->Instance->CR2 |= (I2C_CR2_AUTOEND | I2C_CR2_NACK); + + /*---------------------------- I2Cx OAR2 Configuration ---------------------*/ + /* Disable Own Address2 before set the Own Address2 configuration */ + hi2c->Instance->OAR2 &= ~I2C_DUALADDRESS_ENABLE; + + /* Configure I2Cx: Dual mode and Own Address2 */ + hi2c->Instance->OAR2 = (hi2c->Init.DualAddressMode | hi2c->Init.OwnAddress2 | (hi2c->Init.OwnAddress2Masks << 8)); + + /*---------------------------- I2Cx CR1 Configuration ----------------------*/ + /* Configure I2Cx: Generalcall and NoStretch mode */ + hi2c->Instance->CR1 = (hi2c->Init.GeneralCallMode | hi2c->Init.NoStretchMode); + + /* Enable the selected I2C peripheral */ + __HAL_I2C_ENABLE(hi2c); + + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + hi2c->State = HAL_I2C_STATE_READY; + hi2c->PreviousState = I2C_STATE_NONE; + hi2c->Mode = HAL_I2C_MODE_NONE; + + return HAL_OK; +} + +/** + * @brief DeInitialize the I2C peripheral. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_DeInit(I2C_HandleTypeDef *hi2c) +{ + /* Check the I2C handle allocation */ + if(hi2c == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance)); + + hi2c->State = HAL_I2C_STATE_BUSY; + + /* Disable the I2C Peripheral Clock */ + __HAL_I2C_DISABLE(hi2c); + + /* DeInit the low level hardware: GPIO, CLOCK, NVIC */ + HAL_I2C_MspDeInit(hi2c); + + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + hi2c->State = HAL_I2C_STATE_RESET; + hi2c->PreviousState = I2C_STATE_NONE; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Release Lock */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; +} + +/** + * @brief Initialize the I2C MSP. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_MspInit(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitialize the I2C MSP. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_MspDeInit(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_MspDeInit could be implemented in the user file + */ +} + +/** + * @} + */ + +/** @defgroup I2C_Exported_Functions_Group2 Input and Output operation functions + * @brief Data transfers functions + * +@verbatim + =============================================================================== + ##### IO operation functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to manage the I2C data + transfers. + + (#) There are two modes of transfer: + (++) Blocking mode : The communication is performed in the polling mode. + The status of all data processing is returned by the same function + after finishing transfer. + (++) No-Blocking mode : The communication is performed using Interrupts + or DMA. These functions return the status of the transfer startup. + The end of the data processing will be indicated through the + dedicated I2C IRQ when using Interrupt mode or the DMA IRQ when + using DMA mode. + + (#) Blocking mode functions are : + (++) HAL_I2C_Master_Transmit() + (++) HAL_I2C_Master_Receive() + (++) HAL_I2C_Slave_Transmit() + (++) HAL_I2C_Slave_Receive() + (++) HAL_I2C_Mem_Write() + (++) HAL_I2C_Mem_Read() + (++) HAL_I2C_IsDeviceReady() + + (#) No-Blocking mode functions with Interrupt are : + (++) HAL_I2C_Master_Transmit_IT() + (++) HAL_I2C_Master_Receive_IT() + (++) HAL_I2C_Slave_Transmit_IT() + (++) HAL_I2C_Slave_Receive_IT() + (++) HAL_I2C_Mem_Write_IT() + (++) HAL_I2C_Mem_Read_IT() + + (#) No-Blocking mode functions with DMA are : + (++) HAL_I2C_Master_Transmit_DMA() + (++) HAL_I2C_Master_Receive_DMA() + (++) HAL_I2C_Slave_Transmit_DMA() + (++) HAL_I2C_Slave_Receive_DMA() + (++) HAL_I2C_Mem_Write_DMA() + (++) HAL_I2C_Mem_Read_DMA() + + (#) A set of Transfer Complete Callbacks are provided in non Blocking mode: + (++) HAL_I2C_MemTxCpltCallback() + (++) HAL_I2C_MemRxCpltCallback() + (++) HAL_I2C_MasterTxCpltCallback() + (++) HAL_I2C_MasterRxCpltCallback() + (++) HAL_I2C_SlaveTxCpltCallback() + (++) HAL_I2C_SlaveRxCpltCallback() + (++) HAL_I2C_ErrorCallback() + +@endverbatim + * @{ + */ + +/** + * @brief Transmits in master mode an amount of data in blocking mode. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Transmit(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint32_t tickstart = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferISR = NULL; + + /* Send Slave Address */ + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_GENERATE_START_WRITE); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_GENERATE_START_WRITE); + } + + while(hi2c->XferCount > 0U) + { + /* Wait until TXIS flag is set */ + if(I2C_WaitOnTXISFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + /* Write data to TXDR */ + hi2c->Instance->TXDR = (*hi2c->pBuffPtr++); + hi2c->XferCount--; + hi2c->XferSize--; + + if((hi2c->XferSize == 0U) && (hi2c->XferCount!=0U)) + { + /* Wait until TCR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_TCR, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_NO_STARTSTOP); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_NO_STARTSTOP); + } + } + } + + /* No need to Check TC flag, with AUTOEND mode the stop is automatically generated */ + /* Wait until STOPF flag is set */ + if(I2C_WaitOnSTOPFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receives in master mode an amount of data in blocking mode. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Receive(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint32_t tickstart = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferISR = NULL; + + /* Send Slave Address */ + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_GENERATE_START_READ); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_GENERATE_START_READ); + } + + while(hi2c->XferCount > 0U) + { + /* Wait until RXNE flag is set */ + if(I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + hi2c->XferSize--; + hi2c->XferCount--; + + if((hi2c->XferSize == 0U) && (hi2c->XferCount != 0U)) + { + /* Wait until TCR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_TCR, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_NO_STARTSTOP); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_NO_STARTSTOP); + } + } + } + + /* No need to Check TC flag, with AUTOEND mode the stop is automatically generated */ + /* Wait until STOPF flag is set */ + if(I2C_WaitOnSTOPFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Transmits in slave mode an amount of data in blocking mode. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Transmit(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint32_t tickstart = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferISR = NULL; + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Wait until ADDR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, RESET, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + return HAL_TIMEOUT; + } + + /* Clear ADDR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_ADDR); + + /* If 10bit addressing mode is selected */ + if(hi2c->Init.AddressingMode == I2C_ADDRESSINGMODE_10BIT) + { + /* Wait until ADDR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, RESET, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + return HAL_TIMEOUT; + } + + /* Clear ADDR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_ADDR); + } + + /* Wait until DIR flag is set Transmitter mode */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_DIR, RESET, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + return HAL_TIMEOUT; + } + + while(hi2c->XferCount > 0U) + { + /* Wait until TXIS flag is set */ + if(I2C_WaitOnTXISFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Write data to TXDR */ + hi2c->Instance->TXDR = (*hi2c->pBuffPtr++); + hi2c->XferCount--; + } + + /* Wait until STOP flag is set */ + if(I2C_WaitOnSTOPFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + /* Normal use case for Transmitter mode */ + /* A NACK is generated to confirm the end of transfer */ + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Clear STOP flag */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_STOPF); + + /* Wait until BUSY flag is reset */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + return HAL_TIMEOUT; + } + + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive in slave mode an amount of data in blocking mode + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Receive(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint32_t tickstart = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferISR = NULL; + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Wait until ADDR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, RESET, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + return HAL_TIMEOUT; + } + + /* Clear ADDR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_ADDR); + + /* Wait until DIR flag is reset Receiver mode */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_DIR, SET, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + return HAL_TIMEOUT; + } + + while(hi2c->XferCount > 0U) + { + /* Wait until RXNE flag is set */ + if(I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + /* Store Last receive data if any */ + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == SET) + { + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + hi2c->XferCount--; + } + + if(hi2c->ErrorCode == HAL_I2C_ERROR_TIMEOUT) + { + return HAL_TIMEOUT; + } + else + { + return HAL_ERROR; + } + } + + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + hi2c->XferCount--; + } + + /* Wait until STOP flag is set */ + if(I2C_WaitOnSTOPFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Clear STOP flag */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_STOPF); + + /* Wait until BUSY flag is reset */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, Timeout, tickstart) != HAL_OK) + { + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + return HAL_TIMEOUT; + } + + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Transmit in master mode an amount of data in non-blocking mode with Interrupt + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Transmit_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size) +{ + uint32_t xfermode = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_IT; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + /* Send Slave Address */ + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE */ + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, xfermode, I2C_GENERATE_START_WRITE); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + + /* Enable ERR, TC, STOP, NACK, TXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_TX_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive in master mode an amount of data in non-blocking mode with Interrupt + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Receive_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size) +{ + uint32_t xfermode = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_IT; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + /* Send Slave Address */ + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE */ + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, xfermode, I2C_GENERATE_START_READ); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + + /* Enable ERR, TC, STOP, NACK, RXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_RX_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Transmit in slave mode an amount of data in non-blocking mode with Interrupt + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Transmit_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size) +{ + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferSize = hi2c->XferCount; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Slave_ISR_IT; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + + /* Enable ERR, TC, STOP, NACK, TXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_TX_IT | I2C_XFER_LISTEN_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive in slave mode an amount of data in non-blocking mode with Interrupt + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Receive_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size) +{ + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferSize = hi2c->XferCount; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Slave_ISR_IT; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + + /* Enable ERR, TC, STOP, NACK, RXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_RX_IT | I2C_XFER_LISTEN_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Transmit in master mode an amount of data in non-blocking mode with DMA + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size) +{ + uint32_t xfermode = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_DMA; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + if(hi2c->XferSize > 0U) + { + /* Set the I2C DMA transfer complete callback */ + hi2c->hdmatx->XferCpltCallback = I2C_DMAMasterTransmitCplt; + + /* Set the DMA error callback */ + hi2c->hdmatx->XferErrorCallback = I2C_DMAError; + + /* Set the unused DMA callbacks to NULL */ + hi2c->hdmatx->XferHalfCpltCallback = NULL; + hi2c->hdmatx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)pData, (uint32_t)&hi2c->Instance->TXDR, hi2c->XferSize); + + /* Send Slave Address */ + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, xfermode, I2C_GENERATE_START_WRITE); + + /* Update XferCount value */ + hi2c->XferCount -= hi2c->XferSize; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR and NACK interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_ERROR_IT); + + /* Enable DMA Request */ + hi2c->Instance->CR1 |= I2C_CR1_TXDMAEN; + } + else + { + /* Update Transfer ISR function pointer */ + hi2c->XferISR = I2C_Master_ISR_IT; + + /* Send Slave Address */ + /* Set NBYTES to write and generate START condition */ + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_GENERATE_START_WRITE); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR, TC, STOP, NACK, TXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_TX_IT); + } + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive in master mode an amount of data in non-blocking mode with DMA + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Receive_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size) +{ + uint32_t xfermode = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_DMA; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + if(hi2c->XferSize > 0U) + { + /* Set the I2C DMA transfer complete callback */ + hi2c->hdmarx->XferCpltCallback = I2C_DMAMasterReceiveCplt; + + /* Set the DMA error callback */ + hi2c->hdmarx->XferErrorCallback = I2C_DMAError; + + /* Set the unused DMA callbacks to NULL */ + hi2c->hdmarx->XferHalfCpltCallback = NULL; + hi2c->hdmarx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmarx, (uint32_t)&hi2c->Instance->RXDR, (uint32_t)pData, hi2c->XferSize); + + /* Send Slave Address */ + /* Set NBYTES to read and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + I2C_TransferConfig(hi2c,DevAddress,hi2c->XferSize, xfermode, I2C_GENERATE_START_READ); + + /* Update XferCount value */ + hi2c->XferCount -= hi2c->XferSize; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR and NACK interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_ERROR_IT); + + /* Enable DMA Request */ + hi2c->Instance->CR1 |= I2C_CR1_RXDMAEN; + } + else + { + /* Update Transfer ISR function pointer */ + hi2c->XferISR = I2C_Master_ISR_IT; + + /* Send Slave Address */ + /* Set NBYTES to read and generate START condition */ + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_GENERATE_START_READ); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR, TC, STOP, NACK, TXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_TX_IT); + } + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Transmit in slave mode an amount of data in non-blocking mode with DMA + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size) +{ + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferSize = hi2c->XferCount; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Slave_ISR_DMA; + + /* Set the I2C DMA transfer complete callback */ + hi2c->hdmatx->XferCpltCallback = I2C_DMASlaveTransmitCplt; + + /* Set the DMA error callback */ + hi2c->hdmatx->XferErrorCallback = I2C_DMAError; + + /* Set the unused DMA callbacks to NULL */ + hi2c->hdmatx->XferHalfCpltCallback = NULL; + hi2c->hdmatx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)pData, (uint32_t)&hi2c->Instance->TXDR, hi2c->XferSize); + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR, STOP, NACK, ADDR interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_LISTEN_IT); + + /* Enable DMA Request */ + hi2c->Instance->CR1 |= I2C_CR1_TXDMAEN; + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive in slave mode an amount of data in non-blocking mode with DMA + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Receive_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size) +{ + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferSize = hi2c->XferCount; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Slave_ISR_DMA; + + /* Set the I2C DMA transfer complete callback */ + hi2c->hdmarx->XferCpltCallback = I2C_DMASlaveReceiveCplt; + + /* Set the DMA error callback */ + hi2c->hdmarx->XferErrorCallback = I2C_DMAError; + + /* Set the unused DMA callbacks to NULL */ + hi2c->hdmarx->XferHalfCpltCallback = NULL; + hi2c->hdmarx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmarx, (uint32_t)&hi2c->Instance->RXDR, (uint32_t)pData, hi2c->XferSize); + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR, STOP, NACK, ADDR interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_LISTEN_IT); + + /* Enable DMA Request */ + hi2c->Instance->CR1 |= I2C_CR1_RXDMAEN; + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} +/** + * @brief Write an amount of data in blocking mode to a specific memory address + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Mem_Write(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_MEM; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferISR = NULL; + + /* Send Slave Address and Memory Address */ + if(I2C_RequestMemoryWrite(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_ERROR; + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_NO_STARTSTOP); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_NO_STARTSTOP); + } + + do + { + /* Wait until TXIS flag is set */ + if(I2C_WaitOnTXISFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Write data to TXDR */ + hi2c->Instance->TXDR = (*hi2c->pBuffPtr++); + hi2c->XferCount--; + hi2c->XferSize--; + + if((hi2c->XferSize == 0U) && (hi2c->XferCount!=0U)) + { + /* Wait until TCR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_TCR, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_NO_STARTSTOP); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_NO_STARTSTOP); + } + } + + }while(hi2c->XferCount > 0U); + + /* No need to Check TC flag, with AUTOEND mode the stop is automatically generated */ + /* Wait until STOPF flag is reset */ + if(I2C_WaitOnSTOPFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Read an amount of data in blocking mode from a specific memory address + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Mem_Read(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_MEM; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferISR = NULL; + + /* Send Slave Address and Memory Address */ + if(I2C_RequestMemoryRead(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_ERROR; + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + + /* Send Slave Address */ + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_GENERATE_START_READ); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_GENERATE_START_READ); + } + + do + { + /* Wait until RXNE flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_RXNE, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + hi2c->XferSize--; + hi2c->XferCount--; + + if((hi2c->XferSize == 0U) && (hi2c->XferCount != 0U)) + { + /* Wait until TCR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_TCR, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_NO_STARTSTOP); + } + else + { + hi2c->XferSize = hi2c->XferCount; + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_NO_STARTSTOP); + } + } + }while(hi2c->XferCount > 0U); + + /* No need to Check TC flag, with AUTOEND mode the stop is automatically generated */ + /* Wait until STOPF flag is reset */ + if(I2C_WaitOnSTOPFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} +/** + * @brief Write an amount of data in non-blocking mode with Interrupt to a specific memory address + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Mem_Write_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size) +{ + uint32_t tickstart = 0U; + uint32_t xfermode = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_MEM; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_IT; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + /* Send Slave Address and Memory Address */ + if(I2C_RequestMemoryWrite(hi2c, DevAddress, MemAddress, MemAddSize, I2C_TIMEOUT_FLAG, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_ERROR; + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + I2C_TransferConfig(hi2c,DevAddress, hi2c->XferSize, xfermode, I2C_NO_STARTSTOP); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + + /* Enable ERR, TC, STOP, NACK, TXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_TX_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Read an amount of data in non-blocking mode with Interrupt from a specific memory address + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Mem_Read_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size) +{ + uint32_t tickstart = 0U; + uint32_t xfermode = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_MEM; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_IT; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + /* Send Slave Address and Memory Address */ + if(I2C_RequestMemoryRead(hi2c, DevAddress, MemAddress, MemAddSize, I2C_TIMEOUT_FLAG, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_ERROR; + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + I2C_TransferConfig(hi2c,DevAddress,hi2c->XferSize, xfermode, I2C_GENERATE_START_READ); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + + /* Enable ERR, TC, STOP, NACK, RXI interrupt */ + /* possible to enable all of these */ + /* I2C_IT_ERRI | I2C_IT_TCI| I2C_IT_STOPI| I2C_IT_NACKI | I2C_IT_ADDRI | I2C_IT_RXI | I2C_IT_TXI */ + I2C_Enable_IRQ(hi2c, I2C_XFER_RX_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} +/** + * @brief Write an amount of data in non-blocking mode with DMA to a specific memory address + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Mem_Write_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size) +{ + uint32_t tickstart = 0U; + uint32_t xfermode = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_MEM; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_DMA; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + /* Send Slave Address and Memory Address */ + if(I2C_RequestMemoryWrite(hi2c, DevAddress, MemAddress, MemAddSize, I2C_TIMEOUT_FLAG, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_ERROR; + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + + /* Set the I2C DMA transfer complete callback */ + hi2c->hdmatx->XferCpltCallback = I2C_DMAMasterTransmitCplt; + + /* Set the DMA error callback */ + hi2c->hdmatx->XferErrorCallback = I2C_DMAError; + + /* Set the unused DMA callbacks to NULL */ + hi2c->hdmatx->XferHalfCpltCallback = NULL; + hi2c->hdmatx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)pData, (uint32_t)&hi2c->Instance->TXDR, hi2c->XferSize); + + /* Send Slave Address */ + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, xfermode, I2C_NO_STARTSTOP); + + /* Update XferCount value */ + hi2c->XferCount -= hi2c->XferSize; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR and NACK interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_ERROR_IT); + + /* Enable DMA Request */ + hi2c->Instance->CR1 |= I2C_CR1_TXDMAEN; + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Reads an amount of data in non-blocking mode with DMA from a specific memory address. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param pData Pointer to data buffer + * @param Size Amount of data to be read + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Mem_Read_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size) +{ + uint32_t tickstart = 0U; + uint32_t xfermode = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Init tickstart for timeout management*/ + tickstart = HAL_GetTick(); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_MEM; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferISR = I2C_Master_ISR_DMA; + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + /* Send Slave Address and Memory Address */ + if(I2C_RequestMemoryRead(hi2c, DevAddress, MemAddress, MemAddSize, I2C_TIMEOUT_FLAG, tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_ERROR; + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + + /* Set the I2C DMA transfer complete callback */ + hi2c->hdmarx->XferCpltCallback = I2C_DMAMasterReceiveCplt; + + /* Set the DMA error callback */ + hi2c->hdmarx->XferErrorCallback = I2C_DMAError; + + /* Set the unused DMA callbacks to NULL */ + hi2c->hdmarx->XferHalfCpltCallback = NULL; + hi2c->hdmarx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmarx, (uint32_t)&hi2c->Instance->RXDR, (uint32_t)pData, hi2c->XferSize); + + /* Set NBYTES to write and reload if hi2c->XferCount > MAX_NBYTE_SIZE and generate RESTART */ + I2C_TransferConfig(hi2c,DevAddress, hi2c->XferSize, xfermode, I2C_GENERATE_START_READ); + + /* Update XferCount value */ + hi2c->XferCount -= hi2c->XferSize; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Enable DMA Request */ + hi2c->Instance->CR1 |= I2C_CR1_RXDMAEN; + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* Enable ERR and NACK interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_ERROR_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Checks if target device is ready for communication. + * @note This function is used with Memory devices + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param Trials Number of trials + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_IsDeviceReady(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint32_t Trials, uint32_t Timeout) +{ + uint32_t tickstart = 0U; + + __IO uint32_t I2C_Trials = 0U; + + if(hi2c->State == HAL_I2C_STATE_READY) + { + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BUSY) == SET) + { + return HAL_BUSY; + } + + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + do + { + /* Generate Start */ + hi2c->Instance->CR2 = I2C_GENERATE_START(hi2c->Init.AddressingMode,DevAddress); + + /* No need to Check TC flag, with AUTOEND mode the stop is automatically generated */ + /* Wait until STOPF flag is set or a NACK flag is set*/ + tickstart = HAL_GetTick(); + while((__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_STOPF) == RESET) && (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == RESET) && (hi2c->State != HAL_I2C_STATE_TIMEOUT)) + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U) || ((HAL_GetTick() - tickstart) > Timeout)) + { + /* Device is ready */ + hi2c->State = HAL_I2C_STATE_READY; + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + } + + /* Check if the NACKF flag has not been set */ + if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == RESET) + { + /* Wait until STOPF flag is reset */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_STOPF, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Device is ready */ + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + /* Wait until STOPF flag is reset */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_STOPF, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Clear STOP Flag, auto generated with autoend*/ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + } + + /* Check if the maximum allowed number of trials has been reached */ + if (I2C_Trials++ == Trials) + { + /* Generate Stop */ + hi2c->Instance->CR2 |= I2C_CR2_STOP; + + /* Wait until STOPF flag is reset */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_STOPF, RESET, Timeout, tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + } + }while(I2C_Trials < Trials); + + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_TIMEOUT; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Sequential transmit in master I2C mode an amount of data in non-blocking mode with Interrupt. + * @note This interface allow to manage repeated start condition when a direction change during transfer + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param XferOptions Options of Transfer, value of @ref I2C_XFEROPTIONS + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Sequential_Transmit_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions) +{ + uint32_t xfermode = 0U; + uint32_t xferrequest = I2C_GENERATE_START_WRITE; + + /* Check the parameters */ + assert_param(IS_I2C_TRANSFER_OPTIONS_REQUEST(XferOptions)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_TX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = XferOptions; + hi2c->XferISR = I2C_Master_ISR_IT; + + /* If size > MAX_NBYTE_SIZE, use reload mode */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = hi2c->XferOptions; + } + + /* If transfer direction not change, do not generate Restart Condition */ + /* Mean Previous state is same as current state */ + if(hi2c->PreviousState == I2C_STATE_MASTER_BUSY_TX) + { + xferrequest = I2C_NO_STARTSTOP; + } + + /* Send Slave Address and set NBYTES to write */ + I2C_TransferConfig(hi2c, DevAddress, hi2c->XferSize, xfermode, xferrequest); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + I2C_Enable_IRQ(hi2c, I2C_XFER_TX_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Sequential receive in master I2C mode an amount of data in non-blocking mode with Interrupt + * @note This interface allow to manage repeated start condition when a direction change during transfer + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param XferOptions Options of Transfer, value of @ref I2C_XFEROPTIONS + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Sequential_Receive_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions) +{ + uint32_t xfermode = 0U; + uint32_t xferrequest = I2C_GENERATE_START_READ; + + /* Check the parameters */ + assert_param(IS_I2C_TRANSFER_OPTIONS_REQUEST(XferOptions)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY_RX; + hi2c->Mode = HAL_I2C_MODE_MASTER; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferOptions = XferOptions; + hi2c->XferISR = I2C_Master_ISR_IT; + + /* If hi2c->XferCount > MAX_NBYTE_SIZE, use reload mode */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = hi2c->XferOptions; + } + + /* If transfer direction not change, do not generate Restart Condition */ + /* Mean Previous state is same as current state */ + if(hi2c->PreviousState == I2C_STATE_MASTER_BUSY_RX) + { + xferrequest = I2C_NO_STARTSTOP; + } + + /* Send Slave Address and set NBYTES to read */ + I2C_TransferConfig(hi2c,DevAddress, hi2c->XferSize, xfermode, xferrequest); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + I2C_Enable_IRQ(hi2c, I2C_XFER_RX_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Sequential transmit in slave/device I2C mode an amount of data in non-blocking mode with Interrupt + * @note This interface allow to manage repeated start condition when a direction change during transfer + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param XferOptions Options of Transfer, value of @ref I2C_XFEROPTIONS + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Sequential_Transmit_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t XferOptions) +{ + /* Check the parameters */ + assert_param(IS_I2C_TRANSFER_OPTIONS_REQUEST(XferOptions)); + + if((hi2c->State & HAL_I2C_STATE_LISTEN) == HAL_I2C_STATE_LISTEN) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* Disable Interrupts, to prevent preemption during treatment in case of multicall */ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT | I2C_XFER_TX_IT); + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* I2C cannot manage full duplex exchange so disable previous IT enabled if any */ + /* and then toggle the HAL slave RX state to TX state */ + if(hi2c->State == HAL_I2C_STATE_BUSY_RX_LISTEN) + { + /* Disable associated Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_RX_IT); + } + + hi2c->State = HAL_I2C_STATE_BUSY_TX_LISTEN; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferSize = hi2c->XferCount; + hi2c->XferOptions = XferOptions; + hi2c->XferISR = I2C_Slave_ISR_IT; + + if(I2C_GET_DIR(hi2c) == I2C_DIRECTION_RECEIVE) + { + /* Clear ADDR flag after prepare the transfer parameters */ + /* This action will generate an acknowledge to the Master */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_ADDR); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* REnable ADDR interrupt */ + I2C_Enable_IRQ(hi2c, I2C_XFER_TX_IT | I2C_XFER_LISTEN_IT); + + return HAL_OK; + } + else + { + return HAL_ERROR; + } +} + +/** + * @brief Sequential receive in slave/device I2C mode an amount of data in non-blocking mode with Interrupt + * @note This interface allow to manage repeated start condition when a direction change during transfer + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param pData Pointer to data buffer + * @param Size Amount of data to be sent + * @param XferOptions Options of Transfer, value of @ref I2C_XFEROPTIONS + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Slave_Sequential_Receive_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t XferOptions) +{ + /* Check the parameters */ + assert_param(IS_I2C_TRANSFER_OPTIONS_REQUEST(XferOptions)); + + if((hi2c->State & HAL_I2C_STATE_LISTEN) == HAL_I2C_STATE_LISTEN) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* Disable Interrupts, to prevent preemption during treatment in case of multicall */ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT | I2C_XFER_RX_IT); + + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* I2C cannot manage full duplex exchange so disable previous IT enabled if any */ + /* and then toggle the HAL slave TX state to RX state */ + if(hi2c->State == HAL_I2C_STATE_BUSY_TX_LISTEN) + { + /* Disable associated Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_TX_IT); + } + + hi2c->State = HAL_I2C_STATE_BUSY_RX_LISTEN; + hi2c->Mode = HAL_I2C_MODE_SLAVE; + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + + /* Enable Address Acknowledge */ + hi2c->Instance->CR2 &= ~I2C_CR2_NACK; + + /* Prepare transfer parameters */ + hi2c->pBuffPtr = pData; + hi2c->XferCount = Size; + hi2c->XferSize = hi2c->XferCount; + hi2c->XferOptions = XferOptions; + hi2c->XferISR = I2C_Slave_ISR_IT; + + if(I2C_GET_DIR(hi2c) == I2C_DIRECTION_TRANSMIT) + { + /* Clear ADDR flag after prepare the transfer parameters */ + /* This action will generate an acknowledge to the Master */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_ADDR); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + /* REnable ADDR interrupt */ + I2C_Enable_IRQ(hi2c, I2C_XFER_RX_IT | I2C_XFER_LISTEN_IT); + + return HAL_OK; + } + else + { + return HAL_ERROR; + } +} + +/** + * @brief Enable the Address listen mode with Interrupt. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_EnableListen_IT(I2C_HandleTypeDef *hi2c) +{ + if(hi2c->State == HAL_I2C_STATE_READY) + { + hi2c->State = HAL_I2C_STATE_LISTEN; + hi2c->XferISR = I2C_Slave_ISR_IT; + + /* Enable the Address Match interrupt */ + I2C_Enable_IRQ(hi2c, I2C_XFER_LISTEN_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Disable the Address listen mode with Interrupt. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_DisableListen_IT(I2C_HandleTypeDef *hi2c) +{ + /* Declaration of tmp to prevent undefined behavior of volatile usage */ + uint32_t tmp; + + /* Disable Address listen mode only if a transfer is not ongoing */ + if(hi2c->State == HAL_I2C_STATE_LISTEN) + { + tmp = (uint32_t)(hi2c->State) & I2C_STATE_MSK; + hi2c->PreviousState = tmp | (uint32_t)(hi2c->Mode); + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + hi2c->XferISR = NULL; + + /* Disable the Address Match interrupt */ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Abort a master I2C IT or DMA process communication with Interrupt. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2C_Master_Abort_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress) +{ + if(hi2c->Mode == HAL_I2C_MODE_MASTER) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + /* Disable Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_RX_IT); + I2C_Disable_IRQ(hi2c, I2C_XFER_TX_IT); + + /* Set State at HAL_I2C_STATE_ABORT */ + hi2c->State = HAL_I2C_STATE_ABORT; + + /* Set NBYTES to 1 to generate a dummy read on I2C peripheral */ + /* Set AUTOEND mode, this will generate a NACK then STOP condition to abort the current transfer */ + I2C_TransferConfig(hi2c, DevAddress, 1, I2C_AUTOEND_MODE, I2C_GENERATE_STOP); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Note : The I2C interrupts must be enabled after unlocking current process + to avoid the risk of I2C interrupt handle execution before current + process unlock */ + I2C_Enable_IRQ(hi2c, I2C_XFER_CPLT_IT); + + return HAL_OK; + } + else + { + /* Wrong usage of abort function */ + /* This function should be used only in case of abort monitored by master device */ + return HAL_ERROR; + } +} + +/** + * @} + */ + +/** @defgroup I2C_IRQ_Handler_and_Callbacks IRQ Handler and Callbacks + * @{ + */ + +/** + * @brief This function handles I2C event interrupt request. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +void HAL_I2C_EV_IRQHandler(I2C_HandleTypeDef *hi2c) +{ + /* Get current IT Flags and IT sources value */ + uint32_t itflags = READ_REG(hi2c->Instance->ISR); + uint32_t itsources = READ_REG(hi2c->Instance->CR1); + + /* I2C events treatment -------------------------------------*/ + if(hi2c->XferISR != NULL) + { + hi2c->XferISR(hi2c, itflags, itsources); + } +} + +/** + * @brief This function handles I2C error interrupt request. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +void HAL_I2C_ER_IRQHandler(I2C_HandleTypeDef *hi2c) +{ + uint32_t itflags = READ_REG(hi2c->Instance->ISR); + uint32_t itsources = READ_REG(hi2c->Instance->CR1); + + /* I2C Bus error interrupt occurred ------------------------------------*/ + if(((itflags & I2C_FLAG_BERR) != RESET) && ((itsources & I2C_IT_ERRI) != RESET)) + { + hi2c->ErrorCode |= HAL_I2C_ERROR_BERR; + + /* Clear BERR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_BERR); + } + + /* I2C Over-Run/Under-Run interrupt occurred ----------------------------------------*/ + if(((itflags & I2C_FLAG_OVR) != RESET) && ((itsources & I2C_IT_ERRI) != RESET)) + { + hi2c->ErrorCode |= HAL_I2C_ERROR_OVR; + + /* Clear OVR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_OVR); + } + + /* I2C Arbitration Loss error interrupt occurred -------------------------------------*/ + if(((itflags & I2C_FLAG_ARLO) != RESET) && ((itsources & I2C_IT_ERRI) != RESET)) + { + hi2c->ErrorCode |= HAL_I2C_ERROR_ARLO; + + /* Clear ARLO flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_ARLO); + } + + /* Call the Error Callback in case of Error detected */ + if((hi2c->ErrorCode & (HAL_I2C_ERROR_BERR | HAL_I2C_ERROR_OVR | HAL_I2C_ERROR_ARLO)) != HAL_I2C_ERROR_NONE) + { + I2C_ITError(hi2c, hi2c->ErrorCode); + } +} + +/** + * @brief Master Tx Transfer completed callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_MasterTxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_MasterTxCpltCallback could be implemented in the user file + */ +} + +/** + * @brief Master Rx Transfer completed callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_MasterRxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_MasterRxCpltCallback could be implemented in the user file + */ +} + +/** @brief Slave Tx Transfer completed callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_SlaveTxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_SlaveTxCpltCallback could be implemented in the user file + */ +} + +/** + * @brief Slave Rx Transfer completed callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_SlaveRxCpltCallback could be implemented in the user file + */ +} + +/** + * @brief Slave Address Match callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param TransferDirection: Master request Transfer Direction (Write/Read), value of @ref I2C_XFERDIRECTION + * @param AddrMatchCode: Address Match Code + * @retval None + */ +__weak void HAL_I2C_AddrCallback(I2C_HandleTypeDef *hi2c, uint8_t TransferDirection, uint16_t AddrMatchCode) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + UNUSED(TransferDirection); + UNUSED(AddrMatchCode); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_AddrCallback() could be implemented in the user file + */ +} + +/** + * @brief Listen Complete callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_ListenCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_ListenCpltCallback() could be implemented in the user file + */ +} + +/** + * @brief Memory Tx Transfer completed callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_MemTxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_MemTxCpltCallback could be implemented in the user file + */ +} + +/** + * @brief Memory Rx Transfer completed callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_MemRxCpltCallback could be implemented in the user file + */ +} + +/** + * @brief I2C error callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_ErrorCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_ErrorCallback could be implemented in the user file + */ +} + +/** + * @brief I2C abort callback. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval None + */ +__weak void HAL_I2C_AbortCpltCallback(I2C_HandleTypeDef *hi2c) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hi2c); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_I2C_AbortCpltCallback could be implemented in the user file + */ +} + +/** + * @} + */ + +/** @defgroup I2C_Exported_Functions_Group3 Peripheral State, Mode and Error functions + * @brief Peripheral State, Mode and Error functions + * +@verbatim + =============================================================================== + ##### Peripheral State, Mode and Error functions ##### + =============================================================================== + [..] + This subsection permit to get in run-time the status of the peripheral + and the data flow. + +@endverbatim + * @{ + */ + +/** + * @brief Return the I2C handle state. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @retval HAL state + */ +HAL_I2C_StateTypeDef HAL_I2C_GetState(I2C_HandleTypeDef *hi2c) +{ + /* Return I2C handle state */ + return hi2c->State; +} + +/** + * @brief Returns the I2C Master, Slave, Memory or no mode. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for I2C module + * @retval HAL mode + */ +HAL_I2C_ModeTypeDef HAL_I2C_GetMode(I2C_HandleTypeDef *hi2c) +{ + return hi2c->Mode; +} + +/** +* @brief Return the I2C error code. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. +* @retval I2C Error Code +*/ +uint32_t HAL_I2C_GetError(I2C_HandleTypeDef *hi2c) +{ + return hi2c->ErrorCode; +} + +/** + * @} + */ + +/** + * @} + */ + +/** @addtogroup I2C_Private_Functions + * @{ + */ + +/** + * @brief Interrupt Sub-Routine which handle the Interrupt Flags Master Mode with Interrupt. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param ITFlags Interrupt flags to handle. + * @param ITSources Interrupt sources enabled. + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_Master_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources) +{ + uint16_t devaddress = 0U; + + /* Process Locked */ + __HAL_LOCK(hi2c); + + if(((ITFlags & I2C_FLAG_AF) != RESET) && ((ITSources & I2C_IT_NACKI) != RESET)) + { + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Set corresponding Error Code */ + /* No need to generate STOP, it is automatically done */ + /* Error callback will be send during stop flag treatment */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + + /* Flush TX register */ + I2C_Flush_TXDR(hi2c); + } + else if(((ITFlags & I2C_FLAG_RXNE) != RESET) && ((ITSources & I2C_IT_RXI) != RESET)) + { + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + hi2c->XferSize--; + hi2c->XferCount--; + } + else if(((ITFlags & I2C_FLAG_TXIS) != RESET) && ((ITSources & I2C_IT_TXI) != RESET)) + { + /* Write data to TXDR */ + hi2c->Instance->TXDR = (*hi2c->pBuffPtr++); + hi2c->XferSize--; + hi2c->XferCount--; + } + else if(((ITFlags & I2C_FLAG_TCR) != RESET) && ((ITSources & I2C_IT_TCI) != RESET)) + { + if((hi2c->XferSize == 0U) && (hi2c->XferCount != 0U)) + { + devaddress = (hi2c->Instance->CR2 & I2C_CR2_SADD); + + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + I2C_TransferConfig(hi2c, devaddress, hi2c->XferSize, I2C_RELOAD_MODE, I2C_NO_STARTSTOP); + } + else + { + hi2c->XferSize = hi2c->XferCount; + if(hi2c->XferOptions != I2C_NO_OPTION_FRAME) + { + I2C_TransferConfig(hi2c, devaddress, hi2c->XferSize, hi2c->XferOptions, I2C_NO_STARTSTOP); + } + else + { + I2C_TransferConfig(hi2c, devaddress, hi2c->XferSize, I2C_AUTOEND_MODE, I2C_NO_STARTSTOP); + } + } + } + else + { + /* Call TxCpltCallback() if no stop mode is set */ + if(I2C_GET_STOP_MODE(hi2c) != I2C_AUTOEND_MODE) + { + /* Call I2C Master Sequential complete process */ + I2C_ITMasterSequentialCplt(hi2c); + } + else + { + /* Wrong size Status regarding TCR flag event */ + /* Call the corresponding callback to inform upper layer of End of Transfer */ + I2C_ITError(hi2c, HAL_I2C_ERROR_SIZE); + } + } + } + else if(((ITFlags & I2C_FLAG_TC) != RESET) && ((ITSources & I2C_IT_TCI) != RESET)) + { + if(hi2c->XferCount == 0U) + { + if(I2C_GET_STOP_MODE(hi2c) != I2C_AUTOEND_MODE) + { + /* Generate a stop condition in case of no transfer option */ + if(hi2c->XferOptions == I2C_NO_OPTION_FRAME) + { + /* Generate Stop */ + hi2c->Instance->CR2 |= I2C_CR2_STOP; + } + else + { + /* Call I2C Master Sequential complete process */ + I2C_ITMasterSequentialCplt(hi2c); + } + } + } + else + { + /* Wrong size Status regarding TC flag event */ + /* Call the corresponding callback to inform upper layer of End of Transfer */ + I2C_ITError(hi2c, HAL_I2C_ERROR_SIZE); + } + } + + if(((ITFlags & I2C_FLAG_STOPF) != RESET) && ((ITSources & I2C_IT_STOPI) != RESET)) + { + /* Call I2C Master complete process */ + I2C_ITMasterCplt(hi2c, ITFlags); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; +} + +/** + * @brief Interrupt Sub-Routine which handle the Interrupt Flags Slave Mode with Interrupt. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param ITFlags Interrupt flags to handle. + * @param ITSources Interrupt sources enabled. + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_Slave_ISR_IT(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources) +{ + /* Process locked */ + __HAL_LOCK(hi2c); + + if(((ITFlags & I2C_FLAG_AF) != RESET) && ((ITSources & I2C_IT_NACKI) != RESET)) + { + /* Check that I2C transfer finished */ + /* if yes, normal use case, a NACK is sent by the MASTER when Transfer is finished */ + /* Mean XferCount == 0*/ + /* So clear Flag NACKF only */ + if(hi2c->XferCount == 0U) + { + if(((hi2c->XferOptions == I2C_FIRST_AND_LAST_FRAME) || (hi2c->XferOptions == I2C_LAST_FRAME)) && \ + (hi2c->State == HAL_I2C_STATE_LISTEN)) + { + /* Call I2C Listen complete process */ + I2C_ITListenCplt(hi2c, ITFlags); + } + else if((hi2c->XferOptions != I2C_NO_OPTION_FRAME) && (hi2c->State == HAL_I2C_STATE_BUSY_TX_LISTEN)) + { + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Flush TX register */ + I2C_Flush_TXDR(hi2c); + + /* Last Byte is Transmitted */ + /* Call I2C Slave Sequential complete process */ + I2C_ITSlaveSequentialCplt(hi2c); + } + else + { + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + } + } + else + { + /* if no, error use case, a Non-Acknowledge of last Data is generated by the MASTER*/ + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Set ErrorCode corresponding to a Non-Acknowledge */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + } + } + else if(((ITFlags & I2C_FLAG_RXNE) != RESET) && ((ITSources & I2C_IT_RXI) != RESET)) + { + if(hi2c->XferCount > 0U) + { + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + hi2c->XferSize--; + hi2c->XferCount--; + } + + if((hi2c->XferCount == 0U) && \ + (hi2c->XferOptions != I2C_NO_OPTION_FRAME)) + { + /* Call I2C Slave Sequential complete process */ + I2C_ITSlaveSequentialCplt(hi2c); + } + } + else if(((ITFlags & I2C_FLAG_ADDR) != RESET) && ((ITSources & I2C_IT_ADDRI) != RESET)) + { + I2C_ITAddrCplt(hi2c, ITFlags); + } + else if(((ITFlags & I2C_FLAG_TXIS) != RESET) && ((ITSources & I2C_IT_TXI) != RESET)) + { + /* Write data to TXDR only if XferCount not reach "0" */ + /* A TXIS flag can be set, during STOP treatment */ + /* Check if all Datas have already been sent */ + /* If it is the case, this last write in TXDR is not sent, correspond to a dummy TXIS event */ + if(hi2c->XferCount > 0U) + { + /* Write data to TXDR */ + hi2c->Instance->TXDR = (*hi2c->pBuffPtr++); + hi2c->XferCount--; + hi2c->XferSize--; + } + else + { + if((hi2c->XferOptions == I2C_NEXT_FRAME) || (hi2c->XferOptions == I2C_FIRST_FRAME)) + { + /* Last Byte is Transmitted */ + /* Call I2C Slave Sequential complete process */ + I2C_ITSlaveSequentialCplt(hi2c); + } + } + } + + /* Check if STOPF is set */ + if(((ITFlags & I2C_FLAG_STOPF) != RESET) && ((ITSources & I2C_IT_STOPI) != RESET)) + { + /* Call I2C Slave complete process */ + I2C_ITSlaveCplt(hi2c, ITFlags); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; +} + +/** + * @brief Interrupt Sub-Routine which handle the Interrupt Flags Master Mode with DMA. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param ITFlags Interrupt flags to handle. + * @param ITSources Interrupt sources enabled. + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_Master_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources) +{ + uint16_t devaddress = 0U; + uint32_t xfermode = 0U; + + /* Process Locked */ + __HAL_LOCK(hi2c); + + if(((ITFlags & I2C_FLAG_AF) != RESET) && ((ITSources & I2C_IT_NACKI) != RESET)) + { + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Set corresponding Error Code */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + + /* No need to generate STOP, it is automatically done */ + /* But enable STOP interrupt, to treat it */ + /* Error callback will be send during stop flag treatment */ + I2C_Enable_IRQ(hi2c, I2C_XFER_CPLT_IT); + + /* Flush TX register */ + I2C_Flush_TXDR(hi2c); + } + else if(((ITFlags & I2C_FLAG_TCR) != RESET) && ((ITSources & I2C_IT_TCI) != RESET)) + { + /* Disable TC interrupt */ + __HAL_I2C_DISABLE_IT(hi2c, I2C_IT_TCI); + + if(hi2c->XferCount != 0U) + { + /* Recover Slave address */ + devaddress = (hi2c->Instance->CR2 & I2C_CR2_SADD); + + /* Prepare the new XferSize to transfer */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + xfermode = I2C_RELOAD_MODE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + xfermode = I2C_AUTOEND_MODE; + } + + /* Set the new XferSize in Nbytes register */ + I2C_TransferConfig(hi2c, devaddress, hi2c->XferSize, xfermode, I2C_NO_STARTSTOP); + + /* Update XferCount value */ + hi2c->XferCount -= hi2c->XferSize; + + /* Enable DMA Request */ + if(hi2c->State == HAL_I2C_STATE_BUSY_RX) + { + hi2c->Instance->CR1 |= I2C_CR1_RXDMAEN; + } + else + { + hi2c->Instance->CR1 |= I2C_CR1_TXDMAEN; + } + } + else + { + /* Wrong size Status regarding TCR flag event */ + /* Call the corresponding callback to inform upper layer of End of Transfer */ + I2C_ITError(hi2c, HAL_I2C_ERROR_SIZE); + } + } + else if(((ITFlags & I2C_FLAG_STOPF) != RESET) && ((ITSources & I2C_IT_STOPI) != RESET)) + { + /* Call I2C Master complete process */ + I2C_ITMasterCplt(hi2c, ITFlags); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; +} + +/** + * @brief Interrupt Sub-Routine which handle the Interrupt Flags Slave Mode with DMA. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param ITFlags Interrupt flags to handle. + * @param ITSources Interrupt sources enabled. + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_Slave_ISR_DMA(struct __I2C_HandleTypeDef *hi2c, uint32_t ITFlags, uint32_t ITSources) +{ + /* Process locked */ + __HAL_LOCK(hi2c); + + if(((ITFlags & I2C_FLAG_AF) != RESET) && ((ITSources & I2C_IT_NACKI) != RESET)) + { + /* Check that I2C transfer finished */ + /* if yes, normal use case, a NACK is sent by the MASTER when Transfer is finished */ + /* Mean XferCount == 0 */ + /* So clear Flag NACKF only */ + if(I2C_GET_DMA_REMAIN_DATA(hi2c) == 0U) + { + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + } + else + { + /* if no, error use case, a Non-Acknowledge of last Data is generated by the MASTER*/ + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Set ErrorCode corresponding to a Non-Acknowledge */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + } + } + else if(((ITFlags & I2C_FLAG_ADDR) != RESET) && ((ITSources & I2C_IT_ADDRI) != RESET)) + { + /* Clear ADDR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_ADDR); + } + else if(((ITFlags & I2C_FLAG_STOPF) != RESET) && ((ITSources & I2C_IT_STOPI) != RESET)) + { + /* Call I2C Slave complete process */ + I2C_ITSlaveCplt(hi2c, ITFlags); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; +} + +/** + * @brief Master sends target device address followed by internal memory address for write request. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param Timeout Timeout duration + * @param Tickstart Tick start value + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_RequestMemoryWrite(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart) +{ + I2C_TransferConfig(hi2c,DevAddress,MemAddSize, I2C_RELOAD_MODE, I2C_GENERATE_START_WRITE); + + /* Wait until TXIS flag is set */ + if(I2C_WaitOnTXISFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* If Memory address size is 8Bit */ + if(MemAddSize == I2C_MEMADD_SIZE_8BIT) + { + /* Send Memory Address */ + hi2c->Instance->TXDR = I2C_MEM_ADD_LSB(MemAddress); + } + /* If Memory address size is 16Bit */ + else + { + /* Send MSB of Memory Address */ + hi2c->Instance->TXDR = I2C_MEM_ADD_MSB(MemAddress); + + /* Wait until TXIS flag is set */ + if(I2C_WaitOnTXISFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Send LSB of Memory Address */ + hi2c->Instance->TXDR = I2C_MEM_ADD_LSB(MemAddress); + } + + /* Wait until TCR flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_TCR, RESET, Timeout, Tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + +return HAL_OK; +} + +/** + * @brief Master sends target device address followed by internal memory address for read request. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param DevAddress Target device address: The device 7 bits address value + * in datasheet must be shift at right before call interface + * @param MemAddress Internal memory address + * @param MemAddSize Size of internal memory address + * @param Timeout Timeout duration + * @param Tickstart Tick start value + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_RequestMemoryRead(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart) +{ + I2C_TransferConfig(hi2c,DevAddress,MemAddSize, I2C_SOFTEND_MODE, I2C_GENERATE_START_WRITE); + + /* Wait until TXIS flag is set */ + if(I2C_WaitOnTXISFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* If Memory address size is 8Bit */ + if(MemAddSize == I2C_MEMADD_SIZE_8BIT) + { + /* Send Memory Address */ + hi2c->Instance->TXDR = I2C_MEM_ADD_LSB(MemAddress); + } + /* If Memory address size is 16Bit */ + else + { + /* Send MSB of Memory Address */ + hi2c->Instance->TXDR = I2C_MEM_ADD_MSB(MemAddress); + + /* Wait until TXIS flag is set */ + if(I2C_WaitOnTXISFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) + { + if(hi2c->ErrorCode == HAL_I2C_ERROR_AF) + { + return HAL_ERROR; + } + else + { + return HAL_TIMEOUT; + } + } + + /* Send LSB of Memory Address */ + hi2c->Instance->TXDR = I2C_MEM_ADD_LSB(MemAddress); + } + + /* Wait until TC flag is set */ + if(I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_TC, RESET, Timeout, Tickstart) != HAL_OK) + { + return HAL_TIMEOUT; + } + + return HAL_OK; +} + +/** + * @brief I2C Address complete process callback. + * @param hi2c I2C handle. + * @param ITFlags Interrupt flags to handle. + * @retval None + */ +static void I2C_ITAddrCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) +{ + uint8_t transferdirection = 0U; + uint16_t slaveaddrcode = 0U; + uint16_t ownadd1code = 0U; + uint16_t ownadd2code = 0U; + + /* Prevent unused argument(s) compilation warning */ + UNUSED(ITFlags); + + /* In case of Listen state, need to inform upper layer of address match code event */ + if((hi2c->State & HAL_I2C_STATE_LISTEN) == HAL_I2C_STATE_LISTEN) + { + transferdirection = I2C_GET_DIR(hi2c); + slaveaddrcode = I2C_GET_ADDR_MATCH(hi2c); + ownadd1code = I2C_GET_OWN_ADDRESS1(hi2c); + ownadd2code = I2C_GET_OWN_ADDRESS2(hi2c); + + /* If 10bits addressing mode is selected */ + if(hi2c->Init.AddressingMode == I2C_ADDRESSINGMODE_10BIT) + { + if((slaveaddrcode & SlaveAddr_MSK) == ((ownadd1code >> SlaveAddr_SHIFT) & SlaveAddr_MSK)) + { + slaveaddrcode = ownadd1code; + hi2c->AddrEventCount++; + if(hi2c->AddrEventCount == 2U) + { + /* Reset Address Event counter */ + hi2c->AddrEventCount = 0U; + + /* Clear ADDR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_ADDR); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call Slave Addr callback */ + HAL_I2C_AddrCallback(hi2c, transferdirection, slaveaddrcode); + } + } + else + { + slaveaddrcode = ownadd2code; + + /* Disable ADDR Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call Slave Addr callback */ + HAL_I2C_AddrCallback(hi2c, transferdirection, slaveaddrcode); + } + } + /* else 7 bits addressing mode is selected */ + else + { + /* Disable ADDR Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call Slave Addr callback */ + HAL_I2C_AddrCallback(hi2c, transferdirection, slaveaddrcode); + } + } + /* Else clear address flag only */ + else + { + /* Clear ADDR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_ADDR); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + } +} + +/** + * @brief I2C Master sequential complete process. + * @param hi2c I2C handle. + * @retval None + */ +static void I2C_ITMasterSequentialCplt(I2C_HandleTypeDef *hi2c) +{ + /* Reset I2C handle mode */ + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* No Generate Stop, to permit restart mode */ + /* The stop will be done at the end of transfer, when I2C_AUTOEND_MODE enable */ + if (hi2c->State == HAL_I2C_STATE_BUSY_TX) + { + hi2c->State = HAL_I2C_STATE_READY; + hi2c->PreviousState = I2C_STATE_MASTER_BUSY_TX; + hi2c->XferISR = NULL; + + /* Disable Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_TX_IT); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_MasterTxCpltCallback(hi2c); + } + /* hi2c->State == HAL_I2C_STATE_BUSY_RX */ + else + { + hi2c->State = HAL_I2C_STATE_READY; + hi2c->PreviousState = I2C_STATE_MASTER_BUSY_RX; + hi2c->XferISR = NULL; + + /* Disable Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_RX_IT); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_MasterRxCpltCallback(hi2c); + } +} + +/** + * @brief I2C Slave sequential complete process. + * @param hi2c I2C handle. + * @retval None + */ +static void I2C_ITSlaveSequentialCplt(I2C_HandleTypeDef *hi2c) +{ + /* Reset I2C handle mode */ + hi2c->Mode = HAL_I2C_MODE_NONE; + + if(hi2c->State == HAL_I2C_STATE_BUSY_TX_LISTEN) + { + /* Remove HAL_I2C_STATE_SLAVE_BUSY_TX, keep only HAL_I2C_STATE_LISTEN */ + hi2c->State = HAL_I2C_STATE_LISTEN; + hi2c->PreviousState = I2C_STATE_SLAVE_BUSY_TX; + + /* Disable Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_TX_IT); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the Tx complete callback to inform upper layer of the end of transmit process */ + HAL_I2C_SlaveTxCpltCallback(hi2c); + } + + else if(hi2c->State == HAL_I2C_STATE_BUSY_RX_LISTEN) + { + /* Remove HAL_I2C_STATE_SLAVE_BUSY_RX, keep only HAL_I2C_STATE_LISTEN */ + hi2c->State = HAL_I2C_STATE_LISTEN; + hi2c->PreviousState = I2C_STATE_SLAVE_BUSY_RX; + + /* Disable Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_RX_IT); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the Rx complete callback to inform upper layer of the end of receive process */ + HAL_I2C_SlaveRxCpltCallback(hi2c); + } +} + +/** + * @brief I2C Master complete process. + * @param hi2c I2C handle. + * @param ITFlags Interrupt flags to handle. + * @retval None + */ +static void I2C_ITMasterCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) +{ + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + /* Reset handle parameters */ + hi2c->PreviousState = I2C_STATE_NONE; + hi2c->XferISR = NULL; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + + if((ITFlags & I2C_FLAG_AF) != RESET) + { + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Set acknowledge error code */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + } + + /* Flush TX register */ + I2C_Flush_TXDR(hi2c); + + /* Disable Interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_TX_IT| I2C_XFER_RX_IT); + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + if((hi2c->ErrorCode != HAL_I2C_ERROR_NONE) || (hi2c->State == HAL_I2C_STATE_ABORT)) + { + /* Call the corresponding callback to inform upper layer of End of Transfer */ + I2C_ITError(hi2c, hi2c->ErrorCode); + } + /* hi2c->State == HAL_I2C_STATE_BUSY_TX */ + else if(hi2c->State == HAL_I2C_STATE_BUSY_TX) + { + hi2c->State = HAL_I2C_STATE_READY; + + if (hi2c->Mode == HAL_I2C_MODE_MEM) + { + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_MemTxCpltCallback(hi2c); + } + else + { + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_MasterTxCpltCallback(hi2c); + } + } + /* hi2c->State == HAL_I2C_STATE_BUSY_RX */ + else if(hi2c->State == HAL_I2C_STATE_BUSY_RX) + { + hi2c->State = HAL_I2C_STATE_READY; + + if (hi2c->Mode == HAL_I2C_MODE_MEM) + { + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + HAL_I2C_MemRxCpltCallback(hi2c); + } + else + { + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + HAL_I2C_MasterRxCpltCallback(hi2c); + } + } +} + +/** + * @brief I2C Slave complete process. + * @param hi2c I2C handle. + * @param ITFlags Interrupt flags to handle. + * @retval None + */ +static void I2C_ITSlaveCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) +{ + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Clear ADDR flag */ + __HAL_I2C_CLEAR_FLAG(hi2c,I2C_FLAG_ADDR); + + /* Disable all interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT | I2C_XFER_TX_IT | I2C_XFER_RX_IT); + + /* Disable Address Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + /* Flush TX register */ + I2C_Flush_TXDR(hi2c); + + /* If a DMA is ongoing, Update handle size context */ + if(((hi2c->Instance->CR1 & I2C_CR1_TXDMAEN) == I2C_CR1_TXDMAEN) || + ((hi2c->Instance->CR1 & I2C_CR1_RXDMAEN) == I2C_CR1_RXDMAEN)) + { + hi2c->XferCount = I2C_GET_DMA_REMAIN_DATA(hi2c); + } + + /* All data are not transferred, so set error code accordingly */ + if(hi2c->XferCount != 0U) + { + /* Set ErrorCode corresponding to a Non-Acknowledge */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + } + + /* Store Last receive data if any */ + if(((ITFlags & I2C_FLAG_RXNE) != RESET)) + { + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + + if((hi2c->XferSize > 0U)) + { + hi2c->XferSize--; + hi2c->XferCount--; + + /* Set ErrorCode corresponding to a Non-Acknowledge */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + } + } + + hi2c->PreviousState = I2C_STATE_NONE; + hi2c->Mode = HAL_I2C_MODE_NONE; + hi2c->XferISR = NULL; + + if(hi2c->ErrorCode != HAL_I2C_ERROR_NONE) + { + /* Call the corresponding callback to inform upper layer of End of Transfer */ + I2C_ITError(hi2c, hi2c->ErrorCode); + + /* Call the Listen Complete callback, to inform upper layer of the end of Listen usecase */ + if(hi2c->State == HAL_I2C_STATE_LISTEN) + { + /* Call I2C Listen complete process */ + I2C_ITListenCplt(hi2c, ITFlags); + } + } + else if(hi2c->XferOptions != I2C_NO_OPTION_FRAME) + { + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the Listen Complete callback, to inform upper layer of the end of Listen usecase */ + HAL_I2C_ListenCpltCallback(hi2c); + } + /* Call the corresponding callback to inform upper layer of End of Transfer */ + else if(hi2c->State == HAL_I2C_STATE_BUSY_RX) + { + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the Slave Rx Complete callback */ + HAL_I2C_SlaveRxCpltCallback(hi2c); + } + else + { + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the Slave Tx Complete callback */ + HAL_I2C_SlaveTxCpltCallback(hi2c); + } +} + +/** + * @brief I2C Listen complete process. + * @param hi2c I2C handle. + * @param ITFlags Interrupt flags to handle. + * @retval None + */ +static void I2C_ITListenCplt(I2C_HandleTypeDef *hi2c, uint32_t ITFlags) +{ + /* Reset handle parameters */ + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->PreviousState = I2C_STATE_NONE; + hi2c->State = HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + hi2c->XferISR = NULL; + + /* Store Last receive data if any */ + if(((ITFlags & I2C_FLAG_RXNE) != RESET)) + { + /* Read data from RXDR */ + (*hi2c->pBuffPtr++) = hi2c->Instance->RXDR; + + if((hi2c->XferSize > 0U)) + { + hi2c->XferSize--; + hi2c->XferCount--; + + /* Set ErrorCode corresponding to a Non-Acknowledge */ + hi2c->ErrorCode |= HAL_I2C_ERROR_AF; + } + } + + /* Disable all Interrupts*/ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT | I2C_XFER_RX_IT | I2C_XFER_TX_IT); + + /* Clear NACK Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the Listen Complete callback, to inform upper layer of the end of Listen usecase */ + HAL_I2C_ListenCpltCallback(hi2c); +} + +/** + * @brief I2C interrupts error process. + * @param hi2c I2C handle. + * @param ErrorCode Error code to handle. + * @retval None + */ +static void I2C_ITError(I2C_HandleTypeDef *hi2c, uint32_t ErrorCode) +{ + /* Reset handle parameters */ + hi2c->Mode = HAL_I2C_MODE_NONE; + hi2c->XferOptions = I2C_NO_OPTION_FRAME; + hi2c->XferCount = 0U; + + /* Set new error code */ + hi2c->ErrorCode |= ErrorCode; + + /* Disable Interrupts */ + if((hi2c->State == HAL_I2C_STATE_LISTEN) || + (hi2c->State == HAL_I2C_STATE_BUSY_TX_LISTEN) || + (hi2c->State == HAL_I2C_STATE_BUSY_RX_LISTEN)) + { + /* Disable all interrupts, except interrupts related to LISTEN state */ + I2C_Disable_IRQ(hi2c, I2C_XFER_RX_IT | I2C_XFER_TX_IT); + + /* keep HAL_I2C_STATE_LISTEN if set */ + hi2c->State = HAL_I2C_STATE_LISTEN; + hi2c->PreviousState = I2C_STATE_NONE; + hi2c->XferISR = I2C_Slave_ISR_IT; + } + else + { + /* Disable all interrupts */ + I2C_Disable_IRQ(hi2c, I2C_XFER_LISTEN_IT | I2C_XFER_RX_IT | I2C_XFER_TX_IT); + + /* If state is an abort treatment on goind, don't change state */ + /* This change will be do later */ + if(hi2c->State != HAL_I2C_STATE_ABORT) + { + /* Set HAL_I2C_STATE_READY */ + hi2c->State = HAL_I2C_STATE_READY; + } + hi2c->PreviousState = I2C_STATE_NONE; + hi2c->XferISR = NULL; + } + + /* Abort DMA TX transfer if any */ + if((hi2c->Instance->CR1 & I2C_CR1_TXDMAEN) == I2C_CR1_TXDMAEN) + { + hi2c->Instance->CR1 &= ~I2C_CR1_TXDMAEN; + + /* Set the I2C DMA Abort callback : + will lead to call HAL_I2C_ErrorCallback() at end of DMA abort procedure */ + hi2c->hdmatx->XferAbortCallback = I2C_DMAAbort; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Abort DMA TX */ + if(HAL_DMA_Abort_IT(hi2c->hdmatx) != HAL_OK) + { + /* Call Directly XferAbortCallback function in case of error */ + hi2c->hdmatx->XferAbortCallback(hi2c->hdmatx); + } + } + /* Abort DMA RX transfer if any */ + else if((hi2c->Instance->CR1 & I2C_CR1_RXDMAEN) == I2C_CR1_RXDMAEN) + { + hi2c->Instance->CR1 &= ~I2C_CR1_RXDMAEN; + + /* Set the I2C DMA Abort callback : + will lead to call HAL_I2C_ErrorCallback() at end of DMA abort procedure */ + hi2c->hdmarx->XferAbortCallback = I2C_DMAAbort; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Abort DMA RX */ + if(HAL_DMA_Abort_IT(hi2c->hdmarx) != HAL_OK) + { + /* Call Directly hi2c->hdmarx->XferAbortCallback function in case of error */ + hi2c->hdmarx->XferAbortCallback(hi2c->hdmarx); + } + } + else if(hi2c->State == HAL_I2C_STATE_ABORT) + { + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_AbortCpltCallback(hi2c); + } + else + { + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_ErrorCallback(hi2c); + } +} + +/** + * @brief I2C Tx data register flush process. + * @param hi2c I2C handle. + * @retval None + */ +static void I2C_Flush_TXDR(I2C_HandleTypeDef *hi2c) +{ + /* If a pending TXIS flag is set */ + /* Write a dummy data in TXDR to clear it */ + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXIS) != RESET) + { + hi2c->Instance->TXDR = 0x00U; + } + + /* Flush TX register if not empty */ + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXE) == RESET) + { + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_TXE); + } +} + +/** + * @brief DMA I2C master transmit process complete callback. + * @param hdma DMA handle + * @retval None + */ +static void I2C_DMAMasterTransmitCplt(DMA_HandleTypeDef *hdma) +{ + I2C_HandleTypeDef* hi2c = (I2C_HandleTypeDef*)((DMA_HandleTypeDef*)hdma)->Parent; + + /* Disable DMA Request */ + hi2c->Instance->CR1 &= ~I2C_CR1_TXDMAEN; + + /* If last transfer, enable STOP interrupt */ + if(hi2c->XferCount == 0U) + { + /* Enable STOP interrupt */ + I2C_Enable_IRQ(hi2c, I2C_XFER_CPLT_IT); + } + /* else prepare a new DMA transfer and enable TCReload interrupt */ + else + { + /* Update Buffer pointer */ + hi2c->pBuffPtr += hi2c->XferSize; + + /* Set the XferSize to transfer */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + } + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)hi2c->pBuffPtr, (uint32_t)&hi2c->Instance->TXDR, hi2c->XferSize); + + /* Enable TC interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_RELOAD_IT); + } +} + +/** + * @brief DMA I2C slave transmit process complete callback. + * @param hdma DMA handle + * @retval None + */ +static void I2C_DMASlaveTransmitCplt(DMA_HandleTypeDef *hdma) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hdma); + + /* No specific action, Master fully manage the generation of STOP condition */ + /* Mean that this generation can arrive at any time, at the end or during DMA process */ + /* So STOP condition should be manage through Interrupt treatment */ +} + +/** + * @brief DMA I2C master receive process complete callback. + * @param hdma DMA handle + * @retval None + */ +static void I2C_DMAMasterReceiveCplt(DMA_HandleTypeDef *hdma) +{ + I2C_HandleTypeDef* hi2c = (I2C_HandleTypeDef*)((DMA_HandleTypeDef*)hdma)->Parent; + + /* Disable DMA Request */ + hi2c->Instance->CR1 &= ~I2C_CR1_RXDMAEN; + + /* If last transfer, enable STOP interrupt */ + if(hi2c->XferCount == 0U) + { + /* Enable STOP interrupt */ + I2C_Enable_IRQ(hi2c, I2C_XFER_CPLT_IT); + } + /* else prepare a new DMA transfer and enable TCReload interrupt */ + else + { + /* Update Buffer pointer */ + hi2c->pBuffPtr += hi2c->XferSize; + + /* Set the XferSize to transfer */ + if(hi2c->XferCount > MAX_NBYTE_SIZE) + { + hi2c->XferSize = MAX_NBYTE_SIZE; + } + else + { + hi2c->XferSize = hi2c->XferCount; + } + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hi2c->hdmarx, (uint32_t)&hi2c->Instance->RXDR, (uint32_t)hi2c->pBuffPtr, hi2c->XferSize); + + /* Enable TC interrupts */ + I2C_Enable_IRQ(hi2c, I2C_XFER_RELOAD_IT); + } +} + +/** + * @brief DMA I2C slave receive process complete callback. + * @param hdma DMA handle + * @retval None + */ +static void I2C_DMASlaveReceiveCplt(DMA_HandleTypeDef *hdma) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hdma); + + /* No specific action, Master fully manage the generation of STOP condition */ + /* Mean that this generation can arrive at any time, at the end or during DMA process */ + /* So STOP condition should be manage through Interrupt treatment */ +} + +/** + * @brief DMA I2C communication error callback. + * @param hdma DMA handle + * @retval None + */ +static void I2C_DMAError(DMA_HandleTypeDef *hdma) +{ + I2C_HandleTypeDef* hi2c = ( I2C_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + /* Disable Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + I2C_ITError(hi2c, HAL_I2C_ERROR_DMA); +} + +/** + * @brief DMA I2C communication abort callback + * (To be called at end of DMA Abort procedure). + * @param hdma: DMA handle. + * @retval None + */ +static void I2C_DMAAbort(DMA_HandleTypeDef *hdma) +{ + I2C_HandleTypeDef* hi2c = ( I2C_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + /* Disable Acknowledge */ + hi2c->Instance->CR2 |= I2C_CR2_NACK; + + /* Reset AbortCpltCallback */ + hi2c->hdmatx->XferAbortCallback = NULL; + hi2c->hdmarx->XferAbortCallback = NULL; + + /* Check if come from abort from user */ + if(hi2c->State == HAL_I2C_STATE_ABORT) + { + hi2c->State = HAL_I2C_STATE_READY; + + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_AbortCpltCallback(hi2c); + } + else + { + /* Call the corresponding callback to inform upper layer of End of Transfer */ + HAL_I2C_ErrorCallback(hi2c); + } +} + +/** + * @brief This function handles I2C Communication Timeout. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param Flag Specifies the I2C flag to check. + * @param Status The new Flag status (SET or RESET). + * @param Timeout Timeout duration + * @param Tickstart Tick start value + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_WaitOnFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Flag, FlagStatus Status, uint32_t Timeout, uint32_t Tickstart) +{ + while(__HAL_I2C_GET_FLAG(hi2c, Flag) == Status) + { + /* Check for the Timeout */ + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - Tickstart ) > Timeout)) + { + hi2c->State= HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + } + return HAL_OK; +} + +/** + * @brief This function handles I2C Communication Timeout for specific usage of TXIS flag. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param Timeout Timeout duration + * @param Tickstart Tick start value + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_WaitOnTXISFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) +{ + while(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXIS) == RESET) + { + /* Check if a NACK is detected */ + if(I2C_IsAcknowledgeFailed(hi2c, Timeout, Tickstart) != HAL_OK) + { + return HAL_ERROR; + } + + /* Check for the Timeout */ + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - Tickstart) > Timeout)) + { + hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; + hi2c->State= HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_TIMEOUT; + } + } + } + return HAL_OK; +} + +/** + * @brief This function handles I2C Communication Timeout for specific usage of STOP flag. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param Timeout Timeout duration + * @param Tickstart Tick start value + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_WaitOnSTOPFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) +{ + while(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_STOPF) == RESET) + { + /* Check if a NACK is detected */ + if(I2C_IsAcknowledgeFailed(hi2c, Timeout, Tickstart) != HAL_OK) + { + return HAL_ERROR; + } + + /* Check for the Timeout */ + if((Timeout == 0U)||((HAL_GetTick() - Tickstart) > Timeout)) + { + hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; + hi2c->State= HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_TIMEOUT; + } + } + return HAL_OK; +} + +/** + * @brief This function handles I2C Communication Timeout for specific usage of RXNE flag. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param Timeout Timeout duration + * @param Tickstart Tick start value + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_WaitOnRXNEFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) +{ + while(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == RESET) + { + /* Check if a NACK is detected */ + if(I2C_IsAcknowledgeFailed(hi2c, Timeout, Tickstart) != HAL_OK) + { + return HAL_ERROR; + } + + /* Check if a STOPF is detected */ + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_STOPF) == SET) + { + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + hi2c->ErrorCode = HAL_I2C_ERROR_NONE; + hi2c->State= HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_ERROR; + } + + /* Check for the Timeout */ + if((Timeout == 0U)||((HAL_GetTick() - Tickstart) > Timeout)) + { + hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; + hi2c->State= HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_TIMEOUT; + } + } + return HAL_OK; +} + +/** + * @brief This function handles Acknowledge failed detection during an I2C Communication. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param Timeout Timeout duration + * @param Tickstart Tick start value + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_IsAcknowledgeFailed(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) +{ + if(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == SET) + { + /* Wait until STOP Flag is reset */ + /* AutoEnd should be initiate after AF */ + while(__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_STOPF) == RESET) + { + /* Check for the Timeout */ + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - Tickstart) > Timeout)) + { + hi2c->State= HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + return HAL_TIMEOUT; + } + } + } + + /* Clear NACKF Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); + + /* Clear STOP Flag */ + __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); + + /* Flush TX register */ + I2C_Flush_TXDR(hi2c); + + /* Clear Configuration Register 2 */ + I2C_RESET_CR2(hi2c); + + hi2c->ErrorCode = HAL_I2C_ERROR_AF; + hi2c->State= HAL_I2C_STATE_READY; + hi2c->Mode = HAL_I2C_MODE_NONE; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_ERROR; + } + return HAL_OK; +} + +/** + * @brief Handles I2Cx communication when starting transfer or during transfer (TC or TCR flag are set). + * @param hi2c I2C handle. + * @param DevAddress Specifies the slave address to be programmed. + * @param Size Specifies the number of bytes to be programmed. + * This parameter must be a value between 0 and 255. + * @param Mode New state of the I2C START condition generation. + * This parameter can be one of the following values: + * @arg @ref I2C_RELOAD_MODE Enable Reload mode . + * @arg @ref I2C_AUTOEND_MODE Enable Automatic end mode. + * @arg @ref I2C_SOFTEND_MODE Enable Software end mode. + * @param Request New state of the I2C START condition generation. + * This parameter can be one of the following values: + * @arg @ref I2C_NO_STARTSTOP Don't Generate stop and start condition. + * @arg @ref I2C_GENERATE_STOP Generate stop condition (Size should be set to 0). + * @arg @ref I2C_GENERATE_START_READ Generate Restart for read request. + * @arg @ref I2C_GENERATE_START_WRITE Generate Restart for write request. + * @retval None + */ +static void I2C_TransferConfig(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t Size, uint32_t Mode, uint32_t Request) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance)); + assert_param(IS_TRANSFER_MODE(Mode)); + assert_param(IS_TRANSFER_REQUEST(Request)); + + /* Get the CR2 register value */ + tmpreg = hi2c->Instance->CR2; + + /* clear tmpreg specific bits */ + tmpreg &= (uint32_t)~((uint32_t)(I2C_CR2_SADD | I2C_CR2_NBYTES | I2C_CR2_RELOAD | I2C_CR2_AUTOEND | I2C_CR2_RD_WRN | I2C_CR2_START | I2C_CR2_STOP)); + + /* update tmpreg */ + tmpreg |= (uint32_t)(((uint32_t)DevAddress & I2C_CR2_SADD) | (((uint32_t)Size << 16 ) & I2C_CR2_NBYTES) | \ + (uint32_t)Mode | (uint32_t)Request); + + /* update CR2 register */ + hi2c->Instance->CR2 = tmpreg; +} + +/** + * @brief Manage the enabling of Interrupts. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param InterruptRequest Value of @ref I2C_Interrupt_configuration_definition. + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_Enable_IRQ(I2C_HandleTypeDef *hi2c, uint16_t InterruptRequest) +{ + uint32_t tmpisr = 0U; + + if((hi2c->XferISR == I2C_Master_ISR_DMA) || \ + (hi2c->XferISR == I2C_Slave_ISR_DMA)) + { + if((InterruptRequest & I2C_XFER_LISTEN_IT) == I2C_XFER_LISTEN_IT) + { + /* Enable ERR, STOP, NACK and ADDR interrupts */ + tmpisr |= I2C_IT_ADDRI | I2C_IT_STOPI | I2C_IT_NACKI | I2C_IT_ERRI; + } + + if((InterruptRequest & I2C_XFER_ERROR_IT) == I2C_XFER_ERROR_IT) + { + /* Enable ERR and NACK interrupts */ + tmpisr |= I2C_IT_ERRI | I2C_IT_NACKI; + } + + if((InterruptRequest & I2C_XFER_CPLT_IT) == I2C_XFER_CPLT_IT) + { + /* Enable STOP interrupts */ + tmpisr |= I2C_IT_STOPI; + } + + if((InterruptRequest & I2C_XFER_RELOAD_IT) == I2C_XFER_RELOAD_IT) + { + /* Enable TC interrupts */ + tmpisr |= I2C_IT_TCI; + } + } + else + { + if((InterruptRequest & I2C_XFER_LISTEN_IT) == I2C_XFER_LISTEN_IT) + { + /* Enable ERR, STOP, NACK, and ADDR interrupts */ + tmpisr |= I2C_IT_ADDRI | I2C_IT_STOPI | I2C_IT_NACKI | I2C_IT_ERRI; + } + + if((InterruptRequest & I2C_XFER_TX_IT) == I2C_XFER_TX_IT) + { + /* Enable ERR, TC, STOP, NACK and RXI interrupts */ + tmpisr |= I2C_IT_ERRI | I2C_IT_TCI | I2C_IT_STOPI | I2C_IT_NACKI | I2C_IT_TXI; + } + + if((InterruptRequest & I2C_XFER_RX_IT) == I2C_XFER_RX_IT) + { + /* Enable ERR, TC, STOP, NACK and TXI interrupts */ + tmpisr |= I2C_IT_ERRI | I2C_IT_TCI | I2C_IT_STOPI | I2C_IT_NACKI | I2C_IT_RXI; + } + + if((InterruptRequest & I2C_XFER_CPLT_IT) == I2C_XFER_CPLT_IT) + { + /* Enable STOP interrupts */ + tmpisr |= I2C_IT_STOPI; + } + } + + /* Enable interrupts only at the end */ + /* to avoid the risk of I2C interrupt handle execution before */ + /* all interrupts requested done */ + __HAL_I2C_ENABLE_IT(hi2c, tmpisr); + + return HAL_OK; +} + +/** + * @brief Manage the disabling of Interrupts. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2C. + * @param InterruptRequest Value of @ref I2C_Interrupt_configuration_definition. + * @retval HAL status + */ +static HAL_StatusTypeDef I2C_Disable_IRQ(I2C_HandleTypeDef *hi2c, uint16_t InterruptRequest) +{ + uint32_t tmpisr = 0U; + + if((InterruptRequest & I2C_XFER_TX_IT) == I2C_XFER_TX_IT) + { + /* Disable TC and TXI interrupts */ + tmpisr |= I2C_IT_TCI | I2C_IT_TXI; + + if((hi2c->State & HAL_I2C_STATE_LISTEN) != HAL_I2C_STATE_LISTEN) + { + /* Disable NACK and STOP interrupts */ + tmpisr |= I2C_IT_STOPI | I2C_IT_NACKI | I2C_IT_ERRI; + } + } + + if((InterruptRequest & I2C_XFER_RX_IT) == I2C_XFER_RX_IT) + { + /* Disable TC and RXI interrupts */ + tmpisr |= I2C_IT_TCI | I2C_IT_RXI; + + if((hi2c->State & HAL_I2C_STATE_LISTEN) != HAL_I2C_STATE_LISTEN) + { + /* Disable NACK and STOP interrupts */ + tmpisr |= I2C_IT_STOPI | I2C_IT_NACKI | I2C_IT_ERRI; + } + } + + if((InterruptRequest & I2C_XFER_LISTEN_IT) == I2C_XFER_LISTEN_IT) + { + /* Disable ADDR, NACK and STOP interrupts */ + tmpisr |= I2C_IT_ADDRI | I2C_IT_STOPI | I2C_IT_NACKI | I2C_IT_ERRI; + } + + if((InterruptRequest & I2C_XFER_ERROR_IT) == I2C_XFER_ERROR_IT) + { + /* Enable ERR and NACK interrupts */ + tmpisr |= I2C_IT_ERRI | I2C_IT_NACKI; + } + + if((InterruptRequest & I2C_XFER_CPLT_IT) == I2C_XFER_CPLT_IT) + { + /* Enable STOP interrupts */ + tmpisr |= I2C_IT_STOPI; + } + + if((InterruptRequest & I2C_XFER_RELOAD_IT) == I2C_XFER_RELOAD_IT) + { + /* Enable TC interrupts */ + tmpisr |= I2C_IT_TCI; + } + + /* Disable interrupts only at the end */ + /* to avoid a breaking situation like at "t" time */ + /* all disable interrupts request are not done */ + __HAL_I2C_DISABLE_IT(hi2c, tmpisr); + + return HAL_OK; +} + +/** + * @} + */ + +#endif /* HAL_I2C_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c new file mode 100644 index 0000000..f81fe43 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c @@ -0,0 +1,351 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_i2c_ex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief I2C Extended HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of I2C Extended peripheral: + * + Extended features functions + * + @verbatim + ============================================================================== + ##### I2C peripheral Extended features ##### + ============================================================================== + + [..] Comparing to other previous devices, the I2C interface for STM32L0xx + devices contains the following additional features + + (+) Possibility to disable or enable Analog Noise Filter + (+) Use of a configured Digital Noise Filter + (+) Disable or enable wakeup from Stop mode + + ##### How to use this driver ##### + ============================================================================== + [..] This driver provides functions to configure Noise Filter and Wake Up Feature + (#) Configure I2C Analog noise filter using the function HAL_I2CEx_ConfigAnalogFilter() + (#) Configure I2C Digital noise filter using the function HAL_I2CEx_ConfigDigitalFilter() + (#) Configure the enable or disable of I2C Wake Up Mode using the functions : + (++) HAL_I2CEx_EnableWakeUp() + (++) HAL_I2CEx_DisableWakeUp() + (#) Configure the enable or disable of fast mode plus driving capability using the functions : + (++) HAL_I2CEx_EnableFastModePlus() + (++) HAL_I2CEx_DisableFastModePlus() + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup I2CEx I2CEx + * @brief I2C Extended HAL module driver + * @{ + */ + +#ifdef HAL_I2C_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +/** @defgroup I2CEx_Exported_Functions I2C Extended Exported Functions + * @{ + */ + +/** @defgroup I2CEx_Exported_Functions_Group1 Extended features functions + * @brief Extended features functions + * +@verbatim + =============================================================================== + ##### Extended features functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Configure Noise Filters + (+) Configure Wake Up Feature + +@endverbatim + * @{ + */ + +/** + * @brief Configure I2C Analog noise filter. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2Cx peripheral. + * @param AnalogFilter New state of the Analog filter. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *hi2c, uint32_t AnalogFilter) +{ + /* Check the parameters */ + assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance)); + assert_param(IS_I2C_ANALOG_FILTER(AnalogFilter)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY; + + /* Disable the selected I2C peripheral */ + __HAL_I2C_DISABLE(hi2c); + + /* Reset I2Cx ANOFF bit */ + hi2c->Instance->CR1 &= ~(I2C_CR1_ANFOFF); + + /* Set analog filter bit*/ + hi2c->Instance->CR1 |= AnalogFilter; + + __HAL_I2C_ENABLE(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Configure I2C Digital noise filter. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2Cx peripheral. + * @param DigitalFilter Coefficient of digital noise filter between Min_Data=0x00 and Max_Data=0x0F. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *hi2c, uint32_t DigitalFilter) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance)); + assert_param(IS_I2C_DIGITAL_FILTER(DigitalFilter)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY; + + /* Disable the selected I2C peripheral */ + __HAL_I2C_DISABLE(hi2c); + + /* Get the old register value */ + tmpreg = hi2c->Instance->CR1; + + /* Reset I2Cx DNF bits [11:8] */ + tmpreg &= ~(I2C_CR1_DNF); + + /* Set I2Cx DNF coefficient */ + tmpreg |= DigitalFilter << 8U; + + /* Store the new register value */ + hi2c->Instance->CR1 = tmpreg; + + __HAL_I2C_ENABLE(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Enable I2C wakeup from stop mode. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2Cx peripheral. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp (I2C_HandleTypeDef *hi2c) +{ + /* Check the parameters */ + assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hi2c->Instance)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY; + + /* Disable the selected I2C peripheral */ + __HAL_I2C_DISABLE(hi2c); + + /* Enable wakeup from stop mode */ + hi2c->Instance->CR1 |= I2C_CR1_WUPEN; + + __HAL_I2C_ENABLE(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Disable I2C wakeup from stop mode. + * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains + * the configuration information for the specified I2Cx peripheral. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp (I2C_HandleTypeDef *hi2c) +{ + /* Check the parameters */ + assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hi2c->Instance)); + + if(hi2c->State == HAL_I2C_STATE_READY) + { + /* Process Locked */ + __HAL_LOCK(hi2c); + + hi2c->State = HAL_I2C_STATE_BUSY; + + /* Disable the selected I2C peripheral */ + __HAL_I2C_DISABLE(hi2c); + + /* Enable wakeup from stop mode */ + hi2c->Instance->CR1 &= ~(I2C_CR1_WUPEN); + + __HAL_I2C_ENABLE(hi2c); + + hi2c->State = HAL_I2C_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hi2c); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Enable the I2C fast mode plus driving capability. + * @param ConfigFastModePlus Selects the pin. + * This parameter can be one of the @ref I2CEx_FastModePlus values + * @note For I2C1, fast mode plus driving capability can be enabled on all selected + * I2C1 pins using I2C_FASTMODEPLUS_I2C1 parameter or independently + * on each one of the following pins PB6, PB7, PB8 and PB9. + * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability + * can be enabled only by using I2C_FASTMODEPLUS_I2C1 parameter. + * @note For all I2C2 pins fast mode plus driving capability can be enabled + * only by using I2C_FASTMODEPLUS_I2C2 parameter. + * @note For all I2C3 pins fast mode plus driving capability can be enabled + * only by using I2C_FASTMODEPLUS_I2C3 parameter. + * @retval None + */ +void HAL_I2CEx_EnableFastModePlus(uint32_t ConfigFastModePlus) +{ + /* Check the parameter */ + assert_param(IS_I2C_FASTMODEPLUS(ConfigFastModePlus)); + + /* Enable SYSCFG clock */ + __HAL_RCC_SYSCFG_CLK_ENABLE(); + + /* Enable fast mode plus driving capability for selected pin */ + SET_BIT(SYSCFG->CFGR2, (uint32_t)ConfigFastModePlus); +} + +/** + * @brief Disable the I2C fast mode plus driving capability. + * @param ConfigFastModePlus Selects the pin. + * This parameter can be one of the @ref I2CEx_FastModePlus values + * @note For I2C1, fast mode plus driving capability can be disabled on all selected + * I2C1 pins using I2C_FASTMODEPLUS_I2C1 parameter or independently + * on each one of the following pins PB6, PB7, PB8 and PB9. + * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability + * can be disabled only by using I2C_FASTMODEPLUS_I2C1 parameter. + * @note For all I2C2 pins fast mode plus driving capability can be disabled + * only by using I2C_FASTMODEPLUS_I2C2 parameter. + * @note For all I2C3 pins fast mode plus driving capability can be disabled + * only by using I2C_FASTMODEPLUS_I2C3 parameter. + * @retval None + */ +void HAL_I2CEx_DisableFastModePlus(uint32_t ConfigFastModePlus) +{ + /* Check the parameter */ + assert_param(IS_I2C_FASTMODEPLUS(ConfigFastModePlus)); + + /* Enable SYSCFG clock */ + __HAL_RCC_SYSCFG_CLK_ENABLE(); + + /* Disable fast mode plus driving capability for selected pin */ + CLEAR_BIT(SYSCFG->CFGR2, (uint32_t)ConfigFastModePlus); +} + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_I2C_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c new file mode 100644 index 0000000..bfecf4b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c @@ -0,0 +1,2359 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_irda.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief IRDA HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the IrDA (Infrared Data Association) Peripheral + * (IRDA) + * + Initialization and de-initialization functions + * + IO operation functions + * + Peripheral State and Errors functions + * + Peripheral Control functions + * + @verbatim + ============================================================================== + ##### How to use this driver ##### + ============================================================================== + [..] + The IRDA HAL driver can be used as follows: + + (#) Declare a IRDA_HandleTypeDef handle structure (eg. IRDA_HandleTypeDef hirda). + (#) Initialize the IRDA low level resources by implementing the HAL_IRDA_MspInit() API + in setting the associated USART or UART in IRDA mode: + (++) Enable the USARTx/UARTx interface clock. + (++) USARTx/UARTx pins configuration: + (+++) Enable the clock for the USARTx/UARTx GPIOs. + (+++) Configure these USARTx/UARTx pins (TX as alternate function pull-up, RX as alternate function Input). + (++) NVIC configuration if you need to use interrupt process (HAL_IRDA_Transmit_IT() + and HAL_IRDA_Receive_IT() APIs): + (+++) Configure the USARTx/UARTx interrupt priority. + (+++) Enable the NVIC USARTx/UARTx IRQ handle. + (+++) The specific IRDA interrupts (Transmission complete interrupt, + RXNE interrupt and Error Interrupts) will be managed using the macros + __HAL_IRDA_ENABLE_IT() and __HAL_IRDA_DISABLE_IT() inside the transmit and receive process. + + (++) DMA Configuration if you need to use DMA process (HAL_IRDA_Transmit_DMA() + and HAL_IRDA_Receive_DMA() APIs): + (+++) Declare a DMA handle structure for the Tx/Rx channel. + (+++) Enable the DMAx interface clock. + (+++) Configure the declared DMA handle structure with the required Tx/Rx parameters. + (+++) Configure the DMA Tx/Rx channel. + (+++) Associate the initialized DMA handle to the IRDA DMA Tx/Rx handle. + (+++) Configure the priority and enable the NVIC for the transfer complete interrupt on the DMA Tx/Rx channel. + + (#) Program the Baud Rate, Word Length and Parity and Mode(Receiver/Transmitter), + the normal or low power mode and the clock prescaler in the hirda handle Init structure. + + (#) Initialize the IRDA registers by calling the HAL_IRDA_Init() API: + (++) This API configures also the low level Hardware GPIO, CLOCK, CORTEX...etc) + by calling the customized HAL_IRDA_MspInit() API. + + -@@- The specific IRDA interrupts (Transmission complete interrupt, + RXNE interrupt and Error Interrupts) will be managed using the macros + __HAL_IRDA_ENABLE_IT() and __HAL_IRDA_DISABLE_IT() inside the transmit and receive process. + + (#) Three operation modes are available within this driver : + + *** Polling mode IO operation *** + ================================= + [..] + (+) Send an amount of data in blocking mode using HAL_IRDA_Transmit() + (+) Receive an amount of data in blocking mode using HAL_IRDA_Receive() + + *** Interrupt mode IO operation *** + =================================== + [..] + (+) Send an amount of data in non-blocking mode using HAL_IRDA_Transmit_IT() + (+) At transmission end of transfer HAL_IRDA_TxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_IRDA_TxCpltCallback() + (+) Receive an amount of data in non-blocking mode using HAL_IRDA_Receive_IT() + (+) At reception end of transfer HAL_IRDA_RxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_IRDA_RxCpltCallback() + (+) In case of transfer Error, HAL_IRDA_ErrorCallback() function is executed and user can + add his own code by customization of function pointer HAL_IRDA_ErrorCallback() + + *** DMA mode IO operation *** + ============================== + [..] + (+) Send an amount of data in non-blocking mode (DMA) using HAL_IRDA_Transmit_DMA() + (+) At transmission half of transfer HAL_IRDA_TxHalfCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_IRDA_TxHalfCpltCallback() + (+) At transmission end of transfer HAL_IRDA_TxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_IRDA_TxCpltCallback() + (+) Receive an amount of data in non-blocking mode (DMA) using HAL_IRDA_Receive_DMA() + (+) At reception half of transfer HAL_IRDA_RxHalfCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_IRDA_RxHalfCpltCallback() + (+) At reception end of transfer HAL_IRDA_RxCpltCallback() is executed and user can + add his own code by customization of function pointer HAL_IRDA_RxCpltCallback() + (+) In case of transfer Error, HAL_IRDA_ErrorCallback() function is executed and user can + add his own code by customization of function pointer HAL_IRDA_ErrorCallback() + + *** IRDA HAL driver macros list *** + ==================================== + [..] + Below the list of most used macros in IRDA HAL driver. + + (+) __HAL_IRDA_ENABLE: Enable the IRDA peripheral + (+) __HAL_IRDA_DISABLE: Disable the IRDA peripheral + (+) __HAL_IRDA_GET_FLAG : Check whether the specified IRDA flag is set or not + (+) __HAL_IRDA_CLEAR_FLAG : Clear the specified IRDA pending flag + (+) __HAL_IRDA_ENABLE_IT: Enable the specified IRDA interrupt + (+) __HAL_IRDA_DISABLE_IT: Disable the specified IRDA interrupt + (+) __HAL_IRDA_GET_IT_SOURCE: Check whether or not the specified IRDA interrupt is enabled + + [..] + (@) You can refer to the IRDA HAL driver header file for more useful macros + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup IRDA IRDA + * @brief HAL IRDA module driver + * @{ + */ + +#ifdef HAL_IRDA_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/** @defgroup IRDA_Private_Constants IRDA Private Constants + * @{ + */ +#define IRDA_TEACK_REACK_TIMEOUT 1000U /*!< IRDA TX or RX enable acknowledge time-out value */ +#define IRDA_CR1_FIELDS ((uint32_t)(USART_CR1_M | USART_CR1_PCE \ + | USART_CR1_PS | USART_CR1_TE | USART_CR1_RE)) /*!< UART or USART CR1 fields of parameters set by IRDA_SetConfig API */ +/** + * @} + */ + +/* Private macros ------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/** @addtogroup IRDA_Private_Functions + * @{ + */ +static HAL_StatusTypeDef IRDA_SetConfig(IRDA_HandleTypeDef *hirda); +static HAL_StatusTypeDef IRDA_CheckIdleState(IRDA_HandleTypeDef *hirda); +static HAL_StatusTypeDef IRDA_WaitOnFlagUntilTimeout(IRDA_HandleTypeDef *hirda, uint32_t Flag, FlagStatus Status, uint32_t Tickstart, uint32_t Timeout); +static void IRDA_EndTxTransfer(IRDA_HandleTypeDef *hirda); +static void IRDA_EndRxTransfer(IRDA_HandleTypeDef *hirda); +static void IRDA_DMATransmitCplt(DMA_HandleTypeDef *hdma); +static void IRDA_DMATransmitHalfCplt(DMA_HandleTypeDef *hdma); +static void IRDA_DMAReceiveCplt(DMA_HandleTypeDef *hdma); +static void IRDA_DMAReceiveHalfCplt(DMA_HandleTypeDef *hdma); +static void IRDA_DMAError(DMA_HandleTypeDef *hdma); +static void IRDA_DMAAbortOnError(DMA_HandleTypeDef *hdma); +static void IRDA_DMATxAbortCallback(DMA_HandleTypeDef *hdma); +static void IRDA_DMARxAbortCallback(DMA_HandleTypeDef *hdma); +static void IRDA_DMATxOnlyAbortCallback(DMA_HandleTypeDef *hdma); +static void IRDA_DMARxOnlyAbortCallback(DMA_HandleTypeDef *hdma); +static HAL_StatusTypeDef IRDA_Transmit_IT(IRDA_HandleTypeDef *hirda); +static HAL_StatusTypeDef IRDA_EndTransmit_IT(IRDA_HandleTypeDef *hirda); +static HAL_StatusTypeDef IRDA_Receive_IT(IRDA_HandleTypeDef *hirda); +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** @defgroup IRDA_Exported_Functions IRDA Exported Functions + * @{ + */ + +/** @defgroup IRDA_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Initialization and Configuration functions + * +@verbatim + ============================================================================== + ##### Initialization and Configuration functions ##### + ============================================================================== + [..] + This subsection provides a set of functions allowing to initialize the USARTx + in asynchronous IRDA mode. + (+) For the asynchronous mode only these parameters can be configured: + (++) Baud Rate + (++) Word Length + (++) Parity: If the parity is enabled, then the MSB bit of the data written + in the data register is transmitted but is changed by the parity bit. + (++) Power mode + (++) Prescaler setting + (++) Receiver/transmitter modes + + [..] + The HAL_IRDA_Init() API follows the USART asynchronous configuration procedures + (details for the procedures are available in reference manual). + +@endverbatim + + Depending on the frame length defined by the M1 and M0 bits (7-bit, + 8-bit or 9-bit), the possible IRDA frame formats are listed in the + following table. + + Table 1. IRDA frame format. + +-----------------------------------------------------------------------+ + | M1 bit | M0 bit | PCE bit | IRDA frame | + |---------|---------|-----------|---------------------------------------| + | 0 | 0 | 0 | | SB | 8 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 0 | 1 | | SB | 7 bit data | PB | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 1 | 0 | | SB | 9 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 1 | 1 | | SB | 8 bit data | PB | STB | | + |---------|---------|-----------|---------------------------------------| + | 1 | 0 | 0 | | SB | 7 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 1 | 0 | 1 | | SB | 6 bit data | PB | STB | | + +-----------------------------------------------------------------------+ + + * @{ + */ + +/** + * @brief Initialize the IRDA mode according to the specified + * parameters in the IRDA_InitTypeDef and initialize the associated handle. + * @param hirda: Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_Init(IRDA_HandleTypeDef *hirda) +{ + /* Check the IRDA handle allocation */ + if(hirda == NULL) + { + return HAL_ERROR; + } + + /* Check the USART/UART associated to the IRDA handle */ + assert_param(IS_IRDA_INSTANCE(hirda->Instance)); + + if(hirda->gState == HAL_IRDA_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + hirda->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK */ + HAL_IRDA_MspInit(hirda); + } + + hirda->gState = HAL_IRDA_STATE_BUSY; + + /* Disable the Peripheral to update the configuration registers */ + __HAL_IRDA_DISABLE(hirda); + + /* Set the IRDA Communication parameters */ + if (IRDA_SetConfig(hirda) == HAL_ERROR) + { + return HAL_ERROR; + } + + /* In IRDA mode, the following bits must be kept cleared: + - LINEN, STOP and CLKEN bits in the USART_CR2 register, + - SCEN and HDSEL bits in the USART_CR3 register.*/ + CLEAR_BIT(hirda->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN | USART_CR2_STOP)); + CLEAR_BIT(hirda->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL)); + + /* set the UART/USART in IRDA mode */ + hirda->Instance->CR3 |= USART_CR3_IREN; + + /* Enable the Peripheral */ + __HAL_IRDA_ENABLE(hirda); + + /* TEACK and/or REACK to check before moving hirda->gState and hirda->RxState to Ready */ + return (IRDA_CheckIdleState(hirda)); +} + +/** + * @brief DeInitialize the IRDA peripheral. + * @param hirda: Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_DeInit(IRDA_HandleTypeDef *hirda) +{ + /* Check the IRDA handle allocation */ + if(hirda == NULL) + { + return HAL_ERROR; + } + + /* Check the USART/UART associated to the IRDA handle */ + assert_param(IS_IRDA_INSTANCE(hirda->Instance)); + + hirda->gState = HAL_IRDA_STATE_BUSY; + + /* DeInit the low level hardware */ + HAL_IRDA_MspDeInit(hirda); + /* Disable the Peripheral */ + __HAL_IRDA_DISABLE(hirda); + + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + hirda->gState = HAL_IRDA_STATE_RESET; + hirda->RxState = HAL_IRDA_STATE_RESET; + + /* Process Unlock */ + __HAL_UNLOCK(hirda); + + return HAL_OK; +} + +/** + * @brief Initialize the IRDA MSP. + * @param hirda: Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_MspInit(IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE: This function should not be modified, when the callback is needed, + the HAL_IRDA_MspInit can be implemented in the user file + */ +} + +/** + * @brief DeInitialize the IRDA MSP. + * @param hirda: Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_MspDeInit(IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE: This function should not be modified, when the callback is needed, + the HAL_IRDA_MspDeInit can be implemented in the user file + */ +} + +/** + * @} + */ + +/** @defgroup IRDA_Exported_Functions_Group2 IO operation functions + * @brief IRDA Transmit and Receive functions + * +@verbatim + =============================================================================== + ##### IO operation functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to manage the IRDA data transfers. + + [..] + IrDA is a half duplex communication protocol. If the Transmitter is busy, any data + on the IrDA receive line will be ignored by the IrDA decoder and if the Receiver + is busy, data on the TX from the USART to IrDA will not be encoded by IrDA. + While receiving data, transmission should be avoided as the data to be transmitted + could be corrupted. + + (#) There are two mode of transfer: + (++) Blocking mode: the communication is performed in polling mode. + The HAL status of all data processing is returned by the same function + after finishing transfer. + (++) Non-Blocking mode: the communication is performed using Interrupts + or DMA, these API's return the HAL status. + The end of the data processing will be indicated through the + dedicated IRDA IRQ when using Interrupt mode or the DMA IRQ when + using DMA mode. + The HAL_IRDA_TxCpltCallback(), HAL_IRDA_RxCpltCallback() user callbacks + will be executed respectively at the end of the Transmit or Receive process + The HAL_IRDA_ErrorCallback() user callback will be executed when a communication error is detected + + (#) Blocking mode APIs are : + (++) HAL_IRDA_Transmit() + (++) HAL_IRDA_Receive() + + (#) Non Blocking mode APIs with Interrupt are : + (++) HAL_IRDA_Transmit_IT() + (++) HAL_IRDA_Receive_IT() + (++) HAL_IRDA_IRQHandler() + + (#) Non Blocking mode functions with DMA are : + (++) HAL_IRDA_Transmit_DMA() + (++) HAL_IRDA_Receive_DMA() + (++) HAL_IRDA_DMAPause() + (++) HAL_IRDA_DMAResume() + (++) HAL_IRDA_DMAStop() + + (#) A set of Transfer Complete Callbacks are provided in Non Blocking mode: + (++) HAL_IRDA_TxHalfCpltCallback() + (++) HAL_IRDA_TxCpltCallback() + (++) HAL_IRDA_RxHalfCpltCallback() + (++) HAL_IRDA_RxCpltCallback() + (++) HAL_IRDA_ErrorCallback() + + (#) Non-Blocking mode transfers could be aborted using Abort API's : + (+) HAL_IRDA_Abort() + (+) HAL_IRDA_AbortTransmit() + (+) HAL_IRDA_AbortReceive() + (+) HAL_IRDA_Abort_IT() + (+) HAL_IRDA_AbortTransmit_IT() + (+) HAL_IRDA_AbortReceive_IT() + + (#) For Abort services based on interrupts (HAL_IRDA_Abortxxx_IT), a set of Abort Complete Callbacks are provided: + (+) HAL_IRDA_AbortCpltCallback() + (+) HAL_IRDA_AbortTransmitCpltCallback() + (+) HAL_IRDA_AbortReceiveCpltCallback() + + (#) In Non-Blocking mode transfers, possible errors are split into 2 categories. + Errors are handled as follows : + (+) Error is considered as Recoverable and non blocking : Transfer could go till end, but error severity is + to be evaluated by user : this concerns Frame Error, Parity Error or Noise Error in Interrupt mode reception . + Received character is then retrieved and stored in Rx buffer, Error code is set to allow user to identify error type, + and HAL_IRDA_ErrorCallback() user callback is executed. Transfer is kept ongoing on IRDA side. + If user wants to abort it, Abort services should be called by user. + (+) Error is considered as Blocking : Transfer could not be completed properly and is aborted. + This concerns Overrun Error In Interrupt mode reception and all errors in DMA mode. + Error code is set to allow user to identify error type, and HAL_IRDA_ErrorCallback() user callback is executed. + +@endverbatim + * @{ + */ + +/** + * @brief Send an amount of data in blocking mode. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @param pData Pointer to data buffer. + * @param Size Amount of data to be sent. + * @param Timeout Specify timeout value. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_Transmit(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint16_t* tmp; + uint32_t tickstart = 0; + + /* Check that a Tx process is not already ongoing */ + if(hirda->gState == HAL_IRDA_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be filled into TDR will be + handled through a u16 cast. */ + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(hirda); + + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + hirda->gState = HAL_IRDA_STATE_BUSY_TX; + + /* Init tickstart for timeout managment*/ + tickstart = HAL_GetTick(); + + hirda->TxXferSize = Size; + hirda->TxXferCount = Size; + while(hirda->TxXferCount > 0U) + { + hirda->TxXferCount--; + + if(IRDA_WaitOnFlagUntilTimeout(hirda, IRDA_FLAG_TXE, RESET, tickstart, Timeout) != HAL_OK) + { + return HAL_TIMEOUT; + } + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + tmp = (uint16_t*) pData; + hirda->Instance->TDR = (*tmp & (uint16_t)0x01FFU); + pData += 2; + } + else + { + hirda->Instance->TDR = (*pData++ & (uint8_t)0xFFU); + } + } + + if(IRDA_WaitOnFlagUntilTimeout(hirda, IRDA_FLAG_TC, RESET, tickstart, Timeout) != HAL_OK) + { + return HAL_TIMEOUT; + } + + /* At end of Tx process, restore hirda->gState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive an amount of data in blocking mode. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @param pData Pointer to data buffer. + * @param Size Amount of data to be received. + * @param Timeout Specify timeout value. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_Receive(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint16_t* tmp; + uint16_t uhMask; + uint32_t tickstart = 0; + + /* Check that a Rx process is not already ongoing */ + if(hirda->RxState == HAL_IRDA_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be received from RDR will be + handled through a u16 cast. */ + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(hirda); + + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + hirda->RxState = HAL_IRDA_STATE_BUSY_RX; + + /* Init tickstart for timeout managment*/ + tickstart = HAL_GetTick(); + + hirda->RxXferSize = Size; + hirda->RxXferCount = Size; + + /* Computation of the mask to apply to RDR register + of the UART associated to the IRDA */ + IRDA_MASK_COMPUTATION(hirda); + uhMask = hirda->Mask; + + /* Check data remaining to be received */ + while(hirda->RxXferCount > 0U) + { + hirda->RxXferCount--; + + if(IRDA_WaitOnFlagUntilTimeout(hirda, IRDA_FLAG_RXNE, RESET, tickstart, Timeout) != HAL_OK) + { + return HAL_TIMEOUT; + } + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + tmp = (uint16_t*) pData ; + *tmp = (uint16_t)(hirda->Instance->RDR & uhMask); + pData +=2U; + } + else + { + *pData++ = (uint8_t)(hirda->Instance->RDR & (uint8_t)uhMask); + } + } + + /* At end of Rx process, restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Send an amount of data in interrupt mode. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @param pData Pointer to data buffer. + * @param Size Amount of data to be sent. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_Transmit_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size) +{ + /* Check that a Tx process is not already ongoing */ + if(hirda->gState == HAL_IRDA_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be filled into TDR will be + handled through a u16 cast. */ + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(hirda); + + hirda->pTxBuffPtr = pData; + hirda->TxXferSize = Size; + hirda->TxXferCount = Size; + + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + hirda->gState = HAL_IRDA_STATE_BUSY_TX; + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + /* Enable the IRDA Transmit Data Register Empty Interrupt */ + SET_BIT(hirda->Instance->CR1, USART_CR1_TXEIE); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive an amount of data in interrupt mode. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @param pData Pointer to data buffer. + * @param Size Amount of data to be received. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_Receive_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size) +{ + /* Check that a Rx process is not already ongoing */ + if(hirda->RxState == HAL_IRDA_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* Process Locked */ + __HAL_LOCK(hirda); + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be filled into TDR will be + handled through a u16 cast. */ + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + hirda->pRxBuffPtr = pData; + hirda->RxXferSize = Size; + hirda->RxXferCount = Size; + + /* Computation of the mask to apply to the RDR register + of the UART associated to the IRDA */ + IRDA_MASK_COMPUTATION(hirda); + + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + hirda->RxState = HAL_IRDA_STATE_BUSY_RX; + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + /* Enable the IRDA Parity Error and Data Register not empty Interrupts */ + SET_BIT(hirda->Instance->CR1, USART_CR1_PEIE| USART_CR1_RXNEIE); + + /* Enable the IRDA Error Interrupt: (Frame error, noise error, overrun error) */ + SET_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Send an amount of data in DMA mode. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @param pData pointer to data buffer. + * @param Size amount of data to be sent. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_Transmit_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size) +{ + /* Check that a Tx process is not already ongoing */ + if(hirda->gState == HAL_IRDA_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be filled into TDR will be + handled through a u16 cast. */ + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(hirda); + + hirda->pTxBuffPtr = pData; + hirda->TxXferSize = Size; + hirda->TxXferCount = Size; + + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + hirda->gState = HAL_IRDA_STATE_BUSY_TX; + + /* Set the IRDA DMA transfer complete callback */ + hirda->hdmatx->XferCpltCallback = IRDA_DMATransmitCplt; + + /* Set the IRDA DMA half transfer complete callback */ + hirda->hdmatx->XferHalfCpltCallback = IRDA_DMATransmitHalfCplt; + + /* Set the DMA error callback */ + hirda->hdmatx->XferErrorCallback = IRDA_DMAError; + + /* Set the DMA abort callback */ + hirda->hdmatx->XferAbortCallback = NULL; + + /* Enable the IRDA transmit DMA channel */ + HAL_DMA_Start_IT(hirda->hdmatx, (uint32_t)hirda->pTxBuffPtr, (uint32_t)&hirda->Instance->TDR, Size); + + /* Clear the TC flag in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_TCF); + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + /* Enable the DMA transfer for transmit request by setting the DMAT bit + in the USART CR3 register */ + SET_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive an amount of data in DMA mode. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @param pData Pointer to data buffer. + * @param Size Amount of data to be received. + * @note When the IRDA parity is enabled (PCE = 1), the received data contains + * the parity bit (MSB position). + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_Receive_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size) +{ + /* Check that a Rx process is not already ongoing */ + if(hirda->RxState == HAL_IRDA_STATE_READY) + { + if((pData == NULL) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be filled into TDR will be + handled through a u16 cast. */ + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(hirda); + + hirda->pRxBuffPtr = pData; + hirda->RxXferSize = Size; + + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + hirda->RxState = HAL_IRDA_STATE_BUSY_RX; + + /* Set the IRDA DMA transfer complete callback */ + hirda->hdmarx->XferCpltCallback = IRDA_DMAReceiveCplt; + + /* Set the IRDA DMA half transfer complete callback */ + hirda->hdmarx->XferHalfCpltCallback = IRDA_DMAReceiveHalfCplt; + + /* Set the DMA error callback */ + hirda->hdmarx->XferErrorCallback = IRDA_DMAError; + + /* Set the DMA abort callback */ + hirda->hdmarx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(hirda->hdmarx, (uint32_t)&hirda->Instance->RDR, (uint32_t)hirda->pRxBuffPtr, Size); + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + /* Enable the UART Parity Error Interrupt */ + SET_BIT(hirda->Instance->CR1, USART_CR1_PEIE); + + /* Enable the UART Error Interrupt: (Frame error, noise error, overrun error) */ + SET_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Enable the DMA transfer for the receiver request by setting the DMAR bit + in the USART CR3 register */ + SET_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + + +/** + * @brief Pause the DMA Transfer. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_DMAPause(IRDA_HandleTypeDef *hirda) +{ + /* Process Locked */ + __HAL_LOCK(hirda); + + if ((hirda->gState == HAL_IRDA_STATE_BUSY_TX) && + (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT))) + { + /* Disable the IRDA DMA Tx request */ + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + } + if ((hirda->RxState == HAL_IRDA_STATE_BUSY_RX) && + (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR))) + { + /* Disable PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(hirda->Instance->CR1, USART_CR1_PEIE); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Disable the IRDA DMA Rx request */ + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + return HAL_OK; +} + +/** + * @brief Resume the DMA Transfer. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_DMAResume(IRDA_HandleTypeDef *hirda) +{ + /* Process Locked */ + __HAL_LOCK(hirda); + + if(hirda->gState == HAL_IRDA_STATE_BUSY_TX) + { + /* Enable the IRDA DMA Tx request */ + SET_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + } + if(hirda->RxState == HAL_IRDA_STATE_BUSY_RX) + { + /* Clear the Overrun flag before resuming the Rx transfer*/ + __HAL_IRDA_CLEAR_OREFLAG(hirda); + + /* Reenable PE and ERR (Frame error, noise error, overrun error) interrupts */ + SET_BIT(hirda->Instance->CR1, USART_CR1_PEIE); + SET_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Enable the IRDA DMA Rx request */ + SET_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + } + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + return HAL_OK; +} + +/** + * @brief Stop the DMA Transfer. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_IRDA_DMAStop(IRDA_HandleTypeDef *hirda) +{ + /* The Lock is not implemented on this API to allow the user application + to call the HAL IRDA API under callbacks HAL_IRDA_TxCpltCallback() / HAL_IRDA_RxCpltCallback() / + HAL_IRDA_TxHalfCpltCallback / HAL_IRDA_RxHalfCpltCallback: + indeed, when HAL_DMA_Abort() API is called, the DMA TX/RX Transfer or Half Transfer complete + interrupt is generated if the DMA transfer interruption occurs at the middle or at the end of + the stream and the corresponding call back is executed. */ + + /* Stop IRDA DMA Tx request if ongoing */ + if ((hirda->gState == HAL_IRDA_STATE_BUSY_TX) && + (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT))) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + + /* Abort the IRDA DMA Tx channel */ + if(hirda->hdmatx != NULL) + { + HAL_DMA_Abort(hirda->hdmatx); + } + + IRDA_EndTxTransfer(hirda); + } + + /* Stop IRDA DMA Rx request if ongoing */ + if ((hirda->RxState == HAL_IRDA_STATE_BUSY_RX) && + (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR))) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + /* Abort the IRDA DMA Rx channel */ + if(hirda->hdmarx != NULL) + { + HAL_DMA_Abort(hirda->hdmarx); + } + + IRDA_EndRxTransfer(hirda); + } + + return HAL_OK; +} + +/** + * @brief Abort ongoing transfers (blocking mode). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @note This procedure could be used for aborting any ongoing transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable IRDA Interrupts (Tx and Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort (in case of transfer in DMA mode) + * - Set handle State to READY + * @note This procedure is executed in blocking mode : when exiting function, Abort is considered as completed. + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_IRDA_Abort(IRDA_HandleTypeDef *hirda) +{ + /* Disable TXEIE, TCIE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE)); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Disable the IRDA DMA Tx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + + /* Abort the IRDA DMA Tx channel : use blocking DMA Abort API (no callback) */ + if(hirda->hdmatx != NULL) + { + /* Set the IRDA DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + hirda->hdmatx->XferAbortCallback = NULL; + + HAL_DMA_Abort(hirda->hdmatx); + } + } + + /* Disable the IRDA DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + /* Abort the IRDA DMA Rx channel : use blocking DMA Abort API (no callback) */ + if(hirda->hdmarx != NULL) + { + /* Set the IRDA DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + hirda->hdmarx->XferAbortCallback = NULL; + + HAL_DMA_Abort(hirda->hdmarx); + } + } + + /* Reset Tx and Rx transfer counters */ + hirda->TxXferCount = 0; + hirda->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->gState and hirda->RxState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + hirda->RxState = HAL_IRDA_STATE_READY; + + /* Reset Handle ErrorCode to No Error */ + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + + return HAL_OK; +} + +/** + * @brief Abort ongoing Transmit transfer (blocking mode). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @note This procedure could be used for aborting any ongoing Tx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable IRDA Interrupts (Tx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort (in case of transfer in DMA mode) + * - Set handle State to READY + * @note This procedure is executed in blocking mode : when exiting function, Abort is considered as completed. + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_IRDA_AbortTransmit(IRDA_HandleTypeDef *hirda) +{ + /* Disable TXEIE and TCIE interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); + + /* Disable the IRDA DMA Tx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + + /* Abort the IRDA DMA Tx channel : use blocking DMA Abort API (no callback) */ + if(hirda->hdmatx != NULL) + { + /* Set the IRDA DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + hirda->hdmatx->XferAbortCallback = NULL; + + HAL_DMA_Abort(hirda->hdmatx); + } + } + + /* Reset Tx transfer counter */ + hirda->TxXferCount = 0; + + /* Restore hirda->gState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + + return HAL_OK; +} + +/** + * @brief Abort ongoing Receive transfer (blocking mode). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @note This procedure could be used for aborting any ongoing Rx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable IRDA Interrupts (Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort (in case of transfer in DMA mode) + * - Set handle State to READY + * @note This procedure is executed in blocking mode : when exiting function, Abort is considered as completed. + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_IRDA_AbortReceive(IRDA_HandleTypeDef *hirda) +{ + /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Disable the IRDA DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + /* Abort the IRDA DMA Rx channel : use blocking DMA Abort API (no callback) */ + if(hirda->hdmarx != NULL) + { + /* Set the IRDA DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + hirda->hdmarx->XferAbortCallback = NULL; + + HAL_DMA_Abort(hirda->hdmarx); + } + } + + /* Reset Rx transfer counter */ + hirda->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; + + return HAL_OK; +} + +/** + * @brief Abort ongoing transfers (Interrupt mode). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @note This procedure could be used for aborting any ongoing transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable IRDA Interrupts (Tx and Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort_IT (in case of transfer in DMA mode) + * - Set handle State to READY + * - At abort completion, call user abort complete callback + * @note This procedure is executed in Interrupt mode, meaning that abort procedure could be + * considered as completed only when user abort complete callback is executed (not when exiting function). + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_IRDA_Abort_IT(IRDA_HandleTypeDef *hirda) +{ + uint32_t abortcplt = 1; + + /* Disable TXEIE, TCIE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE)); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* If DMA Tx and/or DMA Rx Handles are associated to IRDA Handle, DMA Abort complete callbacks should be initialised + before any call to DMA Abort functions */ + /* DMA Tx Handle is valid */ + if(hirda->hdmatx != NULL) + { + /* Set DMA Abort Complete callback if IRDA DMA Tx request if enabled. + Otherwise, set it to NULL */ + if(HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT)) + { + hirda->hdmatx->XferAbortCallback = IRDA_DMATxAbortCallback; + } + else + { + hirda->hdmatx->XferAbortCallback = NULL; + } + } + /* DMA Rx Handle is valid */ + if(hirda->hdmarx != NULL) + { + /* Set DMA Abort Complete callback if IRDA DMA Rx request if enabled. + Otherwise, set it to NULL */ + if(HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR)) + { + hirda->hdmarx->XferAbortCallback = IRDA_DMARxAbortCallback; + } + else + { + hirda->hdmarx->XferAbortCallback = NULL; + } + } + + /* Disable the IRDA DMA Tx request if enabled */ + if(HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT)) + { + /* Disable DMA Tx at UART level */ + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + + /* Abort the IRDA DMA Tx channel : use non blocking DMA Abort API (callback) */ + if(hirda->hdmatx != NULL) + { + /* IRDA Tx DMA Abort callback has already been initialised : + will lead to call HAL_IRDA_AbortCpltCallback() at end of DMA abort procedure */ + + /* Abort DMA TX */ + if(HAL_DMA_Abort_IT(hirda->hdmatx) != HAL_OK) + { + hirda->hdmatx->XferAbortCallback = NULL; + } + else + { + abortcplt = 0; + } + } + } + + /* Disable the IRDA DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + /* Abort the IRDA DMA Rx channel : use non blocking DMA Abort API (callback) */ + if(hirda->hdmarx != NULL) + { + /* IRDA Rx DMA Abort callback has already been initialised : + will lead to call HAL_IRDA_AbortCpltCallback() at end of DMA abort procedure */ + + /* Abort DMA RX */ + if(HAL_DMA_Abort_IT(hirda->hdmarx) != HAL_OK) + { + hirda->hdmarx->XferAbortCallback = NULL; + abortcplt = 1; + } + else + { + abortcplt = 0; + } + } + } + + /* if no DMA abort complete callback execution is required => call user Abort Complete callback */ + if (abortcplt == 1) + { + /* Reset Tx and Rx transfer counters */ + hirda->TxXferCount = 0; + hirda->RxXferCount = 0; + + /* Reset errorCode */ + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->gState and hirda->RxState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + hirda->RxState = HAL_IRDA_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_IRDA_AbortCpltCallback(hirda); + } + + return HAL_OK; +} + +/** + * @brief Abort ongoing Transmit transfer (Interrupt mode). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @note This procedure could be used for aborting any ongoing Tx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable IRDA Interrupts (Tx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort_IT (in case of transfer in DMA mode) + * - Set handle State to READY + * - At abort completion, call user abort complete callback + * @note This procedure is executed in Interrupt mode, meaning that abort procedure could be + * considered as completed only when user abort complete callback is executed (not when exiting function). + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_IRDA_AbortTransmit_IT(IRDA_HandleTypeDef *hirda) +{ + /* Disable TXEIE and TCIE interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); + + /* Disable the IRDA DMA Tx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + + /* Abort the IRDA DMA Tx channel : use non blocking DMA Abort API (callback) */ + if(hirda->hdmatx != NULL) + { + /* Set the IRDA DMA Abort callback : + will lead to call HAL_IRDA_AbortCpltCallback() at end of DMA abort procedure */ + hirda->hdmatx->XferAbortCallback = IRDA_DMATxOnlyAbortCallback; + + /* Abort DMA TX */ + if(HAL_DMA_Abort_IT(hirda->hdmatx) != HAL_OK) + { + /* Call Directly hirda->hdmatx->XferAbortCallback function in case of error */ + hirda->hdmatx->XferAbortCallback(hirda->hdmatx); + } + } + else + { + /* Reset Tx transfer counter */ + hirda->TxXferCount = 0; + + /* Restore hirda->gState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_IRDA_AbortTransmitCpltCallback(hirda); + } + } + else + { + /* Reset Tx transfer counter */ + hirda->TxXferCount = 0; + + /* Restore hirda->gState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_IRDA_AbortTransmitCpltCallback(hirda); + } + + return HAL_OK; +} + +/** + * @brief Abort ongoing Receive transfer (Interrupt mode). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @note This procedure could be used for aborting any ongoing Rx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable IRDA Interrupts (Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort_IT (in case of transfer in DMA mode) + * - Set handle State to READY + * - At abort completion, call user abort complete callback + * @note This procedure is executed in Interrupt mode, meaning that abort procedure could be + * considered as completed only when user abort complete callback is executed (not when exiting function). + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_IRDA_AbortReceive_IT(IRDA_HandleTypeDef *hirda) +{ + /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Disable the IRDA DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + /* Abort the IRDA DMA Rx channel : use non blocking DMA Abort API (callback) */ + if(hirda->hdmarx != NULL) + { + /* Set the IRDA DMA Abort callback : + will lead to call HAL_IRDA_AbortCpltCallback() at end of DMA abort procedure */ + hirda->hdmarx->XferAbortCallback = IRDA_DMARxOnlyAbortCallback; + + /* Abort DMA RX */ + if(HAL_DMA_Abort_IT(hirda->hdmarx) != HAL_OK) + { + /* Call Directly hirda->hdmarx->XferAbortCallback function in case of error */ + hirda->hdmarx->XferAbortCallback(hirda->hdmarx); + } + } + else + { + /* Reset Rx transfer counter */ + hirda->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_IRDA_AbortReceiveCpltCallback(hirda); + } + } + else + { + /* Reset Rx transfer counter */ + hirda->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_IRDA_AbortReceiveCpltCallback(hirda); + } + + return HAL_OK; +} + +/** + * @brief Handle IRDA interrupt request. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +void HAL_IRDA_IRQHandler(IRDA_HandleTypeDef *hirda) +{ + uint32_t isrflags = READ_REG(hirda->Instance->ISR); + uint32_t cr1its = READ_REG(hirda->Instance->CR1); + uint32_t cr3its; + uint32_t errorflags; + + /* If no error occurs */ + errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); + if (errorflags == RESET) + { + /* IRDA in mode Receiver ---------------------------------------------------*/ + if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) + { + IRDA_Receive_IT(hirda); + return; + } + } + + /* If some errors occur */ + cr3its = READ_REG(hirda->Instance->CR3); + if( (errorflags != RESET) + && ( ((cr3its & USART_CR3_EIE) != RESET) + || ((cr1its & (USART_CR1_RXNEIE | USART_CR1_PEIE)) != RESET)) ) + { + /* IRDA parity error interrupt occurred -------------------------------------*/ + if(((isrflags & USART_ISR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) + { + __HAL_IRDA_CLEAR_IT(hirda, IRDA_CLEAR_PEF); + + hirda->ErrorCode |= HAL_IRDA_ERROR_PE; + } + + /* IRDA frame error interrupt occurred --------------------------------------*/ + if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) + { + __HAL_IRDA_CLEAR_IT(hirda, IRDA_CLEAR_FEF); + + hirda->ErrorCode |= HAL_IRDA_ERROR_FE; + } + + /* IRDA noise error interrupt occurred --------------------------------------*/ + if(((isrflags & USART_ISR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) + { + __HAL_IRDA_CLEAR_IT(hirda, IRDA_CLEAR_NEF); + + hirda->ErrorCode |= HAL_IRDA_ERROR_NE; + } + + /* IRDA Over-Run interrupt occurred -----------------------------------------*/ + if(((isrflags & USART_ISR_ORE) != RESET) && + (((cr1its & USART_CR1_RXNEIE) != RESET) || ((cr3its & USART_CR3_EIE) != RESET))) + { + __HAL_IRDA_CLEAR_IT(hirda, IRDA_CLEAR_OREF); + + hirda->ErrorCode |= HAL_IRDA_ERROR_ORE; + } + + /* Call IRDA Error Call back function if need be --------------------------*/ + if(hirda->ErrorCode != HAL_IRDA_ERROR_NONE) + { + /* IRDA in mode Receiver ---------------------------------------------------*/ + if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) + { + IRDA_Receive_IT(hirda); + } + + /* If Overrun error occurs, or if any error occurs in DMA mode reception, + consider error as blocking */ + if (((hirda->ErrorCode & HAL_IRDA_ERROR_ORE) != RESET) || + (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR))) + { + /* Blocking error : transfer is aborted + Set the IRDA state ready to be able to start again the process, + Disable Rx Interrupts, and disable Rx DMA request, if ongoing */ + IRDA_EndRxTransfer(hirda); + + /* Disable the IRDA DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + /* Abort the IRDA DMA Rx channel */ + if(hirda->hdmarx != NULL) + { + /* Set the IRDA DMA Abort callback : + will lead to call HAL_IRDA_ErrorCallback() at end of DMA abort procedure */ + hirda->hdmarx->XferAbortCallback = IRDA_DMAAbortOnError; + + /* Abort DMA RX */ + if(HAL_DMA_Abort_IT(hirda->hdmarx) != HAL_OK) + { + /* Call Directly hirda->hdmarx->XferAbortCallback function in case of error */ + hirda->hdmarx->XferAbortCallback(hirda->hdmarx); + } + } + else + { + /* Call user error callback */ + HAL_IRDA_ErrorCallback(hirda); + } + } + else + { + /* Call user error callback */ + HAL_IRDA_ErrorCallback(hirda); + } + } + else + { + /* Non Blocking error : transfer could go on. + Error is notified to user through user error callback */ + HAL_IRDA_ErrorCallback(hirda); + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + } + } + return; + + } /* End if some error occurs */ + + /* IRDA in mode Transmitter ------------------------------------------------*/ + if(((isrflags & USART_ISR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) + { + IRDA_Transmit_IT(hirda); + return; + } + + /* IRDA in mode Transmitter (transmission end) -----------------------------*/ + if(((isrflags & USART_ISR_TC) != RESET) && ((cr1its & USART_CR1_TCIE) != RESET)) + { + IRDA_EndTransmit_IT(hirda); + return; + } + +} + +/** + * @brief Tx Transfer completed callback. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_TxCpltCallback(IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_TxCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief Tx Half Transfer completed callback. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified USART module. + * @retval None + */ +__weak void HAL_IRDA_TxHalfCpltCallback(IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_TxHalfCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief Rx Transfer completed callback. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_RxCpltCallback(IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_RxCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief Rx Half Transfer complete callback. + * @param hirda: Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_RxHalfCpltCallback(IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_RxHalfCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief IRDA error callback. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_ErrorCallback(IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_ErrorCallback can be implemented in the user file. + */ +} + +/** + * @brief IRDA Abort Complete callback. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_AbortCpltCallback (IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_AbortCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief IRDA Abort Complete callback. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_AbortTransmitCpltCallback (IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_AbortTransmitCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief IRDA Abort Receive Complete callback. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +__weak void HAL_IRDA_AbortReceiveCpltCallback (IRDA_HandleTypeDef *hirda) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hirda); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_IRDA_AbortReceiveCpltCallback can be implemented in the user file. + */ +} + +/** + * @} + */ + +/** @defgroup IRDA_Exported_Functions_Group4 Peripheral State and Error functions + * @brief IRDA State and Errors functions + * +@verbatim + ============================================================================== + ##### Peripheral State and Error functions ##### + ============================================================================== + [..] + This subsection provides a set of functions allowing to return the State of IrDA + communication process and also return Peripheral Errors occurred during communication process + (+) HAL_IRDA_GetState() API can be helpful to check in run-time the state + of the IRDA peripheral handle. + (+) HAL_IRDA_GetError() checks in run-time errors that could occur during + communication. + +@endverbatim + * @{ + */ + +/** + * @brief Return the IRDA handle state. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL state + */ +HAL_IRDA_StateTypeDef HAL_IRDA_GetState(IRDA_HandleTypeDef *hirda) +{ + /* Return IRDA handle state */ + uint32_t temp1= 0x00, temp2 = 0x00; + temp1 = hirda->gState; + temp2 = hirda->RxState; + + return (HAL_IRDA_StateTypeDef)(temp1 | temp2); +} + +/** + * @brief Return the IRDA handle error code. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval IRDA Error Code + */ +uint32_t HAL_IRDA_GetError(IRDA_HandleTypeDef *hirda) +{ + return hirda->ErrorCode; +} + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup IRDA_Private_Functions IRDA Private Functions + * @{ + */ + +/** + * @brief Configure the IRDA peripheral. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +static HAL_StatusTypeDef IRDA_SetConfig(IRDA_HandleTypeDef *hirda) +{ + uint32_t tmpreg = 0x00000000U; + IRDA_ClockSourceTypeDef clocksource = IRDA_CLOCKSOURCE_UNDEFINED; + HAL_StatusTypeDef ret = HAL_OK; + + /* Check the communication parameters */ + assert_param(IS_IRDA_BAUDRATE(hirda->Init.BaudRate)); + assert_param(IS_IRDA_WORD_LENGTH(hirda->Init.WordLength)); + assert_param(IS_IRDA_PARITY(hirda->Init.Parity)); + assert_param(IS_IRDA_TX_RX_MODE(hirda->Init.Mode)); + assert_param(IS_IRDA_PRESCALER(hirda->Init.Prescaler)); + assert_param(IS_IRDA_POWERMODE(hirda->Init.PowerMode)); + + /*-------------------------- USART CR1 Configuration -----------------------*/ + /* Configure the IRDA Word Length, Parity and transfer Mode: + Set the M bits according to hirda->Init.WordLength value + Set PCE and PS bits according to hirda->Init.Parity value + Set TE and RE bits according to hirda->Init.Mode value */ + tmpreg = (uint32_t)hirda->Init.WordLength | hirda->Init.Parity | hirda->Init.Mode ; + + MODIFY_REG(hirda->Instance->CR1, IRDA_CR1_FIELDS, tmpreg); + + /*-------------------------- USART CR3 Configuration -----------------------*/ + MODIFY_REG(hirda->Instance->CR3, USART_CR3_IRLP, hirda->Init.PowerMode); + + /*-------------------------- USART GTPR Configuration ----------------------*/ + MODIFY_REG(hirda->Instance->GTPR, USART_GTPR_PSC, hirda->Init.Prescaler); + + /*-------------------------- USART BRR Configuration -----------------------*/ + IRDA_GETCLOCKSOURCE(hirda, clocksource); + switch (clocksource) + { + case IRDA_CLOCKSOURCE_PCLK1: + hirda->Instance->BRR = (uint16_t)((HAL_RCC_GetPCLK1Freq() + (hirda->Init.BaudRate/2U)) / hirda->Init.BaudRate); + break; + case IRDA_CLOCKSOURCE_PCLK2: + hirda->Instance->BRR = (uint16_t)((HAL_RCC_GetPCLK2Freq() + (hirda->Init.BaudRate/2U)) / hirda->Init.BaudRate); + break; + case IRDA_CLOCKSOURCE_HSI: + hirda->Instance->BRR = (uint16_t)((HSI_VALUE + (hirda->Init.BaudRate/2U)) / hirda->Init.BaudRate); + break; + case IRDA_CLOCKSOURCE_SYSCLK: + hirda->Instance->BRR = (uint16_t)((HAL_RCC_GetSysClockFreq() + (hirda->Init.BaudRate/2U)) / hirda->Init.BaudRate); + break; + case IRDA_CLOCKSOURCE_LSE: + hirda->Instance->BRR = (uint16_t)((LSE_VALUE + (hirda->Init.BaudRate/2U)) / hirda->Init.BaudRate); + break; + case IRDA_CLOCKSOURCE_UNDEFINED: + default: + ret = HAL_ERROR; + break; + } + + return ret; +} + +/** + * @brief Check the IRDA Idle State. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +static HAL_StatusTypeDef IRDA_CheckIdleState(IRDA_HandleTypeDef *hirda) +{ + uint32_t tickstart = 0; + + /* Initialize the IRDA ErrorCode */ + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + + /* Init tickstart for timeout managment*/ + tickstart = HAL_GetTick(); + + /* Check if the Transmitter is enabled */ + if((hirda->Instance->CR1 & USART_CR1_TE) == USART_CR1_TE) + { + /* Wait until TEACK flag is set */ + if(IRDA_WaitOnFlagUntilTimeout(hirda, USART_ISR_TEACK, RESET, tickstart, IRDA_TEACK_REACK_TIMEOUT) != HAL_OK) + { + /* Timeout occurred */ + return HAL_TIMEOUT; + } + } + /* Check if the Receiver is enabled */ + if((hirda->Instance->CR1 & USART_CR1_RE) == USART_CR1_RE) + { + /* Wait until REACK flag is set */ + if(IRDA_WaitOnFlagUntilTimeout(hirda, USART_ISR_REACK, RESET, tickstart, IRDA_TEACK_REACK_TIMEOUT) != HAL_OK) + { + /* Timeout occurred */ + return HAL_TIMEOUT; + } + } + + /* Initialize the IRDA state*/ + hirda->gState = HAL_IRDA_STATE_READY; + hirda->RxState = HAL_IRDA_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + + return HAL_OK; +} + +/** + * @brief Handle IRDA Communication Timeout. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @param Flag Specifies the IRDA flag to check. + * @param Status Flag status (SET or RESET) + * @param Tickstart Tick start value + * @param Timeout Timeout duration + * @retval HAL status + */ +static HAL_StatusTypeDef IRDA_WaitOnFlagUntilTimeout(IRDA_HandleTypeDef *hirda, uint32_t Flag, FlagStatus Status, uint32_t Tickstart, uint32_t Timeout) +{ + /* Wait until flag is set */ + while((__HAL_IRDA_GET_FLAG(hirda, Flag) ? SET : RESET) == Status) + { + /* Check for the Timeout */ + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0) || ((HAL_GetTick()-Tickstart) > Timeout)) + { + /* Disable TXE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts for the interrupt process */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE)); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + hirda->gState = HAL_IRDA_STATE_READY; + hirda->RxState = HAL_IRDA_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hirda); + return HAL_TIMEOUT; + } + } + } + return HAL_OK; +} + + +/** + * @brief End ongoing Tx transfer on IRDA peripheral (following error detection or Transmit completion). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +static void IRDA_EndTxTransfer(IRDA_HandleTypeDef *hirda) +{ + /* Disable TXEIE and TCIE interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); + + /* At end of Tx process, restore hirda->gState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; +} + + +/** + * @brief End ongoing Rx transfer on UART peripheral (following error detection or Reception completion). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval None + */ +static void IRDA_EndRxTransfer(IRDA_HandleTypeDef *hirda) +{ + /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* At end of Rx process, restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; +} + + +/** + * @brief DMA IRDA transmit process complete callback. + * @param hdma Pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +static void IRDA_DMATransmitCplt(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef*)(hdma->Parent); + + /* DMA Normal mode */ + if ( HAL_IS_BIT_CLR(hdma->Instance->CCR, DMA_CCR_CIRC) ) + { + hirda->TxXferCount = 0U; + + /* Disable the DMA transfer for transmit request by resetting the DMAT bit + in the IRDA CR3 register */ + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAT); + + /* Enable the IRDA Transmit Complete Interrupt */ + SET_BIT(hirda->Instance->CR1, USART_CR1_TCIE); + } + /* DMA Circular mode */ + else + { + HAL_IRDA_TxCpltCallback(hirda); + } + +} + +/** + * @brief DMA IRDA transmit process half complete callback. + * @param hdma Pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +static void IRDA_DMATransmitHalfCplt(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef*)(hdma->Parent); + + HAL_IRDA_TxHalfCpltCallback(hirda); +} + +/** + * @brief DMA IRDA receive process complete callback. + * @param hdma: Pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +static void IRDA_DMAReceiveCplt(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef*)(hdma->Parent); + + /* DMA Normal mode */ + if ( HAL_IS_BIT_CLR(hdma->Instance->CCR, DMA_CCR_CIRC) ) + { + hirda->RxXferCount = 0; + + /* Disable PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(hirda->Instance->CR1, USART_CR1_PEIE); + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Disable the DMA transfer for the receiver request by resetting the DMAR bit + in the IRDA CR3 register */ + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_DMAR); + + /* At end of Rx process, restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; + } + + HAL_IRDA_RxCpltCallback(hirda); +} + +/** + * @brief DMA IRDA receive process half complete callback. + * @param hdma: Pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +static void IRDA_DMAReceiveHalfCplt(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef*)(hdma->Parent); + + HAL_IRDA_RxHalfCpltCallback(hirda); +} + +/** + * @brief DMA IRDA communication error callback. + * @param hdma Pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +static void IRDA_DMAError(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef*)(hdma->Parent); + + /* Stop IRDA DMA Tx request if ongoing */ + if ( (hirda->gState == HAL_IRDA_STATE_BUSY_TX) + &&(HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAT)) ) + { + hirda->TxXferCount = 0; + IRDA_EndTxTransfer(hirda); + } + + /* Stop IRDA DMA Rx request if ongoing */ + if ( (hirda->RxState == HAL_IRDA_STATE_BUSY_RX) + &&(HAL_IS_BIT_SET(hirda->Instance->CR3, USART_CR3_DMAR)) ) + { + hirda->RxXferCount = 0; + IRDA_EndRxTransfer(hirda); + } + + hirda->ErrorCode |= HAL_IRDA_ERROR_DMA; + HAL_IRDA_ErrorCallback(hirda); +} + +/** + * @brief DMA IRDA communication abort callback, when initiated by HAL services on Error + * (To be called at end of DMA Abort procedure following error occurrence). + * @param hdma DMA handle. + * @retval None + */ +static void IRDA_DMAAbortOnError(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef*)(hdma->Parent); + hirda->RxXferCount = 0; + hirda->TxXferCount = 0; + + HAL_IRDA_ErrorCallback(hirda); +} + +/** + * @brief DMA IRDA Tx communication abort callback, when initiated by user + * (To be called at end of DMA Tx Abort procedure following user abort request). + * @note When this callback is executed, User Abort complete call back is called only if no + * Abort still ongoing for Rx DMA Handle. + * @param hdma DMA handle. + * @retval None + */ +static void IRDA_DMATxAbortCallback(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef* )(hdma->Parent); + + hirda->hdmatx->XferAbortCallback = NULL; + + /* Check if an Abort process is still ongoing */ + if(hirda->hdmarx != NULL) + { + if(hirda->hdmarx->XferAbortCallback != NULL) + { + return; + } + } + + /* No Abort process still ongoing : All DMA channels are aborted, call user Abort Complete callback */ + hirda->TxXferCount = 0; + hirda->RxXferCount = 0; + + /* Reset errorCode */ + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->gState and hirda->RxState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + hirda->RxState = HAL_IRDA_STATE_READY; + + /* Call user Abort complete callback */ + HAL_IRDA_AbortCpltCallback(hirda); +} + + +/** + * @brief DMA IRDA Rx communication abort callback, when initiated by user + * (To be called at end of DMA Rx Abort procedure following user abort request). + * @note When this callback is executed, User Abort complete call back is called only if no + * Abort still ongoing for Tx DMA Handle. + * @param hdma DMA handle. + * @retval None + */ +static void IRDA_DMARxAbortCallback(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef* )(hdma->Parent); + + hirda->hdmarx->XferAbortCallback = NULL; + + /* Check if an Abort process is still ongoing */ + if(hirda->hdmatx != NULL) + { + if(hirda->hdmatx->XferAbortCallback != NULL) + { + return; + } + } + + /* No Abort process still ongoing : All DMA channels are aborted, call user Abort Complete callback */ + hirda->TxXferCount = 0; + hirda->RxXferCount = 0; + + /* Reset errorCode */ + hirda->ErrorCode = HAL_IRDA_ERROR_NONE; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->gState and hirda->RxState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + hirda->RxState = HAL_IRDA_STATE_READY; + + /* Call user Abort complete callback */ + HAL_IRDA_AbortCpltCallback(hirda); +} + + +/** + * @brief DMA IRDA Tx communication abort callback, when initiated by user by a call to + * HAL_IRDA_AbortTransmit_IT API (Abort only Tx transfer) + * (This callback is executed at end of DMA Tx Abort procedure following user abort request, + * and leads to user Tx Abort Complete callback execution). + * @param hdma DMA handle. + * @retval None + */ +static void IRDA_DMATxOnlyAbortCallback(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = (IRDA_HandleTypeDef*)(hdma->Parent); + + hirda->TxXferCount = 0; + + /* Restore hirda->gState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + + /* Call user Abort complete callback */ + HAL_IRDA_AbortTransmitCpltCallback(hirda); +} + +/** + * @brief DMA IRDA Rx communication abort callback, when initiated by user by a call to + * HAL_IRDA_AbortReceive_IT API (Abort only Rx transfer) + * (This callback is executed at end of DMA Rx Abort procedure following user abort request, + * and leads to user Rx Abort Complete callback execution). + * @param hdma DMA handle. + * @retval None + */ +static void IRDA_DMARxOnlyAbortCallback(DMA_HandleTypeDef *hdma) +{ + IRDA_HandleTypeDef* hirda = ( IRDA_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + hirda->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_IRDA_CLEAR_FLAG(hirda, IRDA_CLEAR_OREF | IRDA_CLEAR_NEF | IRDA_CLEAR_PEF | IRDA_CLEAR_FEF); + + /* Restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; + + /* Call user Abort complete callback */ + HAL_IRDA_AbortReceiveCpltCallback(hirda); +} + +/** + * @brief Send an amount of data in interrupt mode. + * @note Function is called under interruption only, once + * interruptions have been enabled by HAL_IRDA_Transmit_IT(). + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +static HAL_StatusTypeDef IRDA_Transmit_IT(IRDA_HandleTypeDef *hirda) +{ + uint16_t* tmp; + + /* Check that a Tx process is ongoing */ + if(hirda->gState == HAL_IRDA_STATE_BUSY_TX) + { + if(hirda->TxXferCount == 0U) + { + /* Disable the IRDA Transmit Data Register Empty Interrupt */ + CLEAR_BIT(hirda->Instance->CR1, USART_CR1_TXEIE); + + /* Enable the IRDA Transmit Complete Interrupt */ + SET_BIT(hirda->Instance->CR1, USART_CR1_TCIE); + + return HAL_OK; + } + else + { + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + tmp = (uint16_t*) hirda->pTxBuffPtr; + hirda->Instance->TDR = (*tmp & (uint16_t)0x01FFU); + hirda->pTxBuffPtr += 2U; + } + else + { + hirda->Instance->TDR = (uint8_t)(*hirda->pTxBuffPtr++ & (uint8_t)0xFFU); + } + hirda->TxXferCount--; + + return HAL_OK; + } + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Wrap up transmission in non-blocking mode. + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +static HAL_StatusTypeDef IRDA_EndTransmit_IT(IRDA_HandleTypeDef *hirda) +{ + /* Disable the IRDA Transmit Complete Interrupt */ + CLEAR_BIT(hirda->Instance->CR1, USART_CR1_TCIE); + + /* Tx process is ended, restore hirda->gState to Ready */ + hirda->gState = HAL_IRDA_STATE_READY; + + HAL_IRDA_TxCpltCallback(hirda); + + return HAL_OK; +} + +/** + * @brief Receive an amount of data in interrupt mode. + * @note Function is called under interruption only, once + * interruptions have been enabled by HAL_IRDA_Receive_IT() + * @param hirda Pointer to a IRDA_HandleTypeDef structure that contains + * the configuration information for the specified IRDA module. + * @retval HAL status + */ +static HAL_StatusTypeDef IRDA_Receive_IT(IRDA_HandleTypeDef *hirda) +{ + uint16_t* tmp; + uint16_t uhMask = hirda->Mask; + uint16_t uhdata; + + /* Check that a Rx process is ongoing */ + if (hirda->RxState == HAL_IRDA_STATE_BUSY_RX) + { + uhdata = (uint16_t) READ_REG(hirda->Instance->RDR); + if ((hirda->Init.WordLength == IRDA_WORDLENGTH_9B) && (hirda->Init.Parity == IRDA_PARITY_NONE)) + { + tmp = (uint16_t*) hirda->pRxBuffPtr ; + *tmp = (uint16_t)(uhdata & uhMask); + hirda->pRxBuffPtr +=2U; + } + else + { + *hirda->pRxBuffPtr++ = (uint8_t)(uhdata & (uint8_t)uhMask); + } + + if(--hirda->RxXferCount == 0U) + { + /* Disable the IRDA Parity Error Interrupt and RXNE interrupt */ + CLEAR_BIT(hirda->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + + /* Disable the IRDA Error Interrupt: (Frame error, noise error, overrun error) */ + CLEAR_BIT(hirda->Instance->CR3, USART_CR3_EIE); + + /* Rx process is completed, restore hirda->RxState to Ready */ + hirda->RxState = HAL_IRDA_STATE_READY; + + HAL_IRDA_RxCpltCallback(hirda); + + return HAL_OK; + } + + return HAL_OK; + } + else + { + /* Clear RXNE interrupt flag */ + __HAL_IRDA_SEND_REQ(hirda, IRDA_RXDATA_FLUSH_REQUEST); + + return HAL_BUSY; + } +} + +/** + * @} + */ + +#endif /* HAL_IRDA_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c new file mode 100644 index 0000000..b99f898 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c @@ -0,0 +1,710 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_pwr.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief PWR HAL module driver. + * + * This file provides firmware functions to manage the following + * functionalities of the Power Controller (PWR) peripheral: + * + Initialization/de-initialization functions + * + Peripheral Control functions + * + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +#ifdef HAL_PWR_MODULE_ENABLED +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup PWR + * @{ + */ + +/** @addtogroup PWR_Private + * @{ + */ + +/** @defgroup PWR_PVD_Mode_Mask PWR PVD Mode Mask + * @{ + */ +#define PVD_MODE_IT ((uint32_t)0x00010000U) +#define PVD_MODE_EVT ((uint32_t)0x00020000U) +#define PVD_RISING_EDGE ((uint32_t)0x00000001U) +#define PVD_FALLING_EDGE ((uint32_t)0x00000002U) +/** + * @} + */ + +/** + * @} + */ + + +/** @addtogroup PWR_Exported_Functions + * @{ + */ + +/** @addtogroup PWR_Exported_Functions_Group1 + * @brief Initialization and de-initialization functions + * +@verbatim + =============================================================================== + ##### Initialization and de-initialization functions ##### + =============================================================================== + +@endverbatim + * @{ + */ + +/** + * @brief Deinitializes the HAL PWR peripheral registers to their default reset values. + * @retval None + */ +void HAL_PWR_DeInit(void) +{ + __HAL_RCC_PWR_FORCE_RESET(); + __HAL_RCC_PWR_RELEASE_RESET(); +} + +/** + * @} + */ + +/** @addtogroup PWR_Exported_Functions_Group2 + * @brief Low Power modes configuration functions + * +@verbatim + + =============================================================================== + ##### Peripheral Control functions ##### + =============================================================================== + + *** Backup domain *** + ========================= + [..] + After reset, the backup domain (RTC registers, RTC backup data + registers) is protected against possible unwanted + write accesses. + To enable access to the RTC Domain and RTC registers, proceed as follows: + (+) Enable the Power Controller (PWR) APB1 interface clock using the + __HAL_RCC_PWR_CLK_ENABLE() macro. + (+) Enable access to RTC domain using the HAL_PWR_EnableBkUpAccess() function. + + *** PVD configuration *** + ========================= + [..] + (+) The PVD is used to monitor the VDD power supply by comparing it to a + threshold selected by the PVD Level (PLS[2:0] bits in the PWR_CR). + (+) The PVD can use an external input analog voltage (PVD_IN) which is compared + internally to VREFINT. The PVD_IN (PB7) has to be configured in Analog mode + when PWR_PVDLevel_7 is selected (PLS[2:0] = 111). + + (+) A PVDO flag is available to indicate if VDD/VDDA is higher or lower + than the PVD threshold. This event is internally connected to the EXTI + line16 and can generate an interrupt if enabled. This is done through + __HAL_PWR_PVD_EXTI_ENABLE_IT() macro. + (+) The PVD is stopped in Standby mode. + + *** WakeUp pin configuration *** + ================================ + [..] + (+) WakeUp pin is used to wake up the system from Standby mode. This pin is + forced in input pull-down configuration and is active on rising edges. + (+) There are two WakeUp pins: + WakeUp Pin 1 on PA.00. + WakeUp Pin 2 on PC.13. + WakeUp Pin 3 on PE.06 . + + + [..] + *** Main and Backup Regulators configuration *** + ================================================ + + (+) The main internal regulator can be configured to have a tradeoff between + performance and power consumption when the device does not operate at + the maximum frequency. This is done through __HAL_PWR_VOLTAGESCALING_CONFIG() + macro which configures the two VOS bits in PWR_CR register: + (++) PWR_REGULATOR_VOLTAGE_SCALE1 (VOS bits = 01), the regulator voltage output Scale 1 mode selected and + the System frequency can go up to 32 MHz. + (++) PWR_REGULATOR_VOLTAGE_SCALE2 (VOS bits = 10), the regulator voltage output Scale 2 mode selected and + the System frequency can go up to 16 MHz. + (++) PWR_REGULATOR_VOLTAGE_SCALE3 (VOS bits = 11), the regulator voltage output Scale 3 mode selected and + the System frequency can go up to 4.2 MHz. + + Refer to the datasheets for more details. + + *** Low Power modes configuration *** + ===================================== + [..] + The device features 5 low-power modes: + (+) Low power run mode: regulator in low power mode, limited clock frequency, + limited number of peripherals running. + (+) Sleep mode: Cortex-M0+ core stopped, peripherals kept running. + (+) Low power sleep mode: Cortex-M0+ core stopped, limited clock frequency, + limited number of peripherals running, regulator in low power mode. + (+) Stop mode: All clocks are stopped, regulator running, regulator in low power mode. + (+) Standby mode: VCORE domain powered off + + *** Low power run mode *** + ========================= + [..] + To further reduce the consumption when the system is in Run mode, the regulator can be + configured in low power mode. In this mode, the system frequency should not exceed + MSI frequency range1. + In Low power run mode, all I/O pins keep the same state as in Run mode. + + (+) Entry: + (++) VCORE in range2 + (++) Decrease the system frequency not to exceed the frequency of MSI frequency range1. + (++) The regulator is forced in low power mode using the HAL_PWREx_EnableLowPowerRunMode() + function. + (+) Exit: + (++) The regulator is forced in Main regulator mode using the HAL_PWREx_DisableLowPowerRunMode() + function. + (++) Increase the system frequency if needed. + + *** Sleep mode *** + ================== + [..] + (+) Entry: + The Sleep mode is entered by using the HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON, PWR_SLEEPENTRY_WFx) + functions with + (++) PWR_SLEEPENTRY_WFI: enter SLEEP mode with WFI instruction + (++) PWR_SLEEPENTRY_WFE: enter SLEEP mode with WFE instruction + + (+) Exit: + (++) Any peripheral interrupt acknowledged by the nested vectored interrupt + controller (NVIC) can wake up the device from Sleep mode. If the WFE instruction was used to enter sleep mode, + the MCU exits Sleep mode as soon as an event occurs. + + *** Low power sleep mode *** + ============================ + [..] + (+) Entry: + The Low power sleep mode is entered by using the HAL_PWR_EnterSLEEPMode(PWR_LOWPOWERREGULATOR_ON, PWR_SLEEPENTRY_WFx) + functions with + (++) PWR_SLEEPENTRY_WFI: enter SLEEP mode with WFI instruction + (++) PWR_SLEEPENTRY_WFE: enter SLEEP mode with WFE instruction + (+) The Flash memory can be switched off by using the control bits (SLEEP_PD in the FLASH_ACR register. + This reduces power consumption but increases the wake-up time. + + (+) Exit: + (++) If the WFI instruction was used to enter Low power sleep mode, any peripheral interrupt + acknowledged by the nested vectored interrupt controller (NVIC) can wake up the device + from Low power sleep mode. If the WFE instruction was used to enter Low power sleep mode, + the MCU exits Sleep mode as soon as an event occurs. + + *** Stop mode *** + ================= + [..] + The Stop mode is based on the Cortex-M0+ deepsleep mode combined with peripheral + clock gating. The voltage regulator can be configured either in normal or low-power mode. + In Stop mode, all clocks in the VCORE domain are stopped, the PLL, the MSI, the HSI and + the HSE RC oscillators are disabled. Internal SRAM and register contents are preserved. + To get the lowest consumption in Stop mode, the internal Flash memory also enters low + power mode. When the Flash memory is in power-down mode, an additional startup delay is + incurred when waking up from Stop mode. + To minimize the consumption In Stop mode, VREFINT, the BOR, PVD, and temperature + sensor can be switched off before entering Stop mode. They can be switched on again by + software after exiting Stop mode using the ULP bit in the PWR_CR register. + In Stop mode, all I/O pins keep the same state as in Run mode. + + (+) Entry: + The Stop mode is entered using the HAL_PWR_EnterSTOPMode + function with: + (++) Main regulator ON. + (++) Low Power regulator ON. + (++) PWR_SLEEPENTRY_WFI: enter SLEEP mode with WFI instruction + (++) PWR_SLEEPENTRY_WFE: enter SLEEP mode with WFE instruction + (+) Exit: + (++) By issuing an interrupt or a wakeup event, the MSI or HSI16 RC + oscillator is selected as system clock depending the bit STOPWUCK in the RCC_CFGR + register + + *** Standby mode *** + ==================== + [..] + The Standby mode allows to achieve the lowest power consumption. It is based on the + Cortex-M0+ deepsleep mode, with the voltage regulator disabled. The VCORE domain is + consequently powered off. The PLL, the MSI, the HSI oscillator and the HSE oscillator are + also switched off. SRAM and register contents are lost except for the RTC registers, RTC + backup registers and Standby circuitry. + + To minimize the consumption In Standby mode, VREFINT, the BOR, PVD, and temperature + sensor can be switched off before entering the Standby mode. They can be switched + on again by software after exiting the Standby mode. + function. + + (+) Entry: + (++) The Standby mode is entered using the HAL_PWR_EnterSTANDBYMode() function. + (+) Exit: + (++) WKUP pin rising edge, RTC alarm (Alarm A and Alarm B), RTC wakeup, + tamper event, time-stamp event, external reset in NRST pin, IWDG reset. + + *** Auto-wakeup (AWU) from low-power mode *** + ============================================= + [..] + The MCU can be woken up from low-power mode by an RTC Alarm event, an RTC + Wakeup event, a tamper event, a time-stamp event, or a comparator event, + without depending on an external interrupt (Auto-wakeup mode). + + (+) RTC auto-wakeup (AWU) from the Stop mode + (++) To wake up from the Stop mode with an RTC alarm event, it is necessary to: + (+++) Configure the EXTI Line 17 to be sensitive to rising edges (Interrupt + or Event modes) using the EXTI_Init() function. + (+++) Enable the RTC Alarm Interrupt using the RTC_ITConfig() function + (+++) Configure the RTC to generate the RTC alarm using the RTC_SetAlarm() + and RTC_AlarmCmd() functions. + (++) To wake up from the Stop mode with an RTC Tamper or time stamp event, it + is necessary to: + (+++) Configure the EXTI Line 19 to be sensitive to rising edges (Interrupt + or Event modes) using the EXTI_Init() function. + (+++) Enable the RTC Tamper or time stamp Interrupt using the RTC_ITConfig() + function. + (+++) Configure the RTC to detect the tamper or time stamp event using the + RTC_TimeStampConfig(), RTC_TamperTriggerConfig() and RTC_TamperCmd() + functions. + (++) To wake up from the Stop mode with an RTC WakeUp event, it is necessary to: + (+++) Configure the EXTI Line 20 to be sensitive to rising edges (Interrupt + or Event modes) using the EXTI_Init() function. + (+++) Enable the RTC WakeUp Interrupt using the RTC_ITConfig() function. + (+++) Configure the RTC to generate the RTC WakeUp event using the RTC_WakeUpClockConfig(), + RTC_SetWakeUpCounter() and RTC_WakeUpCmd() functions. + + (+) RTC auto-wakeup (AWU) from the Standby mode + (++) To wake up from the Standby mode with an RTC alarm event, it is necessary to: + (+++) Enable the RTC Alarm Interrupt using the RTC_ITConfig() function. + (+++) Configure the RTC to generate the RTC alarm using the RTC_SetAlarm() + and RTC_AlarmCmd() functions. + (++) To wake up from the Standby mode with an RTC Tamper or time stamp event, it + is necessary to: + (+++) Enable the RTC Tamper or time stamp Interrupt using the RTC_ITConfig() + function. + (+++) Configure the RTC to detect the tamper or time stamp event using the + RTC_TimeStampConfig(), RTC_TamperTriggerConfig() and RTC_TamperCmd() + functions. + (++) To wake up from the Standby mode with an RTC WakeUp event, it is necessary to: + (+++) Enable the RTC WakeUp Interrupt using the RTC_ITConfig() function + (+++) Configure the RTC to generate the RTC WakeUp event using the RTC_WakeUpClockConfig(), + RTC_SetWakeUpCounter() and RTC_WakeUpCmd() functions. + + (+) Comparator auto-wakeup (AWU) from the Stop mode + (++) To wake up from the Stop mode with an comparator 1 or comparator 2 wakeup + event, it is necessary to: + (+++) Configure the EXTI Line 21 for comparator 1 or EXTI Line 22 for comparator 2 + to be sensitive to to the selected edges (falling, rising or falling + and rising) (Interrupt or Event modes) using the EXTI_Init() function. + (+++) Configure the comparator to generate the event. +@endverbatim + * @{ + */ + +/** + * @brief Enables access to the backup domain (RTC registers, RTC + * backup data registers ). + * @note If the HSE divided by 2, 4, 8 or 16 is used as the RTC clock, the + * Backup Domain Access should be kept enabled. + * @retval None + */ +void HAL_PWR_EnableBkUpAccess(void) +{ + /* Enable access to RTC and backup registers */ + SET_BIT(PWR->CR, PWR_CR_DBP); +} + +/** + * @brief Disables access to the backup domain + * @note Applies to RTC registers, RTC backup data registers. + * @note If the HSE divided by 2, 4, 8 or 16 is used as the RTC clock, the + * Backup Domain Access should be kept enabled. + * @retval None + */ +void HAL_PWR_DisableBkUpAccess(void) +{ + /* Disable access to RTC and backup registers */ + CLEAR_BIT(PWR->CR, PWR_CR_DBP); +} + +/** + * @brief Configures the voltage threshold detected by the Power Voltage Detector(PVD). + * @param sConfigPVD: pointer to an PWR_PVDTypeDef structure that contains the configuration + * information for the PVD. + * @note Refer to the electrical characteristics of your device datasheet for + * more details about the voltage threshold corresponding to each + * detection level. + * @retval None + */ +void HAL_PWR_ConfigPVD(PWR_PVDTypeDef *sConfigPVD) +{ + /* Check the parameters */ + assert_param(IS_PWR_PVD_LEVEL(sConfigPVD->PVDLevel)); + assert_param(IS_PWR_PVD_MODE(sConfigPVD->Mode)); + + /* Set PLS[7:5] bits according to PVDLevel value */ + MODIFY_REG(PWR->CR, PWR_CR_PLS, sConfigPVD->PVDLevel); + + /* Clear any previous config. Keep it clear if no event or IT mode is selected */ + __HAL_PWR_PVD_EXTI_DISABLE_EVENT(); + __HAL_PWR_PVD_EXTI_DISABLE_IT(); + __HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE(); + __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE(); + + /* Configure interrupt mode */ + if((sConfigPVD->Mode & PVD_MODE_IT) == PVD_MODE_IT) + { + __HAL_PWR_PVD_EXTI_ENABLE_IT(); + } + + /* Configure event mode */ + if((sConfigPVD->Mode & PVD_MODE_EVT) == PVD_MODE_EVT) + { + __HAL_PWR_PVD_EXTI_ENABLE_EVENT(); + } + + /* Configure the edge */ + if((sConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE) + { + __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE(); + } + + if((sConfigPVD->Mode & PVD_FALLING_EDGE) == PVD_FALLING_EDGE) + { + __HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE(); + } +} + +/** + * @brief Enables the Power Voltage Detector(PVD). + * @retval None + */ +void HAL_PWR_EnablePVD(void) +{ + /* Enable the power voltage detector */ + SET_BIT(PWR->CR, PWR_CR_PVDE); +} + +/** + * @brief Disables the Power Voltage Detector(PVD). + * @retval None + */ +void HAL_PWR_DisablePVD(void) +{ + /* Disable the power voltage detector */ + CLEAR_BIT(PWR->CR, PWR_CR_PVDE); +} + +/** + * @brief Enables the WakeUp PINx functionality. + * @param WakeUpPinx: Specifies the Power Wake-Up pin to enable. + * This parameter can be one of the following values: + * @arg PWR_WAKEUP_PIN1 + * @arg PWR_WAKEUP_PIN2 + * @arg PWR_WAKEUP_PIN3 for stm32l07xxx and stm32l08xxx devices only. + * @retval None + */ +void HAL_PWR_EnableWakeUpPin(uint32_t WakeUpPinx) +{ + /* Check the parameter */ + assert_param(IS_PWR_WAKEUP_PIN(WakeUpPinx)); + /* Enable the EWUPx pin */ + SET_BIT(PWR->CSR, WakeUpPinx); +} + +/** + * @brief Disables the WakeUp PINx functionality. + * @param WakeUpPinx: Specifies the Power Wake-Up pin to disable. + * This parameter can be one of the following values: + * @arg PWR_WAKEUP_PIN1 + * @arg PWR_WAKEUP_PIN2 + * @arg PWR_WAKEUP_PIN3 for stm32l07xxx and stm32l08xxx devices only. + * @retval None + */ +void HAL_PWR_DisableWakeUpPin(uint32_t WakeUpPinx) +{ + /* Check the parameter */ + assert_param(IS_PWR_WAKEUP_PIN(WakeUpPinx)); + /* Disable the EWUPx pin */ + CLEAR_BIT(PWR->CSR, WakeUpPinx); +} + +/** + * @brief Enters Sleep mode. + * @note In Sleep mode, all I/O pins keep the same state as in Run mode. + * @param Regulator: Specifies the regulator state in SLEEP mode. + * This parameter can be one of the following values: + * @arg PWR_MAINREGULATOR_ON: SLEEP mode with regulator ON + * @arg PWR_LOWPOWERREGULATOR_ON: SLEEP mode with low power regulator ON + * @param SLEEPEntry: Specifies if SLEEP mode is entered with WFI or WFE instruction. + * When WFI entry is used, tick interrupt have to be disabled if not desired as + * the interrupt wake up source. + * This parameter can be one of the following values: + * @arg PWR_SLEEPENTRY_WFI: enter SLEEP mode with WFI instruction + * @arg PWR_SLEEPENTRY_WFE: enter SLEEP mode with WFE instruction + * @retval None + */ +void HAL_PWR_EnterSLEEPMode(uint32_t Regulator, uint8_t SLEEPEntry) +{ + uint32_t tmpreg = 0U; + /* Check the parameters */ + assert_param(IS_PWR_REGULATOR(Regulator)); + assert_param(IS_PWR_SLEEP_ENTRY(SLEEPEntry)); + + /* Select the regulator state in Sleep mode ---------------------------------*/ + tmpreg = PWR->CR; + + /* Clear PDDS and LPDS bits */ + CLEAR_BIT(tmpreg, (PWR_CR_PDDS | PWR_CR_LPSDSR)); + + /* Set LPSDSR bit according to PWR_Regulator value */ + SET_BIT(tmpreg, Regulator); + + /* Store the new value */ + PWR->CR = tmpreg; + + /* Clear SLEEPDEEP bit of Cortex System Control Register */ + CLEAR_BIT(SCB->SCR, SCB_SCR_SLEEPDEEP_Msk); + + /* Select SLEEP mode entry -------------------------------------------------*/ + if(SLEEPEntry == PWR_SLEEPENTRY_WFI) + { + /* Request Wait For Interrupt */ + __WFI(); + } + else + { + /* Request Wait For Event */ + __SEV(); + __WFE(); + __WFE(); + } +} + +/** + * @brief Enters Stop mode. + * @note In Stop mode, all I/O pins keep the same state as in Run mode. + * @note When exiting Stop mode by issuing an interrupt or a wakeup event, + * MSI or HSI16 RCoscillator is selected as system clock depending + * the bit STOPWUCK in the RCC_CFGR register. + * @note When the voltage regulator operates in low power mode, an additional + * startup delay is incurred when waking up from Stop mode. + * By keeping the internal regulator ON during Stop mode, the consumption + * is higher although the startup time is reduced. + * @note Before entering in this function, it is important to ensure that the WUF + * wakeup flag is cleared. To perform this action, it is possible to call the + * following macro : __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU) + * + * @param Regulator: Specifies the regulator state in Stop mode. + * This parameter can be one of the following values: + * @arg PWR_MAINREGULATOR_ON: Stop mode with regulator ON + * @arg PWR_LOWPOWERREGULATOR_ON: Stop mode with low power regulator ON + * @param STOPEntry: Specifies if Stop mode in entered with WFI or WFE instruction. + * This parameter can be one of the following values: + * @arg PWR_STOPENTRY_WFI: Enter Stop mode with WFI instruction + * @arg PWR_STOPENTRY_WFE: Enter Stop mode with WFE instruction + * @retval None + */ +void HAL_PWR_EnterSTOPMode(uint32_t Regulator, uint8_t STOPEntry) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_PWR_REGULATOR(Regulator)); + assert_param(IS_PWR_STOP_ENTRY(STOPEntry)); + + /* Select the regulator state in Stop mode ---------------------------------*/ + tmpreg = PWR->CR; + + /* Clear PDDS and LPDS bits */ + CLEAR_BIT(tmpreg, (PWR_CR_PDDS | PWR_CR_LPSDSR)); + + /* Set LPSDSR bit according to PWR_Regulator value */ + SET_BIT(tmpreg, Regulator); + + /* Store the new value */ + PWR->CR = tmpreg; + + /* Set SLEEPDEEP bit of Cortex System Control Register */ + SET_BIT(SCB->SCR, SCB_SCR_SLEEPDEEP_Msk); + + /* Select Stop mode entry --------------------------------------------------*/ + if(STOPEntry == PWR_STOPENTRY_WFI) + { + /* Request Wait For Interrupt */ + __WFI(); + } + else + { + /* Request Wait For Event */ + __SEV(); + __WFE(); + __WFE(); + } + + /* Reset SLEEPDEEP bit of Cortex System Control Register */ + CLEAR_BIT(SCB->SCR, SCB_SCR_SLEEPDEEP_Msk); + +} + +/** + * @brief Enters Standby mode. + * @note In Standby mode, all I/O pins are high impedance except for: + * - Reset pad (still available) + * - RTC_AF1 pin (PC13) if configured for tamper, time-stamp, RTC + * Alarm out, or RTC clock calibration out. + * - RTC_AF2 pin (PC13) if configured for tamper. + * - WKUP pin 1 (PA00) if enabled. + * - WKUP pin 2 (PC13) if enabled. + * - WKUP pin 3 (PE06) if enabled, for stm32l07xxx and stm32l08xxx devices only. + * - WKUP pin 3 (PA02) if enabled, for stm32l031xx devices only. + * @retval None + */ +void HAL_PWR_EnterSTANDBYMode(void) +{ + /* Select Standby mode */ + SET_BIT(PWR->CR, PWR_CR_PDDS); + + /* Set SLEEPDEEP bit of Cortex System Control Register */ + SET_BIT(SCB->SCR, SCB_SCR_SLEEPDEEP_Msk); + + /* This option is used to ensure that store operations are completed */ +#if defined ( __CC_ARM) + __force_stores(); +#endif + /* Request Wait For Interrupt */ + __WFI(); +} + +/** + * @brief Indicates Sleep-On-Exit when returning from Handler mode to Thread mode. + * @note Set SLEEPONEXIT bit of SCR register. When this bit is set, the processor + * re-enters SLEEP mode when an interruption handling is over. + * Setting this bit is useful when the processor is expected to run only on + * interruptions handling. + * @retval None + */ +void HAL_PWR_EnableSleepOnExit(void) +{ + /* Set SLEEPONEXIT bit of Cortex System Control Register */ + SET_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SLEEPONEXIT_Msk)); +} + + +/** + * @brief Disables Sleep-On-Exit feature when returning from Handler mode to Thread mode. + * @note Clears SLEEPONEXIT bit of SCR register. When this bit is set, the processor + * re-enters SLEEP mode when an interruption handling is over. + * @retval None + */ +void HAL_PWR_DisableSleepOnExit(void) +{ + /* Clear SLEEPONEXIT bit of Cortex System Control Register */ + CLEAR_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SLEEPONEXIT_Msk)); +} + + +/** + * @brief Enables CORTEX M0+ SEVONPEND bit. + * @note Sets SEVONPEND bit of SCR register. When this bit is set, this causes + * WFE to wake up when an interrupt moves from inactive to pended. + * @retval None + */ +void HAL_PWR_EnableSEVOnPend(void) +{ + /* Set SEVONPEND bit of Cortex System Control Register */ + SET_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SEVONPEND_Msk)); +} + + +/** + * @brief Disables CORTEX M0+ SEVONPEND bit. + * @note Clears SEVONPEND bit of SCR register. When this bit is set, this causes + * WFE to wake up when an interrupt moves from inactive to pended. + * @retval None + */ +void HAL_PWR_DisableSEVOnPend(void) +{ + /* Clear SEVONPEND bit of Cortex System Control Register */ + CLEAR_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SEVONPEND_Msk)); +} + +/** + * @brief This function handles the PWR PVD interrupt request. + * @note This API should be called under the PVD_IRQHandler(). + * @retval None + */ +void HAL_PWR_PVD_IRQHandler(void) +{ + /* Check PWR exti flag */ + if(__HAL_PWR_PVD_EXTI_GET_FLAG() != RESET) + { + /* PWR PVD interrupt user callback */ + HAL_PWR_PVDCallback(); + + /* Clear PWR Exti pending bit */ + __HAL_PWR_PVD_EXTI_CLEAR_FLAG(); + } +} + +/** + * @brief PWR PVD interrupt callback + * @retval None + */ +__weak void HAL_PWR_PVDCallback(void) +{ + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_PWR_PVDCallback could be implemented in the user file + */ +} + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_PWR_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c new file mode 100644 index 0000000..095a0db --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c @@ -0,0 +1,202 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_pwr_ex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Extended PWR HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the Power Controller (PWR) peripheral: + * + Extended Initialization and de-initialization functions + * + Extended Peripheral Control functions + * + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +#ifdef HAL_PWR_MODULE_ENABLED +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup PWREx + * @{ + */ + +/** @addtogroup PWREx_Private + * @{ + */ + +/** @defgroup PWR_Extended_TimeOut_Value PWREx Flag Setting Time Out Value + * @{ + */ +#define PWR_FLAG_SETTING_DELAY_US 50U +/** + * @} + */ + +/** + * @} + */ + + +/** @addtogroup PWREx_Exported_Functions + * @brief Low Power modes configuration functions + * +@verbatim + + =============================================================================== + ##### Peripheral extended features functions ##### + =============================================================================== +@endverbatim + * @{ + */ + +/** + * @brief Return Voltage Scaling Range. + * @retval VOS bit field (PWR_REGULATOR_VOLTAGE_SCALE1, PWR_REGULATOR_VOLTAGE_SCALE2 or PWR_REGULATOR_VOLTAGE_SCALE3) + */ +uint32_t HAL_PWREx_GetVoltageRange(void) +{ + return (PWR->CR & PWR_CR_VOS); +} + + +/** + * @brief Enables the Fast WakeUp from Ultra Low Power mode. + * @note This bit works in conjunction with ULP bit. + * Means, when ULP = 1 and FWU = 1 :VREFINT startup time is ignored when + * exiting from low power mode. + * @retval None + */ +void HAL_PWREx_EnableFastWakeUp(void) +{ + /* Enable the fast wake up */ + SET_BIT(PWR->CR, PWR_CR_FWU); +} + +/** + * @brief Disables the Fast WakeUp from Ultra Low Power mode. + * @retval None + */ +void HAL_PWREx_DisableFastWakeUp(void) +{ + /* Disable the fast wake up */ + CLEAR_BIT(PWR->CR, PWR_CR_FWU); +} + +/** + * @brief Enables the Ultra Low Power mode + * @retval None + */ +void HAL_PWREx_EnableUltraLowPower(void) +{ + /* Enable the Ultra Low Power mode */ + SET_BIT(PWR->CR, PWR_CR_ULP); +} + +/** + * @brief Disables the Ultra Low Power mode + * @retval None + */ +void HAL_PWREx_DisableUltraLowPower(void) +{ + /* Disable the Ultra Low Power mode */ + CLEAR_BIT(PWR->CR, PWR_CR_ULP); +} + +/** + * @brief Enable the Low Power Run mode. + * @note Low power run mode can only be entered when VCORE is in range 2. + * In addition, the dynamic voltage scaling must not be used when Low + * power run mode is selected. Only Stop and Sleep modes with regulator + * configured in Low power mode is allowed when Low power run mode is + * selected. + * @note The frequency of the system clock must be decreased to not exceed the + * frequency of RCC_MSIRANGE_1. + * @note In Low power run mode, all I/O pins keep the same state as in Run mode. + * @retval None + */ +void HAL_PWREx_EnableLowPowerRunMode(void) +{ + /* Enters the Low Power Run mode */ + SET_BIT(PWR->CR, PWR_CR_LPSDSR); + SET_BIT(PWR->CR, PWR_CR_LPRUN); +} + +/** + * @brief Disable the Low Power Run mode. + * @note Before HAL_PWREx_DisableLowPowerRunMode() completion, the function checks that + * REGLPF has been properly reset (otherwise, HAL_PWREx_DisableLowPowerRunMode + * returns HAL_TIMEOUT status). The system clock frequency can then be + * increased above 2 MHz. + * @retval HAL_StatusTypeDef + */ +HAL_StatusTypeDef HAL_PWREx_DisableLowPowerRunMode(void) +{ + uint32_t wait_loop_index = 0U; + + /* Exit the Low Power Run mode */ + CLEAR_BIT(PWR->CR, PWR_CR_LPRUN); + CLEAR_BIT(PWR->CR, PWR_CR_LPSDSR); + + /* Wait until REGLPF is reset */ + wait_loop_index = (PWR_FLAG_SETTING_DELAY_US * (SystemCoreClock / 1000000U)); + + while ((wait_loop_index != 0U) && (HAL_IS_BIT_SET(PWR->CSR, PWR_CSR_REGLPF))) + { + wait_loop_index--; + } + + if (HAL_IS_BIT_SET(PWR->CSR, PWR_CSR_REGLPF)) + { + return HAL_TIMEOUT; + } + + return HAL_OK; +} + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ +#endif /* HAL_PWR_MODULE_ENABLED */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c new file mode 100644 index 0000000..a5e9faf --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c @@ -0,0 +1,1490 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rcc.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief RCC HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the Reset and Clock Control (RCC) peripheral: + * + Initialization and de-initialization functions + * + Peripheral Control functions + * + @verbatim + ============================================================================== + ##### RCC specific features ##### + ============================================================================== + [..] + After reset the device is running from multispeed internal oscillator clock + (MSI 2.097MHz) with Flash 0 wait state and Flash prefetch buffer is disabled, + and all peripherals are off except internal SRAM, Flash and JTAG. + (+) There is no prescaler on High speed (AHB) and Low speed (APB) buses; + all peripherals mapped on these buses are running at MSI speed. + (+) The clock for all peripherals is switched off, except the SRAM and FLASH. + (+) All GPIOs are in input floating state, except the JTAG pins which + are assigned to be used for debug purpose. + [..] Once the device started from reset, the user application has to: + (+) Configure the clock source to be used to drive the System clock + (if the application needs higher frequency/performance) + (+) Configure the System clock frequency and Flash settings + (+) Configure the AHB and APB buses prescalers + (+) Enable the clock for the peripheral(s) to be used + (+) Configure the clock source(s) for peripherals whose clocks are not + derived from the System clock (I2S, RTC, ADC, USB OTG FS/SDIO/RNG) + (*) SDIO only for STM32L0xxxD devices + + ##### RCC Limitations ##### + ============================================================================== + [..] + A delay between an RCC peripheral clock enable and the effective peripheral + enabling should be taken into account in order to manage the peripheral read/write + from/to registers. + (+) This delay depends on the peripheral mapping. + (++) AHB & APB peripherals, 1 dummy read is necessary + + [..] + Workarounds: + (#) For AHB & APB peripherals, a dummy read to the peripheral register has been + inserted in each __HAL_RCC_PPP_CLK_ENABLE() macro. + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** +*/ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup RCC RCC +* @brief RCC HAL module driver + * @{ + */ + +#ifdef HAL_RCC_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/** @defgroup RCC_Private_Constants RCC Private Constants + * @{ + */ +/* Bits position in in the CFGR register */ +#define RCC_CFGR_PLLMUL_BITNUMBER RCC_CFGR_PLLMUL_Pos +#define RCC_CFGR_PLLDIV_BITNUMBER RCC_CFGR_PLLDIV_Pos +#define RCC_CFGR_HPRE_BITNUMBER RCC_CFGR_HPRE_Pos +#define RCC_CFGR_PPRE1_BITNUMBER RCC_CFGR_PPRE1_Pos +#define RCC_CFGR_PPRE2_BITNUMBER RCC_CFGR_PPRE2_Pos +/* Bits position in in the ICSCR register */ +#define RCC_ICSCR_MSIRANGE_BITNUMBER RCC_ICSCR_MSIRANGE_Pos +#define RCC_ICSCR_MSITRIM_BITNUMBER RCC_ICSCR_MSITRIM_Pos +/** + * @} + */ +/* Private macro -------------------------------------------------------------*/ +/** @defgroup RCC_Private_Macros RCC Private Macros + * @{ + */ + +#define MCO1_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE() +#define MCO1_GPIO_PORT GPIOA +#define MCO1_PIN GPIO_PIN_8 + +#define MCO2_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE() +#define MCO2_GPIO_PORT GPIOA +#define MCO2_PIN GPIO_PIN_9 + +#if defined(STM32L031xx) || defined(STM32L041xx) || defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) || defined(STM32L071xx) || defined(STM32L081xx) +#define MCO3_CLK_ENABLE() __HAL_RCC_GPIOB_CLK_ENABLE() +#define MCO3_GPIO_PORT GPIOB +#define MCO3_PIN GPIO_PIN_13 +#endif + +/** + * @} + */ + +/* Private variables ---------------------------------------------------------*/ +/** @defgroup RCC_Private_Variables RCC Private Variables + * @{ + */ +extern const uint8_t PLLMulTable[]; /* Defined in CMSIS (system_stm32l0xx.c)*/ +/** + * @} + */ + +/* Private function prototypes -----------------------------------------------*/ +/** @defgroup RCC_Private_Functions RCC Private Functions + * @{ + */ +static HAL_StatusTypeDef RCC_SetFlashLatencyFromMSIRange(uint32_t MSIrange); +/** + * @} + */ + +/* Exported functions ---------------------------------------------------------*/ + +/** @defgroup RCC_Exported_Functions RCC Exported Functions + * @{ + */ + +/** @defgroup RCC_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Initialization and Configuration functions + * + @verbatim + =============================================================================== + ##### Initialization and de-initialization functions ##### + =============================================================================== + [..] + This section provides functions allowing to configure the internal/external oscillators + (MSI, HSE, HSI, LSE, LSI, PLL, CSS and MCO) and the System buses clocks (SYSCLK, AHB, APB1 + and APB2). + + [..] Internal/external clock and PLL configuration + (#) MSI (Multispeed internal), Seven frequency ranges are available: 65.536 kHz, + 131.072 kHz, 262.144 kHz, 524.288 kHz, 1.048 MHz, 2.097 MHz (default value) and 4.194 MHz. + + (#) HSI (high-speed internal), 16 MHz factory-trimmed RC used directly or through + the PLL as System clock source. + (#) LSI (low-speed internal), ~37 KHz low consumption RC used as IWDG and/or RTC + clock source. + + (#) HSE (high-speed external), 1 to 24 MHz crystal oscillator used directly or + through the PLL as System clock source. Can be used also as RTC clock source. + + (#) LSE (low-speed external), 32 KHz oscillator used as RTC clock source. + + (#) PLL (clocked by HSI or HSE), featuring different output clocks: + (++) The first output is used to generate the high speed system clock (up to 32 MHz) + (++) The second output is used to generate the clock for the USB OTG FS (48 MHz) + + (#) CSS (Clock security system), once enable using the macro __HAL_RCC_CSS_ENABLE() + and if a HSE clock failure occurs(HSE used directly or through PLL as System + clock source), the System clocks automatically switched to MSI and an interrupt + is generated if enabled. The interrupt is linked to the Cortex-M0+ NMI + (Non-Maskable Interrupt) exception vector. + + (#) MCO1/MCO2/MCO3 (microcontroller clock output), used to output SYSCLK, HSI, LSI, MSI, LSE, + HSE, HSI48 or PLL clock (through a configurable prescaler) on PA8/PA9/PB13 pins. + + [..] System, AHB and APB buses clocks configuration + (#) Several clock sources can be used to drive the System clock (SYSCLK): MSI, HSI, + HSE and PLL. + The AHB clock (HCLK) is derived from System clock through configurable + prescaler and used to clock the CPU, memory and peripherals mapped + on AHB bus (DMA, GPIO...). APB1 (PCLK1) and APB2 (PCLK2) clocks are derived + from AHB clock through configurable prescalers and used to clock + the peripherals mapped on these buses. You can use + "@ref HAL_RCC_GetSysClockFreq()" function to retrieve the frequencies of these clocks. + + -@- All the peripheral clocks are derived from the System clock (SYSCLK) except: + (+@) RTC: RTC clock can be derived either from the LSI, LSE or HSE clock + divided by 2 to 16. You have to use @ref __HAL_RCC_RTC_CONFIG() and @ref __HAL_RCC_RTC_ENABLE() + macros to configure this clock. + (+@) LCD: LCD clock can be derived either from the LSI, LSE or HSE clock + divided by 2 to 16. You have to use @ref __HAL_RCC_LCD_CONFIG() + macros to configure this clock. + (+@) USB FS and RNG: USB FS require a frequency equal to 48 MHz to work correctly. + This clock is derived of the main PLL through PLL Multiplier or HSI48 RC oscillator. + + (+@) IWDG clock which is always the LSI clock. + + (#) The maximum frequency of the SYSCLK and HCLK is 32 MHz, PCLK2 32 MHz + and PCLK1 32 MHz. Depending on the device voltage range, the maximum + frequency should be adapted accordingly. + @endverbatim + * @{ + */ + +/* + Additional consideration on the HCLK based on Latency settings: + +----------------------------------------------------------------------+ + | Latency | HCLK clock frequency (MHz) | + | |------------------------------------------------------| + | | voltage range 1 | voltage range 2 | voltage range 3 | + | | 1.8 V | 1.5 V | 1.2 V | + |---------------|------------------|-----------------|-----------------| + |0WS(1CPU cycle)| 0 < HCLK <= 16 | 0 < HCLK <= 8 | 0 < HCLK <= 2 | + |---------------|------------------|-----------------|-----------------| + |1WS(2CPU cycle)| 16 < HCLK <= 32 | 8 < HCLK <= 16 | 2 < HCLK <= 4 | + +----------------------------------------------------------------------+ + + The following table gives the different clock source frequencies depending on the product + voltage range: + +------------------------------------------------------------------------------------------+ + | Product voltage | Clock frequency | + | |------------------|-----------------------------|-----------------------| + | range | MSI | HSI | HSE | PLL | + |-----------------|---------|--------|-----------------------------|-----------------------| + | Range 1 (1.8 V) | 4.2 MHz | 16 MHz | HSE 32 MHz (external clock) | 32 MHz | + | | | | or 24 MHz (crystal) | (PLLVCO max = 96 MHz) | + |-----------------|---------|--------|-----------------------------|-----------------------| + | Range 2 (1.5 V) | 4.2 MHz | 16 MHz | 16 MHz | 16 MHz | + | | | | | (PLLVCO max = 48 MHz) | + |-----------------|---------|--------|-----------------------------|-----------------------| + | Range 3 (1.2 V) | 4.2 MHz | NA | 8 MHz | 4 MHz | + | | | | | (PLLVCO max = 24 MHz) | + +------------------------------------------------------------------------------------------+ + */ + +/** + * @brief Resets the RCC clock configuration to the default reset state. + * @note The default reset state of the clock configuration is given below: + * - MSI ON and used as system clock source + * - HSI, HSE and PLL OFF + * - AHB, APB1 and APB2 prescaler set to 1. + * - CSS and MCO1/MCO2/MCO3 OFF + * - All interrupts disabled + * @note This function does not modify the configuration of the + * - Peripheral clocks + * - LSI, LSE and RTC clocks + * - HSI48 clock + * @retval None + */ +void HAL_RCC_DeInit(void) +{ + __IO uint32_t tmpreg; + + /* Set MSION bit */ + SET_BIT(RCC->CR, RCC_CR_MSION); + + /* Switch SYSCLK to MSI*/ + CLEAR_BIT(RCC->CFGR, RCC_CFGR_SW); + + /* Reset HSE, HSI, CSS, PLL */ +#if defined(RCC_CR_CSSHSEON) && defined(RCC_CR_HSIOUTEN) + CLEAR_BIT(RCC->CR, RCC_CR_HSION| RCC_CR_HSIKERON| RCC_CR_HSIDIVEN | RCC_CR_HSIOUTEN | \ + RCC_CR_HSEON | RCC_CR_CSSHSEON | RCC_CR_PLLON); +#elif !defined(RCC_CR_CSSHSEON) && defined(RCC_CR_HSIOUTEN) + CLEAR_BIT(RCC->CR, RCC_CR_HSION| RCC_CR_HSIKERON| RCC_CR_HSIDIVEN | RCC_CR_HSIOUTEN | \ + RCC_CR_HSEON | RCC_CR_PLLON); +#elif defined(RCC_CR_CSSHSEON) && !defined(RCC_CR_HSIOUTEN) + CLEAR_BIT(RCC->CR, RCC_CR_HSION| RCC_CR_HSIKERON| RCC_CR_HSIDIVEN | \ + RCC_CR_HSEON | RCC_CR_CSSHSEON | RCC_CR_PLLON); +#endif + + /* Delay after an RCC peripheral clock */ \ + tmpreg = READ_BIT(RCC->CR, RCC_CR_HSEON); \ + UNUSED(tmpreg); + + /* Reset HSEBYP bit */ + CLEAR_BIT(RCC->CR, RCC_CR_HSEBYP); + + /* Reset CFGR register */ + CLEAR_REG(RCC->CFGR); + + /* Set MSIClockRange & MSITRIM[4:0] bits to the reset value */ + MODIFY_REG(RCC->ICSCR, (RCC_ICSCR_MSIRANGE | RCC_ICSCR_MSITRIM), (((uint32_t)0 << RCC_ICSCR_MSITRIM_BITNUMBER) | RCC_ICSCR_MSIRANGE_5)); + + /* Set HSITRIM bits to the reset value */ + MODIFY_REG(RCC->ICSCR, RCC_ICSCR_HSITRIM, ((uint32_t)0x10 << 8)); + + /* Disable all interrupts */ + CLEAR_REG(RCC->CIER); + + /* Update the SystemCoreClock global variable */ + SystemCoreClock = MSI_VALUE; +} + +/** + * @brief Initializes the RCC Oscillators according to the specified parameters in the + * RCC_OscInitTypeDef. + * @param RCC_OscInitStruct pointer to an RCC_OscInitTypeDef structure that + * contains the configuration information for the RCC Oscillators. + * @note The PLL is not disabled when used as system clock. + * @note Transitions LSE Bypass to LSE On and LSE On to LSE Bypass are not + * supported by this macro. User should request a transition to LSE Off + * first and then LSE On or LSE Bypass. + * @note Transition HSE Bypass to HSE On and HSE On to HSE Bypass are not + * supported by this macro. User should request a transition to HSE Off + * first and then HSE On or HSE Bypass. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(RCC_OscInitStruct != NULL); + assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); + + /*------------------------------- HSE Configuration ------------------------*/ + if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) + { + /* Check the parameters */ + assert_param(IS_RCC_HSE(RCC_OscInitStruct->HSEState)); + + /* When the HSE is used as system clock or clock source for PLL in these cases it is not allowed to be disabled */ + if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_HSE) + || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSE))) + { + if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) + { + return HAL_ERROR; + } + } + else + { + /* Set the new HSE configuration ---------------------------------------*/ + __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); + + + /* Check the HSE State */ + if(RCC_OscInitStruct->HSEState != RCC_HSE_OFF) + { + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till HSE is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) + { + if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else + { + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till HSE is disabled */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) + { + if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } + } + /*----------------------------- HSI Configuration --------------------------*/ + if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) + { + /* Check the parameters */ + assert_param(IS_RCC_HSI(RCC_OscInitStruct->HSIState)); + assert_param(IS_RCC_CALIBRATION_VALUE(RCC_OscInitStruct->HSICalibrationValue)); + + /* Check if HSI is used as system clock or as PLL source when PLL is selected as system clock */ + if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_HSI) + || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSI))) + { + /* When HSI is used as system clock it will not disabled */ + if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) + { + return HAL_ERROR; + } + /* Otherwise, just the calibration is allowed */ + else + { + /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ + __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); + } + } + else + { + /* Check the HSI State */ + if(RCC_OscInitStruct->HSIState != RCC_HSI_OFF) + { + /* Enable the Internal High Speed oscillator (HSI or HSIdiv4) */ + __HAL_RCC_HSI_CONFIG(RCC_OscInitStruct->HSIState); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till HSI is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) + { + if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + + /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ + __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); + } + else + { + /* Disable the Internal High Speed oscillator (HSI). */ + __HAL_RCC_HSI_DISABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till HSI is disabled */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) + { + if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } + } + /*----------------------------- MSI Configuration --------------------------*/ + if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_MSI) == RCC_OSCILLATORTYPE_MSI) + { + /* When the MSI is used as system clock it will not be disabled */ + if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_MSI) ) + { + if((__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) != RESET) && (RCC_OscInitStruct->MSIState == RCC_MSI_OFF)) + { + return HAL_ERROR; + } + /* Otherwise, just the calibration and MSI range change are allowed */ + else + { + /* Check MSICalibrationValue and MSIClockRange input parameters */ + assert_param(IS_RCC_MSICALIBRATION_VALUE(RCC_OscInitStruct->MSICalibrationValue)); + assert_param(IS_RCC_MSI_CLOCK_RANGE(RCC_OscInitStruct->MSIClockRange)); + + /* To correctly read data from FLASH memory, the number of wait states (LATENCY) + must be correctly programmed according to the frequency of the CPU clock + (HCLK) and the supply voltage of the device. */ + if(RCC_OscInitStruct->MSIClockRange > __HAL_RCC_GET_MSI_RANGE()) + { + /* First increase number of wait states update if necessary */ + if(RCC_SetFlashLatencyFromMSIRange(RCC_OscInitStruct->MSIClockRange) != HAL_OK) + { + return HAL_ERROR; + } + + /* Selects the Multiple Speed oscillator (MSI) clock range .*/ + __HAL_RCC_MSI_RANGE_CONFIG(RCC_OscInitStruct->MSIClockRange); + /* Adjusts the Multiple Speed oscillator (MSI) calibration value.*/ + __HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->MSICalibrationValue); + } + else + { + /* Else, keep current flash latency while decreasing applies */ + /* Selects the Multiple Speed oscillator (MSI) clock range .*/ + __HAL_RCC_MSI_RANGE_CONFIG(RCC_OscInitStruct->MSIClockRange); + /* Adjusts the Multiple Speed oscillator (MSI) calibration value.*/ + __HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->MSICalibrationValue); + + /* Decrease number of wait states update if necessary */ + if(RCC_SetFlashLatencyFromMSIRange(RCC_OscInitStruct->MSIClockRange) != HAL_OK) + { + return HAL_ERROR; + } + } + + /* Update the SystemCoreClock global variable */ + SystemCoreClock = (32768U * (1U << ((RCC_OscInitStruct->MSIClockRange >> RCC_ICSCR_MSIRANGE_BITNUMBER) + 1U))) + >> AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_BITNUMBER)]; + + /* Configure the source of time base considering new system clocks settings*/ + HAL_InitTick (TICK_INT_PRIORITY); + } + } + else + { + /* Check MSI State */ + assert_param(IS_RCC_MSI(RCC_OscInitStruct->MSIState)); + + /* Check the MSI State */ + if(RCC_OscInitStruct->MSIState != RCC_MSI_OFF) + { + /* Enable the Multi Speed oscillator (MSI). */ + __HAL_RCC_MSI_ENABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till MSI is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) == RESET) + { + if((HAL_GetTick() - tickstart) > MSI_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + /* Check MSICalibrationValue and MSIClockRange input parameters */ + assert_param(IS_RCC_MSICALIBRATION_VALUE(RCC_OscInitStruct->MSICalibrationValue)); + assert_param(IS_RCC_MSI_CLOCK_RANGE(RCC_OscInitStruct->MSIClockRange)); + + /* Selects the Multiple Speed oscillator (MSI) clock range .*/ + __HAL_RCC_MSI_RANGE_CONFIG(RCC_OscInitStruct->MSIClockRange); + /* Adjusts the Multiple Speed oscillator (MSI) calibration value.*/ + __HAL_RCC_MSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->MSICalibrationValue); + + } + else + { + /* Disable the Multi Speed oscillator (MSI). */ + __HAL_RCC_MSI_DISABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till MSI is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) != RESET) + { + if((HAL_GetTick() - tickstart) > MSI_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } + } + /*------------------------------ LSI Configuration -------------------------*/ + if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) + { + /* Check the parameters */ + assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); + + /* Check the LSI State */ + if(RCC_OscInitStruct->LSIState != RCC_LSI_OFF) + { + /* Enable the Internal Low Speed oscillator (LSI). */ + __HAL_RCC_LSI_ENABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till LSI is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) + { + if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else + { + /* Disable the Internal Low Speed oscillator (LSI). */ + __HAL_RCC_LSI_DISABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till LSI is disabled */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) + { + if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } + /*------------------------------ LSE Configuration -------------------------*/ + if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) + { + FlagStatus pwrclkchanged = RESET; + + /* Check the parameters */ + assert_param(IS_RCC_LSE(RCC_OscInitStruct->LSEState)); + + /* Update LSE configuration in Backup Domain control register */ + /* Requires to enable write access to Backup Domain of necessary */ + if(__HAL_RCC_PWR_IS_CLK_DISABLED()) + { + __HAL_RCC_PWR_CLK_ENABLE(); + pwrclkchanged = SET; + } + + if(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) + { + /* Enable write access to Backup domain */ + SET_BIT(PWR->CR, PWR_CR_DBP); + + /* Wait for Backup domain Write protection disable */ + tickstart = HAL_GetTick(); + + while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) + { + if((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + + /* Set the new LSE configuration -----------------------------------------*/ + __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); + /* Check the LSE State */ + if(RCC_OscInitStruct->LSEState != RCC_LSE_OFF) + { + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till LSE is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) + { + if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else + { + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till LSE is disabled */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) + { + if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + + /* Require to disable power clock if necessary */ + if(pwrclkchanged == SET) + { + __HAL_RCC_PWR_CLK_DISABLE(); + } + } + +#if defined(RCC_HSI48_SUPPORT) + /*----------------------------- HSI48 Configuration --------------------------*/ + if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI48) == RCC_OSCILLATORTYPE_HSI48) + { + /* Check the parameters */ + assert_param(IS_RCC_HSI48(RCC_OscInitStruct->HSI48State)); + + /* Check the HSI48 State */ + if(RCC_OscInitStruct->HSI48State != RCC_HSI48_OFF) + { + /* Enable the Internal High Speed oscillator (HSI48). */ + __HAL_RCC_HSI48_ENABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till HSI48 is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSI48RDY) == RESET) + { + if((HAL_GetTick() - tickstart) > HSI48_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else + { + /* Disable the Internal High Speed oscillator (HSI48). */ + __HAL_RCC_HSI48_DISABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till HSI48 is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSI48RDY) != RESET) + { + if((HAL_GetTick() - tickstart) > HSI48_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } +#endif /* RCC_HSI48_SUPPORT */ + + /*-------------------------------- PLL Configuration -----------------------*/ + /* Check the parameters */ + assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); + if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) + { + /* Check if the PLL is used as system clock or not */ + if(__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_PLLCLK) + { + if((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) + { + /* Check the parameters */ + assert_param(IS_RCC_PLLSOURCE(RCC_OscInitStruct->PLL.PLLSource)); + assert_param(IS_RCC_PLL_MUL(RCC_OscInitStruct->PLL.PLLMUL)); + assert_param(IS_RCC_PLL_DIV(RCC_OscInitStruct->PLL.PLLDIV)); + + /* Disable the main PLL. */ + __HAL_RCC_PLL_DISABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till PLL is disabled */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) + { + if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + + /* Configure the main PLL clock source, multiplication and division factors. */ + __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, + RCC_OscInitStruct->PLL.PLLMUL, + RCC_OscInitStruct->PLL.PLLDIV); + /* Enable the main PLL. */ + __HAL_RCC_PLL_ENABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till PLL is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) + { + if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else + { + /* Disable the main PLL. */ + __HAL_RCC_PLL_DISABLE(); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till PLL is disabled */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) + { + if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } + else + { + return HAL_ERROR; + } + } + + return HAL_OK; +} + +/** + * @brief Initializes the CPU, AHB and APB buses clocks according to the specified + * parameters in the RCC_ClkInitStruct. + * @param RCC_ClkInitStruct pointer to an RCC_OscInitTypeDef structure that + * contains the configuration information for the RCC peripheral. + * @param FLatency FLASH Latency + * The value of this parameter depend on device used within the same series + * @note The SystemCoreClock CMSIS variable is used to store System Clock Frequency + * and updated by @ref HAL_RCC_GetHCLKFreq() function called within this function + * + * @note The MSI is used (enabled by hardware) as system clock source after + * start-up from Reset, wake-up from STOP and STANDBY mode, or in case + * of failure of the HSE used directly or indirectly as system clock + * (if the Clock Security System CSS is enabled). + * + * @note A switch from one clock source to another occurs only if the target + * clock source is ready (clock stable after start-up delay or PLL locked). + * If a clock source which is not yet ready is selected, the switch will + * occur when the clock source will be ready. + * You can use @ref HAL_RCC_GetClockConfig() function to know which clock is + * currently used as system clock source. + * @note Depending on the device voltage range, the software has to set correctly + * HPRE[3:0] bits to ensure that HCLK not exceed the maximum allowed frequency + * (for more details refer to section above "Initialization/de-initialization functions") + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(RCC_ClkInitStruct != NULL); + assert_param(IS_RCC_CLOCKTYPE(RCC_ClkInitStruct->ClockType)); + assert_param(IS_FLASH_LATENCY(FLatency)); + + /* To correctly read data from FLASH memory, the number of wait states (LATENCY) + must be correctly programmed according to the frequency of the CPU clock + (HCLK) and the supply voltage of the device. */ + + /* Increasing the number of wait states because of higher CPU frequency */ + if(FLatency > (FLASH->ACR & FLASH_ACR_LATENCY)) + { + /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ + __HAL_FLASH_SET_LATENCY(FLatency); + + /* Check that the new number of wait states is taken into account to access the Flash + memory by reading the FLASH_ACR register */ + if((FLASH->ACR & FLASH_ACR_LATENCY) != FLatency) + { + return HAL_ERROR; + } + } + + /*-------------------------- HCLK Configuration --------------------------*/ + if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) + { + assert_param(IS_RCC_HCLK(RCC_ClkInitStruct->AHBCLKDivider)); + MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); + } + + /*------------------------- SYSCLK Configuration ---------------------------*/ + if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) + { + assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); + + /* HSE is selected as System Clock Source */ + if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) + { + /* Check the HSE ready flag */ + if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) + { + return HAL_ERROR; + } + } + /* PLL is selected as System Clock Source */ + else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) + { + /* Check the PLL ready flag */ + if(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) + { + return HAL_ERROR; + } + } + /* HSI is selected as System Clock Source */ + else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSI) + { + /* Check the HSI ready flag */ + if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) + { + return HAL_ERROR; + } + } + /* MSI is selected as System Clock Source */ + else + { + /* Check the MSI ready flag */ + if(__HAL_RCC_GET_FLAG(RCC_FLAG_MSIRDY) == RESET) + { + return HAL_ERROR; + } + } + __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); + + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) + { + while (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_HSE) + { + if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) + { + while (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_PLLCLK) + { + if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSI) + { + while (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_HSI) + { + if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + else + { + while(__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_MSI) + { + if((HAL_GetTick() - tickstart ) > CLOCKSWITCH_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } + /* Decreasing the number of wait states because of lower CPU frequency */ + if(FLatency < (FLASH->ACR & FLASH_ACR_LATENCY)) + { + /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ + __HAL_FLASH_SET_LATENCY(FLatency); + + /* Check that the new number of wait states is taken into account to access the Flash + memory by reading the FLASH_ACR register */ + if((FLASH->ACR & FLASH_ACR_LATENCY) != FLatency) + { + return HAL_ERROR; + } + } + + /*-------------------------- PCLK1 Configuration ---------------------------*/ + if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) + { + assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); + MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); + } + + /*-------------------------- PCLK2 Configuration ---------------------------*/ + if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) + { + assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); + MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3)); + } + + /* Update the SystemCoreClock global variable */ + SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE)>> RCC_CFGR_HPRE_BITNUMBER]; + + /* Configure the source of time base considering new system clocks settings*/ + HAL_InitTick (TICK_INT_PRIORITY); + + return HAL_OK; +} + +/** + * @} + */ + +/** @defgroup RCC_Exported_Functions_Group2 Peripheral Control functions + * @brief RCC clocks control functions + * + @verbatim + =============================================================================== + ##### Peripheral Control functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to control the RCC Clocks + frequencies. + + @endverbatim + * @{ + */ + +/** + * @brief Selects the clock source to output on MCO pin. + * @note MCO pin should be configured in alternate function mode. + * @param RCC_MCOx specifies the output direction for the clock source. + * This parameter can be one of the following values: + * @arg @ref RCC_MCO1 Clock source to output on MCO1 pin(PA8). + * @arg @ref RCC_MCO2 Clock source to output on MCO2 pin(PA9). + @if STM32L031xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @elseif STM32L041xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @elseif STM32L073xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @elseif STM32L083xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @elseif STM32L072xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @elseif STM32L082xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @elseif STM32L071xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @elseif STM32L081xx + * @arg @ref RCC_MCO3 Clock source to output on MCO3 pin(PB13) + @endif + * @param RCC_MCOSource specifies the clock source to output. + * This parameter can be one of the following values: + * @arg @ref RCC_MCO1SOURCE_NOCLOCK No clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_SYSCLK System clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_HSI HSI selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_HSE HSE selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_MSI MSI oscillator clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_PLLCLK PLL clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_LSI LSI clock selected as MCO clock + * @arg @ref RCC_MCO1SOURCE_LSE LSE clock selected as MCO clock + @if STM32L052xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L053xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L062xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L063xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L072xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L073xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L082xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @elseif STM32L083xx + * @arg @ref RCC_MCO1SOURCE_HSI48 HSI48 clock selected as MCO clock + @endif + * @param RCC_MCODiv specifies the MCO DIV. + * This parameter can be one of the following values: + * @arg @ref RCC_MCODIV_1 no division applied to MCO clock + * @arg @ref RCC_MCODIV_2 division by 2 applied to MCO clock + * @arg @ref RCC_MCODIV_4 division by 4 applied to MCO clock + * @arg @ref RCC_MCODIV_8 division by 8 applied to MCO clock + * @arg @ref RCC_MCODIV_16 division by 16 applied to MCO clock + * @retval None + */ +void HAL_RCC_MCOConfig(uint32_t RCC_MCOx, uint32_t RCC_MCOSource, uint32_t RCC_MCODiv) +{ + GPIO_InitTypeDef gpio = {0}; + + /* Check the parameters */ + assert_param(IS_RCC_MCO(RCC_MCOx)); + assert_param(IS_RCC_MCODIV(RCC_MCODiv)); + assert_param(IS_RCC_MCO1SOURCE(RCC_MCOSource)); + + /* Configure the MCO1 pin in alternate function mode */ + gpio.Mode = GPIO_MODE_AF_PP; + gpio.Speed = GPIO_SPEED_FREQ_HIGH; + gpio.Pull = GPIO_NOPULL; + if(RCC_MCOx == RCC_MCO1) + { + gpio.Pin = MCO1_PIN; + gpio.Alternate = GPIO_AF0_MCO; + + /* MCO1 Clock Enable */ + MCO1_CLK_ENABLE(); + HAL_GPIO_Init(MCO1_GPIO_PORT, &gpio); + } +#if defined(STM32L031xx) || defined(STM32L041xx) || defined(STM32L073xx) || defined(STM32L083xx) \ + || defined(STM32L072xx) || defined(STM32L082xx) || defined(STM32L071xx) || defined(STM32L081xx) + else if (RCC_MCOx == RCC_MCO3) + { + gpio.Pin = MCO3_PIN; + gpio.Alternate = GPIO_AF2_MCO; + + /* MCO3 Clock Enable */ + MCO3_CLK_ENABLE(); + HAL_GPIO_Init(MCO3_GPIO_PORT, &gpio); + } +#endif + else + { + gpio.Pin = MCO2_PIN; + gpio.Alternate = GPIO_AF0_MCO; + + /* MCO2 Clock Enable */ + MCO2_CLK_ENABLE(); + HAL_GPIO_Init(MCO2_GPIO_PORT, &gpio); + } + + /* Configure the MCO clock source */ + __HAL_RCC_MCO1_CONFIG(RCC_MCOSource, RCC_MCODiv); +} + +#if defined(RCC_HSECSS_SUPPORT) +/** + * @brief Enables the Clock Security System. + * @note If a failure is detected on the HSE oscillator clock, this oscillator + * is automatically disabled and an interrupt is generated to inform the + * software about the failure (Clock Security System Interrupt, CSSI), + * allowing the MCU to perform rescue operations. The CSSI is linked to + * the Cortex-M0+ NMI (Non-Maskable Interrupt) exception vector. + * @retval None + */ +void HAL_RCC_EnableCSS(void) +{ + SET_BIT(RCC->CR, RCC_CR_CSSON) ; +} + +#endif /* RCC_HSECSS_SUPPORT */ +/** + * @brief Returns the SYSCLK frequency + * @note The system frequency computed by this function is not the real + * frequency in the chip. It is calculated based on the predefined + * constant and the selected clock source: + * @note If SYSCLK source is MSI, function returns a value based on MSI + * Value as defined by the MSI range. + * @note If SYSCLK source is HSI, function returns values based on HSI_VALUE(*) + * @note If SYSCLK source is HSE, function returns a value based on HSE_VALUE(**) + * @note If SYSCLK source is PLL, function returns a value based on HSE_VALUE(**) + * or HSI_VALUE(*) multiplied/divided by the PLL factors. + * @note (*) HSI_VALUE is a constant defined in stm32l0xx_hal_conf.h file (default value + * 16 MHz) but the real value may vary depending on the variations + * in voltage and temperature. + * @note (**) HSE_VALUE is a constant defined in stm32l0xx_hal_conf.h file (default value + * 8 MHz), user has to ensure that HSE_VALUE is same as the real + * frequency of the crystal used. Otherwise, this function may + * have wrong result. + * + * @note The result of this function could be not correct when using fractional + * value for HSE crystal. + * + * @note This function can be used by the user application to compute the + * baud-rate for the communication peripherals or configure other parameters. + * + * @note Each time SYSCLK changes, this function must be called to update the + * right SYSCLK value. Otherwise, any configuration based on this function will be incorrect. + * + * @retval SYSCLK frequency + */ +uint32_t HAL_RCC_GetSysClockFreq(void) +{ + uint32_t tmpreg = 0, pllm = 0, plld = 0, pllvco = 0, msiclkrange = 0; + uint32_t sysclockfreq = 0; + + tmpreg = RCC->CFGR; + + /* Get SYSCLK source -------------------------------------------------------*/ + switch (tmpreg & RCC_CFGR_SWS) + { + case RCC_SYSCLKSOURCE_STATUS_HSI: /* HSI used as system clock source */ + { + if ((RCC->CR & RCC_CR_HSIDIVF) != 0) + { + sysclockfreq = (HSI_VALUE >> 2); + } + else + { + sysclockfreq = HSI_VALUE; + } + break; + } + case RCC_SYSCLKSOURCE_STATUS_HSE: /* HSE used as system clock */ + { + sysclockfreq = HSE_VALUE; + break; + } + case RCC_SYSCLKSOURCE_STATUS_PLLCLK: /* PLL used as system clock */ + { + pllm = PLLMulTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMUL) >> RCC_CFGR_PLLMUL_BITNUMBER]; + plld = ((uint32_t)(tmpreg & RCC_CFGR_PLLDIV) >> RCC_CFGR_PLLDIV_BITNUMBER) + 1; + if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) + { + /* HSE used as PLL clock source */ + pllvco = (HSE_VALUE * pllm) / plld; + } + else + { + if ((RCC->CR & RCC_CR_HSIDIVF) != 0) + { + pllvco = ((HSI_VALUE >> 2) * pllm) / plld; + } + else + { + pllvco = (HSI_VALUE * pllm) / plld; + } + } + sysclockfreq = pllvco; + break; + } + case RCC_SYSCLKSOURCE_STATUS_MSI: /* MSI used as system clock source */ + default: /* MSI used as system clock */ + { + msiclkrange = (RCC->ICSCR & RCC_ICSCR_MSIRANGE ) >> RCC_ICSCR_MSIRANGE_BITNUMBER; + sysclockfreq = (32768 * (1 << (msiclkrange + 1))); + break; + } + } + return sysclockfreq; +} + +/** + * @brief Returns the HCLK frequency + * @note Each time HCLK changes, this function must be called to update the + * right HCLK value. Otherwise, any configuration based on this function will be incorrect. + * + * @note The SystemCoreClock CMSIS variable is used to store System Clock Frequency + * and updated within this function + * @retval HCLK frequency + */ +uint32_t HAL_RCC_GetHCLKFreq(void) +{ + return SystemCoreClock; +} + +/** + * @brief Returns the PCLK1 frequency + * @note Each time PCLK1 changes, this function must be called to update the + * right PCLK1 value. Otherwise, any configuration based on this function will be incorrect. + * @retval PCLK1 frequency + */ +uint32_t HAL_RCC_GetPCLK1Freq(void) +{ + /* Get HCLK source and Compute PCLK1 frequency ---------------------------*/ + return (HAL_RCC_GetHCLKFreq() >> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE1) >> RCC_CFGR_PPRE1_BITNUMBER]); +} + +/** + * @brief Returns the PCLK2 frequency + * @note Each time PCLK2 changes, this function must be called to update the + * right PCLK2 value. Otherwise, any configuration based on this function will be incorrect. + * @retval PCLK2 frequency + */ +uint32_t HAL_RCC_GetPCLK2Freq(void) +{ + /* Get HCLK source and Compute PCLK2 frequency ---------------------------*/ + return (HAL_RCC_GetHCLKFreq()>> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE2) >> RCC_CFGR_PPRE2_BITNUMBER]); +} + +/** + * @brief Configures the RCC_OscInitStruct according to the internal + * RCC configuration registers. + * @param RCC_OscInitStruct pointer to an RCC_OscInitTypeDef structure that + * will be configured. + * @retval None + */ +void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct) +{ + /* Check the parameters */ + assert_param(RCC_OscInitStruct != NULL); + + /* Set all possible values for the Oscillator type parameter ---------------*/ + RCC_OscInitStruct->OscillatorType = RCC_OSCILLATORTYPE_HSE | RCC_OSCILLATORTYPE_HSI \ + | RCC_OSCILLATORTYPE_LSE | RCC_OSCILLATORTYPE_LSI | RCC_OSCILLATORTYPE_MSI; +#if defined(RCC_HSI48_SUPPORT) + RCC_OscInitStruct->OscillatorType |= RCC_OSCILLATORTYPE_HSI48; +#endif /* RCC_HSI48_SUPPORT */ + + + /* Get the HSE configuration -----------------------------------------------*/ + if((RCC->CR &RCC_CR_HSEBYP) == RCC_CR_HSEBYP) + { + RCC_OscInitStruct->HSEState = RCC_HSE_BYPASS; + } + else if((RCC->CR &RCC_CR_HSEON) == RCC_CR_HSEON) + { + RCC_OscInitStruct->HSEState = RCC_HSE_ON; + } + else + { + RCC_OscInitStruct->HSEState = RCC_HSE_OFF; + } + + /* Get the HSI configuration -----------------------------------------------*/ + if((RCC->CR &RCC_CR_HSION) == RCC_CR_HSION) + { + RCC_OscInitStruct->HSIState = RCC_HSI_ON; + } + else + { + RCC_OscInitStruct->HSIState = RCC_HSI_OFF; + } + + RCC_OscInitStruct->HSICalibrationValue = (uint32_t)((RCC->ICSCR & RCC_ICSCR_HSITRIM) >> 8); + + /* Get the MSI configuration -----------------------------------------------*/ + if((RCC->CR &RCC_CR_MSION) == RCC_CR_MSION) + { + RCC_OscInitStruct->MSIState = RCC_MSI_ON; + } + else + { + RCC_OscInitStruct->MSIState = RCC_MSI_OFF; + } + + RCC_OscInitStruct->MSICalibrationValue = (uint32_t)((RCC->ICSCR & RCC_ICSCR_MSITRIM) >> RCC_ICSCR_MSITRIM_BITNUMBER); + RCC_OscInitStruct->MSIClockRange = (uint32_t)((RCC->ICSCR & RCC_ICSCR_MSIRANGE)); + + /* Get the LSE configuration -----------------------------------------------*/ + if((RCC->CSR &RCC_CSR_LSEBYP) == RCC_CSR_LSEBYP) + { + RCC_OscInitStruct->LSEState = RCC_LSE_BYPASS; + } + else if((RCC->CSR &RCC_CSR_LSEON) == RCC_CSR_LSEON) + { + RCC_OscInitStruct->LSEState = RCC_LSE_ON; + } + else + { + RCC_OscInitStruct->LSEState = RCC_LSE_OFF; + } + + /* Get the LSI configuration -----------------------------------------------*/ + if((RCC->CSR &RCC_CSR_LSION) == RCC_CSR_LSION) + { + RCC_OscInitStruct->LSIState = RCC_LSI_ON; + } + else + { + RCC_OscInitStruct->LSIState = RCC_LSI_OFF; + } + +#if defined(RCC_HSI48_SUPPORT) + /* Get the HSI48 configuration if any-----------------------------------------*/ + RCC_OscInitStruct->HSI48State = __HAL_RCC_GET_HSI48_STATE(); +#endif /* RCC_HSI48_SUPPORT */ + + /* Get the PLL configuration -----------------------------------------------*/ + if((RCC->CR &RCC_CR_PLLON) == RCC_CR_PLLON) + { + RCC_OscInitStruct->PLL.PLLState = RCC_PLL_ON; + } + else + { + RCC_OscInitStruct->PLL.PLLState = RCC_PLL_OFF; + } + RCC_OscInitStruct->PLL.PLLSource = (uint32_t)(RCC->CFGR & RCC_CFGR_PLLSRC); + RCC_OscInitStruct->PLL.PLLMUL = (uint32_t)(RCC->CFGR & RCC_CFGR_PLLMUL); + RCC_OscInitStruct->PLL.PLLDIV = (uint32_t)(RCC->CFGR & RCC_CFGR_PLLDIV); +} + +/** + * @brief Get the RCC_ClkInitStruct according to the internal + * RCC configuration registers. + * @param RCC_ClkInitStruct pointer to an RCC_ClkInitTypeDef structure that + * contains the current clock configuration. + * @param pFLatency Pointer on the Flash Latency. + * @retval None + */ +void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t *pFLatency) +{ + /* Check the parameters */ + assert_param(RCC_ClkInitStruct != NULL); + assert_param(pFLatency != NULL); + + /* Set all possible values for the Clock type parameter --------------------*/ + RCC_ClkInitStruct->ClockType = RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2; + + /* Get the SYSCLK configuration --------------------------------------------*/ + RCC_ClkInitStruct->SYSCLKSource = (uint32_t)(RCC->CFGR & RCC_CFGR_SW); + + /* Get the HCLK configuration ----------------------------------------------*/ + RCC_ClkInitStruct->AHBCLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_HPRE); + + /* Get the APB1 configuration ----------------------------------------------*/ + RCC_ClkInitStruct->APB1CLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_PPRE1); + + /* Get the APB2 configuration ----------------------------------------------*/ + RCC_ClkInitStruct->APB2CLKDivider = (uint32_t)((RCC->CFGR & RCC_CFGR_PPRE2) >> 3); + + /* Get the Flash Wait State (Latency) configuration ------------------------*/ + *pFLatency = (uint32_t)(FLASH->ACR & FLASH_ACR_LATENCY); +} + +#if defined(RCC_HSECSS_SUPPORT) +/** + * @brief This function handles the RCC CSS interrupt request. + * @note This API should be called under the NMI_Handler(). + * @retval None + */ +void HAL_RCC_NMI_IRQHandler(void) +{ + /* Check RCC CSSF flag */ + if(__HAL_RCC_GET_IT(RCC_IT_CSS)) + { + /* RCC Clock Security System interrupt user callback */ + HAL_RCC_CSSCallback(); + + /* Clear RCC CSS pending bit */ + __HAL_RCC_CLEAR_IT(RCC_IT_CSS); + } +} + +/** + * @brief RCC Clock Security System interrupt callback + * @retval none + */ +__weak void HAL_RCC_CSSCallback(void) +{ + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_RCC_CSSCallback could be implemented in the user file + */ +} + +#endif /* RCC_HSECSS_SUPPORT */ +/** + * @} + */ + +/** + * @} + */ + +/* Private function prototypes -----------------------------------------------*/ +/** @addtogroup RCC_Private_Functions + * @{ + */ +/** + * @brief Update number of Flash wait states in line with MSI range and current + voltage range + * @param MSIrange MSI range value from RCC_MSIRANGE_0 to RCC_MSIRANGE_6 + * @retval HAL status + */ +static HAL_StatusTypeDef RCC_SetFlashLatencyFromMSIRange(uint32_t MSIrange) +{ + uint32_t vos = 0; + uint32_t latency = FLASH_LATENCY_0; /* default value 0WS */ + + /* HCLK can reach 4 MHz only if AHB prescaler = 1 */ + if (READ_BIT(RCC->CFGR, RCC_CFGR_HPRE) == RCC_SYSCLK_DIV1) + { + if(__HAL_RCC_PWR_IS_CLK_ENABLED()) + { + vos = READ_BIT(PWR->CR, PWR_CR_VOS); + } + else + { + __HAL_RCC_PWR_CLK_ENABLE(); + vos = READ_BIT(PWR->CR, PWR_CR_VOS); + __HAL_RCC_PWR_CLK_DISABLE(); + } + + /* Check if need to set latency 1 only for Range 3 & HCLK = 4MHz */ + if((vos == PWR_REGULATOR_VOLTAGE_SCALE3) && (MSIrange == RCC_MSIRANGE_6)) + { + latency = FLASH_LATENCY_1; /* 1WS */ + } + } + + __HAL_FLASH_SET_LATENCY(latency); + + /* Check that the new number of wait states is taken into account to access the Flash + memory by reading the FLASH_ACR register */ + if((FLASH->ACR & FLASH_ACR_LATENCY) != latency) + { + return HAL_ERROR; + } + + return HAL_OK; +} + +/** + * @} + */ + +#endif /* HAL_RCC_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c new file mode 100644 index 0000000..67250fe --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c @@ -0,0 +1,1167 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rcc_ex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Extended RCC HAL module driver. + * This file provides firmware functions to manage the following + * functionalities RCC extension peripheral: + * + Extended Peripheral Control functions + * + Extended Clock Recovery System Control functions + * + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +#ifdef HAL_RCC_MODULE_ENABLED + +/** @defgroup RCCEx RCCEx + * @brief RCC Extension HAL module driver + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/** @defgroup RCCEx_Private_Constants RCCEx Private Constants + * @{ + */ +#if defined (CRS) +/* Bit position in register */ +#define CRS_CFGR_FELIM_BITNUMBER CRS_CFGR_FELIM_Pos +#define CRS_CR_TRIM_BITNUMBER CRS_CR_TRIM_Pos +#define CRS_ISR_FECAP_BITNUMBER CRS_ISR_FECAP_Pos +#endif /* CRS */ + +#if defined(USB) +extern const uint8_t PLLMulTable[]; +#endif /* USB */ +/** + * @} + */ + +/* Private macro -------------------------------------------------------------*/ +/** @defgroup RCCEx_Private_Macros RCCEx Private Macros + * @{ + */ +/** + * @} + */ + +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +/** @defgroup RCCEx_Exported_Functions RCCEx Exported Functions + * @{ + */ + +/** @defgroup RCCEx_Exported_Functions_Group1 Extended Peripheral Control functions + * @brief Extended Peripheral Control functions + * +@verbatim + =============================================================================== + ##### Extended Peripheral Control functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to control the RCC Clocks + frequencies. + [..] + (@) Important note: Care must be taken when HAL_RCCEx_PeriphCLKConfig() is used to + select the RTC clock source; in this case the Backup domain will be reset in + order to modify the RTC Clock source, as consequence RTC registers (including + the backup registers) are set to their reset values. + +@endverbatim + * @{ + */ + +/** + * @brief Initializes the RCC extended peripherals clocks according to the specified + * parameters in the RCC_PeriphCLKInitTypeDef. + * @param PeriphClkInit pointer to an RCC_PeriphCLKInitTypeDef structure that + * contains the configuration information for the Extended Peripherals clocks(USART1,USART2, LPUART1, + * I2C1, I2C3, RTC, USB/RNG and LPTIM1 clocks). + * @retval HAL status + * @note If HAL_ERROR returned, first switch-OFF HSE clock oscillator with @ref HAL_RCC_OscConfig() + * to possibly update HSE divider. + */ +HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit) +{ + uint32_t tickstart = 0U; + uint32_t temp_reg = 0U; + + /* Check the parameters */ + assert_param(IS_RCC_PERIPHCLOCK(PeriphClkInit->PeriphClockSelection)); + + /*------------------------------- RTC/LCD Configuration ------------------------*/ + if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) +#if defined(LCD) + || (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_LCD) == RCC_PERIPHCLK_LCD) +#endif /* LCD */ + ) + { + /* check for RTC Parameters used to output RTCCLK */ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) + { + assert_param(IS_RCC_RTCCLKSOURCE(PeriphClkInit->RTCClockSelection)); + } + +#if defined(LCD) + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_LCD) == RCC_PERIPHCLK_LCD) + { + assert_param(IS_RCC_RTCCLKSOURCE(PeriphClkInit->LCDClockSelection)); + } +#endif /* LCD */ + + FlagStatus pwrclkchanged = RESET; + + /* 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()) + { + __HAL_RCC_PWR_CLK_ENABLE(); + pwrclkchanged = SET; + } + + if(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) + { + /* Enable write access to Backup domain */ + SET_BIT(PWR->CR, PWR_CR_DBP); + + /* Wait for Backup domain Write protection disable */ + tickstart = HAL_GetTick(); + + while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) + { + if((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + + /* 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)) +#if defined (LCD) + || (temp_reg != (PeriphClkInit->LCDClockSelection & RCC_CR_RTCPRE)) +#endif /* LCD */ + ) + { /* Check HSE State */ + if (((PeriphClkInit->RTCClockSelection & RCC_CSR_RTCSEL) == RCC_CSR_RTCSEL_HSE) && HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSERDY)) + { + /* To update HSE divider, first switch-OFF HSE clock oscillator*/ + return HAL_ERROR; + } + } + + /* Reset the Backup domain only if the RTC Clock source selection is modified from reset value */ + temp_reg = (RCC->CSR & RCC_CSR_RTCSEL); + + if((temp_reg != 0x00000000U) && (((temp_reg != (PeriphClkInit->RTCClockSelection & RCC_CSR_RTCSEL)) \ + && (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC)) +#if defined(LCD) + || ((temp_reg != (PeriphClkInit->LCDClockSelection & RCC_CSR_RTCSEL)) \ + && (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_LCD) == RCC_PERIPHCLK_LCD)) +#endif /* LCD */ + )) + { + /* Store the content of CSR register before the reset of Backup Domain */ + temp_reg = (RCC->CSR & ~(RCC_CSR_RTCSEL)); + + /* RTC Clock selection can be changed only if the Backup Domain is reset */ + __HAL_RCC_BACKUPRESET_FORCE(); + __HAL_RCC_BACKUPRESET_RELEASE(); + + /* Restore the Content of CSR register */ + RCC->CSR = temp_reg; + + /* Wait for LSERDY if LSE was enabled */ + if (HAL_IS_BIT_SET(temp_reg, RCC_CSR_LSEON)) + { + /* Get Start Tick */ + tickstart = HAL_GetTick(); + + /* Wait till LSE is ready */ + while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) + { + if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + } + __HAL_RCC_RTC_CONFIG(PeriphClkInit->RTCClockSelection); + + /* Require to disable power clock if necessary */ + if(pwrclkchanged == SET) + { + __HAL_RCC_PWR_CLK_DISABLE(); + } + } + +#if defined (RCC_CCIPR_USART1SEL) + /*------------------------------- USART1 Configuration ------------------------*/ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) + { + /* Check the parameters */ + assert_param(IS_RCC_USART1CLKSOURCE(PeriphClkInit->Usart1ClockSelection)); + + /* Configure the USART1 clock source */ + __HAL_RCC_USART1_CONFIG(PeriphClkInit->Usart1ClockSelection); + } +#endif /* RCC_CCIPR_USART1SEL */ + + /*----------------------------- USART2 Configuration --------------------------*/ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) + { + /* Check the parameters */ + assert_param(IS_RCC_USART2CLKSOURCE(PeriphClkInit->Usart2ClockSelection)); + + /* Configure the USART2 clock source */ + __HAL_RCC_USART2_CONFIG(PeriphClkInit->Usart2ClockSelection); + } + + /*------------------------------ LPUART1 Configuration ------------------------*/ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) + { + /* Check the parameters */ + assert_param(IS_RCC_LPUART1CLKSOURCE(PeriphClkInit->Lpuart1ClockSelection)); + + /* Configure the LPUAR1 clock source */ + __HAL_RCC_LPUART1_CONFIG(PeriphClkInit->Lpuart1ClockSelection); + } + + /*------------------------------ I2C1 Configuration ------------------------*/ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) + { + /* Check the parameters */ + assert_param(IS_RCC_I2C1CLKSOURCE(PeriphClkInit->I2c1ClockSelection)); + + /* Configure the I2C1 clock source */ + __HAL_RCC_I2C1_CONFIG(PeriphClkInit->I2c1ClockSelection); + } + +#if defined (RCC_CCIPR_I2C3SEL) + /*------------------------------ I2C3 Configuration ------------------------*/ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) + { + /* Check the parameters */ + assert_param(IS_RCC_I2C3CLKSOURCE(PeriphClkInit->I2c3ClockSelection)); + + /* Configure the I2C3 clock source */ + __HAL_RCC_I2C3_CONFIG(PeriphClkInit->I2c3ClockSelection); + } +#endif /* RCC_CCIPR_I2C3SEL */ + +#if defined(USB) + /*---------------------------- USB and RNG configuration --------------------*/ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_USB) == (RCC_PERIPHCLK_USB)) + { + assert_param(IS_RCC_USBCLKSOURCE(PeriphClkInit->UsbClockSelection)); + __HAL_RCC_USB_CONFIG(PeriphClkInit->UsbClockSelection); + } +#endif /* USB */ + + /*---------------------------- LPTIM1 configuration ------------------------*/ + if(((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_LPTIM1) == (RCC_PERIPHCLK_LPTIM1)) + { + assert_param(IS_RCC_LPTIMCLK(PeriphClkInit->LptimClockSelection)); + __HAL_RCC_LPTIM1_CONFIG(PeriphClkInit->LptimClockSelection); + } + + return HAL_OK; +} + +/** + * @brief Get the PeriphClkInit according to the internal RCC configuration registers. + * @param PeriphClkInit pointer to an RCC_PeriphCLKInitTypeDef structure that + * returns the configuration information for the Extended Peripherals clocks(USART1,USART2, LPUART1, + * I2C1, I2C3, RTC, USB/RNG and LPTIM1 clocks). + * @retval None + */ +void HAL_RCCEx_GetPeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit) +{ + uint32_t srcclk = 0; + + /* Set all possible values for the extended clock type parameter -----------*/ + /* Common part first */ + PeriphClkInit->PeriphClockSelection = RCC_PERIPHCLK_USART2 | RCC_PERIPHCLK_LPUART1 | \ + RCC_PERIPHCLK_I2C1 | RCC_PERIPHCLK_RTC | \ + RCC_PERIPHCLK_LPTIM1; +#if defined(RCC_CCIPR_USART1SEL) + PeriphClkInit->PeriphClockSelection |= RCC_PERIPHCLK_USART1; +#endif /* RCC_CCIPR_USART1SEL */ +#if defined(RCC_CCIPR_I2C3SEL) + PeriphClkInit->PeriphClockSelection |= RCC_PERIPHCLK_I2C3; +#endif /* RCC_CCIPR_I2C3SEL */ +#if defined(USB) + PeriphClkInit->PeriphClockSelection |= RCC_PERIPHCLK_USB; +#endif /* USB */ +#if defined(LCD) + PeriphClkInit->PeriphClockSelection |= RCC_PERIPHCLK_LCD; +#endif /* LCD */ + + /* Get the RTC/LCD configuration -----------------------------------------------*/ + srcclk = __HAL_RCC_GET_RTC_SOURCE(); + if (srcclk != RCC_RTCCLKSOURCE_HSE_DIV2) + { + /* Source clock is LSE or LSI*/ + PeriphClkInit->RTCClockSelection = srcclk; + } + else + { + /* Source clock is HSE. Need to get the prescaler value*/ + PeriphClkInit->RTCClockSelection = srcclk | (READ_BIT(RCC->CR, RCC_CR_RTCPRE)); + } +#if defined(LCD) + PeriphClkInit->LCDClockSelection = PeriphClkInit->RTCClockSelection; +#endif /* LCD */ +#if defined(RCC_CCIPR_USART1SEL) + /* Get the USART1 configuration --------------------------------------------*/ + PeriphClkInit->Usart1ClockSelection = __HAL_RCC_GET_USART1_SOURCE(); +#endif /* RCC_CCIPR_USART1SEL */ + /* Get the USART2 clock source ---------------------------------------------*/ + PeriphClkInit->Usart2ClockSelection = __HAL_RCC_GET_USART2_SOURCE(); + /* Get the LPUART1 clock source ---------------------------------------------*/ + PeriphClkInit->Lpuart1ClockSelection = __HAL_RCC_GET_LPUART1_SOURCE(); + /* Get the I2C1 clock source -----------------------------------------------*/ + PeriphClkInit->I2c1ClockSelection = __HAL_RCC_GET_I2C1_SOURCE(); +#if defined(RCC_CCIPR_I2C3SEL) +/* Get the I2C3 clock source -----------------------------------------------*/ + PeriphClkInit->I2c3ClockSelection = __HAL_RCC_GET_I2C3_SOURCE(); +#endif /* RCC_CCIPR_I2C3SEL */ + /* Get the LPTIM1 clock source -----------------------------------------------*/ + PeriphClkInit->LptimClockSelection = __HAL_RCC_GET_LPTIM1_SOURCE(); + /* Get the RTC clock source -----------------------------------------------*/ + PeriphClkInit->RTCClockSelection = __HAL_RCC_GET_RTC_SOURCE(); +#if defined(USB) + /* Get the USB/RNG clock source -----------------------------------------------*/ + PeriphClkInit->UsbClockSelection = __HAL_RCC_GET_USB_SOURCE(); +#endif /* USB */ +} + +/** + * @brief Return the peripheral clock frequency + * @note Return 0 if peripheral clock is unknown + * @param PeriphClk Peripheral clock identifier + * This parameter can be one of the following values: + * @arg @ref RCC_PERIPHCLK_RTC RTC peripheral clock + * @arg @ref RCC_PERIPHCLK_LCD LCD peripheral clock (*) + * @arg @ref RCC_PERIPHCLK_USB USB or RNG peripheral clock (*) + * @arg @ref RCC_PERIPHCLK_USART1 USART1 peripheral clock (*) + * @arg @ref RCC_PERIPHCLK_USART2 USART2 peripheral clock + * @arg @ref RCC_PERIPHCLK_LPUART1 LPUART1 peripheral clock + * @arg @ref RCC_PERIPHCLK_I2C1 I2C1 peripheral clock + * @arg @ref RCC_PERIPHCLK_I2C2 I2C2 peripheral clock (*) + * @arg @ref RCC_PERIPHCLK_I2C3 I2C3 peripheral clock (*) + * @note (*) means that this peripheral is not present on all the devices + * @retval Frequency in Hz (0: means that no available frequency for the peripheral) + */ +uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint32_t PeriphClk) +{ + uint32_t temp_reg = 0U, clkprediv = 0U, frequency = 0U; + uint32_t srcclk = 0U; +#if defined(USB) + uint32_t pllmul = 0U, plldiv = 0U, pllvco = 0U; +#endif /* USB */ + + /* Check the parameters */ + assert_param(IS_RCC_PERIPHCLOCK(PeriphClk)); + + switch (PeriphClk) + { + case RCC_PERIPHCLK_RTC: +#if defined(LCD) + case RCC_PERIPHCLK_LCD: +#endif /* LCD */ + { + /* Get RCC CSR configuration ------------------------------------------------------*/ + temp_reg = RCC->CSR; + + /* Get the current RTC source */ + srcclk = __HAL_RCC_GET_RTC_SOURCE(); + + /* Check if LSE is ready if RTC clock selection is LSE */ + if ((srcclk == RCC_RTCCLKSOURCE_LSE) && (HAL_IS_BIT_SET(temp_reg, RCC_CSR_LSERDY))) + { + frequency = LSE_VALUE; + } + /* Check if LSI is ready if RTC clock selection is LSI */ + else if ((srcclk == RCC_RTCCLKSOURCE_LSI) && (HAL_IS_BIT_SET(temp_reg, RCC_CSR_LSIRDY))) + { + frequency = LSI_VALUE; + } + /* Check if HSE is ready and if RTC clock selection is HSE */ + else if ((srcclk == RCC_RTCCLKSOURCE_HSE_DIVX) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSERDY))) + { + /* Get the current HSE clock divider */ + clkprediv = __HAL_RCC_GET_RTC_HSE_PRESCALER(); + + switch (clkprediv) + { + case RCC_RTC_HSE_DIV_16: /* HSE DIV16 has been selected */ + { + frequency = HSE_VALUE / 16U; + break; + } + case RCC_RTC_HSE_DIV_8: /* HSE DIV8 has been selected */ + { + frequency = HSE_VALUE / 8U; + break; + } + case RCC_RTC_HSE_DIV_4: /* HSE DIV4 has been selected */ + { + frequency = HSE_VALUE / 4U; + break; + } + default: /* HSE DIV2 has been selected */ + { + frequency = HSE_VALUE / 2U; + break; + } + } + } + /* Clock not enabled for RTC */ + else + { + frequency = 0U; + } + break; + } +#if defined(USB) + case RCC_PERIPHCLK_USB: + { + /* Get the current USB source */ + srcclk = __HAL_RCC_GET_USB_SOURCE(); + + if((srcclk == RCC_USBCLKSOURCE_PLL) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLLRDY))) + { + /* Get PLL clock source and multiplication factor ----------------------*/ + pllmul = RCC->CFGR & RCC_CFGR_PLLMUL; + plldiv = RCC->CFGR & RCC_CFGR_PLLDIV; + pllmul = PLLMulTable[(pllmul >> RCC_CFGR_PLLMUL_Pos)]; + plldiv = (plldiv >> RCC_CFGR_PLLDIV_Pos) + 1U; + + /* Compute PLL clock input */ + if(__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSI) + { + if (READ_BIT(RCC->CR, RCC_CR_HSIDIVF) != 0U) + { + pllvco = (HSI_VALUE >> 2U); + } + else + { + pllvco = HSI_VALUE; + } + } + else /* HSE source */ + { + pllvco = HSE_VALUE; + } + /* pllvco * pllmul / plldiv */ + pllvco = (pllvco * pllmul); + frequency = (pllvco/ plldiv); + + } + else if((srcclk == RCC_USBCLKSOURCE_HSI48) && (HAL_IS_BIT_SET(RCC->CRRCR, RCC_CRRCR_HSI48RDY))) + { + frequency = HSI48_VALUE; + } + else /* RCC_USBCLKSOURCE_NONE */ + { + frequency = 0U; + } + break; + } +#endif /* USB */ +#if defined(RCC_CCIPR_USART1SEL) + case RCC_PERIPHCLK_USART1: + { + /* Get the current USART1 source */ + srcclk = __HAL_RCC_GET_USART1_SOURCE(); + + /* Check if USART1 clock selection is PCLK2 */ + if (srcclk == RCC_USART1CLKSOURCE_PCLK2) + { + frequency = HAL_RCC_GetPCLK2Freq(); + } + /* Check if HSI is ready and if USART1 clock selection is HSI */ + else if ((srcclk == RCC_USART1CLKSOURCE_HSI) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSIRDY))) + { + frequency = HSI_VALUE; + } + /* Check if USART1 clock selection is SYSCLK */ + else if (srcclk == RCC_USART1CLKSOURCE_SYSCLK) + { + frequency = HAL_RCC_GetSysClockFreq(); + } + /* Check if LSE is ready and if USART1 clock selection is LSE */ + else if ((srcclk == RCC_USART1CLKSOURCE_LSE) && (HAL_IS_BIT_SET(RCC->CSR, RCC_CSR_LSERDY))) + { + frequency = LSE_VALUE; + } + /* Clock not enabled for USART1*/ + else + { + frequency = 0U; + } + break; + } +#endif /* RCC_CCIPR_USART1SEL */ + case RCC_PERIPHCLK_USART2: + { + /* Get the current USART2 source */ + srcclk = __HAL_RCC_GET_USART2_SOURCE(); + + /* Check if USART2 clock selection is PCLK1 */ + if (srcclk == RCC_USART2CLKSOURCE_PCLK1) + { + frequency = HAL_RCC_GetPCLK1Freq(); + } + /* Check if HSI is ready and if USART2 clock selection is HSI */ + else if ((srcclk == RCC_USART2CLKSOURCE_HSI) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSIRDY))) + { + frequency = HSI_VALUE; + } + /* Check if USART2 clock selection is SYSCLK */ + else if (srcclk == RCC_USART2CLKSOURCE_SYSCLK) + { + frequency = HAL_RCC_GetSysClockFreq(); + } + /* Check if LSE is ready and if USART2 clock selection is LSE */ + else if ((srcclk == RCC_USART2CLKSOURCE_LSE) && (HAL_IS_BIT_SET(RCC->CSR, RCC_CSR_LSERDY))) + { + frequency = LSE_VALUE; + } + /* Clock not enabled for USART2*/ + else + { + frequency = 0U; + } + break; + } + case RCC_PERIPHCLK_LPUART1: + { + /* Get the current LPUART1 source */ + srcclk = __HAL_RCC_GET_LPUART1_SOURCE(); + + /* Check if LPUART1 clock selection is PCLK1 */ + if (srcclk == RCC_LPUART1CLKSOURCE_PCLK1) + { + frequency = HAL_RCC_GetPCLK1Freq(); + } + /* Check if HSI is ready and if LPUART1 clock selection is HSI */ + else if ((srcclk == RCC_LPUART1CLKSOURCE_HSI) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSIRDY))) + { + frequency = HSI_VALUE; + } + /* Check if LPUART1 clock selection is SYSCLK */ + else if (srcclk == RCC_LPUART1CLKSOURCE_SYSCLK) + { + frequency = HAL_RCC_GetSysClockFreq(); + } + /* Check if LSE is ready and if LPUART1 clock selection is LSE */ + else if ((srcclk == RCC_LPUART1CLKSOURCE_LSE) && (HAL_IS_BIT_SET(RCC->CSR, RCC_CSR_LSERDY))) + { + frequency = LSE_VALUE; + } + /* Clock not enabled for LPUART1*/ + else + { + frequency = 0U; + } + break; + } + case RCC_PERIPHCLK_I2C1: + { + /* Get the current I2C1 source */ + srcclk = __HAL_RCC_GET_I2C1_SOURCE(); + + /* Check if I2C1 clock selection is PCLK1 */ + if (srcclk == RCC_I2C1CLKSOURCE_PCLK1) + { + frequency = HAL_RCC_GetPCLK1Freq(); + } + /* Check if HSI is ready and if I2C1 clock selection is HSI */ + else if ((srcclk == RCC_I2C1CLKSOURCE_HSI) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSIRDY))) + { + frequency = HSI_VALUE; + } + /* Check if I2C1 clock selection is SYSCLK */ + else if (srcclk == RCC_I2C1CLKSOURCE_SYSCLK) + { + frequency = HAL_RCC_GetSysClockFreq(); + } + /* Clock not enabled for I2C1*/ + else + { + frequency = 0U; + } + break; + } +#if defined(I2C2) + case RCC_PERIPHCLK_I2C2: + { + + /* Check if I2C2 on APB1 clock enabled*/ + if (READ_BIT(RCC->APB1ENR, (RCC_APB1ENR_I2C2EN))==RCC_APB1ENR_I2C2EN) + { + frequency = HAL_RCC_GetPCLK1Freq(); + } + else + { + frequency = 0U; + } + break; + } +#endif /* I2C2 */ + +#if defined(RCC_CCIPR_I2C3SEL) + case RCC_PERIPHCLK_I2C3: + { + /* Get the current I2C1 source */ + srcclk = __HAL_RCC_GET_I2C3_SOURCE(); + + /* Check if I2C3 clock selection is PCLK1 */ + if (srcclk == RCC_I2C3CLKSOURCE_PCLK1) + { + frequency = HAL_RCC_GetPCLK1Freq(); + } + /* Check if HSI is ready and if I2C3 clock selection is HSI */ + else if ((srcclk == RCC_I2C3CLKSOURCE_HSI) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSIRDY))) + { + frequency = HSI_VALUE; + } + /* Check if I2C3 clock selection is SYSCLK */ + else if (srcclk == RCC_I2C3CLKSOURCE_SYSCLK) + { + frequency = HAL_RCC_GetSysClockFreq(); + } + /* Clock not enabled for I2C3*/ + else + { + frequency = 0U; + } + break; + } +#endif /* RCC_CCIPR_I2C3SEL */ + default: + { + break; + } + } + return(frequency); +} + +/** + * @brief Enables the LSE Clock Security System. + * @retval None + */ +void HAL_RCCEx_EnableLSECSS(void) +{ + SET_BIT(RCC->CSR, RCC_CSR_LSECSSON) ; +} + +/** + * @brief Disables the LSE Clock Security System. + * @note Once enabled this bit cannot be disabled, except after an LSE failure detection + * (LSECSSD=1). In that case the software MUST disable the LSECSSON bit. + * Reset by power on reset and RTC software reset (RTCRST bit). + * @retval None + */ +void HAL_RCCEx_DisableLSECSS(void) +{ + /* Disable LSE CSS */ + CLEAR_BIT(RCC->CSR, RCC_CSR_LSECSSON) ; + + /* Disable LSE CSS IT */ + __HAL_RCC_DISABLE_IT(RCC_IT_LSECSS); +} + +/** + * @brief Enable the LSE Clock Security System IT & corresponding EXTI line. + * @note LSE Clock Security System IT is mapped on RTC EXTI line 19 + * @retval None + */ +void HAL_RCCEx_EnableLSECSS_IT(void) +{ + /* Enable LSE CSS */ + SET_BIT(RCC->CSR, RCC_CSR_LSECSSON) ; + + /* Enable LSE CSS IT */ + __HAL_RCC_ENABLE_IT(RCC_IT_LSECSS); + + /* Enable IT on EXTI Line 19 */ + __HAL_RCC_LSECSS_EXTI_ENABLE_IT(); + __HAL_RCC_LSECSS_EXTI_ENABLE_RISING_EDGE(); +} + +/** + * @brief Handle the RCC LSE Clock Security System interrupt request. + * @retval None + */ +void HAL_RCCEx_LSECSS_IRQHandler(void) +{ + /* Check RCC LSE CSSF flag */ + if(__HAL_RCC_GET_IT(RCC_IT_LSECSS)) + { + /* RCC LSE Clock Security System interrupt user callback */ + HAL_RCCEx_LSECSS_Callback(); + + /* Clear RCC LSE CSS pending bit */ + __HAL_RCC_CLEAR_IT(RCC_IT_LSECSS); + } +} + +/** + * @brief RCCEx LSE Clock Security System interrupt callback. + * @retval none + */ +__weak void HAL_RCCEx_LSECSS_Callback(void) +{ + /* NOTE : This function should not be modified, when the callback is needed, + the @ref HAL_RCCEx_LSECSS_Callback should be implemented in the user file + */ +} + +#if defined(SYSCFG_CFGR3_ENREF_HSI48) +/** + * @brief Enables Vrefint for the HSI48. + * @note This is functional only if the LOCK is not set + * @retval None + */ +void HAL_RCCEx_EnableHSI48_VREFINT(void) +{ + /* Enable the Buffer for the ADC by setting SYSCFG_CFGR3_ENREF_HSI48 bit in SYSCFG_CFGR3 register */ + SET_BIT (SYSCFG->CFGR3, SYSCFG_CFGR3_ENREF_HSI48); +} + +/** + * @brief Disables the Vrefint for the HSI48. + * @note This is functional only if the LOCK is not set + * @retval None + */ +void HAL_RCCEx_DisableHSI48_VREFINT(void) +{ + /* Disable the Vrefint by resetting SYSCFG_CFGR3_ENREF_HSI48 bit in SYSCFG_CFGR3 register */ + CLEAR_BIT(SYSCFG->CFGR3, SYSCFG_CFGR3_ENREF_HSI48); +} + +#endif /* SYSCFG_CFGR3_ENREF_HSI48 */ + +/** + * @} + */ + +#if defined (CRS) + +/** @defgroup RCCEx_Exported_Functions_Group3 Extended Clock Recovery System Control functions + * @brief Extended Clock Recovery System Control functions + * +@verbatim + =============================================================================== + ##### Extended Clock Recovery System Control functions ##### + =============================================================================== + [..] + For devices with Clock Recovery System feature (CRS), RCC Extention HAL driver can be used as follows: + + (#) In System clock config, HSI48 needs to be enabled + + (#) Enable CRS clock in IP MSP init which will use CRS functions + + (#) Call CRS functions as follows: + (##) Prepare synchronization configuration necessary for HSI48 calibration + (+++) Default values can be set for frequency Error Measurement (reload and error limit) + and also HSI48 oscillator smooth trimming. + (+++) Macro @ref __HAL_RCC_CRS_RELOADVALUE_CALCULATE can be also used to calculate + directly reload value with target and synchronization frequencies values + (##) Call function @ref HAL_RCCEx_CRSConfig which + (+++) Reset CRS registers to their default values. + (+++) Configure CRS registers with synchronization configuration + (+++) Enable automatic calibration and frequency error counter feature + Note: When using USB LPM (Link Power Management) and the device is in Sleep mode, the + periodic USB SOF will not be generated by the host. No SYNC signal will therefore be + provided to the CRS to calibrate the HSI48 on the run. To guarantee the required clock + precision after waking up from Sleep mode, the LSE or reference clock on the GPIOs + should be used as SYNC signal. + + (##) A polling function is provided to wait for complete synchronization + (+++) Call function @ref HAL_RCCEx_CRSWaitSynchronization() + (+++) According to CRS status, user can decide to adjust again the calibration or continue + application if synchronization is OK + + (#) User can retrieve information related to synchronization in calling function + @ref HAL_RCCEx_CRSGetSynchronizationInfo() + + (#) Regarding synchronization status and synchronization information, user can try a new calibration + in changing synchronization configuration and call again HAL_RCCEx_CRSConfig. + Note: When the SYNC event is detected during the downcounting phase (before reaching the zero value), + it means that the actual frequency is lower than the target (and so, that the TRIM value should be + incremented), while when it is detected during the upcounting phase it means that the actual frequency + is higher (and that the TRIM value should be decremented). + + (#) In interrupt mode, user can resort to the available macros (__HAL_RCC_CRS_XXX_IT). Interrupts will go + through CRS Handler (RCC_IRQn/RCC_IRQHandler) + (++) Call function @ref HAL_RCCEx_CRSConfig() + (++) Enable RCC_IRQn (thanks to NVIC functions) + (++) Enable CRS interrupt (@ref __HAL_RCC_CRS_ENABLE_IT) + (++) Implement CRS status management in the following user callbacks called from + HAL_RCCEx_CRS_IRQHandler(): + (+++) @ref HAL_RCCEx_CRS_SyncOkCallback() + (+++) @ref HAL_RCCEx_CRS_SyncWarnCallback() + (+++) @ref HAL_RCCEx_CRS_ExpectedSyncCallback() + (+++) @ref HAL_RCCEx_CRS_ErrorCallback() + + (#) To force a SYNC EVENT, user can use the function @ref HAL_RCCEx_CRSSoftwareSynchronizationGenerate(). + This function can be called before calling @ref HAL_RCCEx_CRSConfig (for instance in Systick handler) + +@endverbatim + * @{ + */ + +/** + * @brief Start automatic synchronization for polling mode + * @param pInit Pointer on RCC_CRSInitTypeDef structure + * @retval None + */ +void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) +{ + uint32_t value = 0; + + /* Check the parameters */ + assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); + assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); + assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); + assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); + assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); + assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); + + /* CONFIGURATION */ + + /* Before configuration, reset CRS registers to their default values*/ + __HAL_RCC_CRS_FORCE_RESET(); + __HAL_RCC_CRS_RELEASE_RESET(); + + /* Set the SYNCDIV[2:0] bits according to Prescaler value */ + /* Set the SYNCSRC[1:0] bits according to Source value */ + /* Set the SYNCSPOL bit according to Polarity value */ + value = (pInit->Prescaler | pInit->Source | pInit->Polarity); + /* Set the RELOAD[15:0] bits according to ReloadValue value */ + value |= pInit->ReloadValue; + /* Set the FELIM[7:0] bits according to ErrorLimitValue value */ + value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_BITNUMBER); + WRITE_REG(CRS->CFGR, value); + + /* Adjust HSI48 oscillator smooth trimming */ + /* Set the TRIM[5:0] bits according to RCC_CRS_HSI48CalibrationValue value */ + MODIFY_REG(CRS->CR, CRS_CR_TRIM, (pInit->HSI48CalibrationValue << CRS_CR_TRIM_BITNUMBER)); + + /* START AUTOMATIC SYNCHRONIZATION*/ + + /* Enable Automatic trimming & Frequency error counter */ + SET_BIT(CRS->CR, CRS_CR_AUTOTRIMEN | CRS_CR_CEN); +} + +/** + * @brief Generate the software synchronization event + * @retval None + */ +void HAL_RCCEx_CRSSoftwareSynchronizationGenerate(void) +{ + SET_BIT(CRS->CR, CRS_CR_SWSYNC); +} + +/** + * @brief Return synchronization info + * @param pSynchroInfo Pointer on RCC_CRSSynchroInfoTypeDef structure + * @retval None + */ +void HAL_RCCEx_CRSGetSynchronizationInfo(RCC_CRSSynchroInfoTypeDef *pSynchroInfo) +{ + /* Check the parameter */ + assert_param(pSynchroInfo != NULL); + + /* Get the reload value */ + pSynchroInfo->ReloadValue = (uint32_t)(READ_BIT(CRS->CFGR, CRS_CFGR_RELOAD)); + + /* Get HSI48 oscillator smooth trimming */ + pSynchroInfo->HSI48CalibrationValue = (uint32_t)(READ_BIT(CRS->CR, CRS_CR_TRIM) >> CRS_CR_TRIM_BITNUMBER); + + /* Get Frequency error capture */ + pSynchroInfo->FreqErrorCapture = (uint32_t)(READ_BIT(CRS->ISR, CRS_ISR_FECAP) >> CRS_ISR_FECAP_BITNUMBER); + + /* Get Frequency error direction */ + pSynchroInfo->FreqErrorDirection = (uint32_t)(READ_BIT(CRS->ISR, CRS_ISR_FEDIR)); +} + +/** +* @brief Wait for CRS Synchronization status. +* @param Timeout Duration of the timeout +* @note Timeout is based on the maximum time to receive a SYNC event based on synchronization +* frequency. +* @note If Timeout set to HAL_MAX_DELAY, HAL_TIMEOUT will be never returned. +* @retval Combination of Synchronization status +* This parameter can be a combination of the following values: +* @arg @ref RCC_CRS_TIMEOUT +* @arg @ref RCC_CRS_SYNCOK +* @arg @ref RCC_CRS_SYNCWARN +* @arg @ref RCC_CRS_SYNCERR +* @arg @ref RCC_CRS_SYNCMISS +* @arg @ref RCC_CRS_TRIMOVF +*/ +uint32_t HAL_RCCEx_CRSWaitSynchronization(uint32_t Timeout) +{ + uint32_t crsstatus = RCC_CRS_NONE; + uint32_t tickstart = 0U; + + /* Get timeout */ + tickstart = HAL_GetTick(); + + /* Wait for CRS flag or timeout detection */ + do + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U) || ((HAL_GetTick() - tickstart) > Timeout)) + { + crsstatus = RCC_CRS_TIMEOUT; + } + } + /* Check CRS SYNCOK flag */ + if(__HAL_RCC_CRS_GET_FLAG(RCC_CRS_FLAG_SYNCOK)) + { + /* CRS SYNC event OK */ + crsstatus |= RCC_CRS_SYNCOK; + + /* Clear CRS SYNC event OK bit */ + __HAL_RCC_CRS_CLEAR_FLAG(RCC_CRS_FLAG_SYNCOK); + } + + /* Check CRS SYNCWARN flag */ + if(__HAL_RCC_CRS_GET_FLAG(RCC_CRS_FLAG_SYNCWARN)) + { + /* CRS SYNC warning */ + crsstatus |= RCC_CRS_SYNCWARN; + + /* Clear CRS SYNCWARN bit */ + __HAL_RCC_CRS_CLEAR_FLAG(RCC_CRS_FLAG_SYNCWARN); + } + + /* Check CRS TRIM overflow flag */ + if(__HAL_RCC_CRS_GET_FLAG(RCC_CRS_FLAG_TRIMOVF)) + { + /* CRS SYNC Error */ + crsstatus |= RCC_CRS_TRIMOVF; + + /* Clear CRS Error bit */ + __HAL_RCC_CRS_CLEAR_FLAG(RCC_CRS_FLAG_TRIMOVF); + } + + /* Check CRS Error flag */ + if(__HAL_RCC_CRS_GET_FLAG(RCC_CRS_FLAG_SYNCERR)) + { + /* CRS SYNC Error */ + crsstatus |= RCC_CRS_SYNCERR; + + /* Clear CRS Error bit */ + __HAL_RCC_CRS_CLEAR_FLAG(RCC_CRS_FLAG_SYNCERR); + } + + /* Check CRS SYNC Missed flag */ + if(__HAL_RCC_CRS_GET_FLAG(RCC_CRS_FLAG_SYNCMISS)) + { + /* CRS SYNC Missed */ + crsstatus |= RCC_CRS_SYNCMISS; + + /* Clear CRS SYNC Missed bit */ + __HAL_RCC_CRS_CLEAR_FLAG(RCC_CRS_FLAG_SYNCMISS); + } + + /* Check CRS Expected SYNC flag */ + if(__HAL_RCC_CRS_GET_FLAG(RCC_CRS_FLAG_ESYNC)) + { + /* frequency error counter reached a zero value */ + __HAL_RCC_CRS_CLEAR_FLAG(RCC_CRS_FLAG_ESYNC); + } + } while(RCC_CRS_NONE == crsstatus); + + return crsstatus; +} + +/** + * @brief Handle the Clock Recovery System interrupt request. + * @retval None + */ +void HAL_RCCEx_CRS_IRQHandler(void) +{ + uint32_t crserror = RCC_CRS_NONE; + /* Get current IT flags and IT sources values */ + uint32_t itflags = READ_REG(CRS->ISR); + uint32_t itsources = READ_REG(CRS->CR); + + /* Check CRS SYNCOK flag */ + if(((itflags & RCC_CRS_FLAG_SYNCOK) != RESET) && ((itsources & RCC_CRS_IT_SYNCOK) != RESET)) + { + /* Clear CRS SYNC event OK flag */ + WRITE_REG(CRS->ICR, CRS_ICR_SYNCOKC); + + /* user callback */ + HAL_RCCEx_CRS_SyncOkCallback(); + } + /* Check CRS SYNCWARN flag */ + else if(((itflags & RCC_CRS_FLAG_SYNCWARN) != RESET) && ((itsources & RCC_CRS_IT_SYNCWARN) != RESET)) + { + /* Clear CRS SYNCWARN flag */ + WRITE_REG(CRS->ICR, CRS_ICR_SYNCWARNC); + + /* user callback */ + HAL_RCCEx_CRS_SyncWarnCallback(); + } + /* Check CRS Expected SYNC flag */ + else if(((itflags & RCC_CRS_FLAG_ESYNC) != RESET) && ((itsources & RCC_CRS_IT_ESYNC) != RESET)) + { + /* frequency error counter reached a zero value */ + WRITE_REG(CRS->ICR, CRS_ICR_ESYNCC); + + /* user callback */ + HAL_RCCEx_CRS_ExpectedSyncCallback(); + } + /* Check CRS Error flags */ + else + { + if(((itflags & RCC_CRS_FLAG_ERR) != RESET) && ((itsources & RCC_CRS_IT_ERR) != RESET)) + { + if((itflags & RCC_CRS_FLAG_SYNCERR) != RESET) + { + crserror |= RCC_CRS_SYNCERR; + } + if((itflags & RCC_CRS_FLAG_SYNCMISS) != RESET) + { + crserror |= RCC_CRS_SYNCMISS; + } + if((itflags & RCC_CRS_FLAG_TRIMOVF) != RESET) + { + crserror |= RCC_CRS_TRIMOVF; + } + + /* Clear CRS Error flags */ + WRITE_REG(CRS->ICR, CRS_ICR_ERRC); + + /* user error callback */ + HAL_RCCEx_CRS_ErrorCallback(crserror); + } + } +} + +/** + * @brief RCCEx Clock Recovery System SYNCOK interrupt callback. + * @retval none + */ +__weak void HAL_RCCEx_CRS_SyncOkCallback(void) +{ + /* NOTE : This function should not be modified, when the callback is needed, + the @ref HAL_RCCEx_CRS_SyncOkCallback should be implemented in the user file + */ +} + +/** + * @brief RCCEx Clock Recovery System SYNCWARN interrupt callback. + * @retval none + */ +__weak void HAL_RCCEx_CRS_SyncWarnCallback(void) +{ + /* NOTE : This function should not be modified, when the callback is needed, + the @ref HAL_RCCEx_CRS_SyncWarnCallback should be implemented in the user file + */ +} + +/** + * @brief RCCEx Clock Recovery System Expected SYNC interrupt callback. + * @retval none + */ +__weak void HAL_RCCEx_CRS_ExpectedSyncCallback(void) +{ + /* NOTE : This function should not be modified, when the callback is needed, + the @ref HAL_RCCEx_CRS_ExpectedSyncCallback should be implemented in the user file + */ +} + +/** + * @brief RCCEx Clock Recovery System Error interrupt callback. + * @param Error Combination of Error status. + * This parameter can be a combination of the following values: + * @arg @ref RCC_CRS_SYNCERR + * @arg @ref RCC_CRS_SYNCMISS + * @arg @ref RCC_CRS_TRIMOVF + * @retval none + */ +__weak void HAL_RCCEx_CRS_ErrorCallback(uint32_t Error) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(Error); + + /* NOTE : This function should not be modified, when the callback is needed, + the @ref HAL_RCCEx_CRS_ErrorCallback should be implemented in the user file + */ +} + +/** + * @} + */ + +#endif /* CRS */ +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_RCC_MODULE_ENABLED */ +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c new file mode 100644 index 0000000..331cf4e --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c @@ -0,0 +1,1531 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rtc.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief RTC HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the Real Time Clock (RTC) peripheral: + * + Initialization/de-initialization functions + * + I/O operation functions + * + Peripheral Control functions + * + Peripheral State functions + * + @verbatim + ============================================================================== + ##### Backup Domain Operating Condition ##### + ============================================================================== + [..] As long as the supply voltage remains in the operating range, + the RTC never stops, regardless of the device status (Run mode, + low power modes or under reset). + + ##### Backup Domain Reset ##### + ================================================================== + [..] The backup domain reset sets all RTC registers and the RCC_CSR register + to their reset values. + [..] A backup domain reset is generated when one of the following events occurs: + (+) Software reset, triggered by setting the RTCRST bit in the + RCC Control Status register (RCC_CSR). + (+) Power reset (BOR/POR/PDR). + + ##### Backup Domain Access ##### + ================================================================== + [..] After reset, the backup domain (RTC registers and RTC backup data registers) + is protected against possible unwanted write accesses. + [..] To enable access to the RTC Domain and RTC registers, proceed as follows: + (+) Enable the Power Controller (PWR) APB1 interface clock using the + __HAL_RCC_PWR_CLK_ENABLE() function. + (+) Enable access to RTC domain using the HAL_PWR_EnableBkUpAccess() function. + (+) Select the RTC clock source using the __HAL_RCC_RTC_CONFIG() function. + (+) Enable RTC Clock using the __HAL_RCC_RTC_ENABLE() function. + + + ##### How to use RTC Driver ##### + =================================================================== + [..] + (+) Enable the RTC domain access (see description in the section above). + (+) Configure the RTC Prescaler (Asynchronous and Synchronous) and RTC hour + format using the HAL_RTC_Init() function. + + *** Time and Date configuration *** + =================================== + [..] + (+) To configure the RTC Calendar (Time and Date) use the HAL_RTC_SetTime() + and HAL_RTC_SetDate() functions. + (+) To read the RTC Calendar, use the HAL_RTC_GetTime() and HAL_RTC_GetDate() functions. + + *** Alarm configuration *** + =========================== + [..] + (+) To configure the RTC Alarm use the HAL_RTC_SetAlarm() function. + You can also configure the RTC Alarm with interrupt mode using the + HAL_RTC_SetAlarm_IT() function. + (+) To read the RTC Alarm, use the HAL_RTC_GetAlarm() function. + + ##### RTC and low power modes ##### + ================================================================== + [..] The MCU can be woken up from a low power mode by an RTC alternate + function. + [..] The RTC alternate functions are the RTC alarms (Alarm A and Alarm B), + RTC wakeup, RTC tamper event detection and RTC time stamp event detection. + These RTC alternate functions can wake up the system from the Stop and + Standby low power modes. + [..] The system can also wake up from low power modes without depending + on an external interrupt (Auto-wakeup mode), by using the RTC alarm + or the RTC wakeup events. + [..] The RTC provides a programmable time base for waking up from the + Stop or Standby mode at regular intervals. + Wakeup from STOP and STANDBY modes is possible only when the RTC clock source + is LSE or LSI. + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + + +/** @addtogroup RTC + * @brief RTC HAL module driver + * @{ + */ + +#ifdef HAL_RTC_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ + +/** @addtogroup RTC_Exported_Functions + * @{ + */ + +/** @addtogroup RTC_Exported_Functions_Group1 + * @brief Initialization and Configuration functions + * +@verbatim + =============================================================================== + ##### Initialization and de-initialization functions ##### + =============================================================================== + [..] This section provides functions allowing to initialize and configure the + RTC Prescaler (Synchronous and Asynchronous), RTC Hour format, disable + RTC registers Write protection, enter and exit the RTC initialization mode, + RTC registers synchronization check and reference clock detection enable. + (#) The RTC Prescaler is programmed to generate the RTC 1Hz time base. + It is split into 2 programmable prescalers to minimize power consumption. + (++) A 7-bit asynchronous prescaler and a 15-bit synchronous prescaler. + (++) When both prescalers are used, it is recommended to configure the + asynchronous prescaler to a high value to minimize power consumption. + (#) All RTC registers are Write protected. Writing to the RTC registers + is enabled by writing a key into the Write Protection register, RTC_WPR. + (#) To configure the RTC Calendar, user application should enter + initialization mode. In this mode, the calendar counter is stopped + and its value can be updated. When the initialization sequence is + complete, the calendar restarts counting after 4 RTCCLK cycles. + (#) To read the calendar through the shadow registers after Calendar + initialization, calendar update or after wakeup from low power modes + the software must first clear the RSF flag. The software must then + wait until it is set again before reading the calendar, which means + that the calendar registers have been correctly copied into the + RTC_TR and RTC_DR shadow registers.The HAL_RTC_WaitForSynchro() function + implements the above software sequence (RSF clear and RSF check). + +@endverbatim + * @{ + */ + +/** + * @brief Initialize the RTC peripheral + * @param hrtc: RTC handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_Init(RTC_HandleTypeDef *hrtc) +{ + /* Check the RTC peripheral state */ + if(hrtc == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_RTC_ALL_INSTANCE(hrtc->Instance)); + assert_param(IS_RTC_HOUR_FORMAT(hrtc->Init.HourFormat)); + assert_param(IS_RTC_ASYNCH_PREDIV(hrtc->Init.AsynchPrediv)); + assert_param(IS_RTC_SYNCH_PREDIV(hrtc->Init.SynchPrediv)); + assert_param(IS_RTC_OUTPUT(hrtc->Init.OutPut)); + assert_param(IS_RTC_OUTPUT_REMAP(hrtc->Init.OutPutRemap)); + assert_param(IS_RTC_OUTPUT_POL(hrtc->Init.OutPutPolarity)); + assert_param(IS_RTC_OUTPUT_TYPE(hrtc->Init.OutPutType)); + + if(hrtc->State == HAL_RTC_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + hrtc->Lock = HAL_UNLOCKED; + + /* Initialize RTC MSP */ + HAL_RTC_MspInit(hrtc); + } + + /* Set RTC state */ + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Set Initialization mode */ + if(RTC_EnterInitMode(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state */ + hrtc->State = HAL_RTC_STATE_ERROR; + + return HAL_ERROR; + } + else + { + /* Clear RTC_CR FMT, OSEL and POL Bits */ + hrtc->Instance->CR &= ((uint32_t)~(RTC_CR_FMT | RTC_CR_OSEL | RTC_CR_POL)); + /* Set RTC_CR register */ + hrtc->Instance->CR |= (uint32_t)(hrtc->Init.HourFormat | hrtc->Init.OutPut | hrtc->Init.OutPutPolarity); + + /* Configure the RTC PRER */ + hrtc->Instance->PRER = (uint32_t)(hrtc->Init.SynchPrediv); + hrtc->Instance->PRER |= (uint32_t)(hrtc->Init.AsynchPrediv << 16U); + + /* Exit Initialization mode */ + hrtc->Instance->ISR &= ((uint32_t)~RTC_ISR_INIT); + + hrtc->Instance->OR &= (uint32_t)~(RTC_OR_ALARMOUTTYPE | RTC_OR_OUT_RMP); + hrtc->Instance->OR |= (uint32_t)(hrtc->Init.OutPutType | hrtc->Init.OutPutRemap); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; + } +} + +/** + * @brief DeInitialize the RTC peripheral. + * @param hrtc: RTC handle + * @note This function doesn't reset the RTC Backup Data registers. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_DeInit(RTC_HandleTypeDef *hrtc) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_ALL_INSTANCE(hrtc->Instance)); + + /* Set RTC state */ + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Set Initialization mode */ + if(RTC_EnterInitMode(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state */ + hrtc->State = HAL_RTC_STATE_ERROR; + + return HAL_ERROR; + } + else + { + /* Reset TR, DR and CR registers */ + hrtc->Instance->TR = (uint32_t)0x00000000U; + hrtc->Instance->DR = ((uint32_t)(RTC_DR_WDU_0 | RTC_DR_MU_0 | RTC_DR_DU_0)); + /* Reset All CR bits except CR[2:0] */ + hrtc->Instance->CR &= RTC_CR_WUCKSEL; + + tickstart = HAL_GetTick(); + + /* Wait till WUTWF flag is set and if Time out is reached exit */ + while(((hrtc->Instance->ISR) & RTC_ISR_WUTWF) == (uint32_t)RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state */ + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + return HAL_TIMEOUT; + } + } + + /* Reset all RTC CR register bits */ + hrtc->Instance->CR &= (uint32_t)0x00000000U; + hrtc->Instance->WUTR = RTC_WUTR_WUT; + hrtc->Instance->PRER = ((uint32_t)(RTC_PRER_PREDIV_A | 0x000000FFU)); + hrtc->Instance->ALRMAR = (uint32_t)0x00000000U; + hrtc->Instance->ALRMBR = (uint32_t)0x00000000U; + hrtc->Instance->SHIFTR = (uint32_t)0x00000000U; + hrtc->Instance->CALR = (uint32_t)0x00000000U; + hrtc->Instance->ALRMASSR = (uint32_t)0x00000000U; + hrtc->Instance->ALRMBSSR = (uint32_t)0x00000000U; + + /* Reset ISR register and exit initialization mode */ + hrtc->Instance->ISR = (uint32_t)0x00000000U; + + /* Reset Tamper configuration register */ + hrtc->Instance->TAMPCR = 0x00000000U; + + /* Reset Option register */ + hrtc->Instance->OR = 0x00000000U; + + /* If RTC_CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ + if((hrtc->Instance->CR & RTC_CR_BYPSHAD) == RESET) + { + if(HAL_RTC_WaitForSynchro(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_ERROR; + + return HAL_ERROR; + } + } + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* De-Initialize RTC MSP */ + HAL_RTC_MspDeInit(hrtc); + + hrtc->State = HAL_RTC_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Initialize the RTC MSP. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTC_MspInit(RTC_HandleTypeDef* hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTC_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitialize the RTC MSP. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTC_MspDeInit(RTC_HandleTypeDef* hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTC_MspDeInit could be implemented in the user file + */ +} + +/** + * @} + */ + +/** @addtogroup RTC_Exported_Functions_Group2 + * @brief RTC Time and Date functions + * +@verbatim + =============================================================================== + ##### RTC Time and Date functions ##### + =============================================================================== + + [..] This section provides functions allowing to configure Time and Date features + +@endverbatim + * @{ + */ + +/** + * @brief Set RTC current time. + * @param hrtc: RTC handle + * @param sTime: Pointer to Time structure + * @param Format: Specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_SetTime(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTime, uint32_t Format) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + assert_param(IS_RTC_DAYLIGHT_SAVING(sTime->DayLightSaving)); + assert_param(IS_RTC_STORE_OPERATION(sTime->StoreOperation)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + if(Format == RTC_FORMAT_BIN) + { + if((hrtc->Instance->CR & RTC_CR_FMT) != (uint32_t)RESET) + { + assert_param(IS_RTC_HOUR12(sTime->Hours)); + assert_param(IS_RTC_HOURFORMAT12(sTime->TimeFormat)); + } + else + { + sTime->TimeFormat = 0x00U; + assert_param(IS_RTC_HOUR24(sTime->Hours)); + } + assert_param(IS_RTC_MINUTES(sTime->Minutes)); + assert_param(IS_RTC_SECONDS(sTime->Seconds)); + + tmpreg = (uint32_t)(((uint32_t)RTC_ByteToBcd2(sTime->Hours) << 16U) | \ + ((uint32_t)RTC_ByteToBcd2(sTime->Minutes) << 8U) | \ + ((uint32_t)RTC_ByteToBcd2(sTime->Seconds)) | \ + (((uint32_t)sTime->TimeFormat) << 16U)); + } + else + { + if((hrtc->Instance->CR & RTC_CR_FMT) != (uint32_t)RESET) + { + tmpreg = RTC_Bcd2ToByte(sTime->Hours); + assert_param(IS_RTC_HOUR12(tmpreg)); + assert_param(IS_RTC_HOURFORMAT12(sTime->TimeFormat)); + } + else + { + sTime->TimeFormat = 0x00U; + assert_param(IS_RTC_HOUR24(RTC_Bcd2ToByte(sTime->Hours))); + } + assert_param(IS_RTC_MINUTES(RTC_Bcd2ToByte(sTime->Minutes))); + assert_param(IS_RTC_SECONDS(RTC_Bcd2ToByte(sTime->Seconds))); + tmpreg = (((uint32_t)(sTime->Hours) << 16U) | \ + ((uint32_t)(sTime->Minutes) << 8U) | \ + ((uint32_t)sTime->Seconds) | \ + ((uint32_t)(sTime->TimeFormat) << 16U)); + } + UNUSED(tmpreg); + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Set Initialization mode */ + if(RTC_EnterInitMode(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state */ + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + else + { + /* Set the RTC_TR register */ + hrtc->Instance->TR = (uint32_t)(tmpreg & RTC_TR_RESERVED_MASK); + + /* Clear the bits to be configured */ + hrtc->Instance->CR &= ((uint32_t)~RTC_CR_BCK); + + /* Configure the RTC_CR register */ + hrtc->Instance->CR |= (uint32_t)(sTime->DayLightSaving | sTime->StoreOperation); + + /* Exit Initialization mode */ + hrtc->Instance->ISR &= ((uint32_t)~RTC_ISR_INIT); + + /* If CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ + if((hrtc->Instance->CR & RTC_CR_BYPSHAD) == RESET) + { + if(HAL_RTC_WaitForSynchro(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + __HAL_UNLOCK(hrtc); + + return HAL_OK; + } +} + +/** + * @brief Get RTC current time. + * @param hrtc: RTC handle + * @param sTime: Pointer to Time structure with Hours, Minutes and Seconds fields returned + * with input format (BIN or BCD), also SubSeconds field returning the + * RTC_SSR register content and SecondFraction field the Synchronous pre-scaler + * factor to be used for second fraction ratio computation. + * @param Format: Specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @note You can use SubSeconds and SecondFraction (sTime structure fields returned) to convert SubSeconds + * value in second fraction ratio with time unit following generic formula: + * Second fraction ratio * time_unit= [(SecondFraction-SubSeconds)/(SecondFraction+1)] * time_unit + * This conversion can be performed only if no shift operation is pending (ie. SHFP=0) when PREDIV_S >= SS + * @note You must call HAL_RTC_GetDate() after HAL_RTC_GetTime() to unlock the values + * in the higher-order calendar shadow registers to ensure consistency between the time and date values. + * Reading RTC current time locks the values in calendar shadow registers until Current date is read + * to ensure consistency between the time and date values. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_GetTime(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTime, uint32_t Format) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + + /* Get subseconds structure field from the corresponding register*/ + sTime->SubSeconds = (uint32_t)(hrtc->Instance->SSR); + + /* Get SecondFraction structure field from the corresponding register field*/ + sTime->SecondFraction = (uint32_t)(hrtc->Instance->PRER & RTC_PRER_PREDIV_S); + + /* Get the TR register */ + tmpreg = (uint32_t)(hrtc->Instance->TR & RTC_TR_RESERVED_MASK); + + /* Fill the structure fields with the read parameters */ + sTime->Hours = (uint8_t)((tmpreg & (RTC_TR_HT | RTC_TR_HU)) >> 16U); + sTime->Minutes = (uint8_t)((tmpreg & (RTC_TR_MNT | RTC_TR_MNU)) >>8U); + sTime->Seconds = (uint8_t)(tmpreg & (RTC_TR_ST | RTC_TR_SU)); + sTime->TimeFormat = (uint8_t)((tmpreg & (RTC_TR_PM)) >> 16U); + + /* Check the input parameters format */ + if(Format == RTC_FORMAT_BIN) + { + /* Convert the time structure parameters to Binary format */ + sTime->Hours = (uint8_t)RTC_Bcd2ToByte(sTime->Hours); + sTime->Minutes = (uint8_t)RTC_Bcd2ToByte(sTime->Minutes); + sTime->Seconds = (uint8_t)RTC_Bcd2ToByte(sTime->Seconds); + } + + return HAL_OK; +} + +/** + * @brief Set RTC current date. + * @param hrtc: RTC handle + * @param sDate: Pointer to date structure + * @param Format: specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_SetDate(RTC_HandleTypeDef *hrtc, RTC_DateTypeDef *sDate, uint32_t Format) +{ + uint32_t datetmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + if((Format == RTC_FORMAT_BIN) && ((sDate->Month & 0x10U) == 0x10U)) + { + sDate->Month = (uint8_t)((sDate->Month & (uint8_t)~(0x10U)) + (uint8_t)0x0AU); + } + + assert_param(IS_RTC_WEEKDAY(sDate->WeekDay)); + + if(Format == RTC_FORMAT_BIN) + { + assert_param(IS_RTC_YEAR(sDate->Year)); + assert_param(IS_RTC_MONTH(sDate->Month)); + assert_param(IS_RTC_DATE(sDate->Date)); + + datetmpreg = (((uint32_t)RTC_ByteToBcd2(sDate->Year) << 16U) | \ + ((uint32_t)RTC_ByteToBcd2(sDate->Month) << 8U) | \ + ((uint32_t)RTC_ByteToBcd2(sDate->Date)) | \ + ((uint32_t)sDate->WeekDay << 13U)); + } + else + { + assert_param(IS_RTC_YEAR(RTC_Bcd2ToByte(sDate->Year))); + datetmpreg = RTC_Bcd2ToByte(sDate->Month); + assert_param(IS_RTC_MONTH(datetmpreg)); + datetmpreg = RTC_Bcd2ToByte(sDate->Date); + assert_param(IS_RTC_DATE(datetmpreg)); + + datetmpreg = ((((uint32_t)sDate->Year) << 16U) | \ + (((uint32_t)sDate->Month) << 8U) | \ + ((uint32_t)sDate->Date) | \ + (((uint32_t)sDate->WeekDay) << 13U)); + } + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Set Initialization mode */ + if(RTC_EnterInitMode(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state*/ + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + else + { + /* Set the RTC_DR register */ + hrtc->Instance->DR = (uint32_t)(datetmpreg & RTC_DR_RESERVED_MASK); + + /* Exit Initialization mode */ + hrtc->Instance->ISR &= ((uint32_t)~RTC_ISR_INIT); + + /* If CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ + if((hrtc->Instance->CR & RTC_CR_BYPSHAD) == RESET) + { + if(HAL_RTC_WaitForSynchro(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY ; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; + } +} + +/** + * @brief Get RTC current date. + * @param hrtc: RTC handle + * @param sDate: Pointer to Date structure + * @param Format: Specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @note You must call HAL_RTC_GetDate() after HAL_RTC_GetTime() to unlock the values + * in the higher-order calendar shadow registers to ensure consistency between the time and date values. + * Reading RTC current time locks the values in calendar shadow registers until Current date is read. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_GetDate(RTC_HandleTypeDef *hrtc, RTC_DateTypeDef *sDate, uint32_t Format) +{ + uint32_t datetmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + + /* Get the DR register */ + datetmpreg = (uint32_t)(hrtc->Instance->DR & RTC_DR_RESERVED_MASK); + + /* Fill the structure fields with the read parameters */ + sDate->Year = (uint8_t)((datetmpreg & (RTC_DR_YT | RTC_DR_YU)) >> 16U); + sDate->Month = (uint8_t)((datetmpreg & (RTC_DR_MT | RTC_DR_MU)) >> 8U); + sDate->Date = (uint8_t)(datetmpreg & (RTC_DR_DT | RTC_DR_DU)); + sDate->WeekDay = (uint8_t)((datetmpreg & (RTC_DR_WDU)) >> 13U); + + /* Check the input parameters format */ + if(Format == RTC_FORMAT_BIN) + { + /* Convert the date structure parameters to Binary format */ + sDate->Year = (uint8_t)RTC_Bcd2ToByte(sDate->Year); + sDate->Month = (uint8_t)RTC_Bcd2ToByte(sDate->Month); + sDate->Date = (uint8_t)RTC_Bcd2ToByte(sDate->Date); + } + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup RTC_Exported_Functions_Group3 + * @brief RTC Alarm functions + * +@verbatim + =============================================================================== + ##### RTC Alarm functions ##### + =============================================================================== + + [..] This section provides functions allowing to configure Alarm feature + +@endverbatim + * @{ + */ +/** + * @brief Set the specified RTC Alarm. + * @param hrtc: RTC handle + * @param sAlarm: Pointer to Alarm structure + * @param Format: Specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_SetAlarm(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Format) +{ + uint32_t tickstart = 0U; + uint32_t tmpreg = 0U, subsecondtmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + assert_param(IS_RTC_ALARM(sAlarm->Alarm)); + assert_param(IS_RTC_ALARM_MASK(sAlarm->AlarmMask)); + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_SEL(sAlarm->AlarmDateWeekDaySel)); + assert_param(IS_RTC_ALARM_SUB_SECOND_VALUE(sAlarm->AlarmTime.SubSeconds)); + assert_param(IS_RTC_ALARM_SUB_SECOND_MASK(sAlarm->AlarmSubSecondMask)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + if(Format == RTC_FORMAT_BIN) + { + if((hrtc->Instance->CR & RTC_CR_FMT) != (uint32_t)RESET) + { + assert_param(IS_RTC_HOUR12(sAlarm->AlarmTime.Hours)); + assert_param(IS_RTC_HOURFORMAT12(sAlarm->AlarmTime.TimeFormat)); + } + else + { + sAlarm->AlarmTime.TimeFormat = 0x00U; + assert_param(IS_RTC_HOUR24(sAlarm->AlarmTime.Hours)); + } + assert_param(IS_RTC_MINUTES(sAlarm->AlarmTime.Minutes)); + assert_param(IS_RTC_SECONDS(sAlarm->AlarmTime.Seconds)); + + if(sAlarm->AlarmDateWeekDaySel == RTC_ALARMDATEWEEKDAYSEL_DATE) + { + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_DATE(sAlarm->AlarmDateWeekDay)); + } + else + { + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_WEEKDAY(sAlarm->AlarmDateWeekDay)); + } + + tmpreg = (((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmTime.Hours) << 16U) | \ + ((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmTime.Minutes) << 8U) | \ + ((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmTime.Seconds)) | \ + ((uint32_t)(sAlarm->AlarmTime.TimeFormat) << 16U) | \ + ((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmDateWeekDay) << 24U) | \ + ((uint32_t)sAlarm->AlarmDateWeekDaySel) | \ + ((uint32_t)sAlarm->AlarmMask)); + } + else + { + if((hrtc->Instance->CR & RTC_CR_FMT) != (uint32_t)RESET) + { + tmpreg = RTC_Bcd2ToByte(sAlarm->AlarmTime.Hours); + assert_param(IS_RTC_HOUR12(tmpreg)); + assert_param(IS_RTC_HOURFORMAT12(sAlarm->AlarmTime.TimeFormat)); + } + else + { + sAlarm->AlarmTime.TimeFormat = 0x00U; + assert_param(IS_RTC_HOUR24(RTC_Bcd2ToByte(sAlarm->AlarmTime.Hours))); + } + + assert_param(IS_RTC_MINUTES(RTC_Bcd2ToByte(sAlarm->AlarmTime.Minutes))); + assert_param(IS_RTC_SECONDS(RTC_Bcd2ToByte(sAlarm->AlarmTime.Seconds))); + + if(sAlarm->AlarmDateWeekDaySel == RTC_ALARMDATEWEEKDAYSEL_DATE) + { + tmpreg = RTC_Bcd2ToByte(sAlarm->AlarmDateWeekDay); + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_DATE(tmpreg)); + } + else + { + tmpreg = RTC_Bcd2ToByte(sAlarm->AlarmDateWeekDay); + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_WEEKDAY(tmpreg)); + } + + tmpreg = (((uint32_t)(sAlarm->AlarmTime.Hours) << 16U) | \ + ((uint32_t)(sAlarm->AlarmTime.Minutes) << 8U) | \ + ((uint32_t) sAlarm->AlarmTime.Seconds) | \ + ((uint32_t)(sAlarm->AlarmTime.TimeFormat) << 16U) | \ + ((uint32_t)(sAlarm->AlarmDateWeekDay) << 24U) | \ + ((uint32_t)sAlarm->AlarmDateWeekDaySel) | \ + ((uint32_t)sAlarm->AlarmMask)); + } + + /* Configure the Alarm A or Alarm B Sub Second registers */ + subsecondtmpreg = (uint32_t)((uint32_t)(sAlarm->AlarmTime.SubSeconds) | (uint32_t)(sAlarm->AlarmSubSecondMask)); + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Configure the Alarm register */ + if(sAlarm->Alarm == RTC_ALARM_A) + { + /* Disable the Alarm A interrupt */ + __HAL_RTC_ALARMA_DISABLE(hrtc); + + /* In case of interrupt mode is used, the interrupt source must disabled */ + __HAL_RTC_ALARM_DISABLE_IT(hrtc, RTC_IT_ALRA); + + tickstart = HAL_GetTick(); + /* Wait till RTC ALRAWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRAWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + hrtc->Instance->ALRMAR = (uint32_t)tmpreg; + /* Configure the Alarm A Sub Second register */ + hrtc->Instance->ALRMASSR = subsecondtmpreg; + /* Configure the Alarm state: Enable Alarm */ + __HAL_RTC_ALARMA_ENABLE(hrtc); + } + else + { + /* Disable the Alarm B interrupt */ + __HAL_RTC_ALARMB_DISABLE(hrtc); + + /* In case of interrupt mode is used, the interrupt source must disabled */ + __HAL_RTC_ALARM_DISABLE_IT(hrtc, RTC_IT_ALRB); + + tickstart = HAL_GetTick(); + /* Wait till RTC ALRBWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRBWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + hrtc->Instance->ALRMBR = (uint32_t)tmpreg; + /* Configure the Alarm B Sub Second register */ + hrtc->Instance->ALRMBSSR = subsecondtmpreg; + /* Configure the Alarm state: Enable Alarm */ + __HAL_RTC_ALARMB_ENABLE(hrtc); + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Set the specified RTC Alarm with Interrupt. + * @param hrtc: RTC handle + * @param sAlarm: Pointer to Alarm structure + * @param Format: Specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @note The Alarm register can only be written when the corresponding Alarm + * is disabled (Use the HAL_RTC_DeactivateAlarm()). + * @note The HAL_RTC_SetTime() must be called before enabling the Alarm feature. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_SetAlarm_IT(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Format) +{ + uint32_t tickstart = 0U; + uint32_t tmpreg = 0U, subsecondtmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + assert_param(IS_RTC_ALARM(sAlarm->Alarm)); + assert_param(IS_RTC_ALARM_MASK(sAlarm->AlarmMask)); + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_SEL(sAlarm->AlarmDateWeekDaySel)); + assert_param(IS_RTC_ALARM_SUB_SECOND_VALUE(sAlarm->AlarmTime.SubSeconds)); + assert_param(IS_RTC_ALARM_SUB_SECOND_MASK(sAlarm->AlarmSubSecondMask)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + if(Format == RTC_FORMAT_BIN) + { + if((hrtc->Instance->CR & RTC_CR_FMT) != (uint32_t)RESET) + { + assert_param(IS_RTC_HOUR12(sAlarm->AlarmTime.Hours)); + assert_param(IS_RTC_HOURFORMAT12(sAlarm->AlarmTime.TimeFormat)); + } + else + { + sAlarm->AlarmTime.TimeFormat = 0x00U; + assert_param(IS_RTC_HOUR24(sAlarm->AlarmTime.Hours)); + } + assert_param(IS_RTC_MINUTES(sAlarm->AlarmTime.Minutes)); + assert_param(IS_RTC_SECONDS(sAlarm->AlarmTime.Seconds)); + + if(sAlarm->AlarmDateWeekDaySel == RTC_ALARMDATEWEEKDAYSEL_DATE) + { + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_DATE(sAlarm->AlarmDateWeekDay)); + } + else + { + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_WEEKDAY(sAlarm->AlarmDateWeekDay)); + } + tmpreg = (((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmTime.Hours) << 16U) | \ + ((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmTime.Minutes) << 8U) | \ + ((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmTime.Seconds)) | \ + ((uint32_t)(sAlarm->AlarmTime.TimeFormat) << 16U) | \ + ((uint32_t)RTC_ByteToBcd2(sAlarm->AlarmDateWeekDay) << 24U) | \ + ((uint32_t)sAlarm->AlarmDateWeekDaySel) | \ + ((uint32_t)sAlarm->AlarmMask)); + } + else + { + if((hrtc->Instance->CR & RTC_CR_FMT) != (uint32_t)RESET) + { + tmpreg = RTC_Bcd2ToByte(sAlarm->AlarmTime.Hours); + assert_param(IS_RTC_HOUR12(tmpreg)); + assert_param(IS_RTC_HOURFORMAT12(sAlarm->AlarmTime.TimeFormat)); + } + else + { + sAlarm->AlarmTime.TimeFormat = 0x00U; + assert_param(IS_RTC_HOUR24(RTC_Bcd2ToByte(sAlarm->AlarmTime.Hours))); + } + + assert_param(IS_RTC_MINUTES(RTC_Bcd2ToByte(sAlarm->AlarmTime.Minutes))); + assert_param(IS_RTC_SECONDS(RTC_Bcd2ToByte(sAlarm->AlarmTime.Seconds))); + + if(sAlarm->AlarmDateWeekDaySel == RTC_ALARMDATEWEEKDAYSEL_DATE) + { + tmpreg = RTC_Bcd2ToByte(sAlarm->AlarmDateWeekDay); + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_DATE(tmpreg)); + } + else + { + tmpreg = RTC_Bcd2ToByte(sAlarm->AlarmDateWeekDay); + assert_param(IS_RTC_ALARM_DATE_WEEKDAY_WEEKDAY(tmpreg)); + } + tmpreg = (((uint32_t)(sAlarm->AlarmTime.Hours) << 16U) | \ + ((uint32_t)(sAlarm->AlarmTime.Minutes) << 8U) | \ + ((uint32_t) sAlarm->AlarmTime.Seconds) | \ + ((uint32_t)(sAlarm->AlarmTime.TimeFormat) << 16U) | \ + ((uint32_t)(sAlarm->AlarmDateWeekDay) << 24U) | \ + ((uint32_t)sAlarm->AlarmDateWeekDaySel) | \ + ((uint32_t)sAlarm->AlarmMask)); + } + /* Configure the Alarm A or Alarm B Sub Second registers */ + subsecondtmpreg = (uint32_t)((uint32_t)(sAlarm->AlarmTime.SubSeconds) | (uint32_t)(sAlarm->AlarmSubSecondMask)); + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Configure the Alarm register */ + if(sAlarm->Alarm == RTC_ALARM_A) + { + /* Disable the Alarm A interrupt */ + __HAL_RTC_ALARMA_DISABLE(hrtc); + + /* Clear flag alarm A */ + __HAL_RTC_ALARM_CLEAR_FLAG(hrtc, RTC_FLAG_ALRAF); + + tickstart = HAL_GetTick(); + /* Wait till RTC ALRAWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRAWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + hrtc->Instance->ALRMAR = (uint32_t)tmpreg; + /* Configure the Alarm A Sub Second register */ + hrtc->Instance->ALRMASSR = subsecondtmpreg; + /* Configure the Alarm state: Enable Alarm */ + __HAL_RTC_ALARMA_ENABLE(hrtc); + /* Configure the Alarm interrupt */ + __HAL_RTC_ALARM_ENABLE_IT(hrtc,RTC_IT_ALRA); + } + else + { + /* Disable the Alarm B interrupt */ + __HAL_RTC_ALARMB_DISABLE(hrtc); + + /* Clear flag alarm B */ + __HAL_RTC_ALARM_CLEAR_FLAG(hrtc, RTC_FLAG_ALRBF); + + tickstart = HAL_GetTick(); + /* Wait till RTC ALRBWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRBWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + hrtc->Instance->ALRMBR = (uint32_t)tmpreg; + /* Configure the Alarm B Sub Second register */ + hrtc->Instance->ALRMBSSR = subsecondtmpreg; + /* Configure the Alarm state: Enable Alarm */ + __HAL_RTC_ALARMB_ENABLE(hrtc); + /* Configure the Alarm interrupt */ + __HAL_RTC_ALARM_ENABLE_IT(hrtc, RTC_IT_ALRB); + } + + /* RTC Alarm Interrupt Configuration: EXTI configuration */ + __HAL_RTC_ALARM_EXTI_ENABLE_IT(); + + __HAL_RTC_ALARM_EXTI_ENABLE_RISING_EDGE(); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Deactivate the specified RTC Alarm. + * @param hrtc: RTC handle + * @param Alarm: Specifies the Alarm. + * This parameter can be one of the following values: + * @arg RTC_ALARM_A: AlarmA + * @arg RTC_ALARM_B: AlarmB + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_DeactivateAlarm(RTC_HandleTypeDef *hrtc, uint32_t Alarm) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_ALARM(Alarm)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + if(Alarm == RTC_ALARM_A) + { + /* AlarmA */ + __HAL_RTC_ALARMA_DISABLE(hrtc); + + /* In case of interrupt mode is used, the interrupt source must disabled */ + __HAL_RTC_ALARM_DISABLE_IT(hrtc, RTC_IT_ALRA); + + tickstart = HAL_GetTick(); + + /* Wait till RTC ALRxWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRAWF) == RESET) + { + if( (HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + } + else + { + /* AlarmB */ + __HAL_RTC_ALARMB_DISABLE(hrtc); + + /* In case of interrupt mode is used, the interrupt source must disabled */ + __HAL_RTC_ALARM_DISABLE_IT(hrtc,RTC_IT_ALRB); + + tickstart = HAL_GetTick(); + + /* Wait till RTC ALRxWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRBWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + } + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Get the RTC Alarm value and masks. + * @param hrtc: RTC handle + * @param sAlarm: Pointer to Date structure + * @param Alarm: Specifies the Alarm. + * This parameter can be one of the following values: + * @arg RTC_ALARM_A: AlarmA + * @arg RTC_ALARM_B: AlarmB + * @param Format: Specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_GetAlarm(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Alarm, uint32_t Format) +{ + uint32_t tmpreg = 0U, subsecondtmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + assert_param(IS_RTC_ALARM(Alarm)); + + if(Alarm == RTC_ALARM_A) + { + /* AlarmA */ + sAlarm->Alarm = RTC_ALARM_A; + + tmpreg = (uint32_t)(hrtc->Instance->ALRMAR); + subsecondtmpreg = (uint32_t)((hrtc->Instance->ALRMASSR ) & RTC_ALRMASSR_SS); + +/* Fill the structure with the read parameters */ + sAlarm->AlarmTime.Hours = (uint32_t)((tmpreg & (RTC_ALRMAR_HT | RTC_ALRMAR_HU)) >> 16U); + sAlarm->AlarmTime.Minutes = (uint32_t)((tmpreg & (RTC_ALRMAR_MNT | RTC_ALRMAR_MNU)) >> 8U); + sAlarm->AlarmTime.Seconds = (uint32_t)(tmpreg & (RTC_ALRMAR_ST | RTC_ALRMAR_SU)); + sAlarm->AlarmTime.TimeFormat = (uint32_t)((tmpreg & RTC_ALRMAR_PM) >> 16U); + sAlarm->AlarmTime.SubSeconds = (uint32_t) subsecondtmpreg; + sAlarm->AlarmDateWeekDay = (uint32_t)((tmpreg & (RTC_ALRMAR_DT | RTC_ALRMAR_DU)) >> 24U); + sAlarm->AlarmDateWeekDaySel = (uint32_t)(tmpreg & RTC_ALRMAR_WDSEL); + sAlarm->AlarmMask = (uint32_t)(tmpreg & RTC_ALARMMASK_ALL); + } + else + { + sAlarm->Alarm = RTC_ALARM_B; + + tmpreg = (uint32_t)(hrtc->Instance->ALRMBR); + subsecondtmpreg = (uint32_t)((hrtc->Instance->ALRMBSSR) & RTC_ALRMBSSR_SS); + + /* Fill the structure with the read parameters */ + sAlarm->AlarmTime.Hours = (uint32_t)((tmpreg & (RTC_ALRMBR_HT | RTC_ALRMBR_HU)) >> 16U); + sAlarm->AlarmTime.Minutes = (uint32_t)((tmpreg & (RTC_ALRMBR_MNT | RTC_ALRMBR_MNU)) >> 8U); + sAlarm->AlarmTime.Seconds = (uint32_t)(tmpreg & (RTC_ALRMBR_ST | RTC_ALRMBR_SU)); + sAlarm->AlarmTime.TimeFormat = (uint32_t)((tmpreg & RTC_ALRMBR_PM) >> 16U); + sAlarm->AlarmTime.SubSeconds = (uint32_t) subsecondtmpreg; + sAlarm->AlarmDateWeekDay = (uint32_t)((tmpreg & (RTC_ALRMBR_DT | RTC_ALRMBR_DU)) >> 24U); + sAlarm->AlarmDateWeekDaySel = (uint32_t)(tmpreg & RTC_ALRMBR_WDSEL); + sAlarm->AlarmMask = (uint32_t)(tmpreg & RTC_ALARMMASK_ALL); + } + + if(Format == RTC_FORMAT_BIN) + { + sAlarm->AlarmTime.Hours = RTC_Bcd2ToByte(sAlarm->AlarmTime.Hours); + sAlarm->AlarmTime.Minutes = RTC_Bcd2ToByte(sAlarm->AlarmTime.Minutes); + sAlarm->AlarmTime.Seconds = RTC_Bcd2ToByte(sAlarm->AlarmTime.Seconds); + sAlarm->AlarmDateWeekDay = RTC_Bcd2ToByte(sAlarm->AlarmDateWeekDay); + } + + return HAL_OK; +} + +/** + * @brief Handle Alarm interrupt request. + * @param hrtc: RTC handle + * @retval None + */ +void HAL_RTC_AlarmIRQHandler(RTC_HandleTypeDef* hrtc) +{ + /* Get the AlarmA interrupt source enable status */ + if(__HAL_RTC_ALARM_GET_IT_SOURCE(hrtc, RTC_IT_ALRA) != RESET) + { + /* Get the pending status of the AlarmA Interrupt */ + if(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRAF) != RESET) + { + /* AlarmA callback */ + HAL_RTC_AlarmAEventCallback(hrtc); + + /* Clear the AlarmA interrupt pending bit */ + __HAL_RTC_ALARM_CLEAR_FLAG(hrtc, RTC_FLAG_ALRAF); + } + } + + /* Get the AlarmB interrupt source enable status */ + if(__HAL_RTC_ALARM_GET_IT_SOURCE(hrtc, RTC_IT_ALRB) != RESET) + { + /* Get the pending status of the AlarmB Interrupt */ + if(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRBF) != RESET) + { + /* AlarmB callback */ + HAL_RTCEx_AlarmBEventCallback(hrtc); + + /* Clear the AlarmB interrupt pending bit */ + __HAL_RTC_ALARM_CLEAR_FLAG(hrtc, RTC_FLAG_ALRBF); + } + } + + /* Clear the EXTI's line Flag for RTC Alarm */ + __HAL_RTC_ALARM_EXTI_CLEAR_FLAG(); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; +} + +/** + * @brief Alarm A callback. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTC_AlarmAEventCallback(RTC_HandleTypeDef *hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTC_AlarmAEventCallback could be implemented in the user file + */ +} + +/** + * @brief Handle AlarmA Polling request. + * @param hrtc: RTC handle + * @param Timeout: Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_PollForAlarmAEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout) +{ + + uint32_t tickstart = HAL_GetTick(); + + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRAF) == RESET) + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - tickstart ) > Timeout)) + { + hrtc->State = HAL_RTC_STATE_TIMEOUT; + return HAL_TIMEOUT; + } + } + } + + /* Clear the Alarm interrupt pending bit */ + __HAL_RTC_ALARM_CLEAR_FLAG(hrtc, RTC_FLAG_ALRAF); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup RTC_Exported_Functions_Group4 + * @brief Peripheral Control functions + * +@verbatim + =============================================================================== + ##### Peripheral Control functions ##### + =============================================================================== + [..] + This subsection provides functions allowing to + (+) Wait for RTC Time and Date Synchronization + +@endverbatim + * @{ + */ + +/** + * @brief Wait until the RTC Time and Date registers (RTC_TR and RTC_DR) are + * synchronized with RTC APB clock. + * @note The RTC Resynchronization mode is write protected, use the + * __HAL_RTC_WRITEPROTECTION_DISABLE() before calling this function. + * @note To read the calendar through the shadow registers after Calendar + * initialization, calendar update or after wakeup from low power modes + * the software must first clear the RSF flag. + * The software must then wait until it is set again before reading + * the calendar, which means that the calendar registers have been + * correctly copied into the RTC_TR and RTC_DR shadow registers. + * @param hrtc: RTC handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTC_WaitForSynchro(RTC_HandleTypeDef* hrtc) +{ + uint32_t tickstart = 0U; + + /* Clear RSF flag */ + hrtc->Instance->ISR &= (uint32_t)RTC_RSF_MASK; + + tickstart = HAL_GetTick(); + + /* Wait the registers to be synchronised */ + while((hrtc->Instance->ISR & RTC_ISR_RSF) == (uint32_t)RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup RTC_Exported_Functions_Group5 + * @brief Peripheral State functions + * +@verbatim + =============================================================================== + ##### Peripheral State functions ##### + =============================================================================== + [..] + This subsection provides functions allowing to + (+) Get RTC state + +@endverbatim + * @{ + */ +/** + * @brief Return the RTC handle state. + * @param hrtc: RTC handle + * @retval HAL state + */ +HAL_RTCStateTypeDef HAL_RTC_GetState(RTC_HandleTypeDef* hrtc) +{ + /* Return RTC handle state */ + return hrtc->State; +} + +/** + * @} + */ +/** + * @} + */ + +/** @addtogroup RTC_Private_Functions + * @{ + */ +/** + * @brief Enter the RTC Initialization mode. + * @note The RTC Initialization mode is write protected, use the + * __HAL_RTC_WRITEPROTECTION_DISABLE() before calling this function. + * @param hrtc: RTC handle + * @retval HAL status + */ +HAL_StatusTypeDef RTC_EnterInitMode(RTC_HandleTypeDef* hrtc) +{ + uint32_t tickstart = 0U; + + /* Check if the Initialization mode is set */ + if((hrtc->Instance->ISR & RTC_ISR_INITF) == (uint32_t)RESET) + { + /* Set the Initialization mode */ + hrtc->Instance->ISR = (uint32_t)RTC_INIT_MASK; + + tickstart = HAL_GetTick(); + /* Wait till RTC is in INIT state and if Time out is reached exit */ + while((hrtc->Instance->ISR & RTC_ISR_INITF) == (uint32_t)RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + return HAL_TIMEOUT; + } + } + } + + return HAL_OK; +} + + +/** + * @brief Convert a 2 digit decimal to BCD format. + * @param Value: Byte to be converted + * @retval Converted byte + */ +uint8_t RTC_ByteToBcd2(uint8_t Value) +{ + uint32_t bcdhigh = 0U; + + while(Value >= 10U) + { + bcdhigh++; + Value -= 10U; + } + + return ((uint8_t)(bcdhigh << 4U) | Value); +} + +/** + * @brief Convert from 2 digit BCD to Binary. + * @param Value: BCD value to be converted + * @retval Converted word + */ +uint8_t RTC_Bcd2ToByte(uint8_t Value) +{ + uint32_t tmp = 0U; + tmp = ((uint8_t)(Value & (uint8_t)0xF0U) >> (uint8_t)0x4U) * 10U; + return (tmp + (Value & (uint8_t)0x0FU)); +} + +/** + * @} + */ + +#endif /* HAL_RTC_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c new file mode 100644 index 0000000..962fe0b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c @@ -0,0 +1,1964 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_rtc_ex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Extended RTC HAL module driver. + * + * This file provides firmware functions to manage the following + * functionalities of the Real Time Clock (RTC) Extended peripheral: + * + RTC Time Stamp functions + * + RTC Tamper functions + * + RTC Wake-up functions + * + Extended Control functions + * + Extended RTC features functions + * + @verbatim + ============================================================================== + ##### How to use this driver ##### + ============================================================================== + [..] + (+) Enable the RTC domain access. + (+) Configure the RTC Prescaler (Asynchronous and Synchronous) and RTC hour + format using the HAL_RTC_Init() function. + + *** RTC Wakeup configuration *** + ================================ + [..] + (+) To configure the RTC Wakeup Clock source and Counter use the HAL_RTCEx_SetWakeUpTimer() + function. You can also configure the RTC Wakeup timer with interrupt mode + using the HAL_RTCEx_SetWakeUpTimer_IT() function. + (+) To read the RTC WakeUp Counter register, use the HAL_RTCEx_GetWakeUpTimer() + function. + + *** Outputs configuration *** + ============================= + [..] The RTC has 2 different outputs: + (+) RTC_ALARM: this output is used to manage the RTC Alarm A, Alarm B + and WaKeUp signals. + To output the selected RTC signal, use the HAL_RTC_Init() function. + (+) RTC_CALIB: this output is 512Hz signal or 1Hz. + To enable the RTC_CALIB, use the HAL_RTCEx_SetCalibrationOutPut() function. + (+) Two pins can be used as RTC_ALARM or RTC_CALIB (PC13, PB14) for STM32L05x/6x/7x/8x + and (PA2, PB14) for STM32L03x/4x managed on the RTC_OR register. + (+) When the RTC_CALIB or RTC_ALARM output is selected, the RTC_OUT pin is + automatically configured in output alternate function. + + *** Smooth digital Calibration configuration *** + ================================================ + [..] + (+) Configure the RTC Original Digital Calibration Value and the corresponding + calibration cycle period (32s,16s and 8s) using the HAL_RTCEx_SetSmoothCalib() + function. + + *** TimeStamp configuration *** + =============================== + [..] + (+) Configure the RTC_AF trigger and enable the RTC TimeStamp using the + HAL_RTCEx_SetTimeStamp() function. You can also configure the RTC TimeStamp with + interrupt mode using the HAL_RTCEx_SetTimeStamp_IT() function. + (+) To read the RTC TimeStamp Time and Date register, use the HAL_RTCEx_GetTimeStamp() + function. + + *** Tamper configuration *** + ============================ + [..] + (+) Enable the RTC Tamper and configure the Tamper filter count, trigger Edge + or Level according to the Tamper filter (if equal to 0 Edge else Level) + value, sampling frequency, NoErase, MaskFlag, precharge or discharge and + Pull-UP using the HAL_RTCEx_SetTamper() function. You can configure RTC Tamper + with interrupt mode using HAL_RTCEx_SetTamper_IT() function. + (+) The default configuration of the Tamper erases the backup registers. To avoid + erase, enable the NoErase field on the RTC_TAMPCR register. + + *** Backup Data Registers configuration *** + =========================================== + [..] + (+) To write to the RTC Backup Data registers, use the HAL_RTCEx_BKUPWrite() + function. + (+) To read the RTC Backup Data registers, use the HAL_RTCEx_BKUPRead() + function. + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup RTCEx + * @brief RTC Extended HAL module driver + * @{ + */ + +#ifdef HAL_RTC_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ + +/** @addtogroup RTCEx_Exported_Functions + * @{ + */ + + +/** @addtogroup RTCEx_Exported_Functions_Group1 + * @brief RTC TimeStamp and Tamper functions + * +@verbatim + =============================================================================== + ##### RTC TimeStamp and Tamper functions ##### + =============================================================================== + + [..] This section provides functions allowing to configure TimeStamp feature + +@endverbatim + * @{ + */ + +/** + * @brief Set TimeStamp. + * @note This API must be called before enabling the TimeStamp feature. + * @param hrtc: RTC handle + * @param TimeStampEdge: Specifies the pin edge on which the TimeStamp is + * activated. + * This parameter can be one of the following values: + * @arg RTC_TIMESTAMPEDGE_RISING: the Time stamp event occurs on the + * rising edge of the related pin. + * @arg RTC_TIMESTAMPEDGE_FALLING: the Time stamp event occurs on the + * falling edge of the related pin. + * @param RTC_TimeStampPin: specifies the RTC TimeStamp Pin. + * This parameter can be one of the following values: + * @arg RTC_TIMESTAMPPIN_DEFAULT: PC13 is selected as RTC TimeStamp Pin on STM32L05x/6x/7x/8x + * and PA2 on STM32L03x/4x/2x/1x. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetTimeStamp(RTC_HandleTypeDef *hrtc, uint32_t TimeStampEdge, uint32_t RTC_TimeStampPin) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_TIMESTAMP_EDGE(TimeStampEdge)); + assert_param(IS_RTC_TIMESTAMP_PIN(RTC_TimeStampPin)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Get the RTC_CR register and clear the bits to be configured */ + tmpreg = (uint32_t)(hrtc->Instance->CR & (uint32_t)~(RTC_CR_TSEDGE | RTC_CR_TSE)); + + tmpreg|= TimeStampEdge; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Configure the Time Stamp TSEDGE and Enable bits */ + hrtc->Instance->CR = (uint32_t)tmpreg; + + __HAL_RTC_TIMESTAMP_ENABLE(hrtc); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Set TimeStamp with Interrupt. + * @param hrtc: RTC handle + * @note This API must be called before enabling the TimeStamp feature. + * @param TimeStampEdge: Specifies the pin edge on which the TimeStamp is + * activated. + * This parameter can be one of the following values: + * @arg RTC_TIMESTAMPEDGE_RISING: the Time stamp event occurs on the + * rising edge of the related pin. + * @arg RTC_TIMESTAMPEDGE_FALLING: the Time stamp event occurs on the + * falling edge of the related pin. + * @param RTC_TimeStampPin: Specifies the RTC TimeStamp Pin. + * This parameter can be one of the following values: + * @arg RTC_TIMESTAMPPIN_DEFAULT: PC13 is selected as RTC TimeStamp Pin on STM32L05x/6x/7x/8x + * and PA2 on STM32L03x/4x/2x/1x. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetTimeStamp_IT(RTC_HandleTypeDef *hrtc, uint32_t TimeStampEdge, uint32_t RTC_TimeStampPin) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param(IS_TIMESTAMP_EDGE(TimeStampEdge)); + assert_param(IS_RTC_TIMESTAMP_PIN(RTC_TimeStampPin)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Get the RTC_CR register and clear the bits to be configured */ + tmpreg = (uint32_t)(hrtc->Instance->CR & (uint32_t)~(RTC_CR_TSEDGE | RTC_CR_TSE)); + + tmpreg |= TimeStampEdge; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Configure the Time Stamp TSEDGE and Enable bits */ + hrtc->Instance->CR = (uint32_t)tmpreg; + + __HAL_RTC_TIMESTAMP_ENABLE(hrtc); + + /* Enable IT timestamp */ + __HAL_RTC_TIMESTAMP_ENABLE_IT(hrtc,RTC_IT_TS); + + /* RTC timestamp Interrupt Configuration: EXTI configuration */ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_IT(); + + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_RISING_EDGE(); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Deactivate TimeStamp. + * @param hrtc: RTC handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_DeactivateTimeStamp(RTC_HandleTypeDef *hrtc) +{ + uint32_t tmpreg = 0U; + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* In case of interrupt mode is used, the interrupt source must disabled */ + __HAL_RTC_TIMESTAMP_DISABLE_IT(hrtc, RTC_IT_TS); + + /* Get the RTC_CR register and clear the bits to be configured */ + tmpreg = (uint32_t)(hrtc->Instance->CR & (uint32_t)~(RTC_CR_TSEDGE | RTC_CR_TSE)); + + /* Configure the Time Stamp TSEDGE and Enable bits */ + hrtc->Instance->CR = (uint32_t)tmpreg; + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Get the RTC TimeStamp value. + * @param hrtc: RTC handle + + * @param sTimeStamp: Pointer to Time structure + * @param sTimeStampDate: Pointer to Date structure + * @param Format: specifies the format of the entered parameters. + * This parameter can be one of the following values: + * @arg RTC_FORMAT_BIN: Binary data format + * @arg RTC_FORMAT_BCD: BCD data format + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_GetTimeStamp(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef* sTimeStamp, RTC_DateTypeDef* sTimeStampDate, uint32_t Format) +{ + uint32_t tmptime = 0U, tmpdate = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_FORMAT(Format)); + + /* Get the TimeStamp time and date registers values */ + tmptime = (uint32_t)(hrtc->Instance->TSTR & RTC_TR_RESERVED_MASK); + tmpdate = (uint32_t)(hrtc->Instance->TSDR & RTC_DR_RESERVED_MASK); + + /* Fill the Time structure fields with the read parameters */ + sTimeStamp->Hours = (uint8_t)((tmptime & (RTC_TR_HT | RTC_TR_HU)) >> 16U); + sTimeStamp->Minutes = (uint8_t)((tmptime & (RTC_TR_MNT | RTC_TR_MNU)) >> 8U); + sTimeStamp->Seconds = (uint8_t)(tmptime & (RTC_TR_ST | RTC_TR_SU)); + sTimeStamp->TimeFormat = (uint8_t)((tmptime & (RTC_TR_PM)) >> 16U); + sTimeStamp->SubSeconds = (uint32_t) hrtc->Instance->TSSSR; + + /* Fill the Date structure fields with the read parameters */ + sTimeStampDate->Year = 0U; + sTimeStampDate->Month = (uint8_t)((tmpdate & (RTC_DR_MT | RTC_DR_MU)) >> 8U); + sTimeStampDate->Date = (uint8_t)(tmpdate & (RTC_DR_DT | RTC_DR_DU)); + sTimeStampDate->WeekDay = (uint8_t)((tmpdate & (RTC_DR_WDU)) >> 13U); + + /* Check the input parameters format */ + if(Format == RTC_FORMAT_BIN) + { + /* Convert the TimeStamp structure parameters to Binary format */ + sTimeStamp->Hours = (uint8_t)RTC_Bcd2ToByte(sTimeStamp->Hours); + sTimeStamp->Minutes = (uint8_t)RTC_Bcd2ToByte(sTimeStamp->Minutes); + sTimeStamp->Seconds = (uint8_t)RTC_Bcd2ToByte(sTimeStamp->Seconds); + + /* Convert the DateTimeStamp structure parameters to Binary format */ + sTimeStampDate->Month = (uint8_t)RTC_Bcd2ToByte(sTimeStampDate->Month); + sTimeStampDate->Date = (uint8_t)RTC_Bcd2ToByte(sTimeStampDate->Date); + sTimeStampDate->WeekDay = (uint8_t)RTC_Bcd2ToByte(sTimeStampDate->WeekDay); + } + + /* Clear the TIMESTAMP Flag */ + __HAL_RTC_TIMESTAMP_CLEAR_FLAG(hrtc, RTC_FLAG_TSF); + + return HAL_OK; +} + +/** + * @brief Set Tamper + * @note By calling this API we disable the tamper interrupt for all tampers. + * @param hrtc: RTC handle + * @param sTamper: Pointer to Tamper Structure. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetTamper(RTC_HandleTypeDef *hrtc, RTC_TamperTypeDef* sTamper) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param( IS_RTC_TAMPER(sTamper->Tamper)); + assert_param( IS_RTC_TAMPER_TRIGGER(sTamper->Trigger)); + assert_param(IS_RTC_TAMPER_ERASE_MODE(sTamper->NoErase)); + assert_param(IS_RTC_TAMPER_MASKFLAG_STATE(sTamper->MaskFlag)); + assert_param(IS_RTC_TAMPER_FILTER(sTamper->Filter)); + assert_param(IS_RTC_TAMPER_SAMPLING_FREQ(sTamper->SamplingFrequency)); + assert_param(IS_RTC_TAMPER_PRECHARGE_DURATION(sTamper->PrechargeDuration)); + assert_param(IS_RTC_TAMPER_PULLUP_STATE(sTamper->TamperPullUp)); + assert_param(IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION(sTamper->TimeStampOnTamperDetection)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Configure the tamper trigger */ + if(sTamper->Trigger != RTC_TAMPERTRIGGER_RISINGEDGE) + { + sTamper->Trigger = (uint32_t)(sTamper->Tamper << 1U); + } + + if(sTamper->NoErase != RTC_TAMPER_ERASE_BACKUP_ENABLE) + { + sTamper->NoErase = 0U; +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + + if((sTamper->Tamper & RTC_TAMPER_1) != 0U) + { + sTamper->NoErase |= RTC_TAMPCR_TAMP1NOERASE; + } +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + + if((sTamper->Tamper & RTC_TAMPER_2) != 0U) + { + sTamper->NoErase |= RTC_TAMPCR_TAMP2NOERASE; + } +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + + if((sTamper->Tamper & RTC_TAMPER_3) != 0U) + { + sTamper->NoErase |= RTC_TAMPCR_TAMP3NOERASE; + } + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || (STM32L021xx) + */ + } + + if(sTamper->MaskFlag != RTC_TAMPERMASK_FLAG_DISABLE) + { + sTamper->MaskFlag = 0U; + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + + if((sTamper->Tamper & RTC_TAMPER_1) != 0U) + { + sTamper->MaskFlag |= RTC_TAMPCR_TAMP1MF; + } +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + + if((sTamper->Tamper & RTC_TAMPER_2) != 0U) + { + sTamper->MaskFlag |= RTC_TAMPCR_TAMP2MF; + } +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + + if((sTamper->Tamper & RTC_TAMPER_3) != 0U) + { + sTamper->MaskFlag |= RTC_TAMPCR_TAMP3MF; + } +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx)|| (STM32L011xx) || (STM32L021xx) + */ + } + + /* Configure the RTC_TAMPCR register */ + tmpreg = (uint32_t)((uint32_t)sTamper->Tamper | (uint32_t)sTamper->Trigger | (uint32_t)sTamper->NoErase |\ + (uint32_t)sTamper->MaskFlag | (uint32_t)sTamper->Filter | (uint32_t)sTamper->SamplingFrequency |\ + (uint32_t)sTamper->PrechargeDuration | (uint32_t)sTamper->TamperPullUp | (uint32_t)sTamper->TimeStampOnTamperDetection); + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) + hrtc->Instance->TAMPCR &= ((uint32_t)~((uint32_t)sTamper->Tamper | (uint32_t)(sTamper->Tamper << 1U) | RTC_TAMPCR_TAMPTS |\ + RTC_TAMPCR_TAMPFREQ | RTC_TAMPCR_TAMPFLT | RTC_TAMPCR_TAMPPRCH |\ + RTC_TAMPCR_TAMPPUDIS | RTC_TAMPCR_TAMPIE | RTC_TAMPCR_TAMP1IE |\ + RTC_TAMPCR_TAMP2IE | RTC_TAMPCR_TAMP1NOERASE | RTC_TAMPCR_TAMP2NOERASE|\ + RTC_TAMPCR_TAMP1MF | RTC_TAMPCR_TAMP2MF)); + +#elif defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + hrtc->Instance->TAMPCR &= ((uint32_t)~((uint32_t)sTamper->Tamper | (uint32_t)(sTamper->Tamper << 1U) | RTC_TAMPCR_TAMPTS |\ + RTC_TAMPCR_TAMPFREQ | RTC_TAMPCR_TAMPFLT | RTC_TAMPCR_TAMPPRCH |\ + RTC_TAMPCR_TAMPPUDIS | RTC_TAMPCR_TAMPIE | RTC_TAMPCR_TAMP1IE |\ + RTC_TAMPCR_TAMP2IE | RTC_TAMPCR_TAMP3IE | RTC_TAMPCR_TAMP1NOERASE |\ + RTC_TAMPCR_TAMP2NOERASE | RTC_TAMPCR_TAMP3NOERASE | RTC_TAMPCR_TAMP1MF |\ + RTC_TAMPCR_TAMP2MF | RTC_TAMPCR_TAMP3MF)); + +#elif defined (STM32L011xx) || defined (STM32L021xx) + hrtc->Instance->TAMPCR &= ((uint32_t)~((uint32_t)sTamper->Tamper | (uint32_t)(sTamper->Tamper << 1U) | RTC_TAMPCR_TAMPTS |\ + RTC_TAMPCR_TAMPFREQ | RTC_TAMPCR_TAMPFLT | RTC_TAMPCR_TAMPPRCH |\ + RTC_TAMPCR_TAMPPUDIS | RTC_TAMPCR_TAMPIE |\ + RTC_TAMPCR_TAMP2IE | RTC_TAMPCR_TAMP3IE |\ + RTC_TAMPCR_TAMP2NOERASE | RTC_TAMPCR_TAMP3NOERASE |\ + RTC_TAMPCR_TAMP2MF | RTC_TAMPCR_TAMP3MF)); + +#endif /* (STM32L011xx) || (STM32L021xx) + */ + + hrtc->Instance->TAMPCR |= tmpreg; + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Set Tamper with interrupt. + * @note By calling this API we force the tamper interrupt for all tampers. + * @param hrtc: RTC handle + * @param sTamper: Pointer to RTC Tamper. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetTamper_IT(RTC_HandleTypeDef *hrtc, RTC_TamperTypeDef* sTamper) +{ + uint32_t tmpreg = 0U; + + /* Check the parameters */ + assert_param( IS_RTC_TAMPER(sTamper->Tamper)); + assert_param(IS_RTC_TAMPER_INTERRUPT(sTamper->Interrupt)); + assert_param( IS_RTC_TAMPER_TRIGGER(sTamper->Trigger)); + assert_param(IS_RTC_TAMPER_ERASE_MODE(sTamper->NoErase)); + assert_param(IS_RTC_TAMPER_MASKFLAG_STATE(sTamper->MaskFlag)); + assert_param(IS_RTC_TAMPER_FILTER(sTamper->Filter)); + assert_param(IS_RTC_TAMPER_SAMPLING_FREQ(sTamper->SamplingFrequency)); + assert_param(IS_RTC_TAMPER_PRECHARGE_DURATION(sTamper->PrechargeDuration)); + assert_param(IS_RTC_TAMPER_PULLUP_STATE(sTamper->TamperPullUp)); + assert_param(IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION(sTamper->TimeStampOnTamperDetection)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Configure the tamper trigger */ + if(sTamper->Trigger != RTC_TAMPERTRIGGER_RISINGEDGE) + { + sTamper->Trigger = (uint32_t)(sTamper->Tamper << 1U); + } + + if(sTamper->NoErase != RTC_TAMPER_ERASE_BACKUP_ENABLE) + { + sTamper->NoErase = 0U; + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + + if((sTamper->Tamper & RTC_TAMPER_1) != 0U) + { + sTamper->NoErase |= RTC_TAMPCR_TAMP1NOERASE; + } +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + + + if((sTamper->Tamper & RTC_TAMPER_2) != 0U) + { + sTamper->NoErase |= RTC_TAMPCR_TAMP2NOERASE; + } +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + + if((sTamper->Tamper & RTC_TAMPER_3) != 0U) + { + sTamper->NoErase |= RTC_TAMPCR_TAMP3NOERASE; + } +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || (STM32L021xx) + */ + } + + if(sTamper->MaskFlag != RTC_TAMPERMASK_FLAG_DISABLE) + { + sTamper->MaskFlag = 0U; + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + if((sTamper->Tamper & RTC_TAMPER_1) != 0U) + { + sTamper->MaskFlag |= RTC_TAMPCR_TAMP1MF; + } +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + + if((sTamper->Tamper & RTC_TAMPER_2) != 0U) + { + sTamper->MaskFlag |= RTC_TAMPCR_TAMP2MF; + } +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + + if((sTamper->Tamper & RTC_TAMPER_3) != 0U) + { + sTamper->MaskFlag |= RTC_TAMPCR_TAMP3MF; + } +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || (STM32L021xx) + */ + } + + /* Configure the RTC_TAMPCR register */ + tmpreg = (uint32_t)((uint32_t)sTamper->Tamper | (uint32_t)sTamper->Interrupt | (uint32_t)sTamper->Trigger | (uint32_t)sTamper->NoErase |\ + (uint32_t)sTamper->MaskFlag | (uint32_t)sTamper->Filter | (uint32_t)sTamper->SamplingFrequency |\ + (uint32_t)sTamper->PrechargeDuration | (uint32_t)sTamper->TamperPullUp | (uint32_t)sTamper->TimeStampOnTamperDetection); + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) + hrtc->Instance->TAMPCR &= (uint32_t)~((uint32_t)sTamper->Tamper | (uint32_t)(sTamper->Tamper << 1U) | RTC_TAMPCR_TAMPTS |\ + RTC_TAMPCR_TAMPFREQ | RTC_TAMPCR_TAMPFLT | RTC_TAMPCR_TAMPPRCH |\ + RTC_TAMPCR_TAMPPUDIS | RTC_TAMPCR_TAMPIE | RTC_TAMPCR_TAMP1IE |\ + RTC_TAMPCR_TAMP2IE | RTC_TAMPCR_TAMP1NOERASE | RTC_TAMPCR_TAMP2NOERASE |\ + RTC_TAMPCR_TAMP1MF | RTC_TAMPCR_TAMP2MF); + +#elif defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + hrtc->Instance->TAMPCR &= (uint32_t)~((uint32_t)sTamper->Tamper | (uint32_t)(sTamper->Tamper << 1U) | RTC_TAMPCR_TAMPTS |\ + RTC_TAMPCR_TAMPFREQ | RTC_TAMPCR_TAMPFLT | RTC_TAMPCR_TAMPPRCH |\ + RTC_TAMPCR_TAMPPUDIS | RTC_TAMPCR_TAMPIE | RTC_TAMPCR_TAMP1IE |\ + RTC_TAMPCR_TAMP2IE | RTC_TAMPCR_TAMP3IE | RTC_TAMPCR_TAMP1NOERASE |\ + RTC_TAMPCR_TAMP2NOERASE | RTC_TAMPCR_TAMP3NOERASE | RTC_TAMPCR_TAMP1MF |\ + RTC_TAMPCR_TAMP2MF | RTC_TAMPCR_TAMP3MF); + +#elif defined (STM32L011xx) || defined (STM32L021xx) + hrtc->Instance->TAMPCR &= (uint32_t)~((uint32_t)sTamper->Tamper | (uint32_t)(sTamper->Tamper << 1U) | RTC_TAMPCR_TAMPTS |\ + RTC_TAMPCR_TAMPFREQ | RTC_TAMPCR_TAMPFLT | RTC_TAMPCR_TAMPPRCH |\ + RTC_TAMPCR_TAMPPUDIS | RTC_TAMPCR_TAMPIE |\ + RTC_TAMPCR_TAMP2IE | RTC_TAMPCR_TAMP3IE |\ + RTC_TAMPCR_TAMP2NOERASE | RTC_TAMPCR_TAMP3NOERASE |\ + RTC_TAMPCR_TAMP2MF | RTC_TAMPCR_TAMP3MF); + +#endif /* (STM32L011xx) || (STM32L021xx) + */ + + hrtc->Instance->TAMPCR |= tmpreg; + + /* RTC Tamper Interrupt Configuration: EXTI configuration */ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_IT(); + + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_ENABLE_RISING_EDGE(); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Deactivate Tamper. + * @param hrtc: RTC handle + * @param Tamper: Selected tamper pin. + * This parameter can be RTC_Tamper_1 and/or RTC_TAMPER_2 for STM32L05x/6x. + * This parameter can be any combination of RTC_TAMPER_1, RTC_TAMPER_2 and RTC_TAMPER_3 for STM32L01x/2x/3x/7x/8x. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_DeactivateTamper(RTC_HandleTypeDef *hrtc, uint32_t Tamper) +{ + assert_param( IS_RTC_TAMPER(Tamper)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the selected Tamper pin */ + hrtc->Instance->TAMPCR &= ((uint32_t)~Tamper); + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + if ((Tamper & RTC_TAMPER_1) != 0U) + { + /* Disable the Tamper1 interrupt */ + hrtc->Instance->TAMPCR &= ((uint32_t)~(RTC_IT_TAMP | RTC_IT_TAMP1)); + } + +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + + if ((Tamper & RTC_TAMPER_2) != 0U) + { + /* Disable the Tamper2 interrupt */ + hrtc->Instance->TAMPCR &= ((uint32_t)~(RTC_IT_TAMP | RTC_IT_TAMP2)); + } + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + + if ((Tamper & RTC_TAMPER_3) != 0U) + { + /* Disable the Tamper3 interrupt */ + hrtc->Instance->TAMPCR &= ((uint32_t)~(RTC_IT_TAMP | RTC_IT_TAMP3)); + } + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || (STM32L021xx) + */ + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Handle TimeStamp interrupt request. + * @param hrtc: RTC handle + * @retval None + */ +void HAL_RTCEx_TamperTimeStampIRQHandler(RTC_HandleTypeDef *hrtc) +{ + /* Get the TimeStamp interrupt source enable status */ + if(__HAL_RTC_TIMESTAMP_GET_IT_SOURCE(hrtc, RTC_IT_TS) != RESET) + { + /* Get the pending status of the TIMESTAMP Interrupt */ + if(__HAL_RTC_TIMESTAMP_GET_FLAG(hrtc, RTC_FLAG_TSF) != RESET) + { + /* TIMESTAMP callback */ + HAL_RTCEx_TimeStampEventCallback(hrtc); + + /* Clear the TIMESTAMP interrupt pending bit */ + __HAL_RTC_TIMESTAMP_CLEAR_FLAG(hrtc, RTC_FLAG_TSF); + } + } + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) + + /* Get the Tamper1 interrupts source enable status */ + if(__HAL_RTC_TAMPER_GET_IT_SOURCE(hrtc, RTC_IT_TAMP | RTC_IT_TAMP1) != RESET) + { + /* Get the pending status of the Tamper1 Interrupt */ + if(__HAL_RTC_TAMPER_GET_FLAG(hrtc, RTC_FLAG_TAMP1F) != RESET) + { + /* Tamper1 callback */ + HAL_RTCEx_Tamper1EventCallback(hrtc); + + /* Clear the Tamper1 interrupt pending bit */ + __HAL_RTC_TAMPER_CLEAR_FLAG(hrtc, RTC_FLAG_TAMP1F); + } + } +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + + /* Get the Tamper2 interrupts source enable status */ + if(__HAL_RTC_TAMPER_GET_IT_SOURCE(hrtc, RTC_IT_TAMP | RTC_IT_TAMP2) != RESET) + { + /* Get the pending status of the Tamper2 Interrupt */ + if(__HAL_RTC_TAMPER_GET_FLAG(hrtc, RTC_FLAG_TAMP2F) != RESET) + { + /* Tamper2 callback */ + HAL_RTCEx_Tamper2EventCallback(hrtc); + + /* Clear the Tamper2 interrupt pending bit */ + __HAL_RTC_TAMPER_CLEAR_FLAG(hrtc, RTC_FLAG_TAMP2F); + } + } + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + + /* Get the Tamper3 interrupts source enable status */ + if(__HAL_RTC_TAMPER_GET_IT_SOURCE(hrtc, RTC_IT_TAMP | RTC_IT_TAMP3) != RESET) + { + /* Get the pending status of the Tamper3 Interrupt */ + if(__HAL_RTC_TAMPER_GET_FLAG(hrtc, RTC_FLAG_TAMP3F) != RESET) + { + /* Tamper3 callback */ + HAL_RTCEx_Tamper3EventCallback(hrtc); + + /* Clear the Tamper3 interrupt pending bit */ + __HAL_RTC_TAMPER_CLEAR_FLAG(hrtc, RTC_FLAG_TAMP3F); + } + } + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || + * (STM32L011xx) || (STM32L021xx) + */ + + /* Clear the EXTI's Flag for RTC TimeStamp and Tamper */ + __HAL_RTC_TAMPER_TIMESTAMP_EXTI_CLEAR_FLAG(); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; +} + +/** + * @brief TimeStamp callback. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTCEx_TimeStampEventCallback(RTC_HandleTypeDef *hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTCEx_TimeStampEventCallback could be implemented in the user file + */ +} + +/** + * @brief Tamper 1 callback. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTCEx_Tamper1EventCallback(RTC_HandleTypeDef *hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTCEx_Tamper1EventCallback could be implemented in the user file + */ +} + +/** + * @brief Tamper 2 callback. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTCEx_Tamper2EventCallback(RTC_HandleTypeDef *hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTCEx_Tamper2EventCallback could be implemented in the user file + */ +} + + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +/** + * @brief Tamper 3 callback. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTCEx_Tamper3EventCallback(RTC_HandleTypeDef *hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTCEx_Tamper3EventCallback could be implemented in the user file + */ +} + +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || (STM32L021xx) + */ + + +/** + * @brief Handle TimeStamp polling request. + * @param hrtc: RTC handle + * @param Timeout: Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_PollForTimeStampEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout) +{ + uint32_t tickstart = HAL_GetTick(); + + while(__HAL_RTC_TIMESTAMP_GET_FLAG(hrtc, RTC_FLAG_TSF) == RESET) + { + if(__HAL_RTC_TIMESTAMP_GET_FLAG(hrtc, RTC_FLAG_TSOVF) != RESET) + { + /* Clear the TIMESTAMP OverRun Flag */ + __HAL_RTC_TIMESTAMP_CLEAR_FLAG(hrtc, RTC_FLAG_TSOVF); + + /* Change TIMESTAMP state */ + hrtc->State = HAL_RTC_STATE_ERROR; + + return HAL_ERROR; + } + + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - tickstart ) > Timeout)) + { + hrtc->State = HAL_RTC_STATE_TIMEOUT; + return HAL_TIMEOUT; + } + } + } + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; +} + +#if defined (STM32L063xx) || defined (STM32L062xx) || defined (STM32L061xx) || \ + defined (STM32L053xx) || defined (STM32L052xx) || defined (STM32L051xx) ||\ + defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) +/** + * @brief Handle Tamper 1 Polling. + * @param hrtc: RTC handle + * @param Timeout: Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_PollForTamper1Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout) +{ + uint32_t tickstart = HAL_GetTick(); + + /* Get the status of the Interrupt */ + while(__HAL_RTC_TAMPER_GET_FLAG(hrtc, RTC_FLAG_TAMP1F)== RESET) + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - tickstart ) > Timeout)) + { + hrtc->State = HAL_RTC_STATE_TIMEOUT; + return HAL_TIMEOUT; + } + } + } + + /* Clear the Tamper Flag */ + __HAL_RTC_TAMPER_CLEAR_FLAG(hrtc,RTC_FLAG_TAMP1F); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; +} +#endif /* (STM32L063xx) || (STM32L062xx) || (STM32L061xx) || + * (STM32L053xx) || (STM32L052xx) || (STM32L051xx) || + * (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || + * (STM32L031xx) || (STM32L041xx) + */ + +/** + * @brief Handle Tamper 2 Polling. + * @param hrtc: RTC handle + * @param Timeout: Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_PollForTamper2Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout) +{ + uint32_t tickstart = HAL_GetTick(); + + /* Get the status of the Interrupt */ + while(__HAL_RTC_TAMPER_GET_FLAG(hrtc, RTC_FLAG_TAMP2F) == RESET) + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - tickstart ) > Timeout)) + { + hrtc->State = HAL_RTC_STATE_TIMEOUT; + return HAL_TIMEOUT; + } + } + } + + /* Clear the Tamper Flag */ + __HAL_RTC_TAMPER_CLEAR_FLAG(hrtc,RTC_FLAG_TAMP2F); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; +} + + +#if defined (STM32L083xx) || defined (STM32L082xx) || defined (STM32L081xx) || \ + defined (STM32L073xx) || defined (STM32L072xx) || defined (STM32L071xx) || \ + defined (STM32L031xx) || defined (STM32L041xx) || defined (STM32L011xx) || defined (STM32L021xx) + +/** + * @brief Handle Tamper 3 Polling. + * @param hrtc: RTC handle + * @param Timeout: Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_PollForTamper3Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout) +{ + uint32_t tickstart = HAL_GetTick(); + + /* Get the status of the Interrupt */ + while(__HAL_RTC_TAMPER_GET_FLAG(hrtc,RTC_FLAG_TAMP3F) == RESET) + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U) || ((HAL_GetTick()-tickstart) > Timeout)) + { + hrtc->State = HAL_RTC_STATE_TIMEOUT; + return HAL_TIMEOUT; + } + } + } + + /* Clear the Tamper Flag */ + __HAL_RTC_TAMPER_CLEAR_FLAG(hrtc,RTC_FLAG_TAMP3F); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; +} +#endif /* (STM32L083xx) || (STM32L082xx) || (STM32L081xx) || + * (STM32L073xx) || (STM32L072xx) || (STM32L071xx) || (STM32L031xx) || (STM32L041xx) || (STM32L011xx) || (STM32L021xx) + */ + +/** + * @} + */ + +/** @addtogroup RTCEx_Exported_Functions_Group2 + * @brief RTC Wake-up functions + * +@verbatim + =============================================================================== + ##### RTC Wake-up functions ##### + =============================================================================== + + [..] This section provides functions allowing to configure Wake-up feature + +@endverbatim + * @{ + */ + +/** + * @brief Set wake up timer. + * @param hrtc: RTC handle + * @param WakeUpCounter: Wake up counter + * @param WakeUpClock: Wake up clock + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetWakeUpTimer(RTC_HandleTypeDef *hrtc, uint32_t WakeUpCounter, uint32_t WakeUpClock) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_WAKEUP_CLOCK(WakeUpClock)); + assert_param(IS_RTC_WAKEUP_COUNTER(WakeUpCounter)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /*Check RTC WUTWF flag is reset only when wake up timer enabled*/ + if((hrtc->Instance->CR & RTC_CR_WUTE) != RESET){ + tickstart = HAL_GetTick(); + + /* Wait till RTC WUTWF flag is reset and if Time out is reached exit */ + while(__HAL_RTC_WAKEUPTIMER_GET_FLAG(hrtc, RTC_FLAG_WUTWF) == SET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + } + + __HAL_RTC_WAKEUPTIMER_DISABLE(hrtc); + + tickstart = HAL_GetTick(); + + /* Wait till RTC WUTWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_WAKEUPTIMER_GET_FLAG(hrtc, RTC_FLAG_WUTWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + /* Clear the Wakeup Timer clock source bits in CR register */ + hrtc->Instance->CR &= (uint32_t)~RTC_CR_WUCKSEL; + + /* Configure the clock source */ + hrtc->Instance->CR |= (uint32_t)WakeUpClock; + + /* Configure the Wakeup Timer counter */ + hrtc->Instance->WUTR = (uint32_t)WakeUpCounter; + + /* Enable the Wakeup Timer */ + __HAL_RTC_WAKEUPTIMER_ENABLE(hrtc); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Set wake up timer with interrupt. + * @param hrtc: RTC handle + * @param WakeUpCounter: Wake up counter + * @param WakeUpClock: Wake up clock + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetWakeUpTimer_IT(RTC_HandleTypeDef *hrtc, uint32_t WakeUpCounter, uint32_t WakeUpClock) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_WAKEUP_CLOCK(WakeUpClock)); + assert_param(IS_RTC_WAKEUP_COUNTER(WakeUpCounter)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /*Check RTC WUTWF flag is reset only when wake up timer enabled*/ + if((hrtc->Instance->CR & RTC_CR_WUTE) != RESET){ + tickstart = HAL_GetTick(); + + /* Wait till RTC WUTWF flag is reset and if Time out is reached exit */ + while(__HAL_RTC_WAKEUPTIMER_GET_FLAG(hrtc, RTC_FLAG_WUTWF) == SET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + } + /* Disable the Wake-Up timer */ + __HAL_RTC_WAKEUPTIMER_DISABLE(hrtc); + + /* Clear flag Wake-Up */ + __HAL_RTC_WAKEUPTIMER_CLEAR_FLAG(hrtc, RTC_FLAG_WUTF); + + tickstart = HAL_GetTick(); + + /* Wait till RTC WUTWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_WAKEUPTIMER_GET_FLAG(hrtc, RTC_FLAG_WUTWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + /* Configure the Wakeup Timer counter */ + hrtc->Instance->WUTR = (uint32_t)WakeUpCounter; + + /* Clear the Wakeup Timer clock source bits in CR register */ + hrtc->Instance->CR &= (uint32_t)~RTC_CR_WUCKSEL; + + /* Configure the clock source */ + hrtc->Instance->CR |= (uint32_t)WakeUpClock; + + /* RTC WakeUpTimer Interrupt Configuration: EXTI configuration */ + __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_IT(); + + __HAL_RTC_WAKEUPTIMER_EXTI_ENABLE_RISING_EDGE(); + + /* Configure the Interrupt in the RTC_CR register */ + __HAL_RTC_WAKEUPTIMER_ENABLE_IT(hrtc,RTC_IT_WUT); + + /* Enable the Wakeup Timer */ + __HAL_RTC_WAKEUPTIMER_ENABLE(hrtc); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Deactivate wake up timer counter. + * @param hrtc: RTC handle + * @retval HAL status + */ +uint32_t HAL_RTCEx_DeactivateWakeUpTimer(RTC_HandleTypeDef *hrtc) +{ + uint32_t tickstart = 0U; + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Disable the Wakeup Timer */ + __HAL_RTC_WAKEUPTIMER_DISABLE(hrtc); + + /* In case of interrupt mode is used, the interrupt source must disabled */ + __HAL_RTC_WAKEUPTIMER_DISABLE_IT(hrtc,RTC_IT_WUT); + + tickstart = HAL_GetTick(); + /* Wait till RTC WUTWF flag is set and if Time out is reached exit */ + while(__HAL_RTC_WAKEUPTIMER_GET_FLAG(hrtc, RTC_FLAG_WUTWF) == RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Get wake up timer counter. + * @param hrtc: RTC handle + * @retval Counter value + */ +uint32_t HAL_RTCEx_GetWakeUpTimer(RTC_HandleTypeDef *hrtc) +{ + /* Get the counter value */ + return ((uint32_t)(hrtc->Instance->WUTR & RTC_WUTR_WUT)); +} + +/** + * @brief Handle Wake Up Timer interrupt request. + * @param hrtc: RTC handle + * @retval None + */ +void HAL_RTCEx_WakeUpTimerIRQHandler(RTC_HandleTypeDef *hrtc) +{ + /* Get the pending status of the WAKEUPTIMER Interrupt */ + if(__HAL_RTC_WAKEUPTIMER_GET_FLAG(hrtc, RTC_FLAG_WUTF) != RESET) + { + /* WAKEUPTIMER callback */ + HAL_RTCEx_WakeUpTimerEventCallback(hrtc); + + /* Clear the WAKEUPTIMER interrupt pending bit */ + __HAL_RTC_WAKEUPTIMER_CLEAR_FLAG(hrtc, RTC_FLAG_WUTF); + } + + + /* Clear the EXTI's line Flag for RTC WakeUpTimer */ + __HAL_RTC_WAKEUPTIMER_EXTI_CLEAR_FLAG(); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; +} + +/** + * @brief Wake Up Timer callback. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTCEx_WakeUpTimerEventCallback(RTC_HandleTypeDef *hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTCEx_WakeUpTimerEventCallback could be implemented in the user file + */ +} + + +/** + * @brief Handle Wake Up Timer Polling. + * @param hrtc: RTC handle + * @param Timeout: Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_PollForWakeUpTimerEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout) +{ + uint32_t tickstart = HAL_GetTick(); + + while(__HAL_RTC_WAKEUPTIMER_GET_FLAG(hrtc, RTC_FLAG_WUTF) == RESET) + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - tickstart ) > Timeout)) + { + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + return HAL_TIMEOUT; + } + } + } + + /* Clear the WAKEUPTIMER Flag */ + __HAL_RTC_WAKEUPTIMER_CLEAR_FLAG(hrtc, RTC_FLAG_WUTF); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; +} + +/** + * @} + */ + + +/** @addtogroup RTCEx_Exported_Functions_Group3 + * @brief Extended Peripheral Control functions + * +@verbatim + =============================================================================== + ##### Extended Peripheral Control functions ##### + =============================================================================== + [..] + This subsection provides functions allowing to + (+) Write a data in a specified RTC Backup data register + (+) Read a data in a specified RTC Backup data register + (+) Set the Coarse calibration parameters. + (+) Deactivate the Coarse calibration parameters + (+) Set the Smooth calibration parameters. + (+) Configure the Synchronization Shift Control Settings. + (+) Configure the Calibration Pinout (RTC_CALIB) Selection (1Hz or 512Hz). + (+) Deactivate the Calibration Pinout (RTC_CALIB) Selection (1Hz or 512Hz). + (+) Enable the RTC reference clock detection. + (+) Disable the RTC reference clock detection. + (+) Enable the Bypass Shadow feature. + (+) Disable the Bypass Shadow feature. + +@endverbatim + * @{ + */ + +/** + * @brief Write a data in a specified RTC Backup data register. + * @param hrtc: RTC handle + * @param BackupRegister: RTC Backup data Register number. + * This parameter can be: RTC_BKP_DRx where x can be from 0 to 19 to + * specify the register. + * @param Data: Data to be written in the specified RTC Backup data register. + * @retval None + */ +void HAL_RTCEx_BKUPWrite(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister, uint32_t Data) +{ + uint32_t tmp = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_BKP(BackupRegister)); + + tmp = (uint32_t)&(hrtc->Instance->BKP0R); + tmp += (BackupRegister * 4U); + + /* Write the specified register */ + *(__IO uint32_t *)tmp = (uint32_t)Data; +} + +/** + * @brief Reads data from the specified RTC Backup data Register. + * @param hrtc: RTC handle + * @param BackupRegister: RTC Backup data Register number. + * This parameter can be: RTC_BKP_DRx where x can be from 0 to 19 to + * specify the register. + * @retval Read value + */ +uint32_t HAL_RTCEx_BKUPRead(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister) +{ + uint32_t tmp = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_BKP(BackupRegister)); + + tmp = (uint32_t)&(hrtc->Instance->BKP0R); + tmp += (BackupRegister * 4U); + + /* Read the specified register */ + return (*(__IO uint32_t *)tmp); +} + +/** + * @brief Set the Smooth calibration parameters. + * @param hrtc: RTC handle + * @param SmoothCalibPeriod: Select the Smooth Calibration Period. + * This parameter can be can be one of the following values : + * @arg RTC_SMOOTHCALIB_PERIOD_32SEC: The smooth calibration period is 32s. + * @arg RTC_SMOOTHCALIB_PERIOD_16SEC: The smooth calibration period is 16s. + * @arg RTC_SMOOTHCALIB_PERIOD_8SEC: The smooth calibration period is 8s. + * @param SmoothCalibPlusPulses: Select to Set or reset the CALP bit. + * This parameter can be one of the following values: + * @arg RTC_SMOOTHCALIB_PLUSPULSES_SET: Add one RTCCLK pulse every 2*11 pulses. + * @arg RTC_SMOOTHCALIB_PLUSPULSES_RESET: No RTCCLK pulses are added. + * @param SmoothCalibMinusPulsesValue: Select the value of CALM[8:0] bits. + * This parameter can be one any value from 0 to 0x000001FF. + * @note To deactivate the smooth calibration, the field SmoothCalibPlusPulses + * must be equal to SMOOTHCALIB_PLUSPULSES_RESET and the field + * SmoothCalibMinusPulsesValue mut be equal to 0. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetSmoothCalib(RTC_HandleTypeDef* hrtc, uint32_t SmoothCalibPeriod, uint32_t SmoothCalibPlusPulses, uint32_t SmoothCalibMinusPulsesValue) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_SMOOTH_CALIB_PERIOD(SmoothCalibPeriod)); + assert_param(IS_RTC_SMOOTH_CALIB_PLUS(SmoothCalibPlusPulses)); + assert_param(IS_RTC_SMOOTH_CALIB_MINUS(SmoothCalibMinusPulsesValue)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* check if a calibration is pending*/ + if((hrtc->Instance->ISR & RTC_ISR_RECALPF) != RESET) + { + tickstart = HAL_GetTick(); + + /* check if a calibration is pending*/ + while((hrtc->Instance->ISR & RTC_ISR_RECALPF) != RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + } + + /* Configure the Smooth calibration settings */ + hrtc->Instance->CALR = (uint32_t)((uint32_t)SmoothCalibPeriod | (uint32_t)SmoothCalibPlusPulses | (uint32_t)SmoothCalibMinusPulsesValue); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Configure the Synchronization Shift Control Settings. + * @note When REFCKON is set, firmware must not write to Shift control register. + * @param hrtc: RTC handle + * @param ShiftAdd1S: Select to add or not 1 second to the time calendar. + * This parameter can be one of the following values : + * @arg RTC_SHIFTADD1S_SET: Add one second to the clock calendar. + * @arg RTC_SHIFTADD1S_RESET: No effect. + * @param ShiftSubFS: Select the number of Second Fractions to substitute. + * This parameter can be one any value from 0 to 0x7FFF. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetSynchroShift(RTC_HandleTypeDef* hrtc, uint32_t ShiftAdd1S, uint32_t ShiftSubFS) +{ + uint32_t tickstart = 0U; + + /* Check the parameters */ + assert_param(IS_RTC_SHIFT_ADD1S(ShiftAdd1S)); + assert_param(IS_RTC_SHIFT_SUBFS(ShiftSubFS)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + tickstart = HAL_GetTick(); + + /* Wait until the shift is completed*/ + while((hrtc->Instance->ISR & RTC_ISR_SHPF) != RESET) + { + if((HAL_GetTick() - tickstart ) > RTC_TIMEOUT_VALUE) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_TIMEOUT; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_TIMEOUT; + } + } + + /* Check if the reference clock detection is disabled */ + if((hrtc->Instance->CR & RTC_CR_REFCKON) == RESET) + { + /* Configure the Shift settings */ + hrtc->Instance->SHIFTR = (uint32_t)(uint32_t)(ShiftSubFS) | (uint32_t)(ShiftAdd1S); + + /* If RTC_CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ + if((hrtc->Instance->CR & RTC_CR_BYPSHAD) == RESET) + { + if(HAL_RTC_WaitForSynchro(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + } + } + else + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Configure the Calibration Pinout (RTC_CALIB) Selection (1Hz or 512Hz). + * @param hrtc: RTC handle + * @param CalibOutput : Select the Calibration output Selection . + * This parameter can be one of the following values: + * @arg RTC_CALIBOUTPUT_512HZ: A signal has a regular waveform at 512Hz. + * @arg RTC_CALIBOUTPUT_1HZ: A signal has a regular waveform at 1Hz. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetCalibrationOutPut(RTC_HandleTypeDef* hrtc, uint32_t CalibOutput) +{ + /* Check the parameters */ + assert_param(IS_RTC_CALIB_OUTPUT(CalibOutput)); + + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Clear flags before config */ + hrtc->Instance->CR &= (uint32_t)~RTC_CR_COSEL; + + /* Configure the RTC_CR register */ + hrtc->Instance->CR |= (uint32_t)CalibOutput; + + __HAL_RTC_CALIBRATION_OUTPUT_ENABLE(hrtc); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Deactivate the Calibration Pinout (RTC_CALIB) Selection (1Hz or 512Hz). + * @param hrtc: RTC handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_DeactivateCalibrationOutPut(RTC_HandleTypeDef* hrtc) +{ + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + __HAL_RTC_CALIBRATION_OUTPUT_DISABLE(hrtc); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Enable the RTC reference clock detection. + * @param hrtc: RTC handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_SetRefClock(RTC_HandleTypeDef* hrtc) +{ + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Set Initialization mode */ + if(RTC_EnterInitMode(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state*/ + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + else + { + __HAL_RTC_CLOCKREF_DETECTION_ENABLE(hrtc); + + /* Exit Initialization mode */ + hrtc->Instance->ISR &= (uint32_t)~RTC_ISR_INIT; + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Disable the RTC reference clock detection. + * @param hrtc: RTC handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_DeactivateRefClock(RTC_HandleTypeDef* hrtc) +{ + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Set Initialization mode */ + if(RTC_EnterInitMode(hrtc) != HAL_OK) + { + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Set RTC state*/ + hrtc->State = HAL_RTC_STATE_ERROR; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_ERROR; + } + else + { + __HAL_RTC_CLOCKREF_DETECTION_DISABLE(hrtc); + + /* Exit Initialization mode */ + hrtc->Instance->ISR &= (uint32_t)~RTC_ISR_INIT; + } + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Enable the Bypass Shadow feature. + * @param hrtc: RTC handle + * @note When the Bypass Shadow is enabled the calendar value are taken + * directly from the Calendar counter. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_EnableBypassShadow(RTC_HandleTypeDef* hrtc) +{ + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Set the BYPSHAD bit */ + hrtc->Instance->CR |= (uint8_t)RTC_CR_BYPSHAD; + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @brief Disable the Bypass Shadow feature. + * @param hrtc: RTC handle + * @note When the Bypass Shadow is enabled the calendar value are taken + * directly from the Calendar counter. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_DisableBypassShadow(RTC_HandleTypeDef* hrtc) +{ + /* Process Locked */ + __HAL_LOCK(hrtc); + + hrtc->State = HAL_RTC_STATE_BUSY; + + /* Disable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); + + /* Reset the BYPSHAD bit */ + hrtc->Instance->CR &= ((uint8_t)~RTC_CR_BYPSHAD); + + /* Enable the write protection for RTC registers */ + __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(hrtc); + + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup RTCEx_Exported_Functions_Group4 + * @brief Extended features functions + * +@verbatim + =============================================================================== + ##### Extended features functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) RTC Alram B callback + (+) RTC Poll for Alarm B request + +@endverbatim + * @{ + */ + +/** + * @brief Alarm B callback. + * @param hrtc: RTC handle + * @retval None + */ +__weak void HAL_RTCEx_AlarmBEventCallback(RTC_HandleTypeDef *hrtc) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(hrtc); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_RTCEx_AlarmBEventCallback could be implemented in the user file + */ +} + +/** + * @brief Handle Alarm B Polling request. + * @param hrtc: RTC handle + * @param Timeout: Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RTCEx_PollForAlarmBEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout) +{ + uint32_t tickstart = HAL_GetTick(); + + while(__HAL_RTC_ALARM_GET_FLAG(hrtc, RTC_FLAG_ALRBF) == RESET) + { + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0U)||((HAL_GetTick() - tickstart ) > Timeout)) + { + hrtc->State = HAL_RTC_STATE_TIMEOUT; + return HAL_TIMEOUT; + } + } + } + + /* Clear the Alarm Flag */ + __HAL_RTC_ALARM_CLEAR_FLAG(hrtc, RTC_FLAG_ALRBF); + + /* Change RTC state */ + hrtc->State = HAL_RTC_STATE_READY; + + return HAL_OK; +} + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_RTC_MODULE_ENABLED */ +/** + * @} + */ + + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c new file mode 100644 index 0000000..ab2c644 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c @@ -0,0 +1,5112 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_tim.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief TIM HAL module driver. + * @brief This file provides firmware functions to manage the following + * functionalities of the Timer (TIM) peripheral: + * + Timer Base Initialization + * + Timer Base Start + * + Timer Base Start Interruption + * + Timer Base Start DMA + * + Timer Output Compare/PWM Initialization + * + Timer Output Compare/PWM Channel Configuration + * + Timer Output Compare/PWM Start + * + Timer Output Compare/PWM Start Interruption + * + Timer Output Compare/PWM Start DMA + * + Timer Input Capture Initialization + * + Timer Input Capture Channel Configuration + * + Timer Input Capture Start + * + Timer Input Capture Start Interruption + * + Timer Input Capture Start DMA + * + Timer One Pulse Initialization + * + Timer One Pulse Channel Configuration + * + Timer One Pulse Start + * + Timer Encoder Interface Initialization + * + Timer Encoder Interface Start + * + Timer Encoder Interface Start Interruption + * + Timer Encoder Interface Start DMA + * + Timer OCRef clear configuration + * + Timer External Clock configuration + * + Timer Complementary signal bread and dead time configuration + * + Timer Master and Slave synchronization configuration + @verbatim + ============================================================================== + ##### TIMER Generic features ##### + ============================================================================== + [..] The Timer features include: + (#) 16-bit up, down, up/down auto-reload counter. + (#) 16-bit programmable prescaler allowing dividing (also on the fly) the counter clock + frequency either by any factor between 1 and 65536. + (#) Up to 4 independent channels for: + (++) Input Capture + (++) Output Compare + (++) PWM generation (Edge and Center-aligned Mode) + (++) One-pulse mode output + (#) Synchronization circuit to control the timer with external signals and to interconnect + several timers together. + (#) Supports incremental (quadrature) encoder and hall-sensor circuitry for positioning + purposes + + ##### How to use this driver ##### +================================================================================ + [..] + (#) Initialize the TIM low level resources by implementing the following functions + depending from feature used : + (++) Time Base : HAL_TIM_Base_MspInit() + (++) Input Capture : HAL_TIM_IC_MspInit() + (++) Output Compare : HAL_TIM_OC_MspInit() + (++) PWM generation : HAL_TIM_PWM_MspInit() + (++) One-pulse mode output : HAL_TIM_OnePulse_MspInit() + (++) Encoder mode output : HAL_TIM_Encoder_MspInit() + + (#) Initialize the TIM low level resources : + (##) Enable the TIM interface clock using __HAL_RCC_TIMx_CLK_ENABLE(); + (##) TIM pins configuration + (+++) Enable the clock for the TIM GPIOs using the following function: + __HAL_RCC_GPIOx_CLK_ENABLE(); + (+++) Configure these TIM pins in Alternate function mode using HAL_GPIO_Init(); + + (#) The external Clock can be configured, if needed (the default clock is the internal clock from the APBx), + using the following function: + HAL_TIM_ConfigClockSource, the clock configuration should be done before any start function. + + (#) Configure the TIM in the desired functioning mode using one of the + initialization function of this driver: + (++) HAL_TIM_Base_Init: to use the Timer to generate a simple time base + (++) HAL_TIM_OC_Init and HAL_TIM_OC_ConfigChannel: to use the Timer to generate an + Output Compare signal. + (++) HAL_TIM_PWM_Init and HAL_TIM_PWM_ConfigChannel: to use the Timer to generate a + PWM signal. + (++) HAL_TIM_IC_Init and HAL_TIM_IC_ConfigChannel: to use the Timer to measure an + external signal. + (++) HAL_TIM_OnePulse_Init and HAL_TIM_OnePulse_ConfigChannel: to use the Timer in One Pulse Mode. + (++) HAL_TIM_Encoder_Init: to use the Timer Encoder Interface. + + (#) Activate the TIM peripheral using one of the start functions: + HAL_TIM_Base_Start(), HAL_TIM_Base_Start_DMA(), HAL_TIM_Base_Start_IT(), + HAL_TIM_OC_Start(), HAL_TIM_OC_Start_DMA(), HAL_TIM_OC_Start_IT(), + HAL_TIM_IC_Start(), HAL_TIM_IC_Start_DMA(), HAL_TIM_IC_Start_IT(), + HAL_TIM_PWM_Start(), HAL_TIM_PWM_Start_DMA(), HAL_TIM_PWM_Start_IT(), + HAL_TIM_OnePulse_Start(), HAL_TIM_OnePulse_Start_IT(), + HAL_TIM_Encoder_Start(), HAL_TIM_Encoder_Start_DMA() or HAL_TIM_Encoder_Start_IT() + + (#) The DMA Burst is managed with the two following functions: + HAL_TIM_DMABurst_WriteStart + HAL_TIM_DMABurst_ReadStart + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +#ifdef HAL_TIM_MODULE_ENABLED + +/** @addtogroup TIM + * @brief TIM HAL module driver + * @{ + */ + +/** @addtogroup TIM_Private + * @{ + */ +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +static void TIM_Base_SetConfig(TIM_TypeDef *TIMx, TIM_Base_InitTypeDef *Structure); +static void TIM_OC1_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config); +static void TIM_OC2_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config); +static void TIM_OC3_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config); +static void TIM_OC4_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config); +static void TIM_TI1_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, uint32_t TIM_ICFilter); +static void TIM_TI1_ConfigInputStage(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICFilter); +static void TIM_TI2_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, uint32_t TIM_ICFilter); +static void TIM_TI2_ConfigInputStage(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICFilter); +static void TIM_TI3_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, uint32_t TIM_ICFilter); +static void TIM_TI4_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, uint32_t TIM_ICFilter); +static void TIM_ETR_SetConfig(TIM_TypeDef* TIMx, uint32_t TIM_ExtTRGPrescaler, uint32_t TIM_ExtTRGPolarity, uint32_t ExtTRGFilter); +static void TIM_ITRx_SetConfig(TIM_TypeDef* TIMx, uint16_t InputTriggerSource); +static void TIM_CCxChannelCmd(TIM_TypeDef* TIMx, uint32_t Channel, uint32_t ChannelState); +static void TIM_DMAPeriodElapsedCplt(DMA_HandleTypeDef *hdma); +static void TIM_DMATriggerCplt(DMA_HandleTypeDef *hdma); +static void TIM_SlaveTimer_SetConfig(TIM_HandleTypeDef *htim,TIM_SlaveConfigTypeDef * sSlaveConfig); +/** + * @} + */ + +/*******************************************************************************/ +/* Exported functions ---------------------------------------------------------*/ +/*******************************************************************************/ + +/** @addtogroup TIM_Exported_Functions + * @{ + */ + +/** @addtogroup TIM_Exported_Functions_Group1 + * @brief Time Base functions + * +@verbatim + ============================================================================== + ##### Timer Base functions ##### + ============================================================================== + [..] + This section provides functions allowing to: + (+) Initialize and configure the TIM base. + (+) De-initialize the TIM base. + (+) Start the Timer Base. + (+) Stop the Timer Base. + (+) Start the Timer Base and enable interrupt. + (+) Stop the Timer Base and disable interrupt. + (+) Start the Timer Base and enable DMA transfer. + (+) Stop the Timer Base and disable DMA transfer. + +@endverbatim + * @{ + */ +/** + * @brief Initializes the TIM Time base Unit according to the specified + * parameters in the TIM_HandleTypeDef and create the associated handle. + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *htim) +{ + /* Check the TIM handle allocation */ + if(htim == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); + assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); + assert_param(IS_TIM_PERIOD(htim->Init.Period)); + assert_param(IS_TIM_PRESCALER(htim->Init.Prescaler)); + + if(htim->State == HAL_TIM_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + htim->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, NVIC */ + HAL_TIM_Base_MspInit(htim); + } + + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Set the Time Base configuration */ + TIM_Base_SetConfig(htim->Instance, &htim->Init); + + /* Initialize the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + return HAL_OK; +} + +/** + * @brief DeInitializes the TIM Base peripheral + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_DeInit(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Disable the TIM Peripheral Clock */ + __HAL_TIM_DISABLE(htim); + + /* DeInit the low level hardware: GPIO, CLOCK, NVIC */ + HAL_TIM_Base_MspDeInit(htim); + + /* Change TIM state */ + htim->State = HAL_TIM_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM Base MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_Base_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitializes TIM Base MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_Base_MspDeInit could be implemented in the user file + */ +} + +/** + * @brief Starts the TIM Base generation. + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Start(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Change the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Base generation. + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Stop(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Base generation in interrupt mode. + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + /* Enable the TIM Update interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_UPDATE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Base generation in interrupt mode. + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + /* Disable the TIM Update interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_UPDATE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Base generation in DMA mode. + * @param htim : TIM handle + * @param pData: The source Buffer address. + * @param Length: The length of data to be transferred from memory to peripheral. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Start_DMA(TIM_HandleTypeDef *htim, uint32_t *pData, uint16_t Length) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMA_INSTANCE(htim->Instance)); + + if((htim->State == HAL_TIM_STATE_BUSY)) + { + return HAL_BUSY; + } + else if((htim->State == HAL_TIM_STATE_READY)) + { + if((pData == 0U ) && (Length > 0U)) + { + return HAL_ERROR; + } + else + { + htim->State = HAL_TIM_STATE_BUSY; + } + } + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_UPDATE]->XferCpltCallback = TIM_DMAPeriodElapsedCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_UPDATE]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_UPDATE], (uint32_t)pData, (uint32_t)&htim->Instance->ARR, Length); + + /* Enable the TIM Update DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_UPDATE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Base generation in DMA mode. + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Stop_DMA(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMA_INSTANCE(htim->Instance)); + + /* Disable the TIM Update DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_UPDATE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @} + */ + + +/** @addtogroup TIM_Exported_Functions_Group2 + * @brief Time Output Compare functions + * +@verbatim + ============================================================================== + ##### Timer Output Compare functions ##### + ============================================================================== + [..] + This section provides functions allowing to: + (+) Initialize and configure the TIM Output Compare. + (+) De-initialize the TIM Output Compare. + (+) Start the Timer Output Compare. + (+) Stop the Timer Output Compare. + (+) Start the Timer Output Compare and enable interrupt. + (+) Stop the Timer Output Compare and disable interrupt. + (+) Start the Timer Output Compare and enable DMA transfer. + (+) Stop the Timer Output Compare and disable DMA transfer. + +@endverbatim + * @{ + */ +/** + * @brief Initializes the TIM Output Compare according to the specified + * parameters in the TIM_HandleTypeDef and create the associated handle. + * @param htim: TIM Output Compare handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef* htim) +{ + /* Check the TIM handle allocation */ + if(htim == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); + assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); + assert_param(IS_TIM_PERIOD(htim->Init.Period)); + assert_param(IS_TIM_PRESCALER(htim->Init.Prescaler)); + + if(htim->State == HAL_TIM_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + htim->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA*/ + HAL_TIM_OC_MspInit(htim); + } + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Init the base time for the Output Compare */ + TIM_Base_SetConfig(htim->Instance, &htim->Init); + + /* Initialize the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + return HAL_OK; +} + +/** + * @brief DeInitializes the TIM peripheral + * @param htim: TIM Output Compare handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_DeInit(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Disable the TIM Peripheral Clock */ + __HAL_TIM_DISABLE(htim); + + /* DeInit the low level hardware: GPIO, CLOCK, NVIC and DMA */ + HAL_TIM_OC_MspDeInit(htim); + + /* Change TIM state */ + htim->State = HAL_TIM_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM Output Compare MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_OC_MspInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_OC_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitializes TIM Output Compare MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_OC_MspDeInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_OC_MspDeInit could be implemented in the user file + */ +} + +/** + * @brief Starts the TIM Output Compare signal generation. + * @param htim : TIM handle + * @param Channel: TIM Channel to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_Start(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + /* Enable the Output compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Output Compare signal generation. + * @param htim : TIM handle + * @param Channel: TIM Channel to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_Stop(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + /* Disable the Output compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Output Compare signal generation in interrupt mode. + * @param htim : TIM handle + * @param Channel: TIM Channel to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Enable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Enable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Enable the TIM Capture/Compare 3 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Enable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC4); + } + break; + + default: + break; + } + + /* Enable the Output compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Output Compare signal generation in interrupt mode. + * @param htim : TIM handle + * @param Channel: TIM Channel to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Disable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Disable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Disable the TIM Capture/Compare 3 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Disable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC4); + } + break; + + default: + break; + } + + /* Disable the Output compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Output Compare signal generation in DMA mode. + * @param htim : TIM handle + * @param Channel: TIM Channel to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @param pData: The source Buffer address. + * @param Length: The length of data to be transferred from memory to TIM peripheral + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + if((htim->State == HAL_TIM_STATE_BUSY)) + { + return HAL_BUSY; + } + else if((htim->State == HAL_TIM_STATE_READY)) + { + if(((uint32_t)pData == 0U ) && (Length > 0U)) + { + return HAL_ERROR; + } + else + { + htim->State = HAL_TIM_STATE_BUSY; + } + } + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)pData, (uint32_t)&htim->Instance->CCR1, Length); + + /* Enable the TIM Capture/Compare 1 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)pData, (uint32_t)&htim->Instance->CCR2, Length); + + /* Enable the TIM Capture/Compare 2 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC3], (uint32_t)pData, (uint32_t)&htim->Instance->CCR3,Length); + + /* Enable the TIM Capture/Compare 3 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC4], (uint32_t)pData, (uint32_t)&htim->Instance->CCR4, Length); + + /* Enable the TIM Capture/Compare 4 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC4); + } + break; + + default: + break; + } + + /* Enable the Output compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Output Compare signal generation in DMA mode. + * @param htim : TIM handle + * @param Channel: TIM Channel to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Disable the TIM Capture/Compare 1 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Disable the TIM Capture/Compare 2 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Disable the TIM Capture/Compare 3 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Disable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC4); + } + break; + + default: + break; + } + + /* Disable the Output compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group3 + * @brief Time PWM functions + * +@verbatim + ============================================================================== + ##### Timer PWM functions ##### + ============================================================================== + [..] + This section provides functions allowing to: + (+) Initialize and configure the TIM OPWM. + (+) De-initialize the TIM PWM. + (+) Start the Timer PWM. + (+) Stop the Timer PWM. + (+) Start the Timer PWM and enable interrupt. + (+) Stop the Timer PWM and disable interrupt. + (+) Start the Timer PWM and enable DMA transfer. + (+) Stop the Timer PWM and disable DMA transfer. + +@endverbatim + * @{ + */ +/** + * @brief Initializes the TIM PWM Time Base according to the specified + * parameters in the TIM_HandleTypeDef and create the associated handle. + * @param htim : TIM handle + * @retval HAL status + */ + + +HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *htim) +{ + /* Check the TIM handle allocation */ + if(htim == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); + assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); + assert_param(IS_TIM_PERIOD(htim->Init.Period)); + assert_param(IS_TIM_PRESCALER(htim->Init.Prescaler)); + + if(htim->State == HAL_TIM_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + htim->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ + HAL_TIM_PWM_MspInit(htim); + } + + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Init the base time for the PWM */ + TIM_Base_SetConfig(htim->Instance, &htim->Init); + + /* Initialize the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + return HAL_OK; +} + +/** + * @brief DeInitializes the TIM peripheral + * @param htim : TIM handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_DeInit(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Disable the TIM Peripheral Clock */ + __HAL_TIM_DISABLE(htim); + + /* DeInit the low level hardware: GPIO, CLOCK, NVIC and DMA */ + HAL_TIM_PWM_MspDeInit(htim); + + /* Change TIM state */ + htim->State = HAL_TIM_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM PWM MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_PWM_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitializes TIM PWM MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_PWM_MspDeInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_PWM_MspDeInit could be implemented in the user file + */ +} + +/** + * @brief Starts the PWM signal generation. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + /* Enable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the PWM signal generation. + * @param htim : TIM handle + * @param Channel: TIM Channels to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_Stop(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + /* Disable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the PWM signal generation in interrupt mode. + * @param htim : TIM handle + * @param Channel: TIM Channel to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Enable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Enable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Enable the TIM Capture/Compare 3 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Enable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC4); + } + break; + + default: + break; + } + + /* Enable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the PWM signal generation in interrupt mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_Stop_IT (TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Disable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Disable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Disable the TIM Capture/Compare 3 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Disable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC4); + } + break; + + default: + break; + } + + /* Disable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM PWM signal generation in DMA mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @param pData: The source Buffer address. This buffer contains the values + * which will be loaded inside the capture/compare registers. + * @param Length: The length of data to be transferred from memory to TIM peripheral + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + if((htim->State == HAL_TIM_STATE_BUSY)) + { + return HAL_BUSY; + } + else if((htim->State == HAL_TIM_STATE_READY)) + { + if(((uint32_t)pData == 0U ) && (Length > 0U)) + { + return HAL_ERROR; + } + else + { + htim->State = HAL_TIM_STATE_BUSY; + } + } + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)pData, (uint32_t)&htim->Instance->CCR1, Length); + + /* Enable the TIM Capture/Compare 1 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)pData, (uint32_t)&htim->Instance->CCR2, Length); + + /* Enable the TIM Capture/Compare 2 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC3], (uint32_t)pData, (uint32_t)&htim->Instance->CCR3,Length); + + /* Enable the TIM Output Capture/Compare 3 request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC4], (uint32_t)pData, (uint32_t)&htim->Instance->CCR4, Length); + + /* Enable the TIM Capture/Compare 4 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC4); + } + break; + + default: + break; + } + + /* Enable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM PWM signal generation in DMA mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Disable the TIM Capture/Compare 1 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Disable the TIM Capture/Compare 2 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Disable the TIM Capture/Compare 3 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Disable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC4); + } + break; + + default: + break; + } + + /* Disable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group4 + * @brief Time Input Capture functions + * +@verbatim + ============================================================================== + ##### Timer Input Capture functions ##### + ============================================================================== + [..] + This section provides functions allowing to: + (+) Initialize and configure the TIM Input Capture. + (+) De-initialize the TIM Input Capture. + (+) Start the Timer Input Capture. + (+) Stop the Timer Input Capture. + (+) Start the Timer Input Capture and enable interrupt. + (+) Stop the Timer Input Capture and disable interrupt. + (+) Start the Timer Input Capture and enable DMA transfer. + (+) Stop the Timer Input Capture and disable DMA transfer. + +@endverbatim + * @{ + */ +/** + * @brief Initializes the TIM Input Capture Time base according to the specified + * parameters in the TIM_HandleTypeDef and create the associated handle. + * @param htim: TIM Input Capture handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_Init(TIM_HandleTypeDef *htim) +{ + /* Check the TIM handle allocation */ + if(htim == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); + assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); + assert_param(IS_TIM_PERIOD(htim->Init.Period)); + assert_param(IS_TIM_PRESCALER(htim->Init.Prescaler)); + + if(htim->State == HAL_TIM_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + htim->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ + HAL_TIM_IC_MspInit(htim); + } + + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Init the base time for the input capture */ + TIM_Base_SetConfig(htim->Instance, &htim->Init); + + /* Initialize the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + return HAL_OK; +} + +/** + * @brief DeInitializes the TIM peripheral + * @param htim: TIM Input Capture handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_DeInit(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Disable the TIM Peripheral Clock */ + __HAL_TIM_DISABLE(htim); + + /* DeInit the low level hardware: GPIO, CLOCK, NVIC and DMA */ + HAL_TIM_IC_MspDeInit(htim); + + /* Change TIM state */ + htim->State = HAL_TIM_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM INput Capture MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_IC_MspInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_IC_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitializes TIM Input Capture MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_IC_MspDeInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_IC_MspDeInit could be implemented in the user file + */ +} +/** + * @brief Starts the TIM Input Capture measurement. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_Start (TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + /* Enable the Input Capture channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Input Capture measurement. + * @param htim : TIM handle + * @param Channel: TIM Channels to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_Stop(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + /* Disable the Input Capture channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Input Capture measurement in interrupt mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_Start_IT (TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Enable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Enable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Enable the TIM Capture/Compare 3 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Enable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC4); + } + break; + + default: + break; + } + /* Enable the Input Capture channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Input Capture measurement in interrupt mode. + * @param htim : TIM handle + * @param Channel : TIM Channels to be disabled + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Disable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Disable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Disable the TIM Capture/Compare 3 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Disable the TIM Capture/Compare 4 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC4); + } + break; + + default: + break; + } + + /* Disable the Input Capture channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Input Capture measurement on in DMA mode. + * @param htim : TIM handle + * @param Channel : TIM Channels to be enabled + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @param pData: The destination Buffer address. + * @param Length: The length of data to be transferred from TIM peripheral to memory. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + assert_param(IS_TIM_DMA_CC_INSTANCE(htim->Instance)); + + if((htim->State == HAL_TIM_STATE_BUSY)) + { + return HAL_BUSY; + } + else if((htim->State == HAL_TIM_STATE_READY)) + { + if((pData == 0U ) && (Length > 0U)) + { + return HAL_ERROR; + } + else + { + htim->State = HAL_TIM_STATE_BUSY; + } + } + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)&htim->Instance->CCR1, (uint32_t)pData, Length); + + /* Enable the TIM Capture/Compare 1 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)&htim->Instance->CCR2, (uint32_t)pData, Length); + + /* Enable the TIM Capture/Compare 2 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC3], (uint32_t)&htim->Instance->CCR3, (uint32_t)pData, Length); + + /* Enable the TIM Capture/Compare 3 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC4], (uint32_t)&htim->Instance->CCR4, (uint32_t)pData, Length); + + /* Enable the TIM Capture/Compare 4 DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC4); + } + break; + + default: + break; + } + + /* Enable the Input Capture channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Input Capture measurement on in DMA mode. + * @param htim : TIM handle + * @param Channel : TIM Channels to be disabled + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); + assert_param(IS_TIM_DMA_CC_INSTANCE(htim->Instance)); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Disable the TIM Capture/Compare 1 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1); + } + break; + + case TIM_CHANNEL_2: + { + /* Disable the TIM Capture/Compare 2 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC2); + } + break; + + case TIM_CHANNEL_3: + { + /* Disable the TIM Capture/Compare 3 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC3); + } + break; + + case TIM_CHANNEL_4: + { + /* Disable the TIM Capture/Compare 4 DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC4); + } + break; + + default: + break; + } + + /* Disable the Input Capture channel */ + TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group5 + * @brief Time One Pulse functions + * +@verbatim + ============================================================================== + ##### Timer One Pulse functions ##### + ============================================================================== + [..] + This section provides functions allowing to: + (+) Initialize and configure the TIM One Pulse. + (+) De-initialize the TIM One Pulse. + (+) Start the Timer One Pulse. + (+) Stop the Timer One Pulse. + (+) Start the Timer One Pulse and enable interrupt. + (+) Stop the Timer One Pulse and disable interrupt. + (+) Start the Timer One Pulse and enable DMA transfer. + (+) Stop the Timer One Pulse and disable DMA transfer. + +@endverbatim + * @{ + */ +/** + * @brief Initializes the TIM One Pulse Time Base according to the specified + * parameters in the TIM_HandleTypeDef and create the associated handle. + * @param htim: TIM OnePulse handle + * @param OnePulseMode: Select the One pulse mode. + * This parameter can be one of the following values: + * @arg TIM_OPMODE_SINGLE: Only one pulse will be generated. + * @arg TIM_OPMODE_REPETITIVE: Repetitive pulses will be generated. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Init(TIM_HandleTypeDef *htim, uint32_t OnePulseMode) +{ + /* Check the TIM handle allocation */ + if(htim == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); + assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); + assert_param(IS_TIM_OPM_MODE(OnePulseMode)); + assert_param(IS_TIM_PERIOD(htim->Init.Period)); + assert_param(IS_TIM_PRESCALER(htim->Init.Prescaler)); + + if(htim->State == HAL_TIM_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + htim->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ + HAL_TIM_OnePulse_MspInit(htim); + } + + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Configure the Time base in the One Pulse Mode */ + TIM_Base_SetConfig(htim->Instance, &htim->Init); + + /* Reset the OPM Bit */ + htim->Instance->CR1 &= ~TIM_CR1_OPM; + + /* Configure the OPM Mode */ + htim->Instance->CR1 |= OnePulseMode; + + /* Initialize the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + return HAL_OK; +} + +/** + * @brief DeInitializes the TIM One Pulse + * @param htim: TIM One Pulse handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_DeInit(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Disable the TIM Peripheral Clock */ + __HAL_TIM_DISABLE(htim); + + /* DeInit the low level hardware: GPIO, CLOCK, NVIC */ + HAL_TIM_OnePulse_MspDeInit(htim); + + /* Change TIM state */ + htim->State = HAL_TIM_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM One Pulse MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_OnePulse_MspInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_OnePulse_MspInit could be implemented in the user file + */ +} + +/** + * @brief DeInitializes TIM One Pulse MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_OnePulse_MspDeInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_OnePulse_MspDeInit could be implemented in the user file + */ +} + +/** + * @brief Starts the TIM One Pulse signal generation. + * @param htim : TIM handle + * @param OutputChannel : TIM Channels to be enabled. + * This parameter is not used since both channels TIM_CHANNEL_1 and + * TIM_CHANNEL_2 are automatically selected. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Start(TIM_HandleTypeDef *htim, uint32_t OutputChannel) +{ + /* Enable the Capture compare and the Input Capture channels + (in the OPM Mode the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2) + if TIM_CHANNEL_1 is used as output, the TIM_CHANNEL_2 will be used as input and + if TIM_CHANNEL_1 is used as input, the TIM_CHANNEL_2 will be used as output + in all combinations, the TIM_CHANNEL_1 and TIM_CHANNEL_2 should be enabled together + + No need to enable the counter, it's enabled automatically by hardware + (the counter starts in response to a stimulus and generate a pulse */ + + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM One Pulse signal generation. + * @param htim : TIM handle + * @param OutputChannel : TIM Channels to be disable. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Stop(TIM_HandleTypeDef *htim, uint32_t OutputChannel) +{ + /* Disable the Capture compare and the Input Capture channels + (in the OPM Mode the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2) + if TIM_CHANNEL_1 is used as output, the TIM_CHANNEL_2 will be used as input and + if TIM_CHANNEL_1 is used as input, the TIM_CHANNEL_2 will be used as output + in all combinations, the TIM_CHANNEL_1 and TIM_CHANNEL_2 should be disabled together */ + + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM One Pulse signal generation in interrupt mode. + * @param htim : TIM handle + * @param OutputChannel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Start_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel) +{ + /* Enable the Capture compare and the Input Capture channels + (in the OPM Mode the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2) + if TIM_CHANNEL_1 is used as output, the TIM_CHANNEL_2 will be used as input and + if TIM_CHANNEL_1 is used as input, the TIM_CHANNEL_2 will be used as output + in all combinations, the TIM_CHANNEL_1 and TIM_CHANNEL_2 should be enabled together + + No need to enable the counter, it's enabled automatically by hardware + (the counter starts in response to a stimulus and generate a pulse */ + + /* Enable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1); + + /* Enable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2); + + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM One Pulse signal generation in interrupt mode. + * @param htim : TIM handle + * @param OutputChannel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_Stop_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel) +{ + /* Disable the TIM Capture/Compare 1 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1); + + /* Disable the TIM Capture/Compare 2 interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2); + + /* Disable the Capture compare and the Input Capture channels + (in the OPM Mode the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2) + if TIM_CHANNEL_1 is used as output, the TIM_CHANNEL_2 will be used as input and + if TIM_CHANNEL_1 is used as input, the TIM_CHANNEL_2 will be used as output + in all combinations, the TIM_CHANNEL_1 and TIM_CHANNEL_2 should be disabled together */ + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group6 + * @brief Time Encoder functions + * +@verbatim + ============================================================================== + ##### Timer Encoder functions ##### + ============================================================================== + [..] + This section provides functions allowing to: + (+) Initialize and configure the TIM Encoder. + (+) De-initialize the TIM Encoder. + (+) Start the Timer Encoder. + (+) Stop the Timer Encoder. + (+) Start the Timer Encoder and enable interrupt. + (+) Stop the Timer Encoder and disable interrupt. + (+) Start the Timer Encoder and enable DMA transfer. + (+) Stop the Timer Encoder and disable DMA transfer. + +@endverbatim + * @{ + */ +/** + * @brief Initializes the TIM Encoder Interface and create the associated handle. + * @param htim: TIM Encoder Interface handle + * @param sConfig: TIM Encoder Interface configuration structure + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *htim, TIM_Encoder_InitTypeDef* sConfig) +{ + uint32_t tmpsmcr = 0U; + uint32_t tmpccmr1 = 0U; + uint32_t tmpccer = 0U; + + /* Check the TIM handle allocation */ + if(htim == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + assert_param(IS_TIM_ENCODER_MODE(sConfig->EncoderMode)); + assert_param(IS_TIM_IC_SELECTION(sConfig->IC1Selection)); + assert_param(IS_TIM_IC_SELECTION(sConfig->IC2Selection)); + assert_param(IS_TIM_IC_POLARITY(sConfig->IC1Polarity)); + assert_param(IS_TIM_IC_POLARITY(sConfig->IC2Polarity)); + assert_param(IS_TIM_IC_PRESCALER(sConfig->IC1Prescaler)); + assert_param(IS_TIM_IC_PRESCALER(sConfig->IC2Prescaler)); + assert_param(IS_TIM_IC_FILTER(sConfig->IC1Filter)); + assert_param(IS_TIM_IC_FILTER(sConfig->IC2Filter)); + assert_param(IS_TIM_PERIOD(htim->Init.Period)); + assert_param(IS_TIM_PRESCALER(htim->Init.Prescaler)); + + if(htim->State == HAL_TIM_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + htim->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ + HAL_TIM_Encoder_MspInit(htim); + } + + /* Set the TIM state */ + htim->State= HAL_TIM_STATE_BUSY; + + /* Reset the SMS bits */ + htim->Instance->SMCR &= ~TIM_SMCR_SMS; + + /* Configure the Time base in the Encoder Mode */ + TIM_Base_SetConfig(htim->Instance, &htim->Init); + + /* Get the TIMx SMCR register value */ + tmpsmcr = htim->Instance->SMCR; + + /* Get the TIMx CCMR1 register value */ + tmpccmr1 = htim->Instance->CCMR1; + + /* Get the TIMx CCER register value */ + tmpccer = htim->Instance->CCER; + + /* Set the encoder Mode */ + tmpsmcr |= sConfig->EncoderMode; + + /* Select the Capture Compare 1 and the Capture Compare 2 as input */ + tmpccmr1 &= ~(TIM_CCMR1_CC1S | TIM_CCMR1_CC2S); + tmpccmr1 |= (sConfig->IC1Selection | (sConfig->IC2Selection << 8U)); + + /* Set the the Capture Compare 1 and the Capture Compare 2 prescalers and filters */ + tmpccmr1 &= ~(TIM_CCMR1_IC1PSC | TIM_CCMR1_IC2PSC); + tmpccmr1 &= ~(TIM_CCMR1_IC1F | TIM_CCMR1_IC2F); + tmpccmr1 |= sConfig->IC1Prescaler | (sConfig->IC2Prescaler << 8U); + tmpccmr1 |= (sConfig->IC1Filter << 4U) | (sConfig->IC2Filter << 12U); + + /* Set the TI1 and the TI2 Polarities */ + tmpccer &= ~(TIM_CCER_CC1P | TIM_CCER_CC2P); + tmpccer &= ~(TIM_CCER_CC1NP | TIM_CCER_CC2NP); + tmpccer |= sConfig->IC1Polarity | (sConfig->IC2Polarity << 4U); + + /* Write to TIMx SMCR */ + htim->Instance->SMCR = tmpsmcr; + + /* Write to TIMx CCMR1 */ + htim->Instance->CCMR1 = tmpccmr1; + + /* Write to TIMx CCER */ + htim->Instance->CCER = tmpccer; + + /* Initialize the TIM state*/ + htim->State= HAL_TIM_STATE_READY; + + return HAL_OK; +} + +/** + * @brief DeInitializes the TIM Encoder interface + * @param htim: TIM Encoder handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_DeInit(TIM_HandleTypeDef *htim) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Disable the TIM Peripheral Clock */ + __HAL_TIM_DISABLE(htim); + + /* DeInit the low level hardware: GPIO, CLOCK, NVIC */ + HAL_TIM_Encoder_MspDeInit(htim); + + /* Change TIM state */ + htim->State = HAL_TIM_STATE_RESET; + + /* Release Lock */ + __HAL_UNLOCK(htim); + + return HAL_OK; +} + + +/** + * @brief Initializes the TIM Encoder Interface MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_Encoder_MspInit could be implemented in the user file + */ +} + + +/** + * @brief DeInitializes TIM Encoder Interface MSP. + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_Encoder_MspDeInit(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_Encoder_MspDeInit could be implemented in the user file + */ +} + +/** + * @brief Starts the TIM Encoder Interface. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_ALL: TIM Channel 1 and TIM Channel 2 are selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + /* Enable the encoder interface channels */ + switch (Channel) + { + case TIM_CHANNEL_1: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + break; + } + case TIM_CHANNEL_2: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + break; + } + default : + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + break; + } + } + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Encoder Interface. + * @param htim : TIM handle + * @param Channel: TIM Channels to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_ALL: TIM Channel 1 and TIM Channel 2 are selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Stop(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + /* Disable the Input Capture channels 1 and 2 + (in the EncoderInterface the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2) */ + switch (Channel) + { + case TIM_CHANNEL_1: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + break; + } + case TIM_CHANNEL_2: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + break; + } + default : + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + break; + } + } + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Encoder Interface in interrupt mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_ALL: TIM Channel 1 and TIM Channel 2 are selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + /* Enable the encoder interface channels */ + /* Enable the capture compare Interrupts 1 and/or 2 */ + switch (Channel) + { + case TIM_CHANNEL_1: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1); + break; + } + case TIM_CHANNEL_2: + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2); + break; + } + default : + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1); + __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2); + break; + } + } + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Encoder Interface in interrupt mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be disabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_ALL: TIM Channel 1 and TIM Channel 2 are selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + /* Disable the Input Capture channels 1 and 2 + (in the EncoderInterface the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2) */ + if(Channel == TIM_CHANNEL_1) + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + + /* Disable the capture compare Interrupts 1 */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1); + } + else if(Channel == TIM_CHANNEL_2) + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + + /* Disable the capture compare Interrupts 2 */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2); + } + else + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + + /* Disable the capture compare Interrupts 1 and 2 */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1); + __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2); + } + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Starts the TIM Encoder Interface in DMA mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_ALL : TIM Channel 1 and 2 selected + * @param pData1: The destination Buffer address for IC1. + * @param pData2: The destination Buffer address for IC2. + * @param Length: The length of data to be transferred from TIM peripheral to memory. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData1, uint32_t *pData2, uint16_t Length) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMA_CC_INSTANCE(htim->Instance)); + + if((htim->State == HAL_TIM_STATE_BUSY)) + { + return HAL_BUSY; + } + else if((htim->State == HAL_TIM_STATE_READY)) + { + if((((pData1 == 0U) || (pData2 == 0U) )) && (Length > 0U)) + { + return HAL_ERROR; + } + else + { + htim->State = HAL_TIM_STATE_BUSY; + } + } + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)&htim->Instance->CCR1, (uint32_t )pData1, Length); + + /* Enable the TIM Input Capture DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Enable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + } + break; + + case TIM_CHANNEL_2: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = TIM_DMAError; + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)&htim->Instance->CCR2, (uint32_t)pData2, Length); + + /* Enable the TIM Input Capture DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC2); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Enable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + } + break; + + case TIM_CHANNEL_ALL: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)&htim->Instance->CCR1, (uint32_t)pData1, Length); + + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)&htim->Instance->CCR2, (uint32_t)pData2, Length); + + /* Enable the Peripheral */ + __HAL_TIM_ENABLE(htim); + + /* Enable the Capture compare channel */ + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_ENABLE); + + /* Enable the TIM Input Capture DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1); + /* Enable the TIM Input Capture DMA request */ + __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC2); + } + break; + + default: + break; + } + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM Encoder Interface in DMA mode. + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_ALL: TIM Channel 1 and TIM Channel 2 are selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Encoder_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMA_CC_INSTANCE(htim->Instance)); + + /* Disable the Input Capture channels 1 and 2 + (in the EncoderInterface the two possible channels that can be used are TIM_CHANNEL_1 and TIM_CHANNEL_2) */ + if(Channel == TIM_CHANNEL_1) + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + + /* Disable the capture compare DMA Request 1 */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1); + } + else if(Channel == TIM_CHANNEL_2) + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + + /* Disable the capture compare DMA Request 2 */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC2); + } + else + { + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE); + TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_2, TIM_CCx_DISABLE); + + /* Disable the capture compare DMA Request 1 and 2 */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1); + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC2); + } + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group7 + * @brief IRQ handler management + * +@verbatim + ============================================================================== + ##### IRQ handler management ##### + ============================================================================== + [..] + This section provides Timer IRQ handler function. + +@endverbatim + * @{ + */ +/** + * @brief This function handles TIM interrupts requests. + * @param htim: TIM handle + * @retval None + */ +void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim) +{ + /* Capture compare 1 event */ + if(__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC1) != RESET) + { + if(__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC1) !=RESET) + { + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC1); + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; + + /* Input capture event */ + if((htim->Instance->CCMR1 & TIM_CCMR1_CC1S) != 0x00U) + { + HAL_TIM_IC_CaptureCallback(htim); + } + /* Output compare event */ + else + { + HAL_TIM_OC_DelayElapsedCallback(htim); + HAL_TIM_PWM_PulseFinishedCallback(htim); + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + } + } + } + /* Capture compare 2 event */ + if(__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC2) != RESET) + { + if(__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC2) !=RESET) + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC2); + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; + /* Input capture event */ + if((htim->Instance->CCMR1 & TIM_CCMR1_CC2S) != 0x00U) + { + HAL_TIM_IC_CaptureCallback(htim); + } + /* Output compare event */ + else + { + HAL_TIM_OC_DelayElapsedCallback(htim); + HAL_TIM_PWM_PulseFinishedCallback(htim); + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + } + } + /* Capture compare 3 event */ + if(__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC3) != RESET) + { + if(__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC3) !=RESET) + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC3); + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; + /* Input capture event */ + if((htim->Instance->CCMR2 & TIM_CCMR2_CC3S) != 0x00U) + { + HAL_TIM_IC_CaptureCallback(htim); + } + /* Output compare event */ + else + { + HAL_TIM_OC_DelayElapsedCallback(htim); + HAL_TIM_PWM_PulseFinishedCallback(htim); + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + } + } + /* Capture compare 4 event */ + if(__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC4) != RESET) + { + if(__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC4) !=RESET) + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC4); + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; + /* Input capture event */ + if((htim->Instance->CCMR2 & TIM_CCMR2_CC4S) != 0x00U) + { + HAL_TIM_IC_CaptureCallback(htim); + } + /* Output compare event */ + else + { + HAL_TIM_OC_DelayElapsedCallback(htim); + HAL_TIM_PWM_PulseFinishedCallback(htim); + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + } + } + /* TIM Update event */ + if(__HAL_TIM_GET_FLAG(htim, TIM_FLAG_UPDATE) != RESET) + { + if(__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_UPDATE) !=RESET) + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_UPDATE); + HAL_TIM_PeriodElapsedCallback(htim); + } + } + /* TIM Trigger detection event */ + if(__HAL_TIM_GET_FLAG(htim, TIM_FLAG_TRIGGER) != RESET) + { + if(__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_TRIGGER) !=RESET) + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_TRIGGER); + HAL_TIM_TriggerCallback(htim); + } + } +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group8 + * @brief Peripheral Control functions + * +@verbatim + ============================================================================== + ##### Peripheral Control functions ##### + ============================================================================== + [..] + This section provides functions allowing to: + (+) Configure The Input Output channels for OC, PWM, IC or One Pulse mode. + (+) Configure External Clock source. + (+) Configure Master and the Slave synchronization. + (+) Configure the DMA Burst Mode. + +@endverbatim + * @{ + */ +/** + * @brief Initializes the TIM Output Compare Channels according to the specified + * parameters in the TIM_OC_InitTypeDef. + * @param htim : TIM handle + * @param sConfig: TIM Output Compare configuration structure + * @param Channel: TIM Channel to be configure. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OC_InitTypeDef* sConfig, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CHANNELS(Channel)); + assert_param(IS_TIM_OC_MODE(sConfig->OCMode)); + assert_param(IS_TIM_OC_POLARITY(sConfig->OCPolarity)); + + /* Process lock */ + __HAL_LOCK(htim); + + htim->State = HAL_TIM_STATE_BUSY; + + switch (Channel) + { + case TIM_CHANNEL_1: + { + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + /* Configure the TIM Channel 1 in Output Compare */ + TIM_OC1_SetConfig(htim->Instance, sConfig); + } + break; + + case TIM_CHANNEL_2: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + /* Configure the TIM Channel 2 in Output Compare */ + TIM_OC2_SetConfig(htim->Instance, sConfig); + } + break; + + case TIM_CHANNEL_3: + { + assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); + /* Configure the TIM Channel 3 in Output Compare */ + TIM_OC3_SetConfig(htim->Instance, sConfig); + } + break; + + case TIM_CHANNEL_4: + { + assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); + /* Configure the TIM Channel 4 in Output Compare */ + TIM_OC4_SetConfig(htim->Instance, sConfig); + } + break; + + default: + break; + } + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM Input Capture Channels according to the specified + * parameters in the TIM_IC_InitTypeDef. + * @param htim : TIM handle + * @param sConfig: TIM Input Capture configuration structure + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_IC_ConfigChannel(TIM_HandleTypeDef *htim, TIM_IC_InitTypeDef* sConfig, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + assert_param(IS_TIM_IC_POLARITY(sConfig->ICPolarity)); + assert_param(IS_TIM_IC_SELECTION(sConfig->ICSelection)); + assert_param(IS_TIM_IC_PRESCALER(sConfig->ICPrescaler)); + assert_param(IS_TIM_IC_FILTER(sConfig->ICFilter)); + + __HAL_LOCK(htim); + + htim->State = HAL_TIM_STATE_BUSY; + + if (Channel == TIM_CHANNEL_1) + { + /* TI1 Configuration */ + TIM_TI1_SetConfig(htim->Instance, + sConfig->ICPolarity, + sConfig->ICSelection, + sConfig->ICFilter); + + /* Reset the IC1PSC Bits */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_IC1PSC; + + /* Set the IC1PSC value */ + htim->Instance->CCMR1 |= sConfig->ICPrescaler; + } + else if (Channel == TIM_CHANNEL_2) + { + /* TI2 Configuration */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + TIM_TI2_SetConfig(htim->Instance, + sConfig->ICPolarity, + sConfig->ICSelection, + sConfig->ICFilter); + + /* Reset the IC2PSC Bits */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_IC2PSC; + + /* Set the IC2PSC value */ + htim->Instance->CCMR1 |= (sConfig->ICPrescaler << 8U); + } + else if (Channel == TIM_CHANNEL_3) + { + /* TI3 Configuration */ + assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); + + TIM_TI3_SetConfig(htim->Instance, + sConfig->ICPolarity, + sConfig->ICSelection, + sConfig->ICFilter); + + /* Reset the IC3PSC Bits */ + htim->Instance->CCMR2 &= ~TIM_CCMR2_IC3PSC; + + /* Set the IC3PSC value */ + htim->Instance->CCMR2 |= sConfig->ICPrescaler; + } + else + { + /* TI4 Configuration */ + assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); + + TIM_TI4_SetConfig(htim->Instance, + sConfig->ICPolarity, + sConfig->ICSelection, + sConfig->ICFilter); + + /* Reset the IC4PSC Bits */ + htim->Instance->CCMR2 &= ~TIM_CCMR2_IC4PSC; + + /* Set the IC4PSC value */ + htim->Instance->CCMR2 |= (sConfig->ICPrescaler << 8U); + } + + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM PWM channels according to the specified + * parameters in the TIM_OC_InitTypeDef. + * @param htim : TIM handle + * @param sConfig: TIM PWM configuration structure + * @param Channel: TIM Channel to be configured. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OC_InitTypeDef* sConfig, uint32_t Channel) +{ + __HAL_LOCK(htim); + + /* Check the parameters */ + assert_param(IS_TIM_CHANNELS(Channel)); + assert_param(IS_TIM_PWM_MODE(sConfig->OCMode)); + assert_param(IS_TIM_OC_POLARITY(sConfig->OCPolarity)); + assert_param(IS_TIM_FAST_STATE(sConfig->OCFastMode)); + + htim->State = HAL_TIM_STATE_BUSY; + + switch (Channel) + { + case TIM_CHANNEL_1: + { + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + /* Configure the Channel 1 in PWM mode */ + TIM_OC1_SetConfig(htim->Instance, sConfig); + + /* Set the Preload enable bit for channel1 */ + htim->Instance->CCMR1 |= TIM_CCMR1_OC1PE; + + /* Configure the Output Fast mode */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_OC1FE; + htim->Instance->CCMR1 |= sConfig->OCFastMode; + } + break; + + case TIM_CHANNEL_2: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + /* Configure the Channel 2 in PWM mode */ + TIM_OC2_SetConfig(htim->Instance, sConfig); + + /* Set the Preload enable bit for channel2 */ + htim->Instance->CCMR1 |= TIM_CCMR1_OC2PE; + + /* Configure the Output Fast mode */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_OC2FE; + htim->Instance->CCMR1 |= sConfig->OCFastMode << 8U; + } + break; + + case TIM_CHANNEL_3: + { + assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); + /* Configure the Channel 3 in PWM mode */ + TIM_OC3_SetConfig(htim->Instance, sConfig); + + /* Set the Preload enable bit for channel3 */ + htim->Instance->CCMR2 |= TIM_CCMR2_OC3PE; + + /* Configure the Output Fast mode */ + htim->Instance->CCMR2 &= ~TIM_CCMR2_OC3FE; + htim->Instance->CCMR2 |= sConfig->OCFastMode; + } + break; + + case TIM_CHANNEL_4: + { + assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); + /* Configure the Channel 4 in PWM mode */ + TIM_OC4_SetConfig(htim->Instance, sConfig); + + /* Set the Preload enable bit for channel4 */ + htim->Instance->CCMR2 |= TIM_CCMR2_OC4PE; + + /* Configure the Output Fast mode */ + htim->Instance->CCMR2 &= ~TIM_CCMR2_OC4FE; + htim->Instance->CCMR2 |= sConfig->OCFastMode << 8U; + } + break; + + default: + break; + } + + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Initializes the TIM One Pulse Channels according to the specified + * parameters in the TIM_OnePulse_InitTypeDef. + * @param htim : TIM handle + * @param sConfig: TIM One Pulse configuration structure + * @param OutputChannel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @param InputChannel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_OnePulse_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OnePulse_InitTypeDef* sConfig, uint32_t OutputChannel, uint32_t InputChannel) +{ + TIM_OC_InitTypeDef temp1; + + /* Check the parameters */ + assert_param(IS_TIM_OPM_CHANNELS(OutputChannel)); + assert_param(IS_TIM_OPM_CHANNELS(InputChannel)); + + if(OutputChannel != InputChannel) + { + __HAL_LOCK(htim); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Extract the Ouput compare configuration from sConfig structure */ + temp1.OCMode = sConfig->OCMode; + temp1.Pulse = sConfig->Pulse; + temp1.OCPolarity = sConfig->OCPolarity; + + switch (OutputChannel) + { + case TIM_CHANNEL_1: + { + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + + TIM_OC1_SetConfig(htim->Instance, &temp1); + } + break; + case TIM_CHANNEL_2: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + TIM_OC2_SetConfig(htim->Instance, &temp1); + } + break; + default: + break; + } + switch (InputChannel) + { + case TIM_CHANNEL_1: + { + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + + TIM_TI1_SetConfig(htim->Instance, sConfig->ICPolarity, + sConfig->ICSelection, sConfig->ICFilter); + + /* Reset the IC1PSC Bits */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_IC1PSC; + + /* Select the Trigger source */ + htim->Instance->SMCR &= ~TIM_SMCR_TS; + htim->Instance->SMCR |= TIM_TS_TI1FP1; + + /* Select the Slave Mode */ + htim->Instance->SMCR &= ~TIM_SMCR_SMS; + htim->Instance->SMCR |= TIM_SLAVEMODE_TRIGGER; + } + break; + case TIM_CHANNEL_2: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + TIM_TI2_SetConfig(htim->Instance, sConfig->ICPolarity, + sConfig->ICSelection, sConfig->ICFilter); + + /* Reset the IC2PSC Bits */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_IC2PSC; + + /* Select the Trigger source */ + htim->Instance->SMCR &= ~TIM_SMCR_TS; + htim->Instance->SMCR |= TIM_TS_TI2FP2; + + /* Select the Slave Mode */ + htim->Instance->SMCR &= ~TIM_SMCR_SMS; + htim->Instance->SMCR |= TIM_SLAVEMODE_TRIGGER; + } + break; + + default: + break; + } + + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; + } + else + { + return HAL_ERROR; + } +} + +/** + * @brief Configure the DMA Burst to transfer Data from the memory to the TIM peripheral + * @param htim : TIM handle + * @param BurstBaseAddress: TIM Base address from when the DMA will starts the Data write. + * This parameters can be on of the following values: + * @arg TIM_DMABASE_CR1 + * @arg TIM_DMABASE_CR2 + * @arg TIM_DMABASE_SMCR + * @arg TIM_DMABASE_DIER + * @arg TIM_DMABASE_SR + * @arg TIM_DMABASE_EGR + * @arg TIM_DMABASE_CCMR1 + * @arg TIM_DMABASE_CCMR2 + * @arg TIM_DMABASE_CCER + * @arg TIM_DMABASE_CNT + * @arg TIM_DMABASE_PSC + * @arg TIM_DMABASE_ARR + * @arg TIM_DMABASE_CCR1 + * @arg TIM_DMABASE_CCR2 + * @arg TIM_DMABASE_CCR3 + * @arg TIM_DMABASE_CCR4 + * @arg TIM_DMABASE_DCR + * @param BurstRequestSrc: TIM DMA Request sources. + * This parameters can be on of the following values: + * @arg TIM_DMA_UPDATE: TIM update Interrupt source + * @arg TIM_DMA_CC1: TIM Capture Compare 1 DMA source + * @arg TIM_DMA_CC2: TIM Capture Compare 2 DMA source + * @arg TIM_DMA_CC3: TIM Capture Compare 3 DMA source + * @arg TIM_DMA_CC4: TIM Capture Compare 4 DMA source + * @arg TIM_DMA_TRIGGER: TIM Trigger DMA source + * @param BurstBuffer: The Buffer address. + * @param BurstLength: DMA Burst length. This parameter can be one value + * between TIM_DMABURSTLENGTH_1TRANSFER and TIM_DMABURSTLENGTH_18TRANSFERS . + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStart(TIM_HandleTypeDef *htim, uint32_t BurstBaseAddress, uint32_t BurstRequestSrc, + uint32_t* BurstBuffer, uint32_t BurstLength) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMABURST_INSTANCE(htim->Instance)); + assert_param(IS_TIM_DMA_BASE(BurstBaseAddress)); + assert_param(IS_TIM_DMA_SOURCE(BurstRequestSrc)); + assert_param(IS_TIM_DMA_LENGTH(BurstLength)); + + if((htim->State == HAL_TIM_STATE_BUSY)) + { + return HAL_BUSY; + } + else if((htim->State == HAL_TIM_STATE_READY)) + { + if((BurstBuffer == 0U ) && (BurstLength > 0U)) + { + return HAL_ERROR; + } + else + { + htim->State = HAL_TIM_STATE_BUSY; + } + } + switch(BurstRequestSrc) + { + case TIM_DMA_UPDATE: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_UPDATE]->XferCpltCallback = TIM_DMAPeriodElapsedCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_UPDATE]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_UPDATE], (uint32_t)BurstBuffer, (uint32_t)&htim->Instance->DMAR, ((BurstLength) >> 8) + 1); + } + break; + case TIM_DMA_CC1: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)BurstBuffer, (uint32_t)&htim->Instance->DMAR, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_CC2: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)BurstBuffer, (uint32_t)&htim->Instance->DMAR, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_CC3: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC3], (uint32_t)BurstBuffer, (uint32_t)&htim->Instance->DMAR, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_CC4: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferCpltCallback = TIM_DMADelayPulseCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC4], (uint32_t)BurstBuffer, (uint32_t)&htim->Instance->DMAR, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_TRIGGER: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_TRIGGER]->XferCpltCallback = TIM_DMATriggerCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_TRIGGER]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_TRIGGER], (uint32_t)BurstBuffer, (uint32_t)&htim->Instance->DMAR, ((BurstLength) >> 8U) + 1U); + } + break; + default: + break; + } + /* configure the DMA Burst Mode */ + htim->Instance->DCR = BurstBaseAddress | BurstLength; + + /* Enable the TIM DMA Request */ + __HAL_TIM_ENABLE_DMA(htim, BurstRequestSrc); + + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stops the TIM DMA Burst mode + * @param htim : TIM handle + * @param BurstRequestSrc: TIM DMA Request sources to disable + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStop(TIM_HandleTypeDef *htim, uint32_t BurstRequestSrc) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMA_SOURCE(BurstRequestSrc)); + + /* Abort the DMA transfer (at least disable the DMA channel) */ + switch(BurstRequestSrc) + { + case TIM_DMA_UPDATE: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_UPDATE]); + } + break; + case TIM_DMA_CC1: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC1]); + } + break; + case TIM_DMA_CC2: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC2]); + } + break; + case TIM_DMA_CC3: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC3]); + } + break; + case TIM_DMA_CC4: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC4]); + } + break; + case TIM_DMA_TRIGGER: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_TRIGGER]); + } + break; + default: + break; + } + /* Disable the TIM Update DMA request */ + __HAL_TIM_DISABLE_DMA(htim, BurstRequestSrc); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Configure the DMA Burst to transfer Data from the TIM peripheral to the memory + * @param htim : TIM handle + * @param BurstBaseAddress: TIM Base address from when the DMA will starts the Data read. + * This parameters can be on of the following values: + * @arg TIM_DMABASE_CR1 + * @arg TIM_DMABASE_CR2 + * @arg TIM_DMABASE_SMCR + * @arg TIM_DMABASE_DIER + * @arg TIM_DMABASE_SR + * @arg TIM_DMABASE_EGR + * @arg TIM_DMABASE_CCMR1 + * @arg TIM_DMABASE_CCMR2 + * @arg TIM_DMABASE_CCER + * @arg TIM_DMABASE_CNT + * @arg TIM_DMABASE_PSC + * @arg TIM_DMABASE_ARR + * @arg TIM_DMABASE_CCR1 + * @arg TIM_DMABASE_CCR2 + * @arg TIM_DMABASE_CCR3 + * @arg TIM_DMABASE_CCR4 + * @arg TIM_DMABASE_DCR + * @param BurstRequestSrc: TIM DMA Request sources. + * This parameters can be on of the following values: + * @arg TIM_DMA_UPDATE: TIM update Interrupt source + * @arg TIM_DMA_CC1: TIM Capture Compare 1 DMA source + * @arg TIM_DMA_CC2: TIM Capture Compare 2 DMA source + * @arg TIM_DMA_CC3: TIM Capture Compare 3 DMA source + * @arg TIM_DMA_CC4: TIM Capture Compare 4 DMA source + * @arg TIM_DMA_TRIGGER: TIM Trigger DMA source + * @param BurstBuffer: The Buffer address. + * @param BurstLength: DMA Burst length. This parameter can be one value + * between TIM_DMABURSTLENGTH_1TRANSFER and TIM_DMABURSTLENGTH_18TRANSFERS . + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStart(TIM_HandleTypeDef *htim, uint32_t BurstBaseAddress, uint32_t BurstRequestSrc, + uint32_t *BurstBuffer, uint32_t BurstLength) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMABURST_INSTANCE(htim->Instance)); + assert_param(IS_TIM_DMA_BASE(BurstBaseAddress)); + assert_param(IS_TIM_DMA_SOURCE(BurstRequestSrc)); + assert_param(IS_TIM_DMA_LENGTH(BurstLength)); + + if((htim->State == HAL_TIM_STATE_BUSY)) + { + return HAL_BUSY; + } + else if((htim->State == HAL_TIM_STATE_READY)) + { + if((BurstBuffer == 0U ) && (BurstLength > 0U)) + { + return HAL_ERROR; + } + else + { + htim->State = HAL_TIM_STATE_BUSY; + } + } + switch(BurstRequestSrc) + { + case TIM_DMA_UPDATE: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_UPDATE]->XferCpltCallback = TIM_DMAPeriodElapsedCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_UPDATE]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_UPDATE], (uint32_t)&htim->Instance->DMAR, (uint32_t)BurstBuffer, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_CC1: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)&htim->Instance->DMAR, (uint32_t)BurstBuffer, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_CC2: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)&htim->Instance->DMAR, (uint32_t)BurstBuffer, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_CC3: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC3]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC3], (uint32_t)&htim->Instance->DMAR, (uint32_t)BurstBuffer, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_CC4: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferCpltCallback = TIM_DMACaptureCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_CC4]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC4], (uint32_t)&htim->Instance->DMAR, (uint32_t)BurstBuffer, ((BurstLength) >> 8U) + 1U); + } + break; + case TIM_DMA_TRIGGER: + { + /* Set the DMA Period elapsed callback */ + htim->hdma[TIM_DMA_ID_TRIGGER]->XferCpltCallback = TIM_DMATriggerCplt; + + /* Set the DMA error callback */ + htim->hdma[TIM_DMA_ID_TRIGGER]->XferErrorCallback = TIM_DMAError ; + + /* Enable the DMA Stream */ + HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_TRIGGER], (uint32_t)&htim->Instance->DMAR, (uint32_t)BurstBuffer, ((BurstLength) >> 8U) + 1U); + } + break; + default: + break; + } + + /* configure the DMA Burst Mode */ + htim->Instance->DCR = BurstBaseAddress | BurstLength; + + /* Enable the TIM DMA Request */ + __HAL_TIM_ENABLE_DMA(htim, BurstRequestSrc); + + htim->State = HAL_TIM_STATE_READY; + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Stop the DMA burst reading + * @param htim : TIM handle + * @param BurstRequestSrc: TIM DMA Request sources to disable. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStop(TIM_HandleTypeDef *htim, uint32_t BurstRequestSrc) +{ + /* Check the parameters */ + assert_param(IS_TIM_DMA_SOURCE(BurstRequestSrc)); + + /* Abort the DMA transfer (at least disable the DMA channel) */ + switch(BurstRequestSrc) + { + case TIM_DMA_UPDATE: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_UPDATE]); + } + break; + case TIM_DMA_CC1: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC1]); + } + break; + case TIM_DMA_CC2: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC2]); + } + break; + case TIM_DMA_CC3: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC3]); + } + break; + case TIM_DMA_CC4: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_CC4]); + } + break; + case TIM_DMA_TRIGGER: + { + HAL_DMA_Abort(htim->hdma[TIM_DMA_ID_TRIGGER]); + } + break; + default: + break; + } + + /* Disable the TIM Update DMA request */ + __HAL_TIM_DISABLE_DMA(htim, BurstRequestSrc); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Generate a software event + * @param htim : TIM handle + * @param EventSource: specifies the event source. + * This parameter can be one of the following values: + * @arg TIM_EventSource_Update: Timer update Event source + * @arg TIM_EVENTSOURCE_CC1: Timer Capture Compare 1 Event source + * @arg TIM_EventSource_CC2: Timer Capture Compare 2 Event source + * @arg TIM_EventSource_CC3: Timer Capture Compare 3 Event source + * @arg TIM_EventSource_CC4: Timer Capture Compare 4 Event source + * @arg TIM_EVENTSOURCE_TRIGGER : Timer Trigger Event source + * @note TIM6 can only generate an update event. + * @retval HAL status + */ + +HAL_StatusTypeDef HAL_TIM_GenerateEvent(TIM_HandleTypeDef *htim, uint32_t EventSource) +{ + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + assert_param(IS_TIM_EVENT_SOURCE(EventSource)); + + /* Process Locked */ + __HAL_LOCK(htim); + + /* Change the TIM state */ + htim->State = HAL_TIM_STATE_BUSY; + + /* Set the event sources */ + htim->Instance->EGR = EventSource; + + /* Change the TIM state */ + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + /* Return function status */ + return HAL_OK; +} + +/** + * @brief Configures the OCRef clear feature + * @param htim : TIM handle + * @param sClearInputConfig: pointer to a TIM_ClearInputConfigTypeDef structure that + * contains the OCREF clear feature and parameters for the TIM peripheral. + * @param Channel: specifies the TIM Channel. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_ConfigOCrefClear(TIM_HandleTypeDef *htim, TIM_ClearInputConfigTypeDef * sClearInputConfig, uint32_t Channel) +{ + /* Check the parameters */ + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + assert_param(IS_TIM_CHANNELS(Channel)); + assert_param(IS_TIM_CLEARINPUT_SOURCE(sClearInputConfig->ClearInputSource)); + assert_param(IS_TIM_CLEARINPUT_POLARITY(sClearInputConfig->ClearInputPolarity)); + assert_param(IS_TIM_CLEARINPUT_PRESCALER(sClearInputConfig->ClearInputPrescaler)); + assert_param(IS_TIM_CLEARINPUT_FILTER(sClearInputConfig->ClearInputFilter)); + + /* Process Locked */ + __HAL_LOCK(htim); + + htim->State = HAL_TIM_STATE_BUSY; + + if(sClearInputConfig->ClearInputSource == TIM_CLEARINPUTSOURCE_ETR) + { + TIM_ETR_SetConfig(htim->Instance, + sClearInputConfig->ClearInputPrescaler, + sClearInputConfig->ClearInputPolarity, + sClearInputConfig->ClearInputFilter); + + /* Set the OCREF clear selection bit */ + htim->Instance->SMCR |= TIM_SMCR_OCCS; + } + + switch (Channel) + { + case TIM_CHANNEL_1: + { + if(sClearInputConfig->ClearInputState != RESET) + { + /* Enable the Ocref clear feature for Channel 1 */ + htim->Instance->CCMR1 |= TIM_CCMR1_OC1CE; + } + else + { + /* Disable the Ocref clear feature for Channel 1 */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_OC1CE; + } + } + break; + case TIM_CHANNEL_2: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + if(sClearInputConfig->ClearInputState != RESET) + { + /* Enable the Ocref clear feature for Channel 2 */ + htim->Instance->CCMR1 |= TIM_CCMR1_OC2CE; + } + else + { + /* Disable the Ocref clear feature for Channel 2 */ + htim->Instance->CCMR1 &= ~TIM_CCMR1_OC2CE; + } + } + break; + case TIM_CHANNEL_3: + { + assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); + if(sClearInputConfig->ClearInputState != RESET) + { + /* Enable the Ocref clear feature for Channel 3 */ + htim->Instance->CCMR2 |= TIM_CCMR2_OC3CE; + } + else + { + /* Disable the Ocref clear feature for Channel 3 */ + htim->Instance->CCMR2 &= ~TIM_CCMR2_OC3CE; + } + } + break; + case TIM_CHANNEL_4: + { + assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); + if(sClearInputConfig->ClearInputState != RESET) + { + /* Enable the Ocref clear feature for Channel 4 */ + htim->Instance->CCMR2 |= TIM_CCMR2_OC4CE; + } + else + { + /* Disable the Ocref clear feature for Channel 4 */ + htim->Instance->CCMR2 &= ~TIM_CCMR2_OC4CE; + } + } + break; + default: + break; + } + + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Configures the clock source to be used + * @param htim : TIM handle + * @param sClockSourceConfig: pointer to a TIM_ClockConfigTypeDef structure that + * contains the clock source information for the TIM peripheral. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *htim, TIM_ClockConfigTypeDef * sClockSourceConfig) +{ + uint32_t tmpsmcr = 0U; + + /* Process Locked */ + __HAL_LOCK(htim); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Check the clock source */ + assert_param(IS_TIM_CLOCKSOURCE(sClockSourceConfig->ClockSource)); + + /* Reset the SMS, TS, ECE, ETPS and ETRF bits */ + tmpsmcr = htim->Instance->SMCR; + tmpsmcr &= ~(TIM_SMCR_SMS | TIM_SMCR_TS); + tmpsmcr &= ~(TIM_SMCR_ETF | TIM_SMCR_ETPS | TIM_SMCR_ECE | TIM_SMCR_ETP); + htim->Instance->SMCR = tmpsmcr; + + switch (sClockSourceConfig->ClockSource) + { + case TIM_CLOCKSOURCE_INTERNAL: + { + assert_param(IS_TIM_INSTANCE(htim->Instance)); + /* Disable slave mode to clock the prescaler directly with the internal clock */ + htim->Instance->SMCR &= ~TIM_SMCR_SMS; + } + break; + + case TIM_CLOCKSOURCE_ETRMODE1: + { + assert_param(IS_TIM_ETR_INSTANCE(htim->Instance)); + assert_param(IS_TIM_CLOCKPRESCALER(sClockSourceConfig->ClockPrescaler)); + assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); + assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); + /* Configure the ETR Clock source */ + TIM_ETR_SetConfig(htim->Instance, + sClockSourceConfig->ClockPrescaler, + sClockSourceConfig->ClockPolarity, + sClockSourceConfig->ClockFilter); + /* Get the TIMx SMCR register value */ + tmpsmcr = htim->Instance->SMCR; + /* Reset the SMS and TS Bits */ + tmpsmcr &= ~(TIM_SMCR_SMS | TIM_SMCR_TS); + /* Select the External clock mode1 and the ETRF trigger */ + tmpsmcr |= (TIM_SLAVEMODE_EXTERNAL1 | TIM_CLOCKSOURCE_ETRMODE1); + /* Write to TIMx SMCR */ + htim->Instance->SMCR = tmpsmcr; + } + break; + + case TIM_CLOCKSOURCE_ETRMODE2: + { + assert_param(IS_TIM_ETR_INSTANCE(htim->Instance)); + assert_param(IS_TIM_CLOCKPRESCALER(sClockSourceConfig->ClockPrescaler)); + assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); + assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); + /* Configure the ETR Clock source */ + TIM_ETR_SetConfig(htim->Instance, + sClockSourceConfig->ClockPrescaler, + sClockSourceConfig->ClockPolarity, + sClockSourceConfig->ClockFilter); + /* Enable the External clock mode2 */ + htim->Instance->SMCR |= TIM_SMCR_ECE; + } + break; + + case TIM_CLOCKSOURCE_TI1: + { + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); + assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); + TIM_TI1_ConfigInputStage(htim->Instance, + sClockSourceConfig->ClockPolarity, + sClockSourceConfig->ClockFilter); + TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_TI1); + } + break; + case TIM_CLOCKSOURCE_TI2: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); + assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); + TIM_TI2_ConfigInputStage(htim->Instance, + sClockSourceConfig->ClockPolarity, + sClockSourceConfig->ClockFilter); + TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_TI2); + } + break; + case TIM_CLOCKSOURCE_TI1ED: + { + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); + assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); + TIM_TI1_ConfigInputStage(htim->Instance, + sClockSourceConfig->ClockPolarity, + sClockSourceConfig->ClockFilter); + TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_TI1ED); + } + break; + case TIM_CLOCKSOURCE_ITR0: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_ITR0); + } + break; + case TIM_CLOCKSOURCE_ITR1: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_ITR1); + } + break; + case TIM_CLOCKSOURCE_ITR2: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_ITR2); + } + break; + case TIM_CLOCKSOURCE_ITR3: + { + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_ITR3); + } + break; + + default: + break; + } + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Selects the signal connected to the TI1 input: direct from CH1_input + * or a XOR combination between CH1_input, CH2_input & CH3_input + * @param htim : TIM handle + * @param TI1_Selection: Indicate whether or not channel 1 is connected to the + * output of a XOR gate. + * This parameter can be one of the following values: + * @arg TIM_TI1SELECTION_CH1: The TIMx_CH1 pin is connected to TI1 input + * @arg TIM_TI1SELECTION_XORCOMBINATION: The TIMx_CH1, CH2 and CH3 + * pins are connected to the TI1 input (XOR combination) + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_ConfigTI1Input(TIM_HandleTypeDef *htim, uint32_t TI1_Selection) +{ + uint32_t tmpcr2 = 0U; + + /* Check the parameters */ + assert_param(IS_TIM_XOR_INSTANCE(htim->Instance)); + assert_param(IS_TIM_TI1SELECTION(TI1_Selection)); + + /* Get the TIMx CR2 register value */ + tmpcr2 = htim->Instance->CR2; + + /* Reset the TI1 selection */ + tmpcr2 &= ~TIM_CR2_TI1S; + + /* Set the the TI1 selection */ + tmpcr2 |= TI1_Selection; + + /* Write to TIMxCR2 */ + htim->Instance->CR2 = tmpcr2; + + return HAL_OK; +} + +/** + * @brief Configures the TIM in Slave mode + * @param htim : TIM handle + * @param sSlaveConfig: pointer to a TIM_SlaveConfigTypeDef structure that + * contains the selected trigger (internal trigger input, filtered + * timer input or external trigger input) and the ) and the Slave + * mode (Disable, Reset, Gated, Trigger, External clock mode 1). + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchronization(TIM_HandleTypeDef *htim, TIM_SlaveConfigTypeDef * sSlaveConfig) +{ + /* Check the parameters */ + assert_param(IS_TIM_SLAVE_INSTANCE(htim->Instance)); + assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); + assert_param(IS_TIM_TRIGGER_SELECTION(sSlaveConfig->InputTrigger)); + + __HAL_LOCK(htim); + + htim->State = HAL_TIM_STATE_BUSY; + + /* Configuration in slave mode */ + TIM_SlaveTimer_SetConfig(htim, sSlaveConfig); + + /* Disable Trigger Interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_TRIGGER); + + /* Disable Trigger DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_TRIGGER); + + /* Set the new state */ + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Configures the TIM in Slave mode in interrupt mode + * @param htim : TIM handle. + * @param sSlaveConfig: pointer to a TIM_SlaveConfigTypeDef structure that + * contains the selected trigger (internal trigger input, filtered + * timer input or external trigger input) and the ) and the Slave + * mode (Disable, Reset, Gated, Trigger, External clock mode 1). + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchronization_IT(TIM_HandleTypeDef *htim, + TIM_SlaveConfigTypeDef * sSlaveConfig) +{ + /* Check the parameters */ + assert_param(IS_TIM_SLAVE_INSTANCE(htim->Instance)); + assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); + assert_param(IS_TIM_TRIGGER_SELECTION(sSlaveConfig->InputTrigger)); + + __HAL_LOCK(htim); + + htim->State = HAL_TIM_STATE_BUSY; + + TIM_SlaveTimer_SetConfig(htim, sSlaveConfig); + + /* Enable Trigger Interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_TRIGGER); + + /* Disable Trigger DMA request */ + __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_TRIGGER); + + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @brief Read the captured value from Capture Compare unit + * @param htim : TIM handle + * @param Channel: TIM Channels to be enabled. + * This parameter can be one of the following values: + * @arg TIM_CHANNEL_1: TIM Channel 1 selected + * @arg TIM_CHANNEL_2: TIM Channel 2 selected + * @arg TIM_CHANNEL_3: TIM Channel 3 selected + * @arg TIM_CHANNEL_4: TIM Channel 4 selected + * @retval Captured value + */ +uint32_t HAL_TIM_ReadCapturedValue(TIM_HandleTypeDef *htim, uint32_t Channel) +{ + uint32_t tmpreg = 0U; + + __HAL_LOCK(htim); + + switch (Channel) + { + case TIM_CHANNEL_1: + { + /* Check the parameters */ + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + + /* Return the capture 1 value */ + tmpreg = htim->Instance->CCR1; + + break; + } + case TIM_CHANNEL_2: + { + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + + /* Return the capture 2 value */ + tmpreg = htim->Instance->CCR2; + + break; + } + + case TIM_CHANNEL_3: + { + /* Check the parameters */ + assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); + + /* Return the capture 3 value */ + tmpreg = htim->Instance->CCR3; + + break; + } + + case TIM_CHANNEL_4: + { + /* Check the parameters */ + assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); + + /* Return the capture 4 value */ + tmpreg = htim->Instance->CCR4; + + break; + } + + default: + break; + } + + __HAL_UNLOCK(htim); + return tmpreg; +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group9 + * @brief TIM Callbacks functions + * +@verbatim + ============================================================================== + ##### TIM Callbacks functions ##### + ============================================================================== + [..] + This section provides TIM callback functions: + (+) Timer Period elapsed callback + (+) Timer Output Compare callback + (+) Timer Input capture callback + (+) Timer Trigger callback + (+) Timer Error callback + +@endverbatim + * @{ + */ + +/** + * @brief Period elapsed callback in non blocking mode + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the __HAL_TIM_PeriodElapsedCallback could be implemented in the user file + */ + +} +/** + * @brief Output Compare callback in non blocking mode + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the __HAL_TIM_OC_DelayElapsedCallback could be implemented in the user file + */ +} +/** + * @brief Input Capture callback in non blocking mode + * @param htim: TIM IC handle + * @retval None + */ +__weak void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the __HAL_TIM_IC_CaptureCallback could be implemented in the user file + */ +} + +/** + * @brief PWM Pulse finished callback in non blocking mode + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the __HAL_TIM_PWM_PulseFinishedCallback could be implemented in the user file + */ +} + +/** + * @brief Hall Trigger detection callback in non blocking mode + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_TriggerCallback could be implemented in the user file + */ +} + +/** + * @brief Timer error callback in non blocking mode + * @param htim : TIM handle + * @retval None + */ +__weak void HAL_TIM_ErrorCallback(TIM_HandleTypeDef *htim) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(htim); + + /* NOTE : This function Should not be modified, when the callback is needed, + the HAL_TIM_ErrorCallback could be implemented in the user file + */ +} + +/** + * @} + */ + +/** @addtogroup TIM_Exported_Functions_Group10 + * @brief Peripheral State functions + * +@verbatim + ============================================================================== + ##### Peripheral State functions ##### + ============================================================================== + [..] + This subsection permits to get in run-time the status of the peripheral + and the data flow. + +@endverbatim + * @{ + */ + +/** + * @brief Return the TIM Base state + * @param htim : TIM handle + * @retval HAL state + */ +HAL_TIM_StateTypeDef HAL_TIM_Base_GetState(TIM_HandleTypeDef *htim) +{ + return htim->State; +} + +/** + * @brief Return the TIM OC state + * @param htim: TIM Ouput Compare handle + * @retval HAL state + */ +HAL_TIM_StateTypeDef HAL_TIM_OC_GetState(TIM_HandleTypeDef *htim) +{ + return htim->State; +} + +/** + * @brief Return the TIM PWM state + * @param htim : TIM handle + * @retval HAL state + */ +HAL_TIM_StateTypeDef HAL_TIM_PWM_GetState(TIM_HandleTypeDef *htim) +{ + return htim->State; +} + +/** + * @brief Return the TIM Input Capture state + * @param htim : TIM handle + * @retval HAL state + */ +HAL_TIM_StateTypeDef HAL_TIM_IC_GetState(TIM_HandleTypeDef *htim) +{ + return htim->State; +} + +/** + * @brief Return the TIM One Pulse Mode state + * @param htim: TIM OPM handle + * @retval HAL state + */ +HAL_TIM_StateTypeDef HAL_TIM_OnePulse_GetState(TIM_HandleTypeDef *htim) +{ + return htim->State; +} + +/** + * @brief Return the TIM Encoder Mode state + * @param htim : TIM handle + * @retval HAL state + */ +HAL_TIM_StateTypeDef HAL_TIM_Encoder_GetState(TIM_HandleTypeDef *htim) +{ + return htim->State; +} + + + +/** + * @brief TIM DMA error callback + * @param hdma: pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +void TIM_DMAError(DMA_HandleTypeDef *hdma) +{ + TIM_HandleTypeDef* htim = ( TIM_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + htim->State= HAL_TIM_STATE_READY; + + HAL_TIM_ErrorCallback(htim); +} + +/** + * @brief TIM DMA Delay Pulse complete callback. + * @param hdma : pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +void TIM_DMADelayPulseCplt(DMA_HandleTypeDef *hdma) +{ + TIM_HandleTypeDef* htim = ( TIM_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + htim->State= HAL_TIM_STATE_READY; + + if (hdma == htim->hdma[TIM_DMA_ID_CC1]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; + } + else if (hdma == htim->hdma[TIM_DMA_ID_CC2]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; + } + else if (hdma == htim->hdma[TIM_DMA_ID_CC3]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; + } + else if (hdma == htim->hdma[TIM_DMA_ID_CC4]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; + } + HAL_TIM_PWM_PulseFinishedCallback(htim); + + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; +} +/** + * @brief TIM DMA Capture complete callback. + * @param hdma : pointer to a DMA_HandleTypeDef structure that contains + * the configuration information for the specified DMA module. + * @retval None + */ +void TIM_DMACaptureCplt(DMA_HandleTypeDef *hdma) +{ + TIM_HandleTypeDef* htim = ( TIM_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + htim->State= HAL_TIM_STATE_READY; + + if (hdma == htim->hdma[TIM_DMA_ID_CC1]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; + } + else if (hdma == htim->hdma[TIM_DMA_ID_CC2]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; + } + else if (hdma == htim->hdma[TIM_DMA_ID_CC3]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; + } + else if (hdma == htim->hdma[TIM_DMA_ID_CC4]) + { + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; + } + + HAL_TIM_IC_CaptureCallback(htim); + + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; +} + + +/** + * @} + */ + +/** + * @} + */ +/*************************************************************/ +/* Private functions */ +/*************************************************************/ + +/** @addtogroup TIM_Private TIM Private + * @{ + */ +/** + * @brief TIM DMA Period Elapse complete callback. + * @param hdma : pointer to DMA handle. + * @retval None + */ +static void TIM_DMAPeriodElapsedCplt(DMA_HandleTypeDef *hdma) +{ + TIM_HandleTypeDef* htim = ( TIM_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + htim->State= HAL_TIM_STATE_READY; + + HAL_TIM_PeriodElapsedCallback(htim); +} + + +/** + * @brief TIM DMA Trigger callback. + * @param hdma : pointer to DMA handle. + * @retval None + */ +static void TIM_DMATriggerCplt(DMA_HandleTypeDef *hdma) +{ + TIM_HandleTypeDef* htim = ( TIM_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + htim->State= HAL_TIM_STATE_READY; + + HAL_TIM_TriggerCallback(htim); +} + +/** + * @brief Time Base configuration + * @param TIMx : TIM peripheral + * @param Structure : TIM Base configuration structure + * @retval None + */ +static void TIM_Base_SetConfig(TIM_TypeDef *TIMx, TIM_Base_InitTypeDef *Structure) +{ + uint32_t tmpcr1 = 0U; + tmpcr1 = TIMx->CR1; + + /* Set TIM Time Base Unit parameters ---------------------------------------*/ + if(IS_TIM_CC1_INSTANCE(TIMx) != RESET) + { + /* Select the Counter Mode */ + tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); + tmpcr1 |= Structure->CounterMode; + } + + if(IS_TIM_CC1_INSTANCE(TIMx) != RESET) + { + /* Set the clock division */ + tmpcr1 &= ~TIM_CR1_CKD; + tmpcr1 |= (uint32_t)Structure->ClockDivision; + } + + TIMx->CR1 = tmpcr1; + + /* Set the Autoreload value */ + TIMx->ARR = (uint32_t)Structure->Period ; + + /* Set the Prescaler value */ + TIMx->PSC = (uint32_t)Structure->Prescaler; + + /* Generate an update event to reload the Prescaler value immediatly */ + TIMx->EGR = TIM_EGR_UG; +} + +/** + * @brief Time Ouput Compare 1 configuration + * @param TIMx to select the TIM peripheral + * @param OC_Config: The ouput configuration structure + * @retval None + */ +static void TIM_OC1_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config) +{ + uint32_t tmpccmrx = 0U; + uint32_t tmpccer = 0U; + uint32_t tmpcr2 = 0U; + + /* Disable the Channel 1: Reset the CC1E Bit */ + TIMx->CCER &= ~TIM_CCER_CC1E; + + /* Get the TIMx CCER register value */ + tmpccer = TIMx->CCER; + /* Get the TIMx CR2 register value */ + tmpcr2 = TIMx->CR2; + + /* Get the TIMx CCMR1 register value */ + tmpccmrx = TIMx->CCMR1; + + /* Reset the Output Compare Mode Bits */ + tmpccmrx &= ~TIM_CCMR1_OC1M; + tmpccmrx &= ~TIM_CCMR1_CC1S; + /* Select the Output Compare Mode */ + tmpccmrx |= OC_Config->OCMode; + + /* Reset the Output Polarity level */ + tmpccer &= ~TIM_CCER_CC1P; + /* Set the Output Compare Polarity */ + tmpccer |= OC_Config->OCPolarity; + + /* Write to TIMx CR2 */ + TIMx->CR2 = tmpcr2; + + /* Write to TIMx CCMR1 */ + TIMx->CCMR1 = tmpccmrx; + + /* Set the Capture Compare Register value */ + TIMx->CCR1 = OC_Config->Pulse; + + /* Write to TIMx CCER */ + TIMx->CCER = tmpccer; +} + +/** + * @brief Time Ouput Compare 2 configuration + * @param TIMx to select the TIM peripheral + * @param OC_Config: The ouput configuration structure + * @retval None + */ +static void TIM_OC2_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config) +{ + uint32_t tmpccmrx = 0U; + uint32_t tmpccer = 0U; + uint32_t tmpcr2 = 0U; + + /* Disable the Channel 2: Reset the CC2E Bit */ + TIMx->CCER &= ~TIM_CCER_CC2E; + + /* Get the TIMx CCER register value */ + tmpccer = TIMx->CCER; + /* Get the TIMx CR2 register value */ + tmpcr2 = TIMx->CR2; + + /* Get the TIMx CCMR1 register value */ + tmpccmrx = TIMx->CCMR1; + + /* Reset the Output Compare mode and Capture/Compare selection Bits */ + tmpccmrx &= ~TIM_CCMR1_OC2M; + tmpccmrx &= ~TIM_CCMR1_CC2S; + + /* Select the Output Compare Mode */ + tmpccmrx |= (OC_Config->OCMode << 8U); + + /* Reset the Output Polarity level */ + tmpccer &= ~TIM_CCER_CC2P; + /* Set the Output Compare Polarity */ + tmpccer |= (OC_Config->OCPolarity << 4U); + + /* Write to TIMx CR2 */ + TIMx->CR2 = tmpcr2; + + /* Write to TIMx CCMR1 */ + TIMx->CCMR1 = tmpccmrx; + + /* Set the Capture Compare Register value */ + TIMx->CCR2 = OC_Config->Pulse; + + /* Write to TIMx CCER */ + TIMx->CCER = tmpccer; +} + +/** + * @brief Time Ouput Compare 3 configuration + * @param TIMx to select the TIM peripheral + * @param OC_Config: The ouput configuration structure + * @retval None + */ +static void TIM_OC3_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config) +{ + uint32_t tmpccmrx = 0U; + uint32_t tmpccer = 0U; + uint32_t tmpcr2 = 0U; + + /* Disable the Channel 3: Reset the CC2E Bit */ + TIMx->CCER &= ~TIM_CCER_CC3E; + + /* Get the TIMx CCER register value */ + tmpccer = TIMx->CCER; + /* Get the TIMx CR2 register value */ + tmpcr2 = TIMx->CR2; + + /* Get the TIMx CCMR2 register value */ + tmpccmrx = TIMx->CCMR2; + + /* Reset the Output Compare mode and Capture/Compare selection Bits */ + tmpccmrx &= ~TIM_CCMR2_OC3M; + tmpccmrx &= ~TIM_CCMR2_CC3S; + /* Select the Output Compare Mode */ + tmpccmrx |= OC_Config->OCMode; + + /* Reset the Output Polarity level */ + tmpccer &= ~TIM_CCER_CC3P; + /* Set the Output Compare Polarity */ + tmpccer |= (OC_Config->OCPolarity << 8U); + + /* Write to TIMx CR2 */ + TIMx->CR2 = tmpcr2; + + /* Write to TIMx CCMR2 */ + TIMx->CCMR2 = tmpccmrx; + + /* Set the Capture Compare Register value */ + TIMx->CCR3 = OC_Config->Pulse; + + /* Write to TIMx CCER */ + TIMx->CCER = tmpccer; +} + +/** + * @brief Time Ouput Compare 4 configuration + * @param TIMx to select the TIM peripheral + * @param OC_Config: The ouput configuration structure + * @retval None + */ +static void TIM_OC4_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config) +{ + uint32_t tmpccmrx = 0U; + uint32_t tmpccer = 0U; + uint32_t tmpcr2 = 0U; + + /* Disable the Channel 4: Reset the CC4E Bit */ + TIMx->CCER &= ~TIM_CCER_CC4E; + + /* Get the TIMx CCER register value */ + tmpccer = TIMx->CCER; + /* Get the TIMx CR2 register value */ + tmpcr2 = TIMx->CR2; + + /* Get the TIMx CCMR2 register value */ + tmpccmrx = TIMx->CCMR2; + + /* Reset the Output Compare mode and Capture/Compare selection Bits */ + tmpccmrx &= ~TIM_CCMR2_OC4M; + tmpccmrx &= ~TIM_CCMR2_CC4S; + + /* Select the Output Compare Mode */ + tmpccmrx |= (OC_Config->OCMode << 8U); + + /* Reset the Output Polarity level */ + tmpccer &= ~TIM_CCER_CC4P; + /* Set the Output Compare Polarity */ + tmpccer |= (OC_Config->OCPolarity << 12U); + + /* Write to TIMx CR2 */ + TIMx->CR2 = tmpcr2; + + /* Write to TIMx CCMR2 */ + TIMx->CCMR2 = tmpccmrx; + + /* Set the Capture Compare Register value */ + TIMx->CCR4 = OC_Config->Pulse; + + /* Write to TIMx CCER */ + TIMx->CCER = tmpccer; +} + +/** + * @brief Configure the TI1 as Input. + * @param TIMx to select the TIM peripheral. + * @param TIM_ICPolarity : The Input Polarity. + * This parameter can be one of the following values: + * @arg TIM_ICPolarity_Rising + * @arg TIM_ICPolarity_Falling + * @arg TIM_ICPolarity_BothEdge + * @param TIM_ICSelection: specifies the input to be used. + * This parameter can be one of the following values: + * @arg TIM_ICSelection_DirectTI: TIM Input 1 is selected to be connected to IC1. + * @arg TIM_ICSelection_IndirectTI: TIM Input 1 is selected to be connected to IC2. + * @arg TIM_ICSelection_TRC: TIM Input 1 is selected to be connected to TRC. + * @param TIM_ICFilter: Specifies the Input Capture Filter. + * This parameter must be a value between 0x00 and 0x0F. + * @retval None + */ +static void TIM_TI1_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, + uint32_t TIM_ICFilter) +{ + uint32_t tmpccmr1 = 0U; + uint32_t tmpccer = 0U; + + /* Disable the Channel 1: Reset the CC1E Bit */ + TIMx->CCER &= ~TIM_CCER_CC1E; + tmpccmr1 = TIMx->CCMR1; + tmpccer = TIMx->CCER; + + /* Select the Input */ + if(IS_TIM_CC2_INSTANCE(TIMx) != RESET) + { + tmpccmr1 &= ~TIM_CCMR1_CC1S; + tmpccmr1 |= TIM_ICSelection; + } + else + { + tmpccmr1 &= ~TIM_CCMR1_CC1S; + tmpccmr1 |= TIM_CCMR1_CC1S_0; + } + + /* Set the filter */ + tmpccmr1 &= ~TIM_CCMR1_IC1F; + tmpccmr1 |= ((TIM_ICFilter << 4U) & TIM_CCMR1_IC1F); + + /* Select the Polarity and set the CC1E Bit */ + tmpccer &= ~(TIM_CCER_CC1P | TIM_CCER_CC1NP); + tmpccer |= (TIM_ICPolarity & (TIM_CCER_CC1P | TIM_CCER_CC1NP)); + + /* Write to TIMx CCMR1 and CCER registers */ + TIMx->CCMR1 = tmpccmr1; + TIMx->CCER = tmpccer; +} + +/** + * @brief Configure the Polarity and Filter for TI1. + * @param TIMx to select the TIM peripheral. + * @param TIM_ICPolarity : The Input Polarity. + * This parameter can be one of the following values: + * @arg TIM_ICPolarity_Rising + * @arg TIM_ICPolarity_Falling + * @arg TIM_ICPolarity_BothEdge + * @param TIM_ICFilter: Specifies the Input Capture Filter. + * This parameter must be a value between 0x00 and 0x0F. + * @retval None + */ +static void TIM_TI1_ConfigInputStage(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICFilter) +{ + uint32_t tmpccmr1 = 0U; + uint32_t tmpccer = 0U; + + /* Disable the Channel 1: Reset the CC1E Bit */ + tmpccer = TIMx->CCER; + TIMx->CCER &= ~TIM_CCER_CC1E; + tmpccmr1 = TIMx->CCMR1; + + /* Set the filter */ + tmpccmr1 &= ~TIM_CCMR1_IC1F; + tmpccmr1 |= (TIM_ICFilter << 4U); + + /* Select the Polarity and set the CC1E Bit */ + tmpccer &= ~(TIM_CCER_CC1P | TIM_CCER_CC1NP); + tmpccer |= TIM_ICPolarity; + + /* Write to TIMx CCMR1 and CCER registers */ + TIMx->CCMR1 = tmpccmr1; + TIMx->CCER = tmpccer; +} + +/** + * @brief Configure the TI2 as Input. + * @param TIMx to select the TIM peripheral + * @param TIM_ICPolarity : The Input Polarity. + * This parameter can be one of the following values: + * @arg TIM_ICPolarity_Rising + * @arg TIM_ICPolarity_Falling + * @arg TIM_ICPolarity_BothEdge + * @param TIM_ICSelection: specifies the input to be used. + * This parameter can be one of the following values: + * @arg TIM_ICSelection_DirectTI: TIM Input 2 is selected to be connected to IC2. + * @arg TIM_ICSelection_IndirectTI: TIM Input 2 is selected to be connected to IC1. + * @arg TIM_ICSelection_TRC: TIM Input 2 is selected to be connected to TRC. + * @param TIM_ICFilter: Specifies the Input Capture Filter. + * This parameter must be a value between 0x00 and 0x0F. + * @retval None + */ +static void TIM_TI2_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, + uint32_t TIM_ICFilter) +{ + uint32_t tmpccmr1 = 0U; + uint32_t tmpccer = 0U; + + /* Disable the Channel 2: Reset the CC2E Bit */ + TIMx->CCER &= ~TIM_CCER_CC2E; + tmpccmr1 = TIMx->CCMR1; + tmpccer = TIMx->CCER; + + /* Select the Input */ + tmpccmr1 &= ~TIM_CCMR1_CC2S; + tmpccmr1 |= (TIM_ICSelection << 8U); + + /* Set the filter */ + tmpccmr1 &= ~TIM_CCMR1_IC2F; + tmpccmr1 |= ((TIM_ICFilter << 12U) & TIM_CCMR1_IC2F); + + /* Select the Polarity and set the CC2E Bit */ + tmpccer &= ~(TIM_CCER_CC2P | TIM_CCER_CC2NP); + tmpccer |= ((TIM_ICPolarity << 4U) & (TIM_CCER_CC2P | TIM_CCER_CC2NP)); + + /* Write to TIMx CCMR1 and CCER registers */ + TIMx->CCMR1 = tmpccmr1 ; + TIMx->CCER = tmpccer; +} + +/** + * @brief Configure the Polarity and Filter for TI2. + * @param TIMx to select the TIM peripheral. + * @param TIM_ICPolarity : The Input Polarity. + * This parameter can be one of the following values: + * @arg TIM_ICPolarity_Rising + * @arg TIM_ICPolarity_Falling + * @arg TIM_ICPolarity_BothEdge + * @param TIM_ICFilter: Specifies the Input Capture Filter. + * This parameter must be a value between 0x00 and 0x0F. + * @retval None + */ +static void TIM_TI2_ConfigInputStage(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICFilter) +{ + uint32_t tmpccmr1 = 0U; + uint32_t tmpccer = 0U; + + /* Disable the Channel 2: Reset the CC2E Bit */ + TIMx->CCER &= ~TIM_CCER_CC2E; + tmpccmr1 = TIMx->CCMR1; + tmpccer = TIMx->CCER; + + /* Set the filter */ + tmpccmr1 &= ~TIM_CCMR1_IC2F; + tmpccmr1 |= (TIM_ICFilter << 12U); + + /* Select the Polarity and set the CC2E Bit */ + tmpccer &= ~(TIM_CCER_CC2P | TIM_CCER_CC2NP); + tmpccer |= (TIM_ICPolarity << 4U); + + /* Write to TIMx CCMR1 and CCER registers */ + TIMx->CCMR1 = tmpccmr1 ; + TIMx->CCER = tmpccer; +} + +/** + * @brief Configure the TI3 as Input. + * @param TIMx to select the TIM peripheral + * @param TIM_ICPolarity : The Input Polarity. + * This parameter can be one of the following values: + * @arg TIM_ICPolarity_Rising + * @arg TIM_ICPolarity_Falling + * @arg TIM_ICPolarity_BothEdge + * @param TIM_ICSelection: specifies the input to be used. + * This parameter can be one of the following values: + * @arg TIM_ICSelection_DirectTI: TIM Input 3 is selected to be connected to IC3. + * @arg TIM_ICSelection_IndirectTI: TIM Input 3 is selected to be connected to IC4. + * @arg TIM_ICSelection_TRC: TIM Input 3 is selected to be connected to TRC. + * @param TIM_ICFilter: Specifies the Input Capture Filter. + * This parameter must be a value between 0x00 and 0x0F. + * @retval None + */ +static void TIM_TI3_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, + uint32_t TIM_ICFilter) +{ + uint32_t tmpccmr2 = 0U; + uint32_t tmpccer = 0U; + + /* Disable the Channel 3: Reset the CC3E Bit */ + TIMx->CCER &= ~TIM_CCER_CC3E; + tmpccmr2 = TIMx->CCMR2; + tmpccer = TIMx->CCER; + + /* Select the Input */ + tmpccmr2 &= ~TIM_CCMR2_CC3S; + tmpccmr2 |= TIM_ICSelection; + + /* Set the filter */ + tmpccmr2 &= ~TIM_CCMR2_IC3F; + tmpccmr2 |= ((TIM_ICFilter << 4U) & TIM_CCMR2_IC3F); + + /* Select the Polarity and set the CC3E Bit */ + tmpccer &= ~(TIM_CCER_CC3P | TIM_CCER_CC3NP); + tmpccer |= ((TIM_ICPolarity << 8U) & (TIM_CCER_CC3P | TIM_CCER_CC3NP)); + + /* Write to TIMx CCMR2 and CCER registers */ + TIMx->CCMR2 = tmpccmr2; + TIMx->CCER = tmpccer; +} + +/** + * @brief Configure the TI4 as Input. + * @param TIMx to select the TIM peripheral + * @param TIM_ICPolarity : The Input Polarity. + * This parameter can be one of the following values: + * @arg TIM_ICPolarity_Rising + * @arg TIM_ICPolarity_Falling + * @arg TIM_ICPolarity_BothEdge + * @param TIM_ICSelection: specifies the input to be used. + * This parameter can be one of the following values: + * @arg TIM_ICSelection_DirectTI: TIM Input 4 is selected to be connected to IC4. + * @arg TIM_ICSelection_IndirectTI: TIM Input 4 is selected to be connected to IC3. + * @arg TIM_ICSelection_TRC: TIM Input 4 is selected to be connected to TRC. + * @param TIM_ICFilter: Specifies the Input Capture Filter. + * This parameter must be a value between 0x00 and 0x0F. + * @retval None + */ +static void TIM_TI4_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, + uint32_t TIM_ICFilter) +{ + uint32_t tmpccmr2 = 0U; + uint32_t tmpccer = 0U; + + /* Disable the Channel 4: Reset the CC4E Bit */ + TIMx->CCER &= ~TIM_CCER_CC4E; + tmpccmr2 = TIMx->CCMR2; + tmpccer = TIMx->CCER; + + /* Select the Input */ + tmpccmr2 &= ~TIM_CCMR2_CC4S; + tmpccmr2 |= (TIM_ICSelection << 8U); + + /* Set the filter */ + tmpccmr2 &= ~TIM_CCMR2_IC4F; + tmpccmr2 |= ((TIM_ICFilter << 12U) & TIM_CCMR2_IC4F); + + /* Select the Polarity and set the CC4E Bit */ + tmpccer &= ~(TIM_CCER_CC4P | TIM_CCER_CC4NP); + tmpccer |= ((TIM_ICPolarity << 12U) & (TIM_CCER_CC4P | TIM_CCER_CC4NP)); + + /* Write to TIMx CCMR2 and CCER registers */ + TIMx->CCMR2 = tmpccmr2; + TIMx->CCER = tmpccer ; +} + +/** + * @brief Selects the Input Trigger source + * @param TIMx to select the TIM peripheral + * @param InputTriggerSource: The Input Trigger source. + * This parameter can be one of the following values: + * @arg TIM_TS_ITR0: Internal Trigger 0 + * @arg TIM_TS_ITR1: Internal Trigger 1 + * @arg TIM_TS_ITR2: Internal Trigger 2 + * @arg TIM_TS_ITR3: Internal Trigger 3 + * @arg TIM_TS_TI1F_ED: TI1 Edge Detector + * @arg TIM_TS_TI1FP1: Filtered Timer Input 1 + * @arg TIM_TS_TI2FP2: Filtered Timer Input 2 + * @arg TIM_TS_ETRF: External Trigger input + * @retval None + */ +static void TIM_ITRx_SetConfig(TIM_TypeDef *TIMx, uint16_t InputTriggerSource) +{ + uint32_t tmpsmcr = 0U; + + /* Get the TIMx SMCR register value */ + tmpsmcr = TIMx->SMCR; + /* Reset the TS Bits */ + tmpsmcr &= ~TIM_SMCR_TS; + /* Set the Input Trigger source and the slave mode*/ + tmpsmcr |= InputTriggerSource | TIM_SLAVEMODE_EXTERNAL1; + /* Write to TIMx SMCR */ + TIMx->SMCR = tmpsmcr; +} +/** + * @brief Configures the TIMx External Trigger (ETR). + * @param TIMx to select the TIM peripheral + * @param TIM_ExtTRGPrescaler: The external Trigger Prescaler. + * This parameter can be one of the following values: + * @arg TIM_ExtTRGPSC_DIV1: ETRP Prescaler OFF. + * @arg TIM_ExtTRGPSC_DIV2: ETRP frequency divided by 2. + * @arg TIM_ExtTRGPSC_DIV4: ETRP frequency divided by 4. + * @arg TIM_ExtTRGPSC_DIV8: ETRP frequency divided by 8. + * @param TIM_ExtTRGPolarity: The external Trigger Polarity. + * This parameter can be one of the following values: + * @arg TIM_ExtTRGPolarity_Inverted: active low or falling edge active. + * @arg TIM_ExtTRGPolarity_NonInverted: active high or rising edge active. + * @param ExtTRGFilter: External Trigger Filter. + * This parameter must be a value between 0x00 and 0x0F + * @retval None + */ +static void TIM_ETR_SetConfig(TIM_TypeDef* TIMx, uint32_t TIM_ExtTRGPrescaler, + uint32_t TIM_ExtTRGPolarity, uint32_t ExtTRGFilter) +{ + uint32_t tmpsmcr = 0U; + + tmpsmcr = TIMx->SMCR; + + /* Reset the ETR Bits */ + tmpsmcr &= ~(TIM_SMCR_ETF | TIM_SMCR_ETPS | TIM_SMCR_ECE | TIM_SMCR_ETP); + + /* Set the Prescaler, the Filter value and the Polarity */ + tmpsmcr |= (uint32_t)(TIM_ExtTRGPrescaler | (TIM_ExtTRGPolarity | (ExtTRGFilter << 8))); + + /* Write to TIMx SMCR */ + TIMx->SMCR = tmpsmcr; +} + +/** + * @brief Enables or disables the TIM Capture Compare Channel x. + * @param TIMx to select the TIM peripheral + * @param Channel: specifies the TIM Channel + * This parameter can be one of the following values: + * @arg TIM_Channel_1: TIM Channel 1 + * @arg TIM_Channel_2: TIM Channel 2 + * @arg TIM_Channel_3: TIM Channel 3 + * @arg TIM_Channel_4: TIM Channel 4 + * @param ChannelState: specifies the TIM Channel CCxE bit new state. + * This parameter can be: TIM_CCx_ENABLE or TIM_CCx_Disable. + * @retval None + */ +static void TIM_CCxChannelCmd(TIM_TypeDef* TIMx, uint32_t Channel, uint32_t ChannelState) +{ + uint32_t tmp = 0U; + + /* Check the parameters */ + assert_param(IS_TIM_CCX_INSTANCE(TIMx,Channel)); + + tmp = TIM_CCER_CC1E << Channel; + + /* Reset the CCxE Bit */ + TIMx->CCER &= ~tmp; + + /* Set or reset the CCxE Bit */ + TIMx->CCER |= (uint32_t)(ChannelState << Channel); +} +/** + * @brief Set the slave timer configuration. + * @param htim : TIM handle + * @param sSlaveConfig: pointer to a TIM_SlaveConfigTypeDef structure that + * contains the selected trigger (internal trigger input, filtered + * timer input or external trigger input) and the ) and the Slave + * mode (Disable, Reset, Gated, Trigger, External clock mode 1). + * @retval None + */ +static void TIM_SlaveTimer_SetConfig(TIM_HandleTypeDef *htim, + TIM_SlaveConfigTypeDef * sSlaveConfig) +{ + uint32_t tmpsmcr = 0U; + uint32_t tmpccmr1 = 0U; + uint32_t tmpccer = 0U; + + /* Get the TIMx SMCR register value */ + tmpsmcr = htim->Instance->SMCR; + + /* Reset the Trigger Selection Bits */ + tmpsmcr &= ~TIM_SMCR_TS; + /* Set the Input Trigger source */ + tmpsmcr |= sSlaveConfig->InputTrigger; + + /* Reset the slave mode Bits */ + tmpsmcr &= ~TIM_SMCR_SMS; + /* Set the slave mode */ + tmpsmcr |= sSlaveConfig->SlaveMode; + + /* Write to TIMx SMCR */ + htim->Instance->SMCR = tmpsmcr; + + /* Configure the trigger prescaler, filter, and polarity */ + switch (sSlaveConfig->InputTrigger) + { + case TIM_TS_ETRF: + { + /* Check the parameters */ + assert_param(IS_TIM_ETR_INSTANCE(htim->Instance)); + assert_param(IS_TIM_TRIGGERPRESCALER(sSlaveConfig->TriggerPrescaler)); + assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); + assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); + /* Configure the ETR Trigger source */ + TIM_ETR_SetConfig(htim->Instance, + sSlaveConfig->TriggerPrescaler, + sSlaveConfig->TriggerPolarity, + sSlaveConfig->TriggerFilter); + } + break; + + case TIM_TS_TI1F_ED: + { + /* Check the parameters */ + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); + + /* Disable the Channel 1: Reset the CC1E Bit */ + tmpccer = htim->Instance->CCER; + htim->Instance->CCER &= ~TIM_CCER_CC1E; + tmpccmr1 = htim->Instance->CCMR1; + + /* Set the filter */ + tmpccmr1 &= ~TIM_CCMR1_IC1F; + tmpccmr1 |= ((sSlaveConfig->TriggerFilter) << 4U); + + /* Write to TIMx CCMR1 and CCER registers */ + htim->Instance->CCMR1 = tmpccmr1; + htim->Instance->CCER = tmpccer; + + } + break; + + case TIM_TS_TI1FP1: + { + /* Check the parameters */ + assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); + assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); + assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); + + /* Configure TI1 Filter and Polarity */ + TIM_TI1_ConfigInputStage(htim->Instance, + sSlaveConfig->TriggerPolarity, + sSlaveConfig->TriggerFilter); + } + break; + + case TIM_TS_TI2FP2: + { + /* Check the parameters */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); + assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); + + /* Configure TI2 Filter and Polarity */ + TIM_TI2_ConfigInputStage(htim->Instance, + sSlaveConfig->TriggerPolarity, + sSlaveConfig->TriggerFilter); + } + break; + + case TIM_TS_ITR0: + { + /* Check the parameter */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + } + break; + + case TIM_TS_ITR1: + { + /* Check the parameter */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + } + break; + + case TIM_TS_ITR2: + { + /* Check the parameter */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + } + break; + + case TIM_TS_ITR3: + { + /* Check the parameter */ + assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); + } + break; + + default: + break; + } +} + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_TIM_MODULE_ENABLED */ + +/** + * @} + */ +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c new file mode 100644 index 0000000..33f3798 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c @@ -0,0 +1,466 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_tim_ex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief TIM HAL module driver. + * @brief This file provides firmware functions to manage the following + * functionalities of the Timer (TIM) peripheral: + * + Time Hall Sensor Interface Initialization + * + Time Hall Sensor Interface Start + * + Time Master and Slave synchronization configuration + @verbatim +================================================================================ + ##### TIM specific features integration ##### +================================================================================ + + [..] The Timer features include: + (#) 16-bit up, down, up/down auto-reload counter. + (#) 16-bit programmable prescaler allowing dividing (also on the fly) the counter clock + frequency either by any factor between 1 and 65536. + (#) Up to 4 independent channels for: + Input Capture + Output Compare + PWM generation (Edge and Center-aligned Mode) + One-pulse mode output + (#) Synchronization circuit to control the timer with external signals and to interconnect + several timers together. + (#) Supports incremental (quadrature) encoder and hall-sensor circuitry for positioning + purposes + + ##### How to use this driver ##### +================================================================================ + [..] + (#) Enable the TIM interface clock using + __HAL_RCC_TIMx_CLK_ENABLE(); + + (#) TIM pins configuration + (++) Enable the clock for the TIM GPIOs using the following function: + __HAL_RCC_GPIOx_CLK_ENABLE(); + (++) Configure these TIM pins in Alternate function mode using HAL_GPIO_Init(); + + (#) The external Clock can be configured, if needed (the default clock is the internal clock from the APBx), + using the following function: + HAL_TIM_ConfigClockSource, the clock configuration should be done before any start function. + + (#) Configure the TIM in the desired operating mode using one of the + configuration function of this driver: + (++) HAL_TIMEx_MasterConfigSynchronization() to configure the peripheral in master mode. + + (#) Remap the Timer I/O using HAL_TIMEx_RemapConfig() API. + + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @addtogroup TIMEx + * @brief TIMEx HAL module driver + * @{ + */ + +#ifdef HAL_TIM_MODULE_ENABLED + + +/** @addtogroup TIMEx_Exported_Functions + * @{ + */ + + +/** @addtogroup TIMEx_Exported_Functions_Group1 + * @brief Peripheral Control functions + * +@verbatim + =============================================================================== + ##### Peripheral Control functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Configure Master and the Slave synchronization. + +@endverbatim + * @{ + */ + +/** + * @brief Configures the TIM in master mode. + * @param htim: TIM handle. + * @param sMasterConfig: pointer to a TIM_MasterConfigTypeDef structure that + * contains the selected trigger output (TRGO) and the Master/Slave + * mode. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, TIM_MasterConfigTypeDef * sMasterConfig) +{ + /* Check the parameters */ + assert_param(IS_TIM_MASTER_INSTANCE(htim->Instance)); + assert_param(IS_TIM_TRGO_SOURCE(sMasterConfig->MasterOutputTrigger)); + assert_param(IS_TIM_MSM_STATE(sMasterConfig->MasterSlaveMode)); + + __HAL_LOCK(htim); + + /* Change the handler state */ + htim->State = HAL_TIM_STATE_BUSY; + + /* Reset the MMS Bits */ + htim->Instance->CR2 &= ~TIM_CR2_MMS; + /* Select the TRGO source */ + htim->Instance->CR2 |= sMasterConfig->MasterOutputTrigger; + + /* Reset the MSM Bit */ + htim->Instance->SMCR &= ~TIM_SMCR_MSM; + /* Set or Reset the MSM Bit */ + htim->Instance->SMCR |= sMasterConfig->MasterSlaveMode; + + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + + +#if defined (STM32L071xx) || defined (STM32L072xx) || defined (STM32L073xx) \ + || defined (STM32L081xx) || defined (STM32L082xx) || defined (STM32L083xx) + +/** + * @brief Configures the remapping of the TIM2, TIM3, TIM21 and TIM22 inputs. + * The channel inputs (T1..T4) and the Trigger input (ETR) of the + * timers can be remaped thanks to this function. When an input is + * mapped, on a GPIO, refer yourself to the GPIO alternate functions + * for more details. + * @note It is not possible to connect TIM2 and TIM21 on + * GPIOB5_AF4 at the same time. + * When selecting TIM3_TI2_GPIOB5_AF4, Channel2 of TIM3 will be + * connected to GPIOB5_AF4 and Channel2 of TIM22 will be connected to + * some other GPIOs. (refer to alternate functions for more details) + * When selecting TIM3_TI2_GPIO_DEF, Channel2 of Timer 3 will be + * connected an GPIO (other than GPIOB5_AF4) and Channel2 of TIM22 + * will be connected to GPIOB5_AF4. + * + * @param htim: pointer to a TIM_HandleTypeDef structure that contains + * the configuration information for TIM module. + * @param Remap: specifies the TIM input remapping source. + * This parameter is a combination of the following values + * depending on TIM instance: + * + * For TIM2, the parameter can have the following values: + * @arg TIM2_ETR_GPIO: TIM2 ETR connected to GPIO (default): + * GPIOA(0)_AF5 or GPIOA(5)_AF2 or + * GPIOA(15)_AF2 or GPIOE(9)_AF2 + * @arg TIM2_ETR_HSI48: TIM2 ETR connected to HSI48 + * @arg TIM2_ETR_HSI16: TIM2 ETR connected to HSI16 + * @arg TIM2_ETR_LSE: TIM2 ETR connected to LSE + * @arg TIM2_ETR_COMP2_OUT: TIM2 ETR connected to COMP2 output + * @arg TIM2_ETR_COMP1_OUT: TIM2 ETR connected to COMP1 output + * @arg TIM2_TI4_GPIO : TIM2 TI4 connected to GPIO1(default): + * GPIOA(3)_AF2 or GPIOB(11)_AF2 or + * GPIOE(12)_AF0 + * @arg TIM2_TI4_COMP1: TIM2 TI4 connected to COMP1 + * @arg TIM2_TI4_COMP2: TIM2 TI4 connected to COMP2 + * + * For TIM3, the parameter can have the following values: + * @arg TIM3_ETR_GPIO: TIM3 ETR connected to GPIO (default): + * GPIOE(2)_AF2 or GPIOD(2)_AF2 or + * GPIOE(2)AF2 + * @arg TIM3_ETR_HSI: TIM3 ETR connected to HSI + * @arg TIM3_TI1_USB_SOF: TIM3 TI1 connected to USB_SOF (default) + * @arg TIM3_TI1_GPIO: TIM3 TI1 connected to GPIO : + * GPIOE(3)_AF2 or GPIOA(6)_AF2 or + * GPIOC(6)_AF2 or GPIOB(4)_AF2 + * @arg TIM3_TI2_GPIOB5_AF4:TIM3 TI3 connected to GPIOB(5)_AF4 + * (refer to note) + * @arg TIM3_TI2_GPIO_DEF: TIM3 TI3 connected to GPIO (default): + * GPIO_A(7)_AF2 or GPIO_B(5)_AF4 or + * GPIOC(7)_AF2 or GPIOE(7)_AF2 + * @arg TIM3_TI4_GPIO_DEF: TIM3 TI4 connected to GPIO: + * GPIO_B(1)_AF2 or GPIO_E(6)_AF2 + * @arg TIM3_TI4_GPIOC9_AF2:TIM3 TI4 connected to GPIOC(9)_AF2 + * + * For TIM21, the parameter can have the following values: + * @arg TIM21_ETR_GPIO: TIM21 ETR connected to GPIO(default) : + * APB2_PC(9)_AF0 or APB2_PA(1)_AF5 + * @arg TIM21_ETR_COMP2_OUT:TIM21 ETR connected to COMP2 output + * @arg TIM21_ETR_COMP1_OUT:TIM21 ETR connected to COMP1 output + * @arg TIM21_ETR_LSE: TIM21 ETR connected to LSE + * @arg TIM21_TI1_MCO: TIM21 TI1 connected to MCO + * @arg TIM21_TI1_RTC_WKUT_IT: TIM21 TI1 connected to RTC WAKEUP interrupt + * @arg TIM21_TI1_HSE_RTC: TIM21 TI1 connected to HSE_RTC + * @arg TIM21_TI1_MSI: TIM21 TI1 connected to MSI clock + * @arg TIM21_TI1_LSE: TIM21 TI1 connected to LSE + * @arg TIM21_TI1_LSI: TIM21 TI1 connected to LSI + * @arg TIM21_TI1_COMP1_OUT:TIM21 TI1 connected to COMP1_OUT + * @arg TIM21_TI1_GPIO: TIM21 TI1 connected to GPIO(default): + * GPIOA(2)_AF0 or GPIOB(13)_AF6 or + * GPIOE(5)_AF0 or GPIOD(0)_AF0 + * @arg TIM21_TI2_GPIO: TIM21 TI2 connected to GPIO(default): + * GPIOA(3)_AF0 or GPIOB(14)_AF6 or + * GPIOE(6)_AF0 or GPIOD(7)_AF1 + * @arg TIM21_TI2_COMP2_OUT:TIM21 TI2 connected to COMP2 output + * + * For TIM22, the parameter can have the following values: + * @arg TIM22_ETR_LSE: TIM22 ETR connected to LSE + * @arg TIM22_ETR_COMP2_OUT:TIM22 ETR connected to COMP2 output + * @arg TIM22_ETR_COMP1_OUT:TIM22 ETR connected to COMP1 output + * @arg TIM22_ETR_GPIO: TIM22 ETR connected to GPIO(default): + * GPIOC(8)_AF0 or GPIOA(4)_AF5 + * @arg TIM22_TI1_GPIO1: TIM22 TI1 connected to GPIO(default): + * GPIOC(6)_AF0 or GPIOA(6)_AF5 or + * GPIOB(4)_AF4 or GPIOE(0)_AF3 + * @arg TIM22_TI1_COMP2_OUT:TIM22 TI1 connected to COMP2 output + * @arg TIM22_TI1_COMP1_OUT:TIM22 TI1 connected to COMP1 output + * @arg TIM22_TI1_GPIO2: TIM22 TI1 connected to GPIO: + * GPIOC(6)_AF0 or GPIOA(6)_AF5 or + * GPIOB(4)_AF4 or GPIOE(3)_AF0 + * + * @retval HAL status + */ +#elif defined (STM32L031xx) || defined (STM32L041xx) + /** + * @brief Configures the remapping of the TIM2, TIM21 and TIM22 inputs. + * The channel inputs (T1..T4) and the Trigger input (ETR) of the + * timers can be remaped thanks to this function. When an input is + * mapped, on a GPIO, refer yourself to the GPIO alternate functions + * for more details. + * + * @param htim: pointer to a TIM_HandleTypeDef structure that contains + * the configuration information for TIM module. + * @param Remap: specifies the TIM input remapping source. + * This parameter is a combination of the following values + * depending on TIM instance: + * + * For TIM2, the parameter can have the following values: + * @arg TIM2_ETR_GPIO: TIM2 ETR connected to GPIO (default): + * GPIOA(0)_AF5 or GPIOA(5)_AF2 or + * GPIOA(15)_AF2 + * @arg TIM2_ETR_HSI16: TIM2 ETR connected to HS16 (HSIOUT) + * @arg TIM2_ETR_LSE: TIM2 ETR connected to LSE + * @arg TIM2_ETR_COMP2_OUT: TIM2 ETR connected to COMP2 output + * @arg TIM2_ETR_COMP1_OUT: TIM2 ETR connected to COMP1 output + * @arg TIM2_TI4_GPIO : TIM2 TI4 connected to GPIO (default): + * GPIOA(3)_AF2 or GPIOB(11)_AF2 or + * GPIOB(1)_AF5 + * @arg TIM2_TI4_COMP1_OUT: TIM2 TI4 connected to COMP1 output + * @arg TIM2_TI4_COMP2_OUT: TIM2 TI4 connected to COMP2 output + * + * For TIM21, the parameter can have the following values: + * @arg TIM21_ETR_GPIO: TIM21 ETR connected to GPIO(default) : + * APB2_PA(1)_AF5 + * @arg TIM21_ETR_COMP2_OUT:TIM21 ETR connected to COMP2 output + * @arg TIM21_ETR_COMP1_OUT:TIM21 ETR connected to COMP1 output + * @arg TIM21_ETR_LSE: TIM21 ETR connected to LSE + * @arg TIM21_TI1_MCO: TIM21 TI1 connected to MCO + * @arg TIM21_TI1_RTC_WKUT_IT: TIM21 TI1 connected to RTC WAKEUP interrupt + * @arg TIM21_TI1_HSE_RTC: TIM21 TI1 connected to HSE_RTC + * @arg TIM21_TI1_MSI: TIM21 TI1 connected to MSI clock + * @arg TIM21_TI1_LSE: TIM21 TI1 connected to LSE + * @arg TIM21_TI1_LSI: TIM21 TI1 connected to LSI + * @arg TIM21_TI1_COMP1_OUT:TIM21 TI1 connected to COMP1_OUT + * @arg TIM21_TI2_GPIO: TIM21 TI2 connected to GPIO(default): + * GPIOA(3)_AF0 or GPIOB(14)_AF6 + * @arg TIM21_TI2_COMP2_OUT:TIM21 TI2 connected to COMP2 output + * + * For TIM22, the parameter can have the following values: + * @arg TIM22_ETR_LSE: TIM22 ETR connected to LSE + * @arg TIM22_ETR_COMP2_OUT:TIM22 ETR connected to COMP2 output + * @arg TIM22_ETR_COMP1_OUT:TIM22 ETR connected to COMP1 output + * @arg TIM22_ETR_GPIO: TIM22 ETR connected to GPIO(default): + * GPIOA(4)_AF5 + * @arg TIM22_TI1_GPIO1: TIM22 TI1 connected to GPIO(default): + * GPIOC(0)_AF6 or GPIOA(5)_AF6 or + * GPIOB(4)_AF4 + * @arg TIM22_TI1_COMP2_OUT:TIM22 TI1 connected to COMP2 output + * @arg TIM22_TI1_COMP1_OUT:TIM22 TI1 connected to COMP1 output + * @arg TIM22_TI1_GPIO2: TIM22 TI1 connected to GPIO: + * GPIOA(6)_AF5 or GPIOB(4)_AF4 + * + * @retval HAL status + */ +#elif defined (STM32L011xx) || defined (STM32L021xx) + /** + * @brief Configures the remapping of the TIM2 and TIM21 inputs. + * The channel inputs (T1..T4) and the Trigger input (ETR) of the + * timers can be remaped thanks to this function. When an input is + * mapped, on a GPIO, refer yourself to the GPIO alternate functions + * for more details. + * + * @param htim: pointer to a TIM_HandleTypeDef structure that contains + * the configuration information for TIM module. + * @param Remap: specifies the TIM input remapping source. + * This parameter is a combination of the following values + * depending on TIM instance: + * + * For TIM2, the parameter can have the following values: + * @arg TIM2_ETR_GPIO: TIM2 ETR connected to GPIO (default): + * GPIOA(0)_AF5 or GPIOA(5)_AF2 or + * GPIOA(15)_AF2 + * @arg TIM2_ETR_HSI16: TIM2 ETR connected to HS16 (HSIOUT) + * @arg TIM2_ETR_LSE: TIM2 ETR connected to LSE + * @arg TIM2_ETR_COMP2_OUT: TIM2 ETR connected to COMP2 output + * @arg TIM2_ETR_COMP1_OUT: TIM2 ETR connected to COMP1 output + * @arg TIM2_TI4_GPIO : TIM2 TI4 connected to GPIO (default): + * GPIOA(3)_AF2 or GPIOB(11)_AF2 or + * GPIOB(1)_AF5 + * @arg TIM2_TI4_COMP1_OUT: TIM2 TI4 connected to COMP1 output + * @arg TIM2_TI4_COMP2_OUT: TIM2 TI4 connected to COMP2 output + * + * For TIM21, the parameter can have the following values: + * @arg TIM21_ETR_GPIO: TIM21 ETR connected to GPIO(default) : + * APB2_PA(1)_AF5 + * @arg TIM21_ETR_COMP2_OUT:TIM21 ETR connected to COMP2 output + * @arg TIM21_ETR_COMP1_OUT:TIM21 ETR connected to COMP1 output + * @arg TIM21_ETR_LSE: TIM21 ETR connected to LSE + * @arg TIM21_TI1_MCO: TIM21 TI1 connected to MCO + * @arg TIM21_TI1_RTC_WKUT_IT: TIM21 TI1 connected to RTC WAKEUP interrupt + * @arg TIM21_TI1_HSE_RTC: TIM21 TI1 connected to HSE_RTC + * @arg TIM21_TI1_MSI: TIM21 TI1 connected to MSI clock + * @arg TIM21_TI1_LSE: TIM21 TI1 connected to LSE + * @arg TIM21_TI1_LSI: TIM21 TI1 connected to LSI + * @arg TIM21_TI1_COMP1_OUT:TIM21 TI1 connected to COMP1_OUT + * @arg TIM21_TI2_GPIO: TIM21 TI2 connected to GPIO(default): + * GPIOA(3)_AF0 or GPIOB(14)_AF6 + * @arg TIM21_TI2_COMP2_OUT:TIM21 TI2 connected to COMP2 output + * + * @retval HAL status + */ +#else +/** + * @brief Configures the remapping of the TIM2, TIM21 and TIM22 inputs. + * The channel inputs (T1..T4) and the Trigger input (ETR) of the + * timers can be remaped thanks to this function. When an input is + * mapped, on a GPIO, refer yourself to the GPIO alternate functions + * for more details. + * + * @param htim: pointer to a TIM_HandleTypeDef structure that contains + * the configuration information for TIM module. + * @param Remap: specifies the TIM input remapping source. + * This parameter is a combination of the following values + * depending on TIM instance: + * + * For TIM2, the parameter can have the following values: + * @arg TIM2_ETR_GPIO: TIM2 ETR connected to GPIO (default): + * GPIOA(0)_AF5 or GPIOA(5)_AF2 or + * GPIOA(15)_AF2 or GPIOE(9)_AF2 + * @arg TIM2_ETR_HSI48: TIM2 ETR connected to HSI48 + * @arg TIM2_ETR_LSE: TIM2 ETR connected to LSE + * @arg TIM2_ETR_COMP2_OUT: TIM2 ETR connected to COMP2 output + * @arg TIM2_ETR_COMP1_OUT: TIM2 ETR connected to COMP1 output + * @arg TIM2_TI4_GPIO: TIM2 TI4 connected to GPIO1(default): + * GPIOA(3)_AF2 or GPIOB(11)_AF2 or + * GPIOE(12)_AF0 + * @arg TIM2_TI4_COMP1: TIM2 TI4 connected to COMP1 + * @arg TIM2_TI4_COMP2: TIM2 TI4 connected to COMP2 + * @arg TIM2_TI4_GPIO2: TIM2 TI4 connected to GPIO2 : + * GPIOA(3)_AF2 or GPIOB(11)_AF2 or + * GPIOE(12)_AF0 + * + * For TIM21, the parameter can have the following values: + * @arg TIM21_ETR_GPIO: TIM21 ETR connected to GPIO(default) : + * APB2_PC(9)_AF0 or APB2_PA(1)_AF5 + * @arg TIM21_ETR_COMP2_OUT:TIM21 ETR connected to COMP2 output + * @arg TIM21_ETR_COMP1_OUT:TIM21 ETR connected to COMP1 output + * @arg TIM21_ETR_LSE: TIM21 ETR connected to LSE + * @arg TIM21_TI1_MCO: TIM21 TI1 connected to MCO + * @arg TIM21_TI1_RTC_WKUT_IT: TIM21 TI1 connected to RTC WAKEUP interrupt + * @arg TIM21_TI1_HSE_RTC: TIM21 TI1 connected to HSE_RTC + * @arg TIM21_TI1_MSI: TIM21 TI1 connected to MSI clock + * @arg TIM21_TI1_LSE: TIM21 TI1 connected to LSE + * @arg TIM21_TI1_LSI: TIM21 TI1 connected to LSI + * @arg TIM21_TI1_COMP1_OUT:TIM21 TI1 connected to COMP1_OUT + * @arg TIM21_TI1_GPIO: TIM21 TI1 connected to GPIO(default): + * GPIOA(2)_AF0 or GPIOB(13)_AF6 or + * GPIOE(5)_AF0 or GPIOD(0)_AF0 + * @arg TIM21_TI2_GPIO: TIM21 TI2 connected to GPIO(default): + * GPIOA(3)_AF0 or GPIOB(14)_AF6 or + * GPIOE(6)_AF0 or GPIOD(7)_AF1 + * @arg TIM21_TI2_COMP2_OUT:TIM21 TI2 connected to COMP2 output + * + * For TIM22, the parameter can have the following values: + * @arg TIM22_ETR_LSE: TIM22 ETR connected to LSE + * @arg TIM22_ETR_COMP2_OUT:TIM22 ETR connected to COMP2 output + * @arg TIM22_ETR_COMP1_OUT:TIM22 ETR connected to COMP1 output + * @arg TIM22_ETR_GPIO: TIM22 ETR connected to GPIO(default): + * GPIOC(8)_AF0 or GPIOA(4)_AF5 + * @arg TIM22_TI1_GPIO1: TIM22 TI1 connected to GPIO(default): + * GPIOC(6)_AF0 or GPIOA(6)_AF5 or + * GPIOB(4)_AF4 or GPIOE(0)_AF3 + * @arg TIM22_TI1_COMP2_OUT:TIM22 TI1 connected to COMP2 output + * @arg TIM22_TI1_COMP1_OUT:TIM22 TI1 connected to COMP1 output + * @arg TIM22_TI1_GPIO2: TIM22 TI1 connected to GPIO: + * GPIOC(6)_AF0 or GPIOA(6)_AF5 or + * GPIOB(4)_AF4 or GPIOE(3)_AF0 + * + * @retval HAL status + */ + +#endif /* STM32L07xxx or STM32L08xxx */ + +HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) +{ + + __HAL_LOCK(htim); + + /* Check parameters */ + assert_param(IS_TIM_REMAP(htim->Instance,Remap)); + + /* Set the Timer remapping configuration */ + htim->Instance->OR = Remap; + + htim->State = HAL_TIM_STATE_READY; + + __HAL_UNLOCK(htim); + + return HAL_OK; +} + +/** + * @} + */ + +/** + * @} + */ + +#endif /* HAL_TIM_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c new file mode 100644 index 0000000..5763c4b --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c @@ -0,0 +1,2876 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_uart.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief UART HAL module driver. + * This file provides firmware functions to manage the following + * functionalities of the Universal Asynchronous Receiver Transmitter Peripheral (UART). + * + Initialization and de-initialization functions + * + IO operation functions + * + Peripheral Control functions + * + * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + The UART HAL driver can be used as follows: + + (#) Declare a UART_HandleTypeDef handle structure (eg. UART_HandleTypeDef huart). + (#) Initialize the UART low level resources by implementing the HAL_UART_MspInit() API: + (++) Enable the USARTx interface clock. + (++) UART pins configuration: + (+++) Enable the clock for the UART GPIOs. + (+++) Configure these UART pins as alternate function pull-up. + (++) NVIC configuration if you need to use interrupt process (HAL_UART_Transmit_IT() + and HAL_UART_Receive_IT() APIs): + (+++) Configure the USARTx interrupt priority. + (+++) Enable the NVIC USART IRQ handle. + (++) UART interrupts handling: + -@@- The specific UART interrupts (Transmission complete interrupt, + RXNE interrupt and Error Interrupts) are managed using the macros + __HAL_UART_ENABLE_IT() and __HAL_UART_DISABLE_IT() inside the transmit and receive processes. + (++) DMA Configuration if you need to use DMA process (HAL_UART_Transmit_DMA() + and HAL_UART_Receive_DMA() APIs): + (+++) Declare a DMA handle structure for the Tx/Rx channel. + (+++) Enable the DMAx interface clock. + (+++) Configure the declared DMA handle structure with the required Tx/Rx parameters. + (+++) Configure the DMA Tx/Rx channel. + (+++) Associate the initialized DMA handle to the UART DMA Tx/Rx handle. + (+++) Configure the priority and enable the NVIC for the transfer complete interrupt on the DMA Tx/Rx channel. + + (#) Program the Baud Rate, Word Length, Stop Bit, Parity, Hardware + flow control and Mode (Receiver/Transmitter) in the huart handle Init structure. + + (#) If required, program UART advanced features (TX/RX pins swap, auto Baud rate detection,...) + in the huart handle AdvancedInit structure. + + (#) For the UART asynchronous mode, initialize the UART registers by calling + the HAL_UART_Init() API. + + (#) For the UART Half duplex mode, initialize the UART registers by calling + the HAL_HalfDuplex_Init() API. + + (#) For the UART LIN (Local Interconnection Network) mode, initialize the UART registers + by calling the HAL_LIN_Init() API. + + (#) For the UART Multiprocessor mode, initialize the UART registers + by calling the HAL_MultiProcessor_Init() API. + + (#) For the UART RS485 Driver Enabled mode, initialize the UART registers + by calling the HAL_RS485Ex_Init() API. + + [..] + (@) These API's (HAL_UART_Init(), HAL_HalfDuplex_Init(), HAL_LIN_Init(), HAL_MultiProcessor_Init(), + also configure the low level Hardware GPIO, CLOCK, CORTEX...etc) by + calling the customized HAL_UART_MspInit() API. + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup UART UART + * @brief HAL UART module driver + * @{ + */ + +#ifdef HAL_UART_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/** @defgroup UART_Private_Constants UART Private Constants + * @{ + */ +#define UART_CR1_FIELDS ((uint32_t)(USART_CR1_M | USART_CR1_PCE | USART_CR1_PS | \ + USART_CR1_TE | USART_CR1_RE | USART_CR1_OVER8)) /*!< UART or USART CR1 fields of parameters set by UART_SetConfig API */ + +#define UART_LPUART_BRR_MIN ((uint32_t)0x00000300) /* LPUART BRR minimum authorized value */ +#define UART_LPUART_BRR_MAX ((uint32_t)0x000FFFFF) /* LPUART BRR maximum authorized value */ +/** + * @} + */ + +/* Private macros ------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/** @addtogroup UART_Private_Functions + * @{ + */ +static void UART_EndTxTransfer(UART_HandleTypeDef *huart); +static void UART_EndRxTransfer(UART_HandleTypeDef *huart); +static void UART_DMATransmitCplt(DMA_HandleTypeDef *hdma); +static void UART_DMAReceiveCplt(DMA_HandleTypeDef *hdma); +static void UART_DMARxHalfCplt(DMA_HandleTypeDef *hdma); +static void UART_DMATxHalfCplt(DMA_HandleTypeDef *hdma); +static void UART_DMAError(DMA_HandleTypeDef *hdma); +static void UART_DMAAbortOnError(DMA_HandleTypeDef *hdma); +static void UART_DMATxAbortCallback(DMA_HandleTypeDef *hdma); +static void UART_DMARxAbortCallback(DMA_HandleTypeDef *hdma); +static void UART_DMATxOnlyAbortCallback(DMA_HandleTypeDef *hdma); +static void UART_DMARxOnlyAbortCallback(DMA_HandleTypeDef *hdma); +static HAL_StatusTypeDef UART_Transmit_IT(UART_HandleTypeDef *huart); +static HAL_StatusTypeDef UART_EndTransmit_IT(UART_HandleTypeDef *huart); +static HAL_StatusTypeDef UART_Receive_IT(UART_HandleTypeDef *huart); +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** @defgroup UART_Exported_Functions UART Exported Functions + * @{ + */ + +/** @defgroup UART_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Initialization and Configuration functions + * +@verbatim +=============================================================================== + ##### Initialization and Configuration functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to initialize the USARTx or the UARTy + in asynchronous mode. + (+) For the asynchronous mode the parameters below can be configured: + (++) Baud Rate + (++) Word Length + (++) Stop Bit + (++) Parity: If the parity is enabled, then the MSB bit of the data written + in the data register is transmitted but is changed by the parity bit. + (++) Hardware flow control + (++) Receiver/transmitter modes + (++) Over Sampling Method + (++) One-Bit Sampling Method + (+) For the asynchronous mode, the following advanced features can be configured as well: + (++) TX and/or RX pin level inversion + (++) data logical level inversion + (++) RX and TX pins swap + (++) RX overrun detection disabling + (++) DMA disabling on RX error + (++) MSB first on communication line + (++) auto Baud rate detection + [..] + The HAL_UART_Init(), HAL_HalfDuplex_Init(), HAL_LIN_Init()and HAL_MultiProcessor_Init()API + follow respectively the UART asynchronous, UART Half duplex, UART LIN mode + and UART multiprocessor mode configuration procedures (details for the procedures + are available in reference manual). + +@endverbatim + + Depending on the frame length defined by the M1 and M0 bits (7-bit, + 8-bit or 9-bit), the possible UART formats are listed in the + following table. + + Table 1. UART frame format. + +-----------------------------------------------------------------------+ + | M1 bit | M0 bit | PCE bit | UART frame | + |---------|---------|-----------|---------------------------------------| + | 0 | 0 | 0 | | SB | 8 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 0 | 1 | | SB | 7 bit data | PB | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 1 | 0 | | SB | 9 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 1 | 1 | | SB | 8 bit data | PB | STB | | + |---------|---------|-----------|---------------------------------------| + | 1 | 0 | 0 | | SB | 7 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 1 | 0 | 1 | | SB | 6 bit data | PB | STB | | + +-----------------------------------------------------------------------+ + + * @{ + */ + +/** + * @brief Initialize the UART mode according to the specified + * parameters in the UART_InitTypeDef and initialize the associated handle. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_Init(UART_HandleTypeDef *huart) +{ + /* Check the UART handle allocation */ + if(huart == NULL) + { + return HAL_ERROR; + } + + if(huart->Init.HwFlowCtl != UART_HWCONTROL_NONE) + { + /* Check the parameters */ + assert_param(IS_UART_HWFLOW_INSTANCE(huart->Instance)); + } + else + { + /* Check the parameters */ + assert_param(IS_UART_INSTANCE(huart->Instance)); + } + + if(huart->gState == HAL_UART_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + huart->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK */ + HAL_UART_MspInit(huart); + } + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + /* Set the UART Communication parameters */ + if (huart->AdvancedInit.AdvFeatureInit != UART_ADVFEATURE_NO_INIT) + { + UART_AdvFeatureConfig(huart); + } + + if (UART_SetConfig(huart) == HAL_ERROR) + { + return HAL_ERROR; + } + + /* In asynchronous mode, the following bits must be kept cleared: + - LINEN and CLKEN bits in the USART_CR2 register, + - SCEN, HDSEL and IREN bits in the USART_CR3 register.*/ + CLEAR_BIT(huart->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN)); + CLEAR_BIT(huart->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL | USART_CR3_IREN)); + + /* Enable the Peripheral */ + __HAL_UART_ENABLE(huart); + + /* TEACK and/or REACK to check before moving huart->gState and huart->RxState to Ready */ + return (UART_CheckIdleState(huart)); +} + +/** + * @brief Initialize the half-duplex mode according to the specified + * parameters in the UART_InitTypeDef and creates the associated handle. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_HalfDuplex_Init(UART_HandleTypeDef *huart) +{ + /* Check the UART handle allocation */ + if(huart == NULL) + { + return HAL_ERROR; + } + + /* Check UART instance */ + assert_param(IS_UART_HALFDUPLEX_INSTANCE(huart->Instance)); + + if(huart->gState == HAL_UART_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + huart->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK */ + HAL_UART_MspInit(huart); + } + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + /* Set the UART Communication parameters */ + if (huart->AdvancedInit.AdvFeatureInit != UART_ADVFEATURE_NO_INIT) + { + UART_AdvFeatureConfig(huart); + } + + if (UART_SetConfig(huart) == HAL_ERROR) + { + return HAL_ERROR; + } + + /* In half-duplex mode, the following bits must be kept cleared: + - LINEN and CLKEN bits in the USART_CR2 register, + - SCEN and IREN bits in the USART_CR3 register.*/ + CLEAR_BIT(huart->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN)); + CLEAR_BIT(huart->Instance->CR3, (USART_CR3_IREN | USART_CR3_SCEN)); + + /* Enable the Half-Duplex mode by setting the HDSEL bit in the CR3 register */ + SET_BIT(huart->Instance->CR3, USART_CR3_HDSEL); + + /* Enable the Peripheral */ + __HAL_UART_ENABLE(huart); + + /* TEACK and/or REACK to check before moving huart->gState and huart->RxState to Ready */ + return (UART_CheckIdleState(huart)); +} + + +/** + * @brief Initialize the LIN mode according to the specified + * parameters in the UART_InitTypeDef and creates the associated handle . + * @param huart: UART handle. + * @param BreakDetectLength: specifies the LIN break detection length. + * This parameter can be one of the following values: + * @arg @ref UART_LINBREAKDETECTLENGTH_10B 10-bit break detection + * @arg @ref UART_LINBREAKDETECTLENGTH_11B 11-bit break detection + * @retval HAL status + */ +HAL_StatusTypeDef HAL_LIN_Init(UART_HandleTypeDef *huart, uint32_t BreakDetectLength) +{ + /* Check the UART handle allocation */ + if(huart == NULL) + { + return HAL_ERROR; + } + + /* Check the LIN UART instance */ + assert_param(IS_UART_LIN_INSTANCE(huart->Instance)); + /* Check the Break detection length parameter */ + assert_param(IS_UART_LIN_BREAK_DETECT_LENGTH(BreakDetectLength)); + + /* LIN mode limited to 16-bit oversampling only */ + if(huart->Init.OverSampling == UART_OVERSAMPLING_8) + { + return HAL_ERROR; + } + /* LIN mode limited to 8-bit data length */ + if(huart->Init.WordLength != UART_WORDLENGTH_8B) + { + return HAL_ERROR; + } + + if(huart->gState == HAL_UART_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + huart->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK */ + HAL_UART_MspInit(huart); + } + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + /* Set the UART Communication parameters */ + if (huart->AdvancedInit.AdvFeatureInit != UART_ADVFEATURE_NO_INIT) + { + UART_AdvFeatureConfig(huart); + } + + if (UART_SetConfig(huart) == HAL_ERROR) + { + return HAL_ERROR; + } + + /* In LIN mode, the following bits must be kept cleared: + - LINEN and CLKEN bits in the USART_CR2 register, + - SCEN and IREN bits in the USART_CR3 register.*/ + CLEAR_BIT(huart->Instance->CR2, USART_CR2_CLKEN); + CLEAR_BIT(huart->Instance->CR3, (USART_CR3_HDSEL | USART_CR3_IREN | USART_CR3_SCEN)); + + /* Enable the LIN mode by setting the LINEN bit in the CR2 register */ + SET_BIT(huart->Instance->CR2, USART_CR2_LINEN); + + /* Set the USART LIN Break detection length. */ + MODIFY_REG(huart->Instance->CR2, USART_CR2_LBDL, BreakDetectLength); + + /* Enable the Peripheral */ + __HAL_UART_ENABLE(huart); + + /* TEACK and/or REACK to check before moving huart->gState and huart->RxState to Ready */ + return (UART_CheckIdleState(huart)); +} + + +/** + * @brief Initialize the multiprocessor mode according to the specified + * parameters in the UART_InitTypeDef and initialize the associated handle. + * @param huart: UART handle. + * @param Address: UART node address (4-, 6-, 7- or 8-bit long). + * @param WakeUpMethod: specifies the UART wakeup method. + * This parameter can be one of the following values: + * @arg @ref UART_WAKEUPMETHOD_IDLELINE WakeUp by an idle line detection + * @arg @ref UART_WAKEUPMETHOD_ADDRESSMARK WakeUp by an address mark + * @note If the user resorts to idle line detection wake up, the Address parameter + * is useless and ignored by the initialization function. + * @note If the user resorts to address mark wake up, the address length detection + * is configured by default to 4 bits only. For the UART to be able to + * manage 6-, 7- or 8-bit long addresses detection, the API + * HAL_MultiProcessorEx_AddressLength_Set() must be called after + * HAL_MultiProcessor_Init(). + * @retval HAL status + */ +HAL_StatusTypeDef HAL_MultiProcessor_Init(UART_HandleTypeDef *huart, uint8_t Address, uint32_t WakeUpMethod) +{ + /* Check the UART handle allocation */ + if(huart == NULL) + { + return HAL_ERROR; + } + + /* Check the wake up method parameter */ + assert_param(IS_UART_WAKEUPMETHOD(WakeUpMethod)); + + if(huart->gState == HAL_UART_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + huart->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK */ + HAL_UART_MspInit(huart); + } + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + /* Set the UART Communication parameters */ + if (huart->AdvancedInit.AdvFeatureInit != UART_ADVFEATURE_NO_INIT) + { + UART_AdvFeatureConfig(huart); + } + + if (UART_SetConfig(huart) == HAL_ERROR) + { + return HAL_ERROR; + } + + /* In multiprocessor mode, the following bits must be kept cleared: + - LINEN and CLKEN bits in the USART_CR2 register, + - SCEN, HDSEL and IREN bits in the USART_CR3 register. */ + CLEAR_BIT(huart->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN)); + CLEAR_BIT(huart->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL | USART_CR3_IREN)); + + if (WakeUpMethod == UART_WAKEUPMETHOD_ADDRESSMARK) + { + /* If address mark wake up method is chosen, set the USART address node */ + MODIFY_REG(huart->Instance->CR2, USART_CR2_ADD, ((uint32_t)Address << UART_CR2_ADDRESS_LSB_POS)); + } + + /* Set the wake up method by setting the WAKE bit in the CR1 register */ + MODIFY_REG(huart->Instance->CR1, USART_CR1_WAKE, WakeUpMethod); + + /* Enable the Peripheral */ + __HAL_UART_ENABLE(huart); + + /* TEACK and/or REACK to check before moving huart->gState and huart->RxState to Ready */ + return (UART_CheckIdleState(huart)); +} + + +/** + * @brief DeInitialize the UART peripheral. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_DeInit(UART_HandleTypeDef *huart) +{ + /* Check the UART handle allocation */ + if(huart == NULL) + { + return HAL_ERROR; + } + + /* Check the parameters */ + assert_param(IS_UART_INSTANCE(huart->Instance)); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + huart->Instance->CR1 = 0x0U; + huart->Instance->CR2 = 0x0U; + huart->Instance->CR3 = 0x0U; + + /* DeInit the low level hardware */ + HAL_UART_MspDeInit(huart); + + huart->ErrorCode = HAL_UART_ERROR_NONE; + huart->gState = HAL_UART_STATE_RESET; + huart->RxState = HAL_UART_STATE_RESET; + + /* Process Unlock */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Initialize the UART MSP. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UART_MspInit(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_MspInit can be implemented in the user file + */ +} + +/** + * @brief DeInitialize the UART MSP. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UART_MspDeInit(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_MspDeInit can be implemented in the user file + */ +} + +/** + * @} + */ + +/** @defgroup UART_Exported_Functions_Group2 IO operation functions + * @brief UART Transmit/Receive functions + * +@verbatim + =============================================================================== + ##### IO operation functions ##### + =============================================================================== + This subsection provides a set of functions allowing to manage the UART asynchronous + and Half duplex data transfers. + + (#) There are two mode of transfer: + (+) Blocking mode: The communication is performed in polling mode. + The HAL status of all data processing is returned by the same function + after finishing transfer. + (+) Non-Blocking mode: The communication is performed using Interrupts + or DMA, These API's return the HAL status. + The end of the data processing will be indicated through the + dedicated UART IRQ when using Interrupt mode or the DMA IRQ when + using DMA mode. + The HAL_UART_TxCpltCallback(), HAL_UART_RxCpltCallback() user callbacks + will be executed respectively at the end of the transmit or Receive process + The HAL_UART_ErrorCallback()user callback will be executed when a communication error is detected + + (#) Blocking mode API's are : + (+) HAL_UART_Transmit() + (+) HAL_UART_Receive() + + (#) Non-Blocking mode API's with Interrupt are : + (+) HAL_UART_Transmit_IT() + (+) HAL_UART_Receive_IT() + (+) HAL_UART_IRQHandler() + + (#) Non-Blocking mode API's with DMA are : + (+) HAL_UART_Transmit_DMA() + (+) HAL_UART_Receive_DMA() + (+) HAL_UART_DMAPause() + (+) HAL_UART_DMAResume() + (+) HAL_UART_DMAStop() + + (#) A set of Transfer Complete Callbacks are provided in Non_Blocking mode: + (+) HAL_UART_TxHalfCpltCallback() + (+) HAL_UART_TxCpltCallback() + (+) HAL_UART_RxHalfCpltCallback() + (+) HAL_UART_RxCpltCallback() + (+) HAL_UART_ErrorCallback() + + (#) Non-Blocking mode transfers could be aborted using Abort API's : + (+) HAL_UART_Abort() + (+) HAL_UART_AbortTransmit() + (+) HAL_UART_AbortReceive() + (+) HAL_UART_Abort_IT() + (+) HAL_UART_AbortTransmit_IT() + (+) HAL_UART_AbortReceive_IT() + + (#) For Abort services based on interrupts (HAL_UART_Abortxxx_IT), a set of Abort Complete Callbacks are provided: + (+) HAL_UART_AbortCpltCallback() + (+) HAL_UART_AbortTransmitCpltCallback() + (+) HAL_UART_AbortReceiveCpltCallback() + + (#) In Non-Blocking mode transfers, possible errors are split into 2 categories. + Errors are handled as follows : + (+) Error is considered as Recoverable and non blocking : Transfer could go till end, but error severity is + to be evaluated by user : this concerns Frame Error, Parity Error or Noise Error in Interrupt mode reception . + Received character is then retrieved and stored in Rx buffer, Error code is set to allow user to identify error type, + and HAL_UART_ErrorCallback() user callback is executed. Transfer is kept ongoing on UART side. + If user wants to abort it, Abort services should be called by user. + (+) Error is considered as Blocking : Transfer could not be completed properly and is aborted. + This concerns Overrun Error In Interrupt mode reception and all errors in DMA mode. + Error code is set to allow user to identify error type, and HAL_UART_ErrorCallback() user callback is executed. + + -@- In the Half duplex communication, it is forbidden to run the transmit + and receive process in parallel, the UART state HAL_UART_STATE_BUSY_TX_RX can't be useful. + +@endverbatim + * @{ + */ + +/** + * @brief Send an amount of data in blocking mode. + * @param huart: UART handle. + * @param pData: Pointer to data buffer. + * @param Size: Amount of data to be sent. + * @param Timeout: Timeout duration. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint16_t* tmp; + uint32_t tickstart = 0; + + /* Check that a Tx process is not already ongoing */ + if(huart->gState == HAL_UART_STATE_READY) + { + if((pData == NULL ) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be filled into TDR will be + handled through a u16 cast. */ + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->ErrorCode = HAL_UART_ERROR_NONE; + huart->gState = HAL_UART_STATE_BUSY_TX; + + /* Init tickstart for timeout managment*/ + tickstart = HAL_GetTick(); + + huart->TxXferSize = Size; + huart->TxXferCount = Size; + while(huart->TxXferCount > 0U) + { + huart->TxXferCount--; + if(UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TXE, RESET, tickstart, Timeout) != HAL_OK) + { + return HAL_TIMEOUT; + } + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + tmp = (uint16_t*) pData; + huart->Instance->TDR = (*tmp & (uint16_t)0x01FFU); + pData += 2U; + } + else + { + huart->Instance->TDR = (*pData++ & (uint8_t)0xFFU); + } + } + if(UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TC, RESET, tickstart, Timeout) != HAL_OK) + { + return HAL_TIMEOUT; + } + + /* At end of Tx process, restore huart->gState to Ready */ + huart->gState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive an amount of data in blocking mode. + * @param huart: UART handle. + * @param pData: pointer to data buffer. + * @param Size: amount of data to be received. + * @param Timeout: Timeout duration. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer for storing data to be received, should be aligned on a half word frontier (16 bits) + * (as received data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_Receive(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout) +{ + uint16_t* tmp; + uint16_t uhMask; + uint32_t tickstart = 0; + + /* Check that a Rx process is not already ongoing */ + if(huart->RxState == HAL_UART_STATE_READY) + { + if((pData == NULL ) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be received from RDR will be + handled through a u16 cast. */ + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->ErrorCode = HAL_UART_ERROR_NONE; + huart->RxState = HAL_UART_STATE_BUSY_RX; + + /* Init tickstart for timeout managment*/ + tickstart = HAL_GetTick(); + + huart->RxXferSize = Size; + huart->RxXferCount = Size; + + /* Computation of UART mask to apply to RDR register */ + UART_MASK_COMPUTATION(huart); + uhMask = huart->Mask; + + /* as long as data have to be received */ + while(huart->RxXferCount > 0U) + { + huart->RxXferCount--; + if(UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_RXNE, RESET, tickstart, Timeout) != HAL_OK) + { + return HAL_TIMEOUT; + } + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + tmp = (uint16_t*) pData ; + *tmp = (uint16_t)(huart->Instance->RDR & uhMask); + pData +=2U; + } + else + { + *pData++ = (uint8_t)(huart->Instance->RDR & (uint8_t)uhMask); + } + } + + /* At end of Rx process, restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Send an amount of data in interrupt mode. + * @param huart: UART handle. + * @param pData: pointer to data buffer. + * @param Size: amount of data to be sent. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_Transmit_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) +{ + /* Check that a Tx process is not already ongoing */ + if(huart->gState == HAL_UART_STATE_READY) + { + if((pData == NULL ) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be filled into TDR will be + handled through a u16 cast. */ + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->pTxBuffPtr = pData; + huart->TxXferSize = Size; + huart->TxXferCount = Size; + + huart->ErrorCode = HAL_UART_ERROR_NONE; + huart->gState = HAL_UART_STATE_BUSY_TX; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + /* Enable the UART Transmit Data Register Empty Interrupt */ + SET_BIT(huart->Instance->CR1, USART_CR1_TXEIE); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive an amount of data in interrupt mode. + * @param huart: UART handle. + * @param pData: pointer to data buffer. + * @param Size: amount of data to be received. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_Receive_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) +{ + /* Check that a Rx process is not already ongoing */ + if(huart->RxState == HAL_UART_STATE_READY) + { + if((pData == NULL ) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data to be received from RDR will be + handled through a u16 cast. */ + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->pRxBuffPtr = pData; + huart->RxXferSize = Size; + huart->RxXferCount = Size; + + /* Computation of UART mask to apply to RDR register */ + UART_MASK_COMPUTATION(huart); + + huart->ErrorCode = HAL_UART_ERROR_NONE; + huart->RxState = HAL_UART_STATE_BUSY_RX; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + /* Enable the UART Error Interrupt: (Frame error, noise error, overrun error) */ + SET_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Enable the UART Parity Error and Data Register not empty Interrupts */ + SET_BIT(huart->Instance->CR1, USART_CR1_PEIE | USART_CR1_RXNEIE); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Send an amount of data in DMA mode. + * @param huart: UART handle. + * @param pData: pointer to data buffer. + * @param Size: amount of data to be sent. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_Transmit_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) +{ + /* Check that a Tx process is not already ongoing */ + if(huart->gState == HAL_UART_STATE_READY) + { + if((pData == NULL ) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data copy into TDR will be + handled by DMA from a u16 frontier. */ + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->pTxBuffPtr = pData; + huart->TxXferSize = Size; + huart->TxXferCount = Size; + + huart->ErrorCode = HAL_UART_ERROR_NONE; + huart->gState = HAL_UART_STATE_BUSY_TX; + + /* Set the UART DMA transfer complete callback */ + huart->hdmatx->XferCpltCallback = UART_DMATransmitCplt; + + /* Set the UART DMA Half transfer complete callback */ + huart->hdmatx->XferHalfCpltCallback = UART_DMATxHalfCplt; + + /* Set the DMA error callback */ + huart->hdmatx->XferErrorCallback = UART_DMAError; + + /* Set the DMA abort callback */ + huart->hdmatx->XferAbortCallback = NULL; + + /* Enable the UART transmit DMA channel */ + HAL_DMA_Start_IT(huart->hdmatx, (uint32_t)huart->pTxBuffPtr, (uint32_t)&huart->Instance->TDR, Size); + + /* Clear the TC flag in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_TCF); + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + /* Enable the DMA transfer for transmit request by setting the DMAT bit + in the UART CR3 register */ + SET_BIT(huart->Instance->CR3, USART_CR3_DMAT); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Receive an amount of data in DMA mode. + * @param huart: UART handle. + * @param pData: pointer to data buffer. + * @param Size: amount of data to be received. + * @note When the UART parity is enabled (PCE = 1) the data received contain the parity bit. + * @note When UART parity is not enabled (PCE = 0), and Word Length is configured to 9 bits (M1-M0 = 01), + * address of user data buffer containing data to be sent, should be aligned on a half word frontier (16 bits) + * (as sent data will be handled using u16 pointer cast). Depending on compilation chain, + * use of specific alignment compilation directives or pragmas might be required to ensure proper alignment for pData. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_Receive_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) +{ + /* Check that a Rx process is not already ongoing */ + if(huart->RxState == HAL_UART_STATE_READY) + { + if((pData == NULL ) || (Size == 0U)) + { + return HAL_ERROR; + } + + /* In case of 9bits/No Parity transfer, pData buffer provided as input paramter + should be aligned on a u16 frontier, as data copy from RDR will be + handled by DMA from a u16 frontier. */ + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + if((((uint32_t)pData)&1) != 0) + { + return HAL_ERROR; + } + } + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->pRxBuffPtr = pData; + huart->RxXferSize = Size; + + huart->ErrorCode = HAL_UART_ERROR_NONE; + huart->RxState = HAL_UART_STATE_BUSY_RX; + + /* Set the UART DMA transfer complete callback */ + huart->hdmarx->XferCpltCallback = UART_DMAReceiveCplt; + + /* Set the UART DMA Half transfer complete callback */ + huart->hdmarx->XferHalfCpltCallback = UART_DMARxHalfCplt; + + /* Set the DMA error callback */ + huart->hdmarx->XferErrorCallback = UART_DMAError; + + /* Set the DMA abort callback */ + huart->hdmarx->XferAbortCallback = NULL; + + /* Enable the DMA channel */ + HAL_DMA_Start_IT(huart->hdmarx, (uint32_t)&huart->Instance->RDR, (uint32_t)huart->pRxBuffPtr, Size); + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + /* Enable the UART Parity Error Interrupt */ + SET_BIT(huart->Instance->CR1, USART_CR1_PEIE); + + /* Enable the UART Error Interrupt: (Frame error, noise error, overrun error) */ + SET_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Enable the DMA transfer for the receiver request by setting the DMAR bit + in the UART CR3 register */ + SET_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + return HAL_OK; + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Pause the DMA Transfer. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_DMAPause(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + if ((huart->gState == HAL_UART_STATE_BUSY_TX) && + (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT))) + { + /* Disable the UART DMA Tx request */ + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); + } + if ((huart->RxState == HAL_UART_STATE_BUSY_RX) && + (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR))) + { + /* Disable PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(huart->Instance->CR1, USART_CR1_PEIE); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Disable the UART DMA Rx request */ + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + } + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Resume the DMA Transfer. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_DMAResume(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + if(huart->gState == HAL_UART_STATE_BUSY_TX) + { + /* Enable the UART DMA Tx request */ + SET_BIT(huart->Instance->CR3, USART_CR3_DMAT); + } + if(huart->RxState == HAL_UART_STATE_BUSY_RX) + { + /* Clear the Overrun flag before resuming the Rx transfer */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF); + + /* Reenable PE and ERR (Frame error, noise error, overrun error) interrupts */ + SET_BIT(huart->Instance->CR1, USART_CR1_PEIE); + SET_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Enable the UART DMA Rx request */ + SET_BIT(huart->Instance->CR3, USART_CR3_DMAR); + } + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Stop the DMA Transfer. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UART_DMAStop(UART_HandleTypeDef *huart) +{ + /* The Lock is not implemented on this API to allow the user application + to call the HAL UART API under callbacks HAL_UART_TxCpltCallback() / HAL_UART_RxCpltCallback() / + HAL_UART_TxHalfCpltCallback / HAL_UART_RxHalfCpltCallback: + indeed, when HAL_DMA_Abort() API is called, the DMA TX/RX Transfer or Half Transfer complete + interrupt is generated if the DMA transfer interruption occurs at the middle or at the end of + the stream and the corresponding call back is executed. */ + + /* Stop UART DMA Tx request if ongoing */ + if ((huart->gState == HAL_UART_STATE_BUSY_TX) && + (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT))) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); + + /* Abort the UART DMA Tx channel */ + if(huart->hdmatx != NULL) + { + HAL_DMA_Abort(huart->hdmatx); + } + + UART_EndTxTransfer(huart); + } + + /* Stop UART DMA Rx request if ongoing */ + if ((huart->RxState == HAL_UART_STATE_BUSY_RX) && + (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR))) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + /* Abort the UART DMA Rx channel */ + if(huart->hdmarx != NULL) + { + HAL_DMA_Abort(huart->hdmarx); + } + + UART_EndRxTransfer(huart); + } + + return HAL_OK; +} + +/** + * @brief Abort ongoing transfers (blocking mode). + * @param huart UART handle. + * @note This procedure could be used for aborting any ongoing transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable UART Interrupts (Tx and Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort (in case of transfer in DMA mode) + * - Set handle State to READY + * @note This procedure is executed in blocking mode : when exiting function, Abort is considered as completed. + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_UART_Abort(UART_HandleTypeDef *huart) +{ + /* Disable TXEIE, TCIE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE)); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Disable the UART DMA Tx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); + + /* Abort the UART DMA Tx channel : use blocking DMA Abort API (no callback) */ + if(huart->hdmatx != NULL) + { + /* Set the UART DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + huart->hdmatx->XferAbortCallback = NULL; + + HAL_DMA_Abort(huart->hdmatx); + } + } + + /* Disable the UART DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + /* Abort the UART DMA Rx channel : use blocking DMA Abort API (no callback) */ + if(huart->hdmarx != NULL) + { + /* Set the UART DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + huart->hdmarx->XferAbortCallback = NULL; + + HAL_DMA_Abort(huart->hdmarx); + } + } + + /* Reset Tx and Rx transfer counters */ + huart->TxXferCount = 0; + huart->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->gState and huart->RxState to Ready */ + huart->gState = HAL_UART_STATE_READY; + huart->RxState = HAL_UART_STATE_READY; + + /* Reset Handle ErrorCode to No Error */ + huart->ErrorCode = HAL_UART_ERROR_NONE; + + return HAL_OK; +} + +/** + * @brief Abort ongoing Transmit transfer (blocking mode). + * @param huart UART handle. + * @note This procedure could be used for aborting any ongoing Tx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable UART Interrupts (Tx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort (in case of transfer in DMA mode) + * - Set handle State to READY + * @note This procedure is executed in blocking mode : when exiting function, Abort is considered as completed. + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_UART_AbortTransmit(UART_HandleTypeDef *huart) +{ + /* Disable TXEIE and TCIE interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); + + /* Disable the UART DMA Tx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); + + /* Abort the UART DMA Tx channel : use blocking DMA Abort API (no callback) */ + if(huart->hdmatx != NULL) + { + /* Set the UART DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + huart->hdmatx->XferAbortCallback = NULL; + + HAL_DMA_Abort(huart->hdmatx); + } + } + + /* Reset Tx transfer counter */ + huart->TxXferCount = 0; + + /* Restore huart->gState to Ready */ + huart->gState = HAL_UART_STATE_READY; + + return HAL_OK; +} + +/** + * @brief Abort ongoing Receive transfer (blocking mode). + * @param huart UART handle. + * @note This procedure could be used for aborting any ongoing Rx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable UART Interrupts (Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort (in case of transfer in DMA mode) + * - Set handle State to READY + * @note This procedure is executed in blocking mode : when exiting function, Abort is considered as completed. + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_UART_AbortReceive(UART_HandleTypeDef *huart) +{ + /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Disable the UART DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + /* Abort the UART DMA Rx channel : use blocking DMA Abort API (no callback) */ + if(huart->hdmarx != NULL) + { + /* Set the UART DMA Abort callback to Null. + No call back execution at end of DMA abort procedure */ + huart->hdmarx->XferAbortCallback = NULL; + + HAL_DMA_Abort(huart->hdmarx); + } + } + + /* Reset Rx transfer counter */ + huart->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; + + return HAL_OK; +} + +/** + * @brief Abort ongoing transfers (Interrupt mode). + * @param huart UART handle. + * @note This procedure could be used for aborting any ongoing transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable UART Interrupts (Tx and Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort_IT (in case of transfer in DMA mode) + * - Set handle State to READY + * - At abort completion, call user abort complete callback + * @note This procedure is executed in Interrupt mode, meaning that abort procedure could be + * considered as completed only when user abort complete callback is executed (not when exiting function). + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_UART_Abort_IT(UART_HandleTypeDef *huart) +{ + uint32_t abortcplt = 1; + + /* Disable TXEIE, TCIE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE)); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* If DMA Tx and/or DMA Rx Handles are associated to UART Handle, DMA Abort complete callbacks should be initialised + before any call to DMA Abort functions */ + /* DMA Tx Handle is valid */ + if(huart->hdmatx != NULL) + { + /* Set DMA Abort Complete callback if UART DMA Tx request if enabled. + Otherwise, set it to NULL */ + if(HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) + { + huart->hdmatx->XferAbortCallback = UART_DMATxAbortCallback; + } + else + { + huart->hdmatx->XferAbortCallback = NULL; + } + } + /* DMA Rx Handle is valid */ + if(huart->hdmarx != NULL) + { + /* Set DMA Abort Complete callback if UART DMA Rx request if enabled. + Otherwise, set it to NULL */ + if(HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) + { + huart->hdmarx->XferAbortCallback = UART_DMARxAbortCallback; + } + else + { + huart->hdmarx->XferAbortCallback = NULL; + } + } + + /* Disable the UART DMA Tx request if enabled */ + if(HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) + { + /* Disable DMA Tx at UART level */ + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); + + /* Abort the UART DMA Tx channel : use non blocking DMA Abort API (callback) */ + if(huart->hdmatx != NULL) + { + /* UART Tx DMA Abort callback has already been initialised : + will lead to call HAL_UART_AbortCpltCallback() at end of DMA abort procedure */ + + /* Abort DMA TX */ + if(HAL_DMA_Abort_IT(huart->hdmatx) != HAL_OK) + { + huart->hdmatx->XferAbortCallback = NULL; + } + else + { + abortcplt = 0; + } + } + } + + /* Disable the UART DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + /* Abort the UART DMA Rx channel : use non blocking DMA Abort API (callback) */ + if(huart->hdmarx != NULL) + { + /* UART Rx DMA Abort callback has already been initialised : + will lead to call HAL_UART_AbortCpltCallback() at end of DMA abort procedure */ + + /* Abort DMA RX */ + if(HAL_DMA_Abort_IT(huart->hdmarx) != HAL_OK) + { + huart->hdmarx->XferAbortCallback = NULL; + abortcplt = 1; + } + else + { + abortcplt = 0; + } + } + } + + /* if no DMA abort complete callback execution is required => call user Abort Complete callback */ + if (abortcplt == 1) + { + /* Reset Tx and Rx transfer counters */ + huart->TxXferCount = 0; + huart->RxXferCount = 0; + + /* Reset errorCode */ + huart->ErrorCode = HAL_UART_ERROR_NONE; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->gState and huart->RxState to Ready */ + huart->gState = HAL_UART_STATE_READY; + huart->RxState = HAL_UART_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_UART_AbortCpltCallback(huart); + } + + return HAL_OK; +} + +/** + * @brief Abort ongoing Transmit transfer (Interrupt mode). + * @param huart UART handle. + * @note This procedure could be used for aborting any ongoing Tx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable UART Interrupts (Tx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort_IT (in case of transfer in DMA mode) + * - Set handle State to READY + * - At abort completion, call user abort complete callback + * @note This procedure is executed in Interrupt mode, meaning that abort procedure could be + * considered as completed only when user abort complete callback is executed (not when exiting function). + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_UART_AbortTransmit_IT(UART_HandleTypeDef *huart) +{ + /* Disable TXEIE and TCIE interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); + + /* Disable the UART DMA Tx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); + + /* Abort the UART DMA Tx channel : use non blocking DMA Abort API (callback) */ + if(huart->hdmatx != NULL) + { + /* Set the UART DMA Abort callback : + will lead to call HAL_UART_AbortCpltCallback() at end of DMA abort procedure */ + huart->hdmatx->XferAbortCallback = UART_DMATxOnlyAbortCallback; + + /* Abort DMA TX */ + if(HAL_DMA_Abort_IT(huart->hdmatx) != HAL_OK) + { + /* Call Directly huart->hdmatx->XferAbortCallback function in case of error */ + huart->hdmatx->XferAbortCallback(huart->hdmatx); + } + } + else + { + /* Reset Tx transfer counter */ + huart->TxXferCount = 0; + + /* Restore huart->gState to Ready */ + huart->gState = HAL_UART_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_UART_AbortTransmitCpltCallback(huart); + } + } + else + { + /* Reset Tx transfer counter */ + huart->TxXferCount = 0; + + /* Restore huart->gState to Ready */ + huart->gState = HAL_UART_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_UART_AbortTransmitCpltCallback(huart); + } + + return HAL_OK; +} + +/** + * @brief Abort ongoing Receive transfer (Interrupt mode). + * @param huart UART handle. + * @note This procedure could be used for aborting any ongoing Rx transfer started in Interrupt or DMA mode. + * This procedure performs following operations : + * - Disable UART Interrupts (Rx) + * - Disable the DMA transfer in the peripheral register (if enabled) + * - Abort DMA transfer by calling HAL_DMA_Abort_IT (in case of transfer in DMA mode) + * - Set handle State to READY + * - At abort completion, call user abort complete callback + * @note This procedure is executed in Interrupt mode, meaning that abort procedure could be + * considered as completed only when user abort complete callback is executed (not when exiting function). + * @retval HAL status +*/ +HAL_StatusTypeDef HAL_UART_AbortReceive_IT(UART_HandleTypeDef *huart) +{ + /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Disable the UART DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + /* Abort the UART DMA Rx channel : use non blocking DMA Abort API (callback) */ + if(huart->hdmarx != NULL) + { + /* Set the UART DMA Abort callback : + will lead to call HAL_UART_AbortCpltCallback() at end of DMA abort procedure */ + huart->hdmarx->XferAbortCallback = UART_DMARxOnlyAbortCallback; + + /* Abort DMA RX */ + if(HAL_DMA_Abort_IT(huart->hdmarx) != HAL_OK) + { + /* Call Directly huart->hdmarx->XferAbortCallback function in case of error */ + huart->hdmarx->XferAbortCallback(huart->hdmarx); + } + } + else + { + /* Reset Rx transfer counter */ + huart->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_UART_AbortReceiveCpltCallback(huart); + } + } + else + { + /* Reset Rx transfer counter */ + huart->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; + + /* As no DMA to be aborted, call directly user Abort complete callback */ + HAL_UART_AbortReceiveCpltCallback(huart); + } + + return HAL_OK; +} + +/** + * @brief Handle UART interrupt request. + * @param huart: UART handle. + * @retval None + */ +void HAL_UART_IRQHandler(UART_HandleTypeDef *huart) +{ + uint32_t isrflags = READ_REG(huart->Instance->ISR); + uint32_t cr1its = READ_REG(huart->Instance->CR1); + uint32_t cr3its; + uint32_t errorflags; + + /* If no error occurs */ + errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); + if (errorflags == RESET) + { + /* UART in mode Receiver ---------------------------------------------------*/ + if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) + { + UART_Receive_IT(huart); + return; + } + } + + /* If some errors occur */ + cr3its = READ_REG(huart->Instance->CR3); + if( (errorflags != RESET) + && ( ((cr3its & USART_CR3_EIE) != RESET) + || ((cr1its & (USART_CR1_RXNEIE | USART_CR1_PEIE)) != RESET)) ) + { + /* UART parity error interrupt occurred -------------------------------------*/ + if(((isrflags & USART_ISR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) + { + __HAL_UART_CLEAR_IT(huart, UART_CLEAR_PEF); + + huart->ErrorCode |= HAL_UART_ERROR_PE; + } + + /* UART frame error interrupt occurred --------------------------------------*/ + if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) + { + __HAL_UART_CLEAR_IT(huart, UART_CLEAR_FEF); + + huart->ErrorCode |= HAL_UART_ERROR_FE; + } + + /* UART noise error interrupt occurred --------------------------------------*/ + if(((isrflags & USART_ISR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) + { + __HAL_UART_CLEAR_IT(huart, UART_CLEAR_NEF); + + huart->ErrorCode |= HAL_UART_ERROR_NE; + } + + /* UART Over-Run interrupt occurred -----------------------------------------*/ + if(((isrflags & USART_ISR_ORE) != RESET) && + (((cr1its & USART_CR1_RXNEIE) != RESET) || ((cr3its & USART_CR3_EIE) != RESET))) + { + __HAL_UART_CLEAR_IT(huart, UART_CLEAR_OREF); + + huart->ErrorCode |= HAL_UART_ERROR_ORE; + } + + /* Call UART Error Call back function if need be --------------------------*/ + if(huart->ErrorCode != HAL_UART_ERROR_NONE) + { + /* UART in mode Receiver ---------------------------------------------------*/ + if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) + { + UART_Receive_IT(huart); + } + + /* If Overrun error occurs, or if any error occurs in DMA mode reception, + consider error as blocking */ + if (((huart->ErrorCode & HAL_UART_ERROR_ORE) != RESET) || + (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR))) + { + /* Blocking error : transfer is aborted + Set the UART state ready to be able to start again the process, + Disable Rx Interrupts, and disable Rx DMA request, if ongoing */ + UART_EndRxTransfer(huart); + + /* Disable the UART DMA Rx request if enabled */ + if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) + { + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + /* Abort the UART DMA Rx channel */ + if(huart->hdmarx != NULL) + { + /* Set the UART DMA Abort callback : + will lead to call HAL_UART_ErrorCallback() at end of DMA abort procedure */ + huart->hdmarx->XferAbortCallback = UART_DMAAbortOnError; + + /* Abort DMA RX */ + if(HAL_DMA_Abort_IT(huart->hdmarx) != HAL_OK) + { + /* Call Directly huart->hdmarx->XferAbortCallback function in case of error */ + huart->hdmarx->XferAbortCallback(huart->hdmarx); + } + } + else + { + /* Call user error callback */ + HAL_UART_ErrorCallback(huart); + } + } + else + { + /* Call user error callback */ + HAL_UART_ErrorCallback(huart); + } + } + else + { + /* Non Blocking error : transfer could go on. + Error is notified to user through user error callback */ + HAL_UART_ErrorCallback(huart); + huart->ErrorCode = HAL_UART_ERROR_NONE; + } + } + return; + + } /* End if some error occurs */ + + /* UART wakeup from Stop mode interrupt occurred ---------------------------*/ + if(((isrflags & USART_ISR_WUF) != RESET) && ((cr3its & USART_CR3_WUFIE) != RESET)) + { + __HAL_UART_CLEAR_IT(huart, UART_CLEAR_WUF); + /* Set the UART state ready to be able to start again the process */ + huart->gState = HAL_UART_STATE_READY; + huart->RxState = HAL_UART_STATE_READY; + HAL_UARTEx_WakeupCallback(huart); + return; + } + + /* UART in mode Transmitter ------------------------------------------------*/ + if(((isrflags & USART_ISR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) + { + UART_Transmit_IT(huart); + return; + } + + /* UART in mode Transmitter (transmission end) -----------------------------*/ + if(((isrflags & USART_ISR_TC) != RESET) && ((cr1its & USART_CR1_TCIE) != RESET)) + { + UART_EndTransmit_IT(huart); + return; + } + +} + +/** + * @brief Tx Transfer completed callback. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_TxCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief Tx Half Transfer completed callback. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UART_TxHalfCpltCallback(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE: This function should not be modified, when the callback is needed, + the HAL_UART_TxHalfCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief Rx Transfer completed callback. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_RxCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief Rx Half Transfer completed callback. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UART_RxHalfCpltCallback(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE: This function should not be modified, when the callback is needed, + the HAL_UART_RxHalfCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief UART error callback. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_ErrorCallback can be implemented in the user file. + */ +} + +/** + * @brief UART Abort Complete callback. + * @param huart UART handle. + * @retval None + */ +__weak void HAL_UART_AbortCpltCallback (UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_AbortCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief UART Abort Complete callback. + * @param huart UART handle. + * @retval None + */ +__weak void HAL_UART_AbortTransmitCpltCallback (UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_AbortTransmitCpltCallback can be implemented in the user file. + */ +} + +/** + * @brief UART Abort Receive Complete callback. + * @param huart UART handle. + * @retval None + */ +__weak void HAL_UART_AbortReceiveCpltCallback (UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UART_AbortReceiveCpltCallback can be implemented in the user file. + */ +} + +/** + * @} + */ + +/** @defgroup UART_Exported_Functions_Group3 Peripheral Control functions + * @brief UART control functions + * +@verbatim + =============================================================================== + ##### Peripheral Control functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to control the UART. + (+) HAL_MultiProcessor_EnableMuteMode() API enables mute mode + (+) HAL_MultiProcessor_DisableMuteMode() API disables mute mode + (+) HAL_MultiProcessor_EnterMuteMode() API enters mute mode + (+) UART_SetConfig() API configures the UART peripheral + (+) UART_AdvFeatureConfig() API optionally configures the UART advanced features + (+) UART_CheckIdleState() API ensures that TEACK and/or REACK are set after initialization + (+) HAL_HalfDuplex_EnableTransmitter() API disables receiver and enables transmitter + (+) HAL_HalfDuplex_EnableReceiver() API disables transmitter and enables receiver + (+) HAL_LIN_SendBreak() API transmits the break characters +@endverbatim + * @{ + */ + +/** + * @brief Enable UART in mute mode (does not mean UART enters mute mode; + * to enter mute mode, HAL_MultiProcessor_EnterMuteMode() API must be called). + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_MultiProcessor_EnableMuteMode(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Enable USART mute mode by setting the MME bit in the CR1 register */ + SET_BIT(huart->Instance->CR1, USART_CR1_MME); + + huart->gState = HAL_UART_STATE_READY; + + return (UART_CheckIdleState(huart)); +} + +/** + * @brief Disable UART mute mode (does not mean the UART actually exits mute mode + * as it may not have been in mute mode at this very moment). + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_MultiProcessor_DisableMuteMode(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable USART mute mode by clearing the MME bit in the CR1 register */ + CLEAR_BIT(huart->Instance->CR1, USART_CR1_MME); + + huart->gState = HAL_UART_STATE_READY; + + return (UART_CheckIdleState(huart)); +} + +/** + * @brief Enter UART mute mode (means UART actually enters mute mode). + * @note To exit from mute mode, HAL_MultiProcessor_DisableMuteMode() API must be called. + * @param huart: UART handle. + * @retval None + */ +void HAL_MultiProcessor_EnterMuteMode(UART_HandleTypeDef *huart) +{ + __HAL_UART_SEND_REQ(huart, UART_MUTE_MODE_REQUEST); +} + +/** + * @brief Enable the UART transmitter and disable the UART receiver. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_HalfDuplex_EnableTransmitter(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + huart->gState = HAL_UART_STATE_BUSY; + + /* Clear TE and RE bits */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_TE | USART_CR1_RE)); + /* Enable the USART's transmit interface by setting the TE bit in the USART CR1 register */ + SET_BIT(huart->Instance->CR1, USART_CR1_TE); + + huart->gState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Enable the UART receiver and disable the UART transmitter. + * @param huart: UART handle. + * @retval HAL status. + */ +HAL_StatusTypeDef HAL_HalfDuplex_EnableReceiver(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + huart->gState = HAL_UART_STATE_BUSY; + + /* Clear TE and RE bits */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_TE | USART_CR1_RE)); + /* Enable the USART's receive interface by setting the RE bit in the USART CR1 register */ + SET_BIT(huart->Instance->CR1, USART_CR1_RE); + + huart->gState = HAL_UART_STATE_READY; + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + + +/** + * @brief Transmit break characters. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_LIN_SendBreak(UART_HandleTypeDef *huart) +{ + /* Check the parameters */ + assert_param(IS_UART_LIN_INSTANCE(huart->Instance)); + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Send break characters */ + huart->Instance->RQR |= UART_SENDBREAK_REQUEST; + + huart->gState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + + +/** + * @} + */ + +/** @defgroup UART_Exported_Functions_Group4 Peripheral State and Error functions + * @brief UART Peripheral State functions + * +@verbatim + ============================================================================== + ##### Peripheral State and Error functions ##### + ============================================================================== + [..] + This subsection provides functions allowing to : + (+) Return the UART handle state. + (+) Return the UART handle error code + +@endverbatim + * @{ + */ + +/** + * @brief Return the UART handle state. + * @param huart Pointer to a UART_HandleTypeDef structure that contains + * the configuration information for the specified UART. + * @retval HAL state + */ +HAL_UART_StateTypeDef HAL_UART_GetState(UART_HandleTypeDef *huart) +{ + uint32_t temp1= 0x00U, temp2 = 0x00U; + temp1 = huart->gState; + temp2 = huart->RxState; + + return (HAL_UART_StateTypeDef)(temp1 | temp2); +} + +/** + * @brief Return the UART handle error code. + * @param huart Pointer to a UART_HandleTypeDef structure that contains + * the configuration information for the specified UART. + * @retval UART Error Code +*/ +uint32_t HAL_UART_GetError(UART_HandleTypeDef *huart) +{ + return huart->ErrorCode; +} +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup UART_Private_Functions UART Private Functions + * @{ + */ + +/** + * @brief Configure the UART peripheral. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef UART_SetConfig(UART_HandleTypeDef *huart) +{ + uint32_t tmpreg = 0x00000000U; + UART_ClockSourceTypeDef clocksource = UART_CLOCKSOURCE_UNDEFINED; + uint16_t brrtemp = 0x0000U; + uint16_t usartdiv = 0x0000U; + HAL_StatusTypeDef ret = HAL_OK; + + /* Check the parameters */ + assert_param(IS_UART_BAUDRATE(huart->Init.BaudRate)); + assert_param(IS_UART_WORD_LENGTH(huart->Init.WordLength)); + if(UART_INSTANCE_LOWPOWER(huart)) + { + assert_param(IS_LPUART_STOPBITS(huart->Init.StopBits)); + } + else + { + assert_param(IS_UART_STOPBITS(huart->Init.StopBits)); + assert_param(IS_UART_ONE_BIT_SAMPLE(huart->Init.OneBitSampling)); + } + + assert_param(IS_UART_PARITY(huart->Init.Parity)); + assert_param(IS_UART_MODE(huart->Init.Mode)); + assert_param(IS_UART_HARDWARE_FLOW_CONTROL(huart->Init.HwFlowCtl)); + assert_param(IS_UART_OVERSAMPLING(huart->Init.OverSampling)); + + + /*-------------------------- USART CR1 Configuration -----------------------*/ + /* Clear M, PCE, PS, TE, RE and OVER8 bits and configure + * the UART Word Length, Parity, Mode and oversampling: + * set the M bits according to huart->Init.WordLength value + * set PCE and PS bits according to huart->Init.Parity value + * set TE and RE bits according to huart->Init.Mode value + * set OVER8 bit according to huart->Init.OverSampling value */ + tmpreg = (uint32_t)huart->Init.WordLength | huart->Init.Parity | huart->Init.Mode | huart->Init.OverSampling ; + MODIFY_REG(huart->Instance->CR1, UART_CR1_FIELDS, tmpreg); + + /*-------------------------- USART CR2 Configuration -----------------------*/ + /* Configure the UART Stop Bits: Set STOP[13:12] bits according + * to huart->Init.StopBits value */ + MODIFY_REG(huart->Instance->CR2, USART_CR2_STOP, huart->Init.StopBits); + + /*-------------------------- USART CR3 Configuration -----------------------*/ + /* Configure + * - UART HardWare Flow Control: set CTSE and RTSE bits according + * to huart->Init.HwFlowCtl value + * - one-bit sampling method versus three samples' majority rule according + * to huart->Init.OneBitSampling (not applicable to LPUART) */ + tmpreg = (uint32_t)huart->Init.HwFlowCtl; + if (!(UART_INSTANCE_LOWPOWER(huart))) + { + tmpreg |= huart->Init.OneBitSampling; + } + MODIFY_REG(huart->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE | USART_CR3_ONEBIT), tmpreg); + + /*-------------------------- USART BRR Configuration -----------------------*/ + UART_GETCLOCKSOURCE(huart, clocksource); + uint32_t frequency = HAL_RCCEx_GetPeriphCLKFreq(RCC_PERIPHCLK_USART2); + + /* Check LPUART instance */ + if(UART_INSTANCE_LOWPOWER(huart)) + { + /* Retrieve frequency clock */ + tmpreg = 0; + + switch (clocksource) + { + case UART_CLOCKSOURCE_PCLK1: + tmpreg = HAL_RCC_GetPCLK1Freq(); + break; + case UART_CLOCKSOURCE_HSI: + if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIDIV) != 0U) + { + tmpreg = (uint32_t) (HSI_VALUE >> 2U); + } + else + { + tmpreg = (uint32_t) HSI_VALUE; + } + break; + case UART_CLOCKSOURCE_SYSCLK: + tmpreg = HAL_RCC_GetSysClockFreq(); + break; + case UART_CLOCKSOURCE_LSE: + tmpreg = (uint32_t) LSE_VALUE; + break; + case UART_CLOCKSOURCE_UNDEFINED: + default: + ret = HAL_ERROR; + break; + } + + /* if proper clock source reported */ + if (tmpreg != 0) + { + /* ensure that Frequency clock is in the range [3 * baudrate, 4096 * baudrate] */ + if ( (tmpreg < (3 * huart->Init.BaudRate) ) || + (tmpreg > (4096 * huart->Init.BaudRate) )) + { + ret = HAL_ERROR; + } + else + { + tmpreg = (uint32_t)(UART_DIV_LPUART(tmpreg, huart->Init.BaudRate)); + + if ((tmpreg >= UART_LPUART_BRR_MIN) && (tmpreg <= UART_LPUART_BRR_MAX)) + { + huart->Instance->BRR = tmpreg; + } + else + { + ret = HAL_ERROR; + } + } /* if ( (tmpreg < (3 * huart->Init.BaudRate) ) || (tmpreg > (4096 * huart->Init.BaudRate) )) */ + } /* if (tmpreg != 0) */ + } + /* Check UART Over Sampling to set Baud Rate Register */ + else if (huart->Init.OverSampling == UART_OVERSAMPLING_8) + { + switch (clocksource) + { + case UART_CLOCKSOURCE_PCLK1: + usartdiv = (uint16_t)(UART_DIV_SAMPLING8(frequency, huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_PCLK2: + usartdiv = (uint16_t)(UART_DIV_SAMPLING8(HAL_RCC_GetPCLK2Freq(), huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_HSI: + if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIDIV) != 0U) + { + usartdiv = (uint16_t)(UART_DIV_SAMPLING8((HSI_VALUE >> 2U), huart->Init.BaudRate)); + } + else + { + usartdiv = (uint16_t)(UART_DIV_SAMPLING8(HSI_VALUE, huart->Init.BaudRate)); + } + break; + case UART_CLOCKSOURCE_SYSCLK: + usartdiv = (uint16_t)(UART_DIV_SAMPLING8(HAL_RCC_GetSysClockFreq(), huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_LSE: + usartdiv = (uint16_t)(UART_DIV_SAMPLING8(LSE_VALUE, huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_UNDEFINED: + default: + ret = HAL_ERROR; + break; + } + + brrtemp = usartdiv & 0xFFF0U; + brrtemp |= (uint16_t)((uint16_t)(usartdiv & (uint16_t)0x000FU) >> (uint16_t)1U); + huart->Instance->BRR = brrtemp; + } + else + { + switch (clocksource) + { + case UART_CLOCKSOURCE_PCLK1: + huart->Instance->BRR = (uint16_t)(UART_DIV_SAMPLING16(HAL_RCC_GetPCLK1Freq(), huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_PCLK2: + huart->Instance->BRR = (uint16_t)(UART_DIV_SAMPLING16(HAL_RCC_GetPCLK2Freq(), huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_HSI: + if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIDIV) != 0U) + { + huart->Instance->BRR = (uint16_t)(UART_DIV_SAMPLING16((HSI_VALUE >> 2U), huart->Init.BaudRate)); + } + else + { + huart->Instance->BRR = (uint16_t)(UART_DIV_SAMPLING16(HSI_VALUE, huart->Init.BaudRate)); + } + break; + case UART_CLOCKSOURCE_SYSCLK: + huart->Instance->BRR = (uint16_t)(UART_DIV_SAMPLING16(HAL_RCC_GetSysClockFreq(), huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_LSE: + huart->Instance->BRR = (uint16_t)(UART_DIV_SAMPLING16(LSE_VALUE, huart->Init.BaudRate)); + break; + case UART_CLOCKSOURCE_UNDEFINED: + default: + ret = HAL_ERROR; + break; + } + } + + return ret; + +} + +/** + * @brief Configure the UART peripheral advanced features. + * @param huart: UART handle. + * @retval None + */ +void UART_AdvFeatureConfig(UART_HandleTypeDef *huart) +{ + /* Check whether the set of advanced features to configure is properly set */ + assert_param(IS_UART_ADVFEATURE_INIT(huart->AdvancedInit.AdvFeatureInit)); + + /* if required, configure TX pin active level inversion */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_TXINVERT_INIT)) + { + assert_param(IS_UART_ADVFEATURE_TXINV(huart->AdvancedInit.TxPinLevelInvert)); + MODIFY_REG(huart->Instance->CR2, USART_CR2_TXINV, huart->AdvancedInit.TxPinLevelInvert); + } + + /* if required, configure RX pin active level inversion */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_RXINVERT_INIT)) + { + assert_param(IS_UART_ADVFEATURE_RXINV(huart->AdvancedInit.RxPinLevelInvert)); + MODIFY_REG(huart->Instance->CR2, USART_CR2_RXINV, huart->AdvancedInit.RxPinLevelInvert); + } + + /* if required, configure data inversion */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_DATAINVERT_INIT)) + { + assert_param(IS_UART_ADVFEATURE_DATAINV(huart->AdvancedInit.DataInvert)); + MODIFY_REG(huart->Instance->CR2, USART_CR2_DATAINV, huart->AdvancedInit.DataInvert); + } + + /* if required, configure RX/TX pins swap */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_SWAP_INIT)) + { + assert_param(IS_UART_ADVFEATURE_SWAP(huart->AdvancedInit.Swap)); + MODIFY_REG(huart->Instance->CR2, USART_CR2_SWAP, huart->AdvancedInit.Swap); + } + + /* if required, configure RX overrun detection disabling */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_RXOVERRUNDISABLE_INIT)) + { + assert_param(IS_UART_OVERRUN(huart->AdvancedInit.OverrunDisable)); + MODIFY_REG(huart->Instance->CR3, USART_CR3_OVRDIS, huart->AdvancedInit.OverrunDisable); + } + + /* if required, configure DMA disabling on reception error */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_DMADISABLEONERROR_INIT)) + { + assert_param(IS_UART_ADVFEATURE_DMAONRXERROR(huart->AdvancedInit.DMADisableonRxError)); + MODIFY_REG(huart->Instance->CR3, USART_CR3_DDRE, huart->AdvancedInit.DMADisableonRxError); + } + + /* if required, configure auto Baud rate detection scheme */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_AUTOBAUDRATE_INIT)) + { + assert_param(IS_USART_AUTOBAUDRATE_DETECTION_INSTANCE(huart->Instance)); + assert_param(IS_UART_ADVFEATURE_AUTOBAUDRATE(huart->AdvancedInit.AutoBaudRateEnable)); + MODIFY_REG(huart->Instance->CR2, USART_CR2_ABREN, huart->AdvancedInit.AutoBaudRateEnable); + /* set auto Baudrate detection parameters if detection is enabled */ + if(huart->AdvancedInit.AutoBaudRateEnable == UART_ADVFEATURE_AUTOBAUDRATE_ENABLE) + { + assert_param(IS_UART_ADVFEATURE_AUTOBAUDRATEMODE(huart->AdvancedInit.AutoBaudRateMode)); + MODIFY_REG(huart->Instance->CR2, USART_CR2_ABRMODE, huart->AdvancedInit.AutoBaudRateMode); + } + } + + /* if required, configure MSB first on communication line */ + if(HAL_IS_BIT_SET(huart->AdvancedInit.AdvFeatureInit, UART_ADVFEATURE_MSBFIRST_INIT)) + { + assert_param(IS_UART_ADVFEATURE_MSBFIRST(huart->AdvancedInit.MSBFirst)); + MODIFY_REG(huart->Instance->CR2, USART_CR2_MSBFIRST, huart->AdvancedInit.MSBFirst); + } +} + +/** + * @brief Check the UART Idle State. + * @param huart UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef UART_CheckIdleState(UART_HandleTypeDef *huart) +{ + uint32_t tickstart = 0; + + /* Initialize the UART ErrorCode */ + huart->ErrorCode = HAL_UART_ERROR_NONE; + + /* Init tickstart for timeout managment*/ + tickstart = HAL_GetTick(); + + /* Check if the Transmitter is enabled */ + if((huart->Instance->CR1 & USART_CR1_TE) == USART_CR1_TE) + { + /* Wait until TEACK flag is set */ + if(UART_WaitOnFlagUntilTimeout(huart, USART_ISR_TEACK, RESET, tickstart, HAL_UART_TIMEOUT_VALUE) != HAL_OK) + { + /* Timeout occurred */ + return HAL_TIMEOUT; + } + } + /* Check if the Receiver is enabled */ + if((huart->Instance->CR1 & USART_CR1_RE) == USART_CR1_RE) + { + /* Wait until REACK flag is set */ + if(UART_WaitOnFlagUntilTimeout(huart, USART_ISR_REACK, RESET, tickstart, HAL_UART_TIMEOUT_VALUE) != HAL_OK) + { + /* Timeout occurred */ + return HAL_TIMEOUT; + } + } + + /* Initialize the UART State */ + huart->gState = HAL_UART_STATE_READY; + huart->RxState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Handle UART Communication Timeout. + * @param huart UART handle. + * @param Flag Specifies the UART flag to check + * @param Status Flag status (SET or RESET) + * @param Tickstart Tick start value + * @param Timeout Timeout duration + * @retval HAL status + */ +HAL_StatusTypeDef UART_WaitOnFlagUntilTimeout(UART_HandleTypeDef *huart, uint32_t Flag, FlagStatus Status, uint32_t Tickstart, uint32_t Timeout) +{ + /* Wait until flag is set */ + while((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) + { + /* Check for the Timeout */ + if(Timeout != HAL_MAX_DELAY) + { + if((Timeout == 0) || ((HAL_GetTick()-Tickstart) > Timeout)) + { + /* Disable TXE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts for the interrupt process */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE)); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + huart->gState = HAL_UART_STATE_READY; + huart->RxState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + return HAL_TIMEOUT; + } + } + } + return HAL_OK; +} + + +/** + * @brief End ongoing Tx transfer on UART peripheral (following error detection or Transmit completion). + * @param huart UART handle. + * @retval None + */ +static void UART_EndTxTransfer(UART_HandleTypeDef *huart) +{ + /* Disable TXEIE and TCIE interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); + + /* At end of Tx process, restore huart->gState to Ready */ + huart->gState = HAL_UART_STATE_READY; +} + + +/** + * @brief End ongoing Rx transfer on UART peripheral (following error detection or Reception completion). + * @param huart UART handle. + * @retval None + */ +static void UART_EndRxTransfer(UART_HandleTypeDef *huart) +{ + /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* At end of Rx process, restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; +} + + +/** + * @brief DMA UART transmit process complete callback. + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMATransmitCplt(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef*)(hdma->Parent); + + /* DMA Normal mode */ + if ( HAL_IS_BIT_CLR(hdma->Instance->CCR, DMA_CCR_CIRC) ) + { + huart->TxXferCount = 0U; + + /* Disable the DMA transfer for transmit request by resetting the DMAT bit + in the UART CR3 register */ + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); + + /* Enable the UART Transmit Complete Interrupt */ + SET_BIT(huart->Instance->CR1, USART_CR1_TCIE); + } + /* DMA Circular mode */ + else + { + HAL_UART_TxCpltCallback(huart); + } + +} + +/** + * @brief DMA UART transmit process half complete callback. + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMATxHalfCplt(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef*)(hdma->Parent); + + HAL_UART_TxHalfCpltCallback(huart); +} + +/** + * @brief DMA UART receive process complete callback. + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMAReceiveCplt(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef*)(hdma->Parent); + + /* DMA Normal mode */ + if ( HAL_IS_BIT_CLR(hdma->Instance->CCR, DMA_CCR_CIRC) ) + { + huart->RxXferCount = 0U; + + /* Disable PE and ERR (Frame error, noise error, overrun error) interrupts */ + CLEAR_BIT(huart->Instance->CR1, USART_CR1_PEIE); + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Disable the DMA transfer for the receiver request by resetting the DMAR bit + in the UART CR3 register */ + CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); + + /* At end of Rx process, restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; + } + + HAL_UART_RxCpltCallback(huart); +} + +/** + * @brief DMA UART receive process half complete callback. + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMARxHalfCplt(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef*)(hdma->Parent); + + HAL_UART_RxHalfCpltCallback(huart); +} + +/** + * @brief DMA UART communication error callback. + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMAError(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef*)(hdma->Parent); + + /* Stop UART DMA Tx request if ongoing */ + if ( (huart->gState == HAL_UART_STATE_BUSY_TX) + &&(HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) ) + { + huart->TxXferCount = 0; + UART_EndTxTransfer(huart); + } + + /* Stop UART DMA Rx request if ongoing */ + if ( (huart->RxState == HAL_UART_STATE_BUSY_RX) + &&(HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) ) + { + huart->RxXferCount = 0; + UART_EndRxTransfer(huart); + } + + huart->ErrorCode |= HAL_UART_ERROR_DMA; + HAL_UART_ErrorCallback(huart); +} + +/** + * @brief DMA UART communication abort callback, when initiated by HAL services on Error + * (To be called at end of DMA Abort procedure following error occurrence). + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMAAbortOnError(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef*)(hdma->Parent); + huart->RxXferCount = 0; + huart->TxXferCount = 0; + + HAL_UART_ErrorCallback(huart); +} + +/** + * @brief DMA UART Tx communication abort callback, when initiated by user + * (To be called at end of DMA Tx Abort procedure following user abort request). + * @note When this callback is executed, User Abort complete call back is called only if no + * Abort still ongoing for Rx DMA Handle. + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMATxAbortCallback(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef* )(hdma->Parent); + + huart->hdmatx->XferAbortCallback = NULL; + + /* Check if an Abort process is still ongoing */ + if(huart->hdmarx != NULL) + { + if(huart->hdmarx->XferAbortCallback != NULL) + { + return; + } + } + + /* No Abort process still ongoing : All DMA channels are aborted, call user Abort Complete callback */ + huart->TxXferCount = 0; + huart->RxXferCount = 0; + + /* Reset errorCode */ + huart->ErrorCode = HAL_UART_ERROR_NONE; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->gState and huart->RxState to Ready */ + huart->gState = HAL_UART_STATE_READY; + huart->RxState = HAL_UART_STATE_READY; + + /* Call user Abort complete callback */ + HAL_UART_AbortCpltCallback(huart); +} + + +/** + * @brief DMA UART Rx communication abort callback, when initiated by user + * (To be called at end of DMA Rx Abort procedure following user abort request). + * @note When this callback is executed, User Abort complete call back is called only if no + * Abort still ongoing for Tx DMA Handle. + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMARxAbortCallback(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef* )(hdma->Parent); + + huart->hdmarx->XferAbortCallback = NULL; + + /* Check if an Abort process is still ongoing */ + if(huart->hdmatx != NULL) + { + if(huart->hdmatx->XferAbortCallback != NULL) + { + return; + } + } + + /* No Abort process still ongoing : All DMA channels are aborted, call user Abort Complete callback */ + huart->TxXferCount = 0; + huart->RxXferCount = 0; + + /* Reset errorCode */ + huart->ErrorCode = HAL_UART_ERROR_NONE; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->gState and huart->RxState to Ready */ + huart->gState = HAL_UART_STATE_READY; + huart->RxState = HAL_UART_STATE_READY; + + /* Call user Abort complete callback */ + HAL_UART_AbortCpltCallback(huart); +} + + +/** + * @brief DMA UART Tx communication abort callback, when initiated by user by a call to + * HAL_UART_AbortTransmit_IT API (Abort only Tx transfer) + * (This callback is executed at end of DMA Tx Abort procedure following user abort request, + * and leads to user Tx Abort Complete callback execution). + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMATxOnlyAbortCallback(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = (UART_HandleTypeDef*)(hdma->Parent); + + huart->TxXferCount = 0; + + /* Restore huart->gState to Ready */ + huart->gState = HAL_UART_STATE_READY; + + /* Call user Abort complete callback */ + HAL_UART_AbortTransmitCpltCallback(huart); +} + +/** + * @brief DMA UART Rx communication abort callback, when initiated by user by a call to + * HAL_UART_AbortReceive_IT API (Abort only Rx transfer) + * (This callback is executed at end of DMA Rx Abort procedure following user abort request, + * and leads to user Rx Abort Complete callback execution). + * @param hdma DMA handle. + * @retval None + */ +static void UART_DMARxOnlyAbortCallback(DMA_HandleTypeDef *hdma) +{ + UART_HandleTypeDef* huart = ( UART_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent; + + huart->RxXferCount = 0; + + /* Clear the Error flags in the ICR register */ + __HAL_UART_CLEAR_FLAG(huart, UART_CLEAR_OREF | UART_CLEAR_NEF | UART_CLEAR_PEF | UART_CLEAR_FEF); + + /* Restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; + + /* Call user Abort complete callback */ + HAL_UART_AbortReceiveCpltCallback(huart); +} + +/** + * @brief Send an amount of data in interrupt mode. + * @note Function is called under interruption only, once + * interruptions have been enabled by HAL_UART_Transmit_IT(). + * @param huart UART handle. + * @retval HAL status + */ +static HAL_StatusTypeDef UART_Transmit_IT(UART_HandleTypeDef *huart) +{ + uint16_t* tmp; + + /* Check that a Tx process is ongoing */ + if (huart->gState == HAL_UART_STATE_BUSY_TX) + { + if(huart->TxXferCount == 0U) + { + /* Disable the UART Transmit Data Register Empty Interrupt */ + CLEAR_BIT(huart->Instance->CR1, USART_CR1_TXEIE); + + /* Enable the UART Transmit Complete Interrupt */ + SET_BIT(huart->Instance->CR1, USART_CR1_TCIE); + + return HAL_OK; + } + else + { + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + tmp = (uint16_t*) huart->pTxBuffPtr; + huart->Instance->TDR = (*tmp & (uint16_t)0x01FFU); + huart->pTxBuffPtr += 2U; + } + else + { + huart->Instance->TDR = (uint8_t)(*huart->pTxBuffPtr++ & (uint8_t)0xFFU); + } + huart->TxXferCount--; + + return HAL_OK; + } + } + else + { + return HAL_BUSY; + } +} + +/** + * @brief Wrap up transmission in non-blocking mode. + * @param huart pointer to a UART_HandleTypeDef structure that contains + * the configuration information for the specified UART module. + * @retval HAL status + */ +static HAL_StatusTypeDef UART_EndTransmit_IT(UART_HandleTypeDef *huart) +{ + /* Disable the UART Transmit Complete Interrupt */ + CLEAR_BIT(huart->Instance->CR1, USART_CR1_TCIE); + + /* Tx process is ended, restore huart->gState to Ready */ + huart->gState = HAL_UART_STATE_READY; + + HAL_UART_TxCpltCallback(huart); + + return HAL_OK; +} + +/** + * @brief Receive an amount of data in interrupt mode. + * @note Function is called under interruption only, once + * interruptions have been enabled by HAL_UART_Receive_IT() + * @param huart UART handle. + * @retval HAL status + */ +static HAL_StatusTypeDef UART_Receive_IT(UART_HandleTypeDef *huart) +{ + uint16_t* tmp; + uint16_t uhMask = huart->Mask; + uint16_t uhdata; + + /* Check that a Rx process is ongoing */ + if(huart->RxState == HAL_UART_STATE_BUSY_RX) + { + uhdata = (uint16_t) READ_REG(huart->Instance->RDR); + if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) + { + tmp = (uint16_t*) huart->pRxBuffPtr ; + *tmp = (uint16_t)(uhdata & uhMask); + huart->pRxBuffPtr +=2; + } + else + { + *huart->pRxBuffPtr++ = (uint8_t)(uhdata & (uint8_t)uhMask); + } + + if(--huart->RxXferCount == 0U) + { + /* Disable the UART Parity Error Interrupt and RXNE interrupt*/ + CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); + + /* Disable the UART Error Interrupt: (Frame error, noise error, overrun error) */ + CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + + /* Rx process is completed, restore huart->RxState to Ready */ + huart->RxState = HAL_UART_STATE_READY; + + HAL_UART_RxCpltCallback(huart); + + return HAL_OK; + } + + return HAL_OK; + } + else + { + /* Clear RXNE interrupt flag */ + __HAL_UART_SEND_REQ(huart, UART_RXDATA_FLUSH_REQUEST); + + return HAL_BUSY; + } +} + +/** + * @} + */ + +#endif /* HAL_UART_MODULE_ENABLED */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c new file mode 100644 index 0000000..a6b1550 --- /dev/null +++ b/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c @@ -0,0 +1,522 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_uart_ex.c + * @author MCD Application Team + * @version V1.8.1 + * @date 14-April-2017 + * @brief Extended UART HAL module driver. + * This file provides firmware functions to manage the following extended + * functionalities of the Universal Asynchronous Receiver Transmitter Peripheral (UART). + * + Initialization and de-initialization functions + * + Peripheral Control functions + * + * + @verbatim + ============================================================================== + ##### UART peripheral extended features ##### + ============================================================================== + + (#) Declare a UART_HandleTypeDef handle structure. + + (#) For the UART RS485 Driver Enable mode, initialize the UART registers + by calling the HAL_RS485Ex_Init() API. + + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +/** @addtogroup STM32L0xx_HAL_Driver + * @{ + */ + +/** @defgroup UARTEx UARTEx + * @brief UART Extended HAL module driver + * @{ + */ + +#ifdef HAL_UART_MODULE_ENABLED + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macros ------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/** @defgroup UARTEx_Private_Functions UARTEx Private Functions + * @{ + */ +static void UARTEx_Wakeup_AddressConfig(UART_HandleTypeDef *huart, UART_WakeUpTypeDef WakeUpSelection); +/** + * @} + */ + +/* Exported functions --------------------------------------------------------*/ + +/** @defgroup UARTEx_Exported_Functions UARTEx Exported Functions + * @{ + */ + +/** @defgroup UARTEx_Exported_Functions_Group1 Initialization and de-initialization functions + * @brief Extended Initialization and Configuration Functions + * +@verbatim +=============================================================================== + ##### Initialization and Configuration functions ##### + =============================================================================== + [..] + This subsection provides a set of functions allowing to initialize the USARTx or the UARTy + in asynchronous mode. + (+) For the asynchronous mode the parameters below can be configured: + (++) Baud Rate + (++) Word Length + (++) Stop Bit + (++) Parity: If the parity is enabled, then the MSB bit of the data written + in the data register is transmitted but is changed by the parity bit. + (++) Hardware flow control + (++) Receiver/transmitter modes + (++) Over Sampling Method + (++) One-Bit Sampling Method + (+) For the asynchronous mode, the following advanced features can be configured as well: + (++) TX and/or RX pin level inversion + (++) data logical level inversion + (++) RX and TX pins swap + (++) RX overrun detection disabling + (++) DMA disabling on RX error + (++) MSB first on communication line + (++) auto Baud rate detection + [..] + The HAL_RS485Ex_Init() API follows the UART RS485 mode configuration + procedures (details for the procedures are available in reference manual). + +@endverbatim + + Depending on the frame length defined by the M1 and M0 bits (7-bit, + 8-bit or 9-bit), the possible UART formats are listed in the + following table. + + Table 1. UART frame format. + +-----------------------------------------------------------------------+ + | M1 bit | M0 bit | PCE bit | UART frame | + |---------|---------|-----------|---------------------------------------| + | 0 | 0 | 0 | | SB | 8 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 0 | 1 | | SB | 7 bit data | PB | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 1 | 0 | | SB | 9 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 0 | 1 | 1 | | SB | 8 bit data | PB | STB | | + |---------|---------|-----------|---------------------------------------| + | 1 | 0 | 0 | | SB | 7 bit data | STB | | + |---------|---------|-----------|---------------------------------------| + | 1 | 0 | 1 | | SB | 6 bit data | PB | STB | | + +-----------------------------------------------------------------------+ + + * @{ + */ + +/** + * @brief Initialize the RS485 Driver enable feature according to the specified + * parameters in the UART_InitTypeDef and creates the associated handle. + * @param huart: UART handle. + * @param Polarity: select the driver enable polarity. + * This parameter can be one of the following values: + * @arg @ref UART_DE_POLARITY_HIGH DE signal is active high + * @arg @ref UART_DE_POLARITY_LOW DE signal is active low + * @param AssertionTime: Driver Enable assertion time: + * 5-bit value defining the time between the activation of the DE (Driver Enable) + * signal and the beginning of the start bit. It is expressed in sample time + * units (1/8 or 1/16 bit time, depending on the oversampling rate) + * @param DeassertionTime: Driver Enable deassertion time: + * 5-bit value defining the time between the end of the last stop bit, in a + * transmitted message, and the de-activation of the DE (Driver Enable) signal. + * It is expressed in sample time units (1/8 or 1/16 bit time, depending on the + * oversampling rate). + * @retval HAL status + */ +HAL_StatusTypeDef HAL_RS485Ex_Init(UART_HandleTypeDef *huart, uint32_t Polarity, uint32_t AssertionTime, uint32_t DeassertionTime) +{ + uint32_t temp = 0x0U; + + /* Check the UART handle allocation */ + if(huart == NULL) + { + return HAL_ERROR; + } + + /* Check the Driver Enable polarity */ + assert_param(IS_UART_DE_POLARITY(Polarity)); + + /* Check the Driver Enable assertion time */ + assert_param(IS_UART_ASSERTIONTIME(AssertionTime)); + + /* Check the Driver Enable deassertion time */ + assert_param(IS_UART_DEASSERTIONTIME(DeassertionTime)); + + if(huart->gState == HAL_UART_STATE_RESET) + { + /* Allocate lock resource and initialize it */ + huart->Lock = HAL_UNLOCKED; + + /* Init the low level hardware : GPIO, CLOCK, CORTEX */ + HAL_UART_MspInit(huart); + } + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + /* Set the UART Communication parameters */ + if(huart->AdvancedInit.AdvFeatureInit != UART_ADVFEATURE_NO_INIT) + { + UART_AdvFeatureConfig(huart); + } + + if (UART_SetConfig(huart) == HAL_ERROR) + { + return HAL_ERROR; + } + + /* Enable the Driver Enable mode by setting the DEM bit in the CR3 register */ + SET_BIT(huart->Instance->CR3, USART_CR3_DEM); + + /* Set the Driver Enable polarity */ + MODIFY_REG(huart->Instance->CR3, USART_CR3_DEP, Polarity); + + /* Set the Driver Enable assertion and deassertion times */ + temp = (AssertionTime << UART_CR1_DEAT_ADDRESS_LSB_POS); + temp |= (DeassertionTime << UART_CR1_DEDT_ADDRESS_LSB_POS); + MODIFY_REG(huart->Instance->CR1, (USART_CR1_DEDT|USART_CR1_DEAT), temp); + + /* Enable the Peripheral */ + __HAL_UART_ENABLE(huart); + + /* TEACK and/or REACK to check before moving huart->gState and huart->RxState to Ready */ + return (UART_CheckIdleState(huart)); +} + + +/** + * @} + */ + +/** @defgroup UARTEx_Exported_Functions_Group3 Peripheral Control functions + * @brief Extended Peripheral Control functions + * +@verbatim + =============================================================================== + ##### Peripheral Control functions ##### + =============================================================================== + [..] This section provides the following functions: + (+) HAL_UARTEx_EnableClockStopMode() API enables the UART clock (HSI or LSE only) during stop mode + (+) HAL_UARTEx_DisableClockStopMode() API disables the above functionality + (+) HAL_MultiProcessorEx_AddressLength_Set() API optionally sets the UART node address + detection length to more than 4 bits for multiprocessor address mark wake up. + (+) HAL_UARTEx_StopModeWakeUpSourceConfig() API defines the wake-up from stop mode + trigger: address match, Start Bit detection or RXNE bit status. + (+) HAL_UARTEx_EnableStopMode() API enables the UART to wake up the MCU from stop mode + (+) HAL_UARTEx_DisableStopMode() API disables the above functionality + (+) HAL_UARTEx_EnableClockStopMode() API enables the UART HSI clock during stop mode + (+) HAL_UARTEx_DisableClockStopMode() API disables the above functionality + (+) HAL_UARTEx_WakeupCallback() called upon UART wakeup interrupt + + +@endverbatim + * @{ + */ + + + + +/** + * @brief By default in multiprocessor mode, when the wake up method is set + * to address mark, the UART handles only 4-bit long addresses detection; + * this API allows to enable longer addresses detection (6-, 7- or 8-bit + * long). + * @note Addresses detection lengths are: 6-bit address detection in 7-bit data mode, + * 7-bit address detection in 8-bit data mode, 8-bit address detection in 9-bit data mode. + * @param huart: UART handle. + * @param AddressLength: this parameter can be one of the following values: + * @arg @ref UART_ADDRESS_DETECT_4B 4-bit long address + * @arg @ref UART_ADDRESS_DETECT_7B 6-, 7- or 8-bit long address + * @retval HAL status + */ +HAL_StatusTypeDef HAL_MultiProcessorEx_AddressLength_Set(UART_HandleTypeDef *huart, uint32_t AddressLength) +{ + /* Check the UART handle allocation */ + if(huart == NULL) + { + return HAL_ERROR; + } + + /* Check the address length parameter */ + assert_param(IS_UART_ADDRESSLENGTH_DETECT(AddressLength)); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + /* Set the address length */ + MODIFY_REG(huart->Instance->CR2, USART_CR2_ADDM7, AddressLength); + + /* Enable the Peripheral */ + __HAL_UART_ENABLE(huart); + + /* TEACK and/or REACK to check before moving huart->gState and/or huart->RxState to Ready */ + return (UART_CheckIdleState(huart)); +} + + +/** + * @brief Set Wakeup from Stop mode interrupt flag selection. + * @param huart: UART handle. + * @param WakeUpSelection: address match, Start Bit detection or RXNE bit status. + * This parameter can be one of the following values: + * @arg @ref UART_WAKEUP_ON_ADDRESS + * @arg @ref UART_WAKEUP_ON_STARTBIT + * @arg @ref UART_WAKEUP_ON_READDATA_NONEMPTY + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UARTEx_StopModeWakeUpSourceConfig(UART_HandleTypeDef *huart, UART_WakeUpTypeDef WakeUpSelection) +{ + HAL_StatusTypeDef status = HAL_OK; + uint32_t tickstart = 0; + + /* check the wake-up from stop mode UART instance */ + assert_param(IS_UART_WAKEUP_FROMSTOP_INSTANCE(huart->Instance)); + /* check the wake-up selection parameter */ + assert_param(IS_UART_WAKEUP_SELECTION(WakeUpSelection.WakeUpEvent)); + + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Disable the Peripheral */ + __HAL_UART_DISABLE(huart); + + /* Set the wake-up selection scheme */ + MODIFY_REG(huart->Instance->CR3, USART_CR3_WUS, WakeUpSelection.WakeUpEvent); + + if (WakeUpSelection.WakeUpEvent == UART_WAKEUP_ON_ADDRESS) + { + UARTEx_Wakeup_AddressConfig(huart, WakeUpSelection); + } + + /* Enable the Peripheral */ + __HAL_UART_ENABLE(huart); + + /* Init tickstart for timeout managment*/ + tickstart = HAL_GetTick(); + + /* Wait until REACK flag is set */ + if(UART_WaitOnFlagUntilTimeout(huart, USART_ISR_REACK, RESET, tickstart, HAL_UART_TIMEOUT_VALUE) != HAL_OK) + { + status = HAL_TIMEOUT; + } + else + { + /* Initialize the UART State */ + huart->gState = HAL_UART_STATE_READY; + } + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return status; +} + + +/** + * @brief Enable UART Stop Mode. + * @note The UART is able to wake up the MCU from Stop 1 mode as long as UART clock is HSI or LSE. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UARTEx_EnableStopMode(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Set UESM bit */ + SET_BIT(huart->Instance->CR1, USART_CR1_UESM); + + huart->gState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Disable UART Stop Mode. + * @param huart: UART handle. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UARTEx_DisableStopMode(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Clear UESM bit */ + CLEAR_BIT(huart->Instance->CR1, USART_CR1_UESM); + + huart->gState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Enable UART Clock in Stop Mode + * The UART keeps the Clock ON during Stop mode + * @param huart: uart handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UARTEx_EnableClockStopMode(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Set UCESM bit */ + SET_BIT(huart->Instance->CR3, USART_CR3_UCESM); + + huart->gState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief Disable UART Clock in Stop Mode + * @param huart: uart handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_UARTEx_DisableClockStopMode(UART_HandleTypeDef *huart) +{ + /* Process Locked */ + __HAL_LOCK(huart); + + huart->gState = HAL_UART_STATE_BUSY; + + /* Clear UCESM bit */ + CLEAR_BIT(huart->Instance->CR3, USART_CR3_UCESM); + + huart->gState = HAL_UART_STATE_READY; + + /* Process Unlocked */ + __HAL_UNLOCK(huart); + + return HAL_OK; +} + +/** + * @brief UART wakeup from Stop mode callback. + * @param huart: UART handle. + * @retval None + */ +__weak void HAL_UARTEx_WakeupCallback(UART_HandleTypeDef *huart) +{ + /* Prevent unused argument(s) compilation warning */ + UNUSED(huart); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_UARTEx_WakeupCallback can be implemented in the user file. + */ +} + +/** + * @} + */ + +/** + * @} + */ + +/** @addtogroup UARTEx_Private_Functions + * @{ + */ + +/** + * @brief Initialize the UART wake-up from stop mode parameters when triggered by address detection. + * @param huart: UART handle. + * @param WakeUpSelection: UART wake up from stop mode parameters. + * @retval None + */ +static void UARTEx_Wakeup_AddressConfig(UART_HandleTypeDef *huart, UART_WakeUpTypeDef WakeUpSelection) +{ + assert_param(IS_UART_ADDRESSLENGTH_DETECT(WakeUpSelection.AddressLength)); + if(WakeUpSelection.AddressLength == UART_ADDRESS_DETECT_4B) + { + assert_param(IS_UART_4B_ADDRESS(WakeUpSelection.Address)); + } + else + { + assert_param(IS_UART_7B_ADDRESS(WakeUpSelection.Address)); + } + + /* Set the USART address length */ + MODIFY_REG(huart->Instance->CR2, USART_CR2_ADDM7, WakeUpSelection.AddressLength); + + /* Set the USART address node */ + MODIFY_REG(huart->Instance->CR2, USART_CR2_ADD, ((uint32_t)WakeUpSelection.Address << UART_CR2_ADDRESS_LSB_POS)); +} + +/** + * @} + */ + +#endif /* HAL_UART_MODULE_ENABLED */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Testing/Inc/FreeRTOSConfig.h b/Testing/Inc/FreeRTOSConfig.h new file mode 100644 index 0000000..0fb5f60 --- /dev/null +++ b/Testing/Inc/FreeRTOSConfig.h @@ -0,0 +1,171 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +/*----------------------------------------------------------- + * Application specific definitions. + * + * These definitions should be adjusted for your particular hardware and + * application requirements. + * + * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE + * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. + * + * See http://www.freertos.org/a00110.html. + *----------------------------------------------------------*/ + +/* USER CODE BEGIN Includes */ +/* Section where include file can be added */ +/* USER CODE END Includes */ + +/* Ensure stdint is only used by the compiler, and not the assembler. */ +#if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__) + #include + #include "main.h" + extern uint32_t SystemCoreClock; +#endif + +#define configUSE_PREEMPTION 1 +#define configSUPPORT_STATIC_ALLOCATION 0 +#define configSUPPORT_DYNAMIC_ALLOCATION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ ( SystemCoreClock ) +#define configTICK_RATE_HZ ((TickType_t)1000) +#define configMAX_PRIORITIES ( 7 ) +#define configMINIMAL_STACK_SIZE ((uint16_t)128) +#define configTOTAL_HEAP_SIZE ((size_t)3072) +#define configMAX_TASK_NAME_LEN ( 16 ) +#define configUSE_TRACE_FACILITY 1 +#define configUSE_16_BIT_TICKS 0 +#define configUSE_MUTEXES 1 +#define configQUEUE_REGISTRY_SIZE 8 + +/* Co-routine definitions. */ +#define configUSE_CO_ROUTINES 0 +#define configMAX_CO_ROUTINE_PRIORITIES ( 2 ) + +/* Set the following definitions to 1 to include the API function, or zero +to exclude the API function. */ +#define INCLUDE_vTaskPrioritySet 1 +#define INCLUDE_uxTaskPriorityGet 1 +#define INCLUDE_vTaskDelete 1 +#define INCLUDE_vTaskCleanUpResources 0 +#define INCLUDE_vTaskSuspend 1 +#define INCLUDE_vTaskDelayUntil 1 +#define INCLUDE_vTaskDelay 1 +#define INCLUDE_xTaskGetSchedulerState 1 + +/* Cortex-M specific definitions. */ +#ifdef __NVIC_PRIO_BITS + /* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */ + #define configPRIO_BITS __NVIC_PRIO_BITS +#else + #define configPRIO_BITS 2 +#endif + +/* The lowest interrupt priority that can be used in a call to a "set priority" +function. */ +#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 3 + +/* The highest interrupt priority that can be used by any interrupt service +routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL +INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER +PRIORITY THAN THIS! (higher priorities are lower numeric values. */ +#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 3 + +/* Interrupt priorities used by the kernel port layer itself. These are generic +to all Cortex-M ports, and do not rely on any particular library functions. */ +#define configKERNEL_INTERRUPT_PRIORITY ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) +/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!! +See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */ +#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) + +/* Normal assert() semantics without relying on the provision of an assert.h +header file. */ +/* USER CODE BEGIN 1 */ +#define configASSERT( x ) if ((x) == 0) {taskDISABLE_INTERRUPTS(); for( ;; );} +/* USER CODE END 1 */ + +/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS +standard names. */ +#define vPortSVCHandler SVC_Handler +#define xPortPendSVHandler PendSV_Handler + +/* IMPORTANT: This define MUST be commented when used with STM32Cube firmware, + to prevent overwriting SysTick_Handler defined within STM32Cube HAL */ +/* #define xPortSysTickHandler SysTick_Handler */ + +/* USER CODE BEGIN Defines */ +/* Section where parameter definitions can be added (for instance, to override default ones in FreeRTOS.h) */ +/* USER CODE END Defines */ + +#endif /* FREERTOS_CONFIG_H */ diff --git a/Testing/Inc/main.h b/Testing/Inc/main.h new file mode 100644 index 0000000..71c1573 --- /dev/null +++ b/Testing/Inc/main.h @@ -0,0 +1,85 @@ +/** + ****************************************************************************** + * File Name : main.h + * Description : This file contains the common defines of the application + ****************************************************************************** + * + * Copyright (c) 2017 STMicroelectronics International N.V. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __MAIN_H +#define __MAIN_H + /* Includes ------------------------------------------------------------------*/ + +/* USER CODE BEGIN Includes */ +//#include "stm32l0xx_hal_def.h" +//#include "stm32l0xx_hal_pwr.h" +//#include "stm32l0xx_hal_rtc.h" +//#include "stm32l0xx_hal_gpio.h" +//#include "stm32l0xx_hal_i2c.h" +//#include "stm32l0xx_hal_uart.h" +/* USER CODE END Includes */ + +/* Private define ------------------------------------------------------------*/ + +#define B1_Pin GPIO_PIN_13 +#define B1_GPIO_Port GPIOC +#define USART_TX_Pin GPIO_PIN_2 +#define USART_TX_GPIO_Port GPIOA +#define USART_RX_Pin GPIO_PIN_3 +#define USART_RX_GPIO_Port GPIOA +#define LD2_Pin GPIO_PIN_5 +#define LD2_GPIO_Port GPIOA +#define TMS_Pin GPIO_PIN_13 +#define TMS_GPIO_Port GPIOA +#define TCK_Pin GPIO_PIN_14 +#define TCK_GPIO_Port GPIOA + +/* USER CODE BEGIN Private defines */ + +/* USER CODE END Private defines */ + +/** + * @} + */ + +/** + * @} +*/ + +#endif /* __MAIN_H */ +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Inc/stm32l0xx_hal_conf.h b/Testing/Inc/stm32l0xx_hal_conf.h new file mode 100644 index 0000000..4a2d305 --- /dev/null +++ b/Testing/Inc/stm32l0xx_hal_conf.h @@ -0,0 +1,311 @@ +/** + ****************************************************************************** + * @file stm32l0xx_hal_conf.h + * @brief HAL configuration file. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2017 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_HAL_CONF_H +#define __STM32L0xx_HAL_CONF_H + +#ifdef __cplusplus + extern "C" { +#endif + +#include "main.h" +/* Exported types ------------------------------------------------------------*/ +/* Exported constants --------------------------------------------------------*/ + +/* ########################## Module Selection ############################## */ +/** + * @brief This is the list of modules to be used in the HAL driver + */ + +#define HAL_MODULE_ENABLED +/*#define HAL_ADC_MODULE_ENABLED */ +/*#define HAL_CRYP_MODULE_ENABLED */ +/*#define HAL_COMP_MODULE_ENABLED */ +/*#define HAL_CRC_MODULE_ENABLED */ +/*#define HAL_CRYP_MODULE_ENABLED */ +/*#define HAL_DAC_MODULE_ENABLED */ +/*#define HAL_FIREWALL_MODULE_ENABLED */ +/*#define HAL_I2S_MODULE_ENABLED */ +/*#define HAL_IWDG_MODULE_ENABLED */ +/*#define HAL_LCD_MODULE_ENABLED */ +/*#define HAL_LPTIM_MODULE_ENABLED */ +/*#define HAL_RNG_MODULE_ENABLED */ +#define HAL_RTC_MODULE_ENABLED +/*#define HAL_SPI_MODULE_ENABLED */ +/*#define HAL_TIM_MODULE_ENABLED */ +/*#define HAL_TSC_MODULE_ENABLED */ +#define HAL_UART_MODULE_ENABLED +/*#define HAL_USART_MODULE_ENABLED */ +#define HAL_IRDA_MODULE_ENABLED +/*#define HAL_SMARTCARD_MODULE_ENABLED */ +/*#define HAL_SMBUS_MODULE_ENABLED */ +/*#define HAL_WWDG_MODULE_ENABLED */ +/*#define HAL_PCD_MODULE_ENABLED */ +#define HAL_GPIO_MODULE_ENABLED +#define HAL_DMA_MODULE_ENABLED +#define HAL_I2C_MODULE_ENABLED +#define HAL_RCC_MODULE_ENABLED +#define HAL_FLASH_MODULE_ENABLED +#define HAL_PWR_MODULE_ENABLED +#define HAL_CORTEX_MODULE_ENABLED + +/* ########################## Oscillator Values adaptation ####################*/ +/** + * @brief Adjust the value of External High Speed oscillator (HSE) used in your application. + * This value is used by the RCC HAL module to compute the system frequency + * (when HSE is used as system clock source, directly or through the PLL). + */ +#if !defined (HSE_VALUE) + #define HSE_VALUE ((uint32_t)8000000U) /*!< Value of the External oscillator in Hz */ +#endif /* HSE_VALUE */ + +#if !defined (HSE_STARTUP_TIMEOUT) + #define HSE_STARTUP_TIMEOUT ((uint32_t)100U) /*!< Time out for HSE start up, in ms */ +#endif /* HSE_STARTUP_TIMEOUT */ + +/** + * @brief Internal Multiple Speed oscillator (MSI) default value. + * This value is the default MSI range value after Reset. + */ +#if !defined (MSI_VALUE) + #define MSI_VALUE ((uint32_t)2097000U) /*!< Value of the Internal oscillator in Hz*/ +#endif /* MSI_VALUE */ + +/** + * @brief Internal High Speed oscillator (HSI) value. + * This value is used by the RCC HAL module to compute the system frequency + * (when HSI is used as system clock source, directly or through the PLL). + */ +#if !defined (HSI_VALUE) + #define HSI_VALUE ((uint32_t)16000000U) /*!< Value of the Internal oscillator in Hz*/ +#endif /* HSI_VALUE */ + +/** + * @brief Internal High Speed oscillator for USB (HSI48) value. + */ +#if !defined (HSI48_VALUE) +#define HSI48_VALUE ((uint32_t)48000000U) /*!< Value of the Internal High Speed oscillator for USB in Hz. + The real value may vary depending on the variations + in voltage and temperature. */ +#endif /* HSI48_VALUE */ + +/** + * @brief Internal Low Speed oscillator (LSI) value. + */ +#if !defined (LSI_VALUE) + #define LSI_VALUE ((uint32_t)37000U) /*!< LSI Typical Value in Hz*/ +#endif /* LSI_VALUE */ /*!< Value of the Internal Low Speed oscillator in Hz + The real value may vary depending on the variations + in voltage and temperature.*/ +/** + * @brief External Low Speed oscillator (LSE) value. + * This value is used by the UART, RTC HAL module to compute the system frequency + */ +#if !defined (LSE_VALUE) + #define LSE_VALUE ((uint32_t)32768U) /*!< Value of the External oscillator in Hz*/ +#endif /* LSE_VALUE */ + +#if !defined (LSE_STARTUP_TIMEOUT) + #define LSE_STARTUP_TIMEOUT ((uint32_t)5000U) /*!< Time out for LSE start up, in ms */ +#endif /* LSE_STARTUP_TIMEOUT */ + +/* Tip: To avoid modifying this file each time you need to use different HSE, + === you can define the HSE value in your toolchain compiler preprocessor. */ + +/* ########################### System Configuration ######################### */ +/** + * @brief This is the HAL system configuration section + */ +#define VDD_VALUE ((uint32_t)3300U) /*!< Value of VDD in mv */ +#define TICK_INT_PRIORITY ((uint32_t)3U) /*!< tick interrupt priority */ +#define USE_RTOS 0U +#define PREFETCH_ENABLE 0U +#define PREREAD_ENABLE 1U +#define BUFFER_CACHE_DISABLE 0U + +/* ########################## Assert Selection ############################## */ +/** + * @brief Uncomment the line below to expanse the "assert_param" macro in the + * HAL drivers code + */ +/* #define USE_FULL_ASSERT 1 */ + +/* Includes ------------------------------------------------------------------*/ +/** + * @brief Include module's header file + */ + +#ifdef HAL_RCC_MODULE_ENABLED + #include "stm32l0xx_hal_rcc.h" +#endif /* HAL_RCC_MODULE_ENABLED */ + +#ifdef HAL_GPIO_MODULE_ENABLED + #include "stm32l0xx_hal_gpio.h" +#endif /* HAL_GPIO_MODULE_ENABLED */ + +#ifdef HAL_DMA_MODULE_ENABLED + #include "stm32l0xx_hal_dma.h" +#endif /* HAL_DMA_MODULE_ENABLED */ + +#ifdef HAL_CORTEX_MODULE_ENABLED + #include "stm32l0xx_hal_cortex.h" +#endif /* HAL_CORTEX_MODULE_ENABLED */ + +#ifdef HAL_ADC_MODULE_ENABLED + #include "stm32l0xx_hal_adc.h" +#endif /* HAL_ADC_MODULE_ENABLED */ + +#ifdef HAL_COMP_MODULE_ENABLED + #include "stm32l0xx_hal_comp.h" +#endif /* HAL_COMP_MODULE_ENABLED */ + +#ifdef HAL_CRC_MODULE_ENABLED + #include "stm32l0xx_hal_crc.h" +#endif /* HAL_CRC_MODULE_ENABLED */ + +#ifdef HAL_CRYP_MODULE_ENABLED + #include "stm32l0xx_hal_cryp.h" +#endif /* HAL_CRYP_MODULE_ENABLED */ + +#ifdef HAL_DAC_MODULE_ENABLED + #include "stm32l0xx_hal_dac.h" +#endif /* HAL_DAC_MODULE_ENABLED */ + +#ifdef HAL_FIREWALL_MODULE_ENABLED + #include "stm32l0xx_hal_firewall.h" +#endif /* HAL_FIREWALL_MODULE_ENABLED */ + +#ifdef HAL_FLASH_MODULE_ENABLED + #include "stm32l0xx_hal_flash.h" +#endif /* HAL_FLASH_MODULE_ENABLED */ + +#ifdef HAL_I2C_MODULE_ENABLED + #include "stm32l0xx_hal_i2c.h" +#endif /* HAL_I2C_MODULE_ENABLED */ + +#ifdef HAL_I2S_MODULE_ENABLED + #include "stm32l0xx_hal_i2s.h" +#endif /* HAL_I2S_MODULE_ENABLED */ + +#ifdef HAL_IWDG_MODULE_ENABLED + #include "stm32l0xx_hal_iwdg.h" +#endif /* HAL_IWDG_MODULE_ENABLED */ + +#ifdef HAL_LCD_MODULE_ENABLED + #include "stm32l0xx_hal_lcd.h" +#endif /* HAL_LCD_MODULE_ENABLED */ + +#ifdef HAL_LPTIM_MODULE_ENABLED +#include "stm32l0xx_hal_lptim.h" +#endif /* HAL_LPTIM_MODULE_ENABLED */ + +#ifdef HAL_PWR_MODULE_ENABLED + #include "stm32l0xx_hal_pwr.h" +#endif /* HAL_PWR_MODULE_ENABLED */ + +#ifdef HAL_RNG_MODULE_ENABLED + #include "stm32l0xx_hal_rng.h" +#endif /* HAL_RNG_MODULE_ENABLED */ + +#ifdef HAL_RTC_MODULE_ENABLED + #include "stm32l0xx_hal_rtc.h" + +#endif /* HAL_RTC_MODULE_ENABLED */ + +#ifdef HAL_SPI_MODULE_ENABLED + #include "stm32l0xx_hal_spi.h" +#endif /* HAL_SPI_MODULE_ENABLED */ + +#ifdef HAL_TIM_MODULE_ENABLED + #include "stm32l0xx_hal_tim.h" +#endif /* HAL_TIM_MODULE_ENABLED */ + +#ifdef HAL_TSC_MODULE_ENABLED + #include "stm32l0xx_hal_tsc.h" +#endif /* HAL_TSC_MODULE_ENABLED */ + +#ifdef HAL_UART_MODULE_ENABLED + #include "stm32l0xx_hal_uart.h" +#endif /* HAL_UART_MODULE_ENABLED */ + +#ifdef HAL_USART_MODULE_ENABLED + #include "stm32l0xx_hal_usart.h" +#endif /* HAL_USART_MODULE_ENABLED */ + +#ifdef HAL_IRDA_MODULE_ENABLED + #include "stm32l0xx_hal_irda.h" +#endif /* HAL_IRDA_MODULE_ENABLED */ + +#ifdef HAL_SMARTCARD_MODULE_ENABLED + #include "stm32l0xx_hal_smartcard.h" +#endif /* HAL_SMARTCARD_MODULE_ENABLED */ + +#ifdef HAL_SMBUS_MODULE_ENABLED + #include "stm32l0xx_hal_smbus.h" +#endif /* HAL_SMBUS_MODULE_ENABLED */ + +#ifdef HAL_WWDG_MODULE_ENABLED + #include "stm32l0xx_hal_wwdg.h" +#endif /* HAL_WWDG_MODULE_ENABLED */ + +#ifdef HAL_PCD_MODULE_ENABLED + #include "stm32l0xx_hal_pcd.h" +#endif /* HAL_PCD_MODULE_ENABLED */ + +/* Exported macro ------------------------------------------------------------*/ +#ifdef USE_FULL_ASSERT +/** + * @brief The assert_param macro is used for function's parameters check. + * @param expr: If expr is false, it calls assert_failed function + * which reports the name of the source file and the source + * line number of the call that failed. + * If expr is true, it returns no value. + * @retval None + */ + #define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__)) +/* Exported functions ------------------------------------------------------- */ + void assert_failed(uint8_t* file, uint32_t line); +#else + #define assert_param(expr) ((void)0U) +#endif /* USE_FULL_ASSERT */ + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_HAL_CONF_H */ + + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Inc/stm32l0xx_it.h b/Testing/Inc/stm32l0xx_it.h new file mode 100644 index 0000000..2abba1d --- /dev/null +++ b/Testing/Inc/stm32l0xx_it.h @@ -0,0 +1,56 @@ +/** + ****************************************************************************** + * @file stm32l0xx_it.h + * @brief This file contains the headers of the interrupt handlers. + ****************************************************************************** + * + * COPYRIGHT(c) 2017 STMicroelectronics + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32L0xx_IT_H +#define __STM32L0xx_IT_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +/* Exported types ------------------------------------------------------------*/ +/* Exported constants --------------------------------------------------------*/ +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions ------------------------------------------------------- */ + +void SysTick_Handler(void); + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32L0xx_IT_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c new file mode 100644 index 0000000..302fd2f --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c @@ -0,0 +1,1773 @@ +/* ---------------------------------------------------------------------- + * $Date: 5. February 2013 + * $Revision: V1.02 + * + * Project: CMSIS-RTOS API + * Title: cmsis_os.c + * + * Version 0.02 + * Initial Proposal Phase + * Version 0.03 + * osKernelStart added, optional feature: main started as thread + * osSemaphores have standard behavior + * osTimerCreate does not start the timer, added osTimerStart + * osThreadPass is renamed to osThreadYield + * Version 1.01 + * Support for C++ interface + * - const attribute removed from the osXxxxDef_t typedef's + * - const attribute added to the osXxxxDef macros + * Added: osTimerDelete, osMutexDelete, osSemaphoreDelete + * Added: osKernelInitialize + * Version 1.02 + * Control functions for short timeouts in microsecond resolution: + * Added: osKernelSysTick, osKernelSysTickFrequency, osKernelSysTickMicroSec + * Removed: osSignalGet + * + * + *---------------------------------------------------------------------------- + * + * Portions Copyright © 2016 STMicroelectronics International N.V. All rights reserved. + * Portions Copyright (c) 2013 ARM LIMITED + * All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * - Neither the name of ARM nor the names of its contributors may be used + * to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + *---------------------------------------------------------------------------*/ + + /** + ****************************************************************************** + * @file cmsis_os.c + * @author MCD Application Team + * @date 03-March-2017 + * @brief CMSIS-RTOS API implementation for FreeRTOS V9.0.0 + ****************************************************************************** + * @attention + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +#include +#include "cmsis_os.h" + +/* + * ARM Compiler 4/5 + */ +#if defined ( __CC_ARM ) + + #define __ASM __asm + #define __INLINE __inline + #define __STATIC_INLINE static __inline + #include "cmsis_armcc.h" + +/* + * GNU Compiler + */ +#elif defined ( __GNUC__ ) + + #define __ASM __asm /*!< asm keyword for GNU Compiler */ + #define __INLINE inline /*!< inline keyword for GNU Compiler */ + #define __STATIC_INLINE static inline + + + #include "cmsis_gcc.h" + + +/* + * IAR Compiler + */ +#elif defined ( __ICCARM__ ) + + #ifndef __ASM + #define __ASM __asm + #endif + #ifndef __INLINE + #define __INLINE inline + #endif + #ifndef __STATIC_INLINE + #define __STATIC_INLINE static inline + #endif + + #include +#endif + +extern void xPortSysTickHandler(void); + +/* Convert from CMSIS type osPriority to FreeRTOS priority number */ +static unsigned portBASE_TYPE makeFreeRtosPriority (osPriority priority) +{ + unsigned portBASE_TYPE fpriority = tskIDLE_PRIORITY; + + if (priority != osPriorityError) { + fpriority += (priority - osPriorityIdle); + } + + return fpriority; +} + +#if (INCLUDE_uxTaskPriorityGet == 1) +/* Convert from FreeRTOS priority number to CMSIS type osPriority */ +static osPriority makeCmsisPriority (unsigned portBASE_TYPE fpriority) +{ + osPriority priority = osPriorityError; + + if ((fpriority - tskIDLE_PRIORITY) <= (osPriorityRealtime - osPriorityIdle)) { + priority = (osPriority)((int)osPriorityIdle + (int)(fpriority - tskIDLE_PRIORITY)); + } + + return priority; +} +#endif + + +/* Determine whether we are in thread mode or handler mode. */ +static int inHandlerMode (void) +{ + return __get_IPSR() != 0; +} + +/*********************** Kernel Control Functions *****************************/ +/** +* @brief Initialize the RTOS Kernel for creating objects. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osKernelInitialize shall be consistent in every CMSIS-RTOS. +*/ +osStatus osKernelInitialize (void); + +/** +* @brief Start the RTOS Kernel with executing the specified thread. +* @param thread_def thread definition referenced with \ref osThread. +* @param argument pointer that is passed to the thread function as start argument. +* @retval status code that indicates the execution status of the function +* @note MUST REMAIN UNCHANGED: \b osKernelStart shall be consistent in every CMSIS-RTOS. +*/ +osStatus osKernelStart (void) +{ + vTaskStartScheduler(); + + return osOK; +} + +/** +* @brief Check if the RTOS kernel is already started +* @param None +* @retval (0) RTOS is not started +* (1) RTOS is started +* (-1) if this feature is disabled in FreeRTOSConfig.h +* @note MUST REMAIN UNCHANGED: \b osKernelRunning shall be consistent in every CMSIS-RTOS. +*/ +int32_t osKernelRunning(void) +{ +#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) + return 0; + else + return 1; +#else + return (-1); +#endif +} + +#if (defined (osFeature_SysTick) && (osFeature_SysTick != 0)) // System Timer available +/** +* @brief Get the value of the Kernel SysTick timer +* @param None +* @retval None +* @note MUST REMAIN UNCHANGED: \b osKernelSysTick shall be consistent in every CMSIS-RTOS. +*/ +uint32_t osKernelSysTick(void) +{ + if (inHandlerMode()) { + return xTaskGetTickCountFromISR(); + } + else { + return xTaskGetTickCount(); + } +} +#endif // System Timer available +/*********************** Thread Management *****************************/ +/** +* @brief Create a thread and add it to Active Threads and set it to state READY. +* @param thread_def thread definition referenced with \ref osThread. +* @param argument pointer that is passed to the thread function as start argument. +* @retval thread ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osThreadCreate shall be consistent in every CMSIS-RTOS. +*/ +osThreadId osThreadCreate (const osThreadDef_t *thread_def, void *argument) +{ + TaskHandle_t handle; + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + if((thread_def->buffer != NULL) && (thread_def->controlblock != NULL)) { + handle = xTaskCreateStatic((TaskFunction_t)thread_def->pthread,(const portCHAR *)thread_def->name, + thread_def->stacksize, argument, makeFreeRtosPriority(thread_def->tpriority), + thread_def->buffer, thread_def->controlblock); + } + else { + if (xTaskCreate((TaskFunction_t)thread_def->pthread,(const portCHAR *)thread_def->name, + thread_def->stacksize, argument, makeFreeRtosPriority(thread_def->tpriority), + &handle) != pdPASS) { + return NULL; + } + } +#elif( configSUPPORT_STATIC_ALLOCATION == 1 ) + + handle = xTaskCreateStatic((TaskFunction_t)thread_def->pthread,(const portCHAR *)thread_def->name, + thread_def->stacksize, argument, makeFreeRtosPriority(thread_def->tpriority), + thread_def->buffer, thread_def->controlblock); +#else + if (xTaskCreate((TaskFunction_t)thread_def->pthread,(const portCHAR *)thread_def->name, + thread_def->stacksize, argument, makeFreeRtosPriority(thread_def->tpriority), + &handle) != pdPASS) { + return NULL; + } +#endif + + return handle; +} + +/** +* @brief Return the thread ID of the current running thread. +* @retval thread ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osThreadGetId shall be consistent in every CMSIS-RTOS. +*/ +osThreadId osThreadGetId (void) +{ +#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) + return xTaskGetCurrentTaskHandle(); +#else + return NULL; +#endif +} + +/** +* @brief Terminate execution of a thread and remove it from Active Threads. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osThreadTerminate shall be consistent in every CMSIS-RTOS. +*/ +osStatus osThreadTerminate (osThreadId thread_id) +{ +#if (INCLUDE_vTaskDelete == 1) + vTaskDelete(thread_id); + return osOK; +#else + return osErrorOS; +#endif +} + +/** +* @brief Pass control to next thread that is in state \b READY. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osThreadYield shall be consistent in every CMSIS-RTOS. +*/ +osStatus osThreadYield (void) +{ + taskYIELD(); + + return osOK; +} + +/** +* @brief Change priority of an active thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @param priority new priority value for the thread function. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osThreadSetPriority shall be consistent in every CMSIS-RTOS. +*/ +osStatus osThreadSetPriority (osThreadId thread_id, osPriority priority) +{ +#if (INCLUDE_vTaskPrioritySet == 1) + vTaskPrioritySet(thread_id, makeFreeRtosPriority(priority)); + return osOK; +#else + return osErrorOS; +#endif +} + +/** +* @brief Get current priority of an active thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval current priority value of the thread function. +* @note MUST REMAIN UNCHANGED: \b osThreadGetPriority shall be consistent in every CMSIS-RTOS. +*/ +osPriority osThreadGetPriority (osThreadId thread_id) +{ +#if (INCLUDE_uxTaskPriorityGet == 1) + if (inHandlerMode()) + { + return makeCmsisPriority(uxTaskPriorityGetFromISR(thread_id)); + } + else + { + return makeCmsisPriority(uxTaskPriorityGet(thread_id)); + } +#else + return osPriorityError; +#endif +} + +/*********************** Generic Wait Functions *******************************/ +/** +* @brief Wait for Timeout (Time Delay) +* @param millisec time delay value +* @retval status code that indicates the execution status of the function. +*/ +osStatus osDelay (uint32_t millisec) +{ +#if INCLUDE_vTaskDelay + TickType_t ticks = millisec / portTICK_PERIOD_MS; + + vTaskDelay(ticks ? ticks : 1); /* Minimum delay = 1 tick */ + + return osOK; +#else + (void) millisec; + + return osErrorResource; +#endif +} + +#if (defined (osFeature_Wait) && (osFeature_Wait != 0)) /* Generic Wait available */ +/** +* @brief Wait for Signal, Message, Mail, or Timeout +* @param millisec timeout value or 0 in case of no time-out +* @retval event that contains signal, message, or mail information or error code. +* @note MUST REMAIN UNCHANGED: \b osWait shall be consistent in every CMSIS-RTOS. +*/ +osEvent osWait (uint32_t millisec); + +#endif /* Generic Wait available */ + +/*********************** Timer Management Functions ***************************/ +/** +* @brief Create a timer. +* @param timer_def timer object referenced with \ref osTimer. +* @param type osTimerOnce for one-shot or osTimerPeriodic for periodic behavior. +* @param argument argument to the timer call back function. +* @retval timer ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osTimerCreate shall be consistent in every CMSIS-RTOS. +*/ +osTimerId osTimerCreate (const osTimerDef_t *timer_def, os_timer_type type, void *argument) +{ +#if (configUSE_TIMERS == 1) + +#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + if(timer_def->controlblock != NULL) { + return xTimerCreateStatic((const char *)"", + 1, // period should be filled when starting the Timer using osTimerStart + (type == osTimerPeriodic) ? pdTRUE : pdFALSE, + (void *) argument, + (TaskFunction_t)timer_def->ptimer, + (StaticTimer_t *)timer_def->controlblock); + } + else { + return xTimerCreate((const char *)"", + 1, // period should be filled when starting the Timer using osTimerStart + (type == osTimerPeriodic) ? pdTRUE : pdFALSE, + (void *) argument, + (TaskFunction_t)timer_def->ptimer); + } +#elif( configSUPPORT_STATIC_ALLOCATION == 1 ) + return xTimerCreateStatic((const char *)"", + 1, // period should be filled when starting the Timer using osTimerStart + (type == osTimerPeriodic) ? pdTRUE : pdFALSE, + (void *) argument, + (TaskFunction_t)timer_def->ptimer, + (StaticTimer_t *)timer_def->controlblock); +#else + return xTimerCreate((const char *)"", + 1, // period should be filled when starting the Timer using osTimerStart + (type == osTimerPeriodic) ? pdTRUE : pdFALSE, + (void *) argument, + (TaskFunction_t)timer_def->ptimer); +#endif + +#else + return NULL; +#endif +} + +/** +* @brief Start or restart a timer. +* @param timer_id timer ID obtained by \ref osTimerCreate. +* @param millisec time delay value of the timer. +* @retval status code that indicates the execution status of the function +* @note MUST REMAIN UNCHANGED: \b osTimerStart shall be consistent in every CMSIS-RTOS. +*/ +osStatus osTimerStart (osTimerId timer_id, uint32_t millisec) +{ + osStatus result = osOK; +#if (configUSE_TIMERS == 1) + portBASE_TYPE taskWoken = pdFALSE; + TickType_t ticks = millisec / portTICK_PERIOD_MS; + + if (ticks == 0) + ticks = 1; + + if (inHandlerMode()) + { + if (xTimerChangePeriodFromISR(timer_id, ticks, &taskWoken) != pdPASS) + { + result = osErrorOS; + } + else + { + portEND_SWITCHING_ISR(taskWoken); + } + } + else + { + if (xTimerChangePeriod(timer_id, ticks, 0) != pdPASS) + result = osErrorOS; + } + +#else + result = osErrorOS; +#endif + return result; +} + +/** +* @brief Stop a timer. +* @param timer_id timer ID obtained by \ref osTimerCreate +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osTimerStop shall be consistent in every CMSIS-RTOS. +*/ +osStatus osTimerStop (osTimerId timer_id) +{ + osStatus result = osOK; +#if (configUSE_TIMERS == 1) + portBASE_TYPE taskWoken = pdFALSE; + + if (inHandlerMode()) { + if (xTimerStopFromISR(timer_id, &taskWoken) != pdPASS) { + return osErrorOS; + } + portEND_SWITCHING_ISR(taskWoken); + } + else { + if (xTimerStop(timer_id, 0) != pdPASS) { + result = osErrorOS; + } + } +#else + result = osErrorOS; +#endif + return result; +} + +/** +* @brief Delete a timer. +* @param timer_id timer ID obtained by \ref osTimerCreate +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osTimerDelete shall be consistent in every CMSIS-RTOS. +*/ +osStatus osTimerDelete (osTimerId timer_id) +{ +osStatus result = osOK; + +#if (configUSE_TIMERS == 1) + + if (inHandlerMode()) { + return osErrorISR; + } + else { + if ((xTimerDelete(timer_id, osWaitForever )) != pdPASS) { + result = osErrorOS; + } + } + +#else + result = osErrorOS; +#endif + + return result; +} + +/*************************** Signal Management ********************************/ +/** +* @brief Set the specified Signal Flags of an active thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @param signals specifies the signal flags of the thread that should be set. +* @retval previous signal flags of the specified thread or 0x80000000 in case of incorrect parameters. +* @note MUST REMAIN UNCHANGED: \b osSignalSet shall be consistent in every CMSIS-RTOS. +*/ +int32_t osSignalSet (osThreadId thread_id, int32_t signal) +{ +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + BaseType_t xHigherPriorityTaskWoken = pdFALSE; + uint32_t ulPreviousNotificationValue = 0; + + if (inHandlerMode()) + { + if(xTaskGenericNotifyFromISR( thread_id , (uint32_t)signal, eSetBits, &ulPreviousNotificationValue, &xHigherPriorityTaskWoken ) != pdPASS ) + return 0x80000000; + + portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); + } + else if(xTaskGenericNotify( thread_id , (uint32_t)signal, eSetBits, &ulPreviousNotificationValue) != pdPASS ) + return 0x80000000; + + return ulPreviousNotificationValue; +#else + (void) thread_id; + (void) signal; + + return 0x80000000; /* Task Notification not supported */ +#endif +} + +/** +* @brief Clear the specified Signal Flags of an active thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @param signals specifies the signal flags of the thread that shall be cleared. +* @retval previous signal flags of the specified thread or 0x80000000 in case of incorrect parameters. +* @note MUST REMAIN UNCHANGED: \b osSignalClear shall be consistent in every CMSIS-RTOS. +*/ +int32_t osSignalClear (osThreadId thread_id, int32_t signal); + +/** +* @brief Wait for one or more Signal Flags to become signaled for the current \b RUNNING thread. +* @param signals wait until all specified signal flags set or 0 for any single signal flag. +* @param millisec timeout value or 0 in case of no time-out. +* @retval event flag information or error code. +* @note MUST REMAIN UNCHANGED: \b osSignalWait shall be consistent in every CMSIS-RTOS. +*/ +osEvent osSignalWait (int32_t signals, uint32_t millisec) +{ + osEvent ret; + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + TickType_t ticks; + + ret.value.signals = 0; + ticks = 0; + if (millisec == osWaitForever) { + ticks = portMAX_DELAY; + } + else if (millisec != 0) { + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) { + ticks = 1; + } + } + + if (inHandlerMode()) + { + ret.status = osErrorISR; /*Not allowed in ISR*/ + } + else + { + if(xTaskNotifyWait( 0,(uint32_t) signals, (uint32_t *)&ret.value.signals, ticks) != pdTRUE) + { + if(ticks == 0) ret.status = osOK; + else ret.status = osEventTimeout; + } + else if(ret.value.signals < 0) + { + ret.status = osErrorValue; + } + else ret.status = osEventSignal; + } +#else + (void) signals; + (void) millisec; + + ret.status = osErrorOS; /* Task Notification not supported */ +#endif + + return ret; +} + +/**************************** Mutex Management ********************************/ +/** +* @brief Create and Initialize a Mutex object +* @param mutex_def mutex definition referenced with \ref osMutex. +* @retval mutex ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osMutexCreate shall be consistent in every CMSIS-RTOS. +*/ +osMutexId osMutexCreate (const osMutexDef_t *mutex_def) +{ +#if ( configUSE_MUTEXES == 1) + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + if (mutex_def->controlblock != NULL) { + return xSemaphoreCreateMutexStatic( mutex_def->controlblock ); + } + else { + return xSemaphoreCreateMutex(); + } +#elif ( configSUPPORT_STATIC_ALLOCATION == 1 ) + return xSemaphoreCreateMutexStatic( mutex_def->controlblock ); +#else + return xSemaphoreCreateMutex(); +#endif +#else + return NULL; +#endif +} + +/** +* @brief Wait until a Mutex becomes available +* @param mutex_id mutex ID obtained by \ref osMutexCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osMutexWait shall be consistent in every CMSIS-RTOS. +*/ +osStatus osMutexWait (osMutexId mutex_id, uint32_t millisec) +{ + TickType_t ticks; + portBASE_TYPE taskWoken = pdFALSE; + + + if (mutex_id == NULL) { + return osErrorParameter; + } + + ticks = 0; + if (millisec == osWaitForever) { + ticks = portMAX_DELAY; + } + else if (millisec != 0) { + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) { + ticks = 1; + } + } + + if (inHandlerMode()) { + if (xSemaphoreTakeFromISR(mutex_id, &taskWoken) != pdTRUE) { + return osErrorOS; + } + portEND_SWITCHING_ISR(taskWoken); + } + else if (xSemaphoreTake(mutex_id, ticks) != pdTRUE) { + return osErrorOS; + } + + return osOK; +} + +/** +* @brief Release a Mutex that was obtained by \ref osMutexWait +* @param mutex_id mutex ID obtained by \ref osMutexCreate. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osMutexRelease shall be consistent in every CMSIS-RTOS. +*/ +osStatus osMutexRelease (osMutexId mutex_id) +{ + osStatus result = osOK; + portBASE_TYPE taskWoken = pdFALSE; + + if (inHandlerMode()) { + if (xSemaphoreGiveFromISR(mutex_id, &taskWoken) != pdTRUE) { + return osErrorOS; + } + portEND_SWITCHING_ISR(taskWoken); + } + else if (xSemaphoreGive(mutex_id) != pdTRUE) + { + result = osErrorOS; + } + return result; +} + +/** +* @brief Delete a Mutex +* @param mutex_id mutex ID obtained by \ref osMutexCreate. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osMutexDelete shall be consistent in every CMSIS-RTOS. +*/ +osStatus osMutexDelete (osMutexId mutex_id) +{ + if (inHandlerMode()) { + return osErrorISR; + } + + vQueueDelete(mutex_id); + + return osOK; +} + +/******************** Semaphore Management Functions **************************/ + +#if (defined (osFeature_Semaphore) && (osFeature_Semaphore != 0)) + +/** +* @brief Create and Initialize a Semaphore object used for managing resources +* @param semaphore_def semaphore definition referenced with \ref osSemaphore. +* @param count number of available resources. +* @retval semaphore ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osSemaphoreCreate shall be consistent in every CMSIS-RTOS. +*/ +osSemaphoreId osSemaphoreCreate (const osSemaphoreDef_t *semaphore_def, int32_t count) +{ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + osSemaphoreId sema; + + if (semaphore_def->controlblock != NULL){ + if (count == 1) { + return xSemaphoreCreateBinaryStatic( semaphore_def->controlblock ); + } + else { +#if (configUSE_COUNTING_SEMAPHORES == 1 ) + return xSemaphoreCreateCountingStatic( count, count, semaphore_def->controlblock ); +#else + return NULL; +#endif + } + } + else { + if (count == 1) { + vSemaphoreCreateBinary(sema); + return sema; + } + else { +#if (configUSE_COUNTING_SEMAPHORES == 1 ) + return xSemaphoreCreateCounting(count, count); +#else + return NULL; +#endif + } + } +#elif ( configSUPPORT_STATIC_ALLOCATION == 1 ) // configSUPPORT_DYNAMIC_ALLOCATION == 0 + if(count == 1) { + return xSemaphoreCreateBinaryStatic( semaphore_def->controlblock ); + } + else + { +#if (configUSE_COUNTING_SEMAPHORES == 1 ) + return xSemaphoreCreateCountingStatic( count, count, semaphore_def->controlblock ); +#else + return NULL; +#endif + } +#else // configSUPPORT_STATIC_ALLOCATION == 0 && configSUPPORT_DYNAMIC_ALLOCATION == 1 + osSemaphoreId sema; + + if (count == 1) { + vSemaphoreCreateBinary(sema); + return sema; + } + else { +#if (configUSE_COUNTING_SEMAPHORES == 1 ) + return xSemaphoreCreateCounting(count, count); +#else + return NULL; +#endif + } +#endif +} + +/** +* @brief Wait until a Semaphore token becomes available +* @param semaphore_id semaphore object referenced with \ref osSemaphore. +* @param millisec timeout value or 0 in case of no time-out. +* @retval number of available tokens, or -1 in case of incorrect parameters. +* @note MUST REMAIN UNCHANGED: \b osSemaphoreWait shall be consistent in every CMSIS-RTOS. +*/ +int32_t osSemaphoreWait (osSemaphoreId semaphore_id, uint32_t millisec) +{ + TickType_t ticks; + portBASE_TYPE taskWoken = pdFALSE; + + + if (semaphore_id == NULL) { + return osErrorParameter; + } + + ticks = 0; + if (millisec == osWaitForever) { + ticks = portMAX_DELAY; + } + else if (millisec != 0) { + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) { + ticks = 1; + } + } + + if (inHandlerMode()) { + if (xSemaphoreTakeFromISR(semaphore_id, &taskWoken) != pdTRUE) { + return osErrorOS; + } + portEND_SWITCHING_ISR(taskWoken); + } + else if (xSemaphoreTake(semaphore_id, ticks) != pdTRUE) { + return osErrorOS; + } + + return osOK; +} + +/** +* @brief Release a Semaphore token +* @param semaphore_id semaphore object referenced with \ref osSemaphore. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osSemaphoreRelease shall be consistent in every CMSIS-RTOS. +*/ +osStatus osSemaphoreRelease (osSemaphoreId semaphore_id) +{ + osStatus result = osOK; + portBASE_TYPE taskWoken = pdFALSE; + + + if (inHandlerMode()) { + if (xSemaphoreGiveFromISR(semaphore_id, &taskWoken) != pdTRUE) { + return osErrorOS; + } + portEND_SWITCHING_ISR(taskWoken); + } + else { + if (xSemaphoreGive(semaphore_id) != pdTRUE) { + result = osErrorOS; + } + } + + return result; +} + +/** +* @brief Delete a Semaphore +* @param semaphore_id semaphore object referenced with \ref osSemaphore. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osSemaphoreDelete shall be consistent in every CMSIS-RTOS. +*/ +osStatus osSemaphoreDelete (osSemaphoreId semaphore_id) +{ + if (inHandlerMode()) { + return osErrorISR; + } + + vSemaphoreDelete(semaphore_id); + + return osOK; +} + +#endif /* Use Semaphores */ + +/******************* Memory Pool Management Functions ***********************/ + +#if (defined (osFeature_Pool) && (osFeature_Pool != 0)) + +//TODO +//This is a primitive and inefficient wrapper around the existing FreeRTOS memory management. +//A better implementation will have to modify heap_x.c! + + +typedef struct os_pool_cb { + void *pool; + uint8_t *markers; + uint32_t pool_sz; + uint32_t item_sz; + uint32_t currentIndex; +} os_pool_cb_t; + + +/** +* @brief Create and Initialize a memory pool +* @param pool_def memory pool definition referenced with \ref osPool. +* @retval memory pool ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osPoolCreate shall be consistent in every CMSIS-RTOS. +*/ +osPoolId osPoolCreate (const osPoolDef_t *pool_def) +{ +#if (configSUPPORT_DYNAMIC_ALLOCATION == 1) + osPoolId thePool; + int itemSize = 4 * ((pool_def->item_sz + 3) / 4); + uint32_t i; + + /* First have to allocate memory for the pool control block. */ + thePool = pvPortMalloc(sizeof(os_pool_cb_t)); + + + if (thePool) { + thePool->pool_sz = pool_def->pool_sz; + thePool->item_sz = itemSize; + thePool->currentIndex = 0; + + /* Memory for markers */ + thePool->markers = pvPortMalloc(pool_def->pool_sz); + + if (thePool->markers) { + /* Now allocate the pool itself. */ + thePool->pool = pvPortMalloc(pool_def->pool_sz * itemSize); + + if (thePool->pool) { + for (i = 0; i < pool_def->pool_sz; i++) { + thePool->markers[i] = 0; + } + } + else { + vPortFree(thePool->markers); + vPortFree(thePool); + thePool = NULL; + } + } + else { + vPortFree(thePool); + thePool = NULL; + } + } + + return thePool; + +#else + return NULL; +#endif +} + +/** +* @brief Allocate a memory block from a memory pool +* @param pool_id memory pool ID obtain referenced with \ref osPoolCreate. +* @retval address of the allocated memory block or NULL in case of no memory available. +* @note MUST REMAIN UNCHANGED: \b osPoolAlloc shall be consistent in every CMSIS-RTOS. +*/ +void *osPoolAlloc (osPoolId pool_id) +{ + int dummy = 0; + void *p = NULL; + uint32_t i; + uint32_t index; + + if (inHandlerMode()) { + dummy = portSET_INTERRUPT_MASK_FROM_ISR(); + } + else { + vPortEnterCritical(); + } + + for (i = 0; i < pool_id->pool_sz; i++) { + index = pool_id->currentIndex + i; + if (index >= pool_id->pool_sz) { + index = 0; + } + + if (pool_id->markers[index] == 0) { + pool_id->markers[index] = 1; + p = (void *)((uint32_t)(pool_id->pool) + (index * pool_id->item_sz)); + pool_id->currentIndex = index; + break; + } + } + + if (inHandlerMode()) { + portCLEAR_INTERRUPT_MASK_FROM_ISR(dummy); + } + else { + vPortExitCritical(); + } + + return p; +} + +/** +* @brief Allocate a memory block from a memory pool and set memory block to zero +* @param pool_id memory pool ID obtain referenced with \ref osPoolCreate. +* @retval address of the allocated memory block or NULL in case of no memory available. +* @note MUST REMAIN UNCHANGED: \b osPoolCAlloc shall be consistent in every CMSIS-RTOS. +*/ +void *osPoolCAlloc (osPoolId pool_id) +{ + void *p = osPoolAlloc(pool_id); + + if (p != NULL) + { + memset(p, 0, sizeof(pool_id->pool_sz)); + } + + return p; +} + +/** +* @brief Return an allocated memory block back to a specific memory pool +* @param pool_id memory pool ID obtain referenced with \ref osPoolCreate. +* @param block address of the allocated memory block that is returned to the memory pool. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osPoolFree shall be consistent in every CMSIS-RTOS. +*/ +osStatus osPoolFree (osPoolId pool_id, void *block) +{ + uint32_t index; + + if (pool_id == NULL) { + return osErrorParameter; + } + + if (block == NULL) { + return osErrorParameter; + } + + if (block < pool_id->pool) { + return osErrorParameter; + } + + index = (uint32_t)block - (uint32_t)(pool_id->pool); + if (index % pool_id->item_sz) { + return osErrorParameter; + } + index = index / pool_id->item_sz; + if (index >= pool_id->pool_sz) { + return osErrorParameter; + } + + pool_id->markers[index] = 0; + + return osOK; +} + + +#endif /* Use Memory Pool Management */ + +/******************* Message Queue Management Functions *********************/ + +#if (defined (osFeature_MessageQ) && (osFeature_MessageQ != 0)) /* Use Message Queues */ + +/** +* @brief Create and Initialize a Message Queue +* @param queue_def queue definition referenced with \ref osMessageQ. +* @param thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL. +* @retval message queue ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osMessageCreate shall be consistent in every CMSIS-RTOS. +*/ +osMessageQId osMessageCreate (const osMessageQDef_t *queue_def, osThreadId thread_id) +{ + (void) thread_id; + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + if ((queue_def->buffer != NULL) && (queue_def->controlblock != NULL)) { + return xQueueCreateStatic(queue_def->queue_sz, queue_def->item_sz, queue_def->buffer, queue_def->controlblock); + } + else { + return xQueueCreate(queue_def->queue_sz, queue_def->item_sz); + } +#elif ( configSUPPORT_STATIC_ALLOCATION == 1 ) + return xQueueCreateStatic(queue_def->queue_sz, queue_def->item_sz, queue_def->buffer, queue_def->controlblock); +#else + return xQueueCreate(queue_def->queue_sz, queue_def->item_sz); +#endif +} + +/** +* @brief Put a Message to a Queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @param info message information. +* @param millisec timeout value or 0 in case of no time-out. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osMessagePut shall be consistent in every CMSIS-RTOS. +*/ +osStatus osMessagePut (osMessageQId queue_id, uint32_t info, uint32_t millisec) +{ + portBASE_TYPE taskWoken = pdFALSE; + TickType_t ticks; + + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) { + ticks = 1; + } + + if (inHandlerMode()) { + if (xQueueSendFromISR(queue_id, &info, &taskWoken) != pdTRUE) { + return osErrorOS; + } + portEND_SWITCHING_ISR(taskWoken); + } + else { + if (xQueueSend(queue_id, &info, ticks) != pdTRUE) { + return osErrorOS; + } + } + + return osOK; +} + +/** +* @brief Get a Message or Wait for a Message from a Queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval event information that includes status code. +* @note MUST REMAIN UNCHANGED: \b osMessageGet shall be consistent in every CMSIS-RTOS. +*/ +osEvent osMessageGet (osMessageQId queue_id, uint32_t millisec) +{ + portBASE_TYPE taskWoken; + TickType_t ticks; + osEvent event; + + event.def.message_id = queue_id; + event.value.v = 0; + + if (queue_id == NULL) { + event.status = osErrorParameter; + return event; + } + + taskWoken = pdFALSE; + + ticks = 0; + if (millisec == osWaitForever) { + ticks = portMAX_DELAY; + } + else if (millisec != 0) { + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) { + ticks = 1; + } + } + + if (inHandlerMode()) { + if (xQueueReceiveFromISR(queue_id, &event.value.v, &taskWoken) == pdTRUE) { + /* We have mail */ + event.status = osEventMessage; + } + else { + event.status = osOK; + } + portEND_SWITCHING_ISR(taskWoken); + } + else { + if (xQueueReceive(queue_id, &event.value.v, ticks) == pdTRUE) { + /* We have mail */ + event.status = osEventMessage; + } + else { + event.status = (ticks == 0) ? osOK : osEventTimeout; + } + } + + return event; +} + +#endif /* Use Message Queues */ + +/******************** Mail Queue Management Functions ***********************/ +#if (defined (osFeature_MailQ) && (osFeature_MailQ != 0)) /* Use Mail Queues */ + + +typedef struct os_mailQ_cb { + const osMailQDef_t *queue_def; + QueueHandle_t handle; + osPoolId pool; +} os_mailQ_cb_t; + +/** +* @brief Create and Initialize mail queue +* @param queue_def reference to the mail queue definition obtain with \ref osMailQ +* @param thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL. +* @retval mail queue ID for reference by other functions or NULL in case of error. +* @note MUST REMAIN UNCHANGED: \b osMailCreate shall be consistent in every CMSIS-RTOS. +*/ +osMailQId osMailCreate (const osMailQDef_t *queue_def, osThreadId thread_id) +{ +#if (configSUPPORT_DYNAMIC_ALLOCATION == 1) + (void) thread_id; + + osPoolDef_t pool_def = {queue_def->queue_sz, queue_def->item_sz, NULL}; + + /* Create a mail queue control block */ + + *(queue_def->cb) = pvPortMalloc(sizeof(struct os_mailQ_cb)); + + if (*(queue_def->cb) == NULL) { + return NULL; + } + (*(queue_def->cb))->queue_def = queue_def; + + /* Create a queue in FreeRTOS */ + (*(queue_def->cb))->handle = xQueueCreate(queue_def->queue_sz, sizeof(void *)); + + + if ((*(queue_def->cb))->handle == NULL) { + vPortFree(*(queue_def->cb)); + return NULL; + } + + /* Create a mail pool */ + (*(queue_def->cb))->pool = osPoolCreate(&pool_def); + if ((*(queue_def->cb))->pool == NULL) { + //TODO: Delete queue. How to do it in FreeRTOS? + vPortFree(*(queue_def->cb)); + return NULL; + } + + return *(queue_def->cb); +#else + return NULL; +#endif +} + +/** +* @brief Allocate a memory block from a mail +* @param queue_id mail queue ID obtained with \ref osMailCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval pointer to memory block that can be filled with mail or NULL in case error. +* @note MUST REMAIN UNCHANGED: \b osMailAlloc shall be consistent in every CMSIS-RTOS. +*/ +void *osMailAlloc (osMailQId queue_id, uint32_t millisec) +{ + (void) millisec; + void *p; + + + if (queue_id == NULL) { + return NULL; + } + + p = osPoolAlloc(queue_id->pool); + + return p; +} + +/** +* @brief Allocate a memory block from a mail and set memory block to zero +* @param queue_id mail queue ID obtained with \ref osMailCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval pointer to memory block that can be filled with mail or NULL in case error. +* @note MUST REMAIN UNCHANGED: \b osMailCAlloc shall be consistent in every CMSIS-RTOS. +*/ +void *osMailCAlloc (osMailQId queue_id, uint32_t millisec) +{ + uint32_t i; + void *p = osMailAlloc(queue_id, millisec); + + if (p) { + for (i = 0; i < queue_id->queue_def->item_sz; i++) { + ((uint8_t *)p)[i] = 0; + } + } + + return p; +} + +/** +* @brief Put a mail to a queue +* @param queue_id mail queue ID obtained with \ref osMailCreate. +* @param mail memory block previously allocated with \ref osMailAlloc or \ref osMailCAlloc. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osMailPut shall be consistent in every CMSIS-RTOS. +*/ +osStatus osMailPut (osMailQId queue_id, void *mail) +{ + portBASE_TYPE taskWoken; + + + if (queue_id == NULL) { + return osErrorParameter; + } + + taskWoken = pdFALSE; + + if (inHandlerMode()) { + if (xQueueSendFromISR(queue_id->handle, &mail, &taskWoken) != pdTRUE) { + return osErrorOS; + } + portEND_SWITCHING_ISR(taskWoken); + } + else { + if (xQueueSend(queue_id->handle, &mail, 0) != pdTRUE) { + return osErrorOS; + } + } + + return osOK; +} + +/** +* @brief Get a mail from a queue +* @param queue_id mail queue ID obtained with \ref osMailCreate. +* @param millisec timeout value or 0 in case of no time-out +* @retval event that contains mail information or error code. +* @note MUST REMAIN UNCHANGED: \b osMailGet shall be consistent in every CMSIS-RTOS. +*/ +osEvent osMailGet (osMailQId queue_id, uint32_t millisec) +{ + portBASE_TYPE taskWoken; + TickType_t ticks; + osEvent event; + + event.def.mail_id = queue_id; + + if (queue_id == NULL) { + event.status = osErrorParameter; + return event; + } + + taskWoken = pdFALSE; + + ticks = 0; + if (millisec == osWaitForever) { + ticks = portMAX_DELAY; + } + else if (millisec != 0) { + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) { + ticks = 1; + } + } + + if (inHandlerMode()) { + if (xQueueReceiveFromISR(queue_id->handle, &event.value.p, &taskWoken) == pdTRUE) { + /* We have mail */ + event.status = osEventMail; + } + else { + event.status = osOK; + } + portEND_SWITCHING_ISR(taskWoken); + } + else { + if (xQueueReceive(queue_id->handle, &event.value.p, ticks) == pdTRUE) { + /* We have mail */ + event.status = osEventMail; + } + else { + event.status = (ticks == 0) ? osOK : osEventTimeout; + } + } + + return event; +} + +/** +* @brief Free a memory block from a mail +* @param queue_id mail queue ID obtained with \ref osMailCreate. +* @param mail pointer to the memory block that was obtained with \ref osMailGet. +* @retval status code that indicates the execution status of the function. +* @note MUST REMAIN UNCHANGED: \b osMailFree shall be consistent in every CMSIS-RTOS. +*/ +osStatus osMailFree (osMailQId queue_id, void *mail) +{ + if (queue_id == NULL) { + return osErrorParameter; + } + + return osPoolFree(queue_id->pool, mail); +} +#endif /* Use Mail Queues */ + +/*************************** Additional specific APIs to Free RTOS ************/ +/** +* @brief Handles the tick increment +* @param none. +* @retval none. +*/ +void osSystickHandler(void) +{ + +#if (INCLUDE_xTaskGetSchedulerState == 1 ) + if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) + { +#endif /* INCLUDE_xTaskGetSchedulerState */ + xPortSysTickHandler(); +#if (INCLUDE_xTaskGetSchedulerState == 1 ) + } +#endif /* INCLUDE_xTaskGetSchedulerState */ +} + +#if ( INCLUDE_eTaskGetState == 1 ) +/** +* @brief Obtain the state of any thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval the stae of the thread, states are encoded by the osThreadState enumerated type. +*/ +osThreadState osThreadGetState(osThreadId thread_id) +{ + eTaskState ThreadState; + osThreadState result; + + ThreadState = eTaskGetState(thread_id); + + switch (ThreadState) + { + case eRunning : + result = osThreadRunning; + break; + case eReady : + result = osThreadReady; + break; + case eBlocked : + result = osThreadBlocked; + break; + case eSuspended : + result = osThreadSuspended; + break; + case eDeleted : + result = osThreadDeleted; + break; + default: + result = osThreadError; + } + + return result; +} +#endif /* INCLUDE_eTaskGetState */ + +#if (INCLUDE_eTaskGetState == 1) +/** +* @brief Check if a thread is already suspended or not. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadIsSuspended(osThreadId thread_id) +{ + if (eTaskGetState(thread_id) == eSuspended) + return osOK; + else + return osErrorOS; +} +#endif /* INCLUDE_eTaskGetState */ +/** +* @brief Suspend execution of a thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadSuspend (osThreadId thread_id) +{ +#if (INCLUDE_vTaskSuspend == 1) + vTaskSuspend(thread_id); + + return osOK; +#else + return osErrorResource; +#endif +} + +/** +* @brief Resume execution of a suspended thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadResume (osThreadId thread_id) +{ +#if (INCLUDE_vTaskSuspend == 1) + if(inHandlerMode()) + { + if (xTaskResumeFromISR(thread_id) == pdTRUE) + { + portYIELD_FROM_ISR(pdTRUE); + } + } + else + { + vTaskResume(thread_id); + } + return osOK; +#else + return osErrorResource; +#endif +} + +/** +* @brief Suspend execution of a all active threads. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadSuspendAll (void) +{ + vTaskSuspendAll(); + + return osOK; +} + +/** +* @brief Resume execution of a all suspended threads. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadResumeAll (void) +{ + if (xTaskResumeAll() == pdTRUE) + return osOK; + else + return osErrorOS; + +} + +/** +* @brief Delay a task until a specified time +* @param PreviousWakeTime Pointer to a variable that holds the time at which the +* task was last unblocked. PreviousWakeTime must be initialised with the current time +* prior to its first use (PreviousWakeTime = osKernelSysTick() ) +* @param millisec time delay value +* @retval status code that indicates the execution status of the function. +*/ +osStatus osDelayUntil (uint32_t *PreviousWakeTime, uint32_t millisec) +{ +#if INCLUDE_vTaskDelayUntil + TickType_t ticks = (millisec / portTICK_PERIOD_MS); + vTaskDelayUntil((TickType_t *) PreviousWakeTime, ticks ? ticks : 1); + + return osOK; +#else + (void) millisec; + (void) PreviousWakeTime; + + return osErrorResource; +#endif +} + +/** +* @brief Abort the delay for a specific thread +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId +* @retval status code that indicates the execution status of the function. +*/ +osStatus osAbortDelay(osThreadId thread_id) +{ +#if INCLUDE_xTaskAbortDelay + + xTaskAbortDelay(thread_id); + + return osOK; +#else + (void) thread_id; + + return osErrorResource; +#endif +} + +/** +* @brief Lists all the current threads, along with their current state +* and stack usage high water mark. +* @param buffer A buffer into which the above mentioned details +* will be written +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadList (uint8_t *buffer) +{ +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) ) + vTaskList((char *)buffer); +#endif + return osOK; +} + +/** +* @brief Receive an item from a queue without removing the item from the queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval event information that includes status code. +*/ +osEvent osMessagePeek (osMessageQId queue_id, uint32_t millisec) +{ + TickType_t ticks; + osEvent event; + + event.def.message_id = queue_id; + + if (queue_id == NULL) { + event.status = osErrorParameter; + return event; + } + + ticks = 0; + if (millisec == osWaitForever) { + ticks = portMAX_DELAY; + } + else if (millisec != 0) { + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) { + ticks = 1; + } + } + + if (xQueuePeek(queue_id, &event.value.v, ticks) == pdTRUE) + { + /* We have mail */ + event.status = osEventMessage; + } + else + { + event.status = (ticks == 0) ? osOK : osEventTimeout; + } + + return event; +} + +/** +* @brief Get the number of messaged stored in a queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @retval number of messages stored in a queue. +*/ +uint32_t osMessageWaiting(osMessageQId queue_id) +{ + if (inHandlerMode()) { + return uxQueueMessagesWaitingFromISR(queue_id); + } + else + { + return uxQueueMessagesWaiting(queue_id); + } +} + +/** +* @brief Get the available space in a message queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @retval available space in a message queue. +*/ +uint32_t osMessageAvailableSpace(osMessageQId queue_id) +{ + return uxQueueSpacesAvailable(queue_id); +} + +/** +* @brief Delete a Message Queue +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osMessageDelete (osMessageQId queue_id) +{ + if (inHandlerMode()) { + return osErrorISR; + } + + vQueueDelete(queue_id); + + return osOK; +} + +/** +* @brief Create and Initialize a Recursive Mutex +* @param mutex_def mutex definition referenced with \ref osMutex. +* @retval mutex ID for reference by other functions or NULL in case of error.. +*/ +osMutexId osRecursiveMutexCreate (const osMutexDef_t *mutex_def) +{ +#if (configUSE_RECURSIVE_MUTEXES == 1) +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + if (mutex_def->controlblock != NULL){ + return xSemaphoreCreateRecursiveMutexStatic( mutex_def->controlblock ); + } + else { + return xSemaphoreCreateRecursiveMutex(); + } +#elif ( configSUPPORT_STATIC_ALLOCATION == 1 ) + return xSemaphoreCreateRecursiveMutexStatic( mutex_def->controlblock ); +#else + return xSemaphoreCreateRecursiveMutex(); +#endif +#else + return NULL; +#endif +} + +/** +* @brief Release a Recursive Mutex +* @param mutex_id mutex ID obtained by \ref osRecursiveMutexCreate. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osRecursiveMutexRelease (osMutexId mutex_id) +{ +#if (configUSE_RECURSIVE_MUTEXES == 1) + osStatus result = osOK; + + if (xSemaphoreGiveRecursive(mutex_id) != pdTRUE) + { + result = osErrorOS; + } + return result; +#else + return osErrorResource; +#endif +} + +/** +* @brief Release a Recursive Mutex +* @param mutex_id mutex ID obtained by \ref osRecursiveMutexCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osRecursiveMutexWait (osMutexId mutex_id, uint32_t millisec) +{ +#if (configUSE_RECURSIVE_MUTEXES == 1) + TickType_t ticks; + + if (mutex_id == NULL) + { + return osErrorParameter; + } + + ticks = 0; + if (millisec == osWaitForever) + { + ticks = portMAX_DELAY; + } + else if (millisec != 0) + { + ticks = millisec / portTICK_PERIOD_MS; + if (ticks == 0) + { + ticks = 1; + } + } + + if (xSemaphoreTakeRecursive(mutex_id, ticks) != pdTRUE) + { + return osErrorOS; + } + return osOK; +#else + return osErrorResource; +#endif +} + +/** +* @brief Returns the current count value of a counting semaphore +* @param semaphore_id semaphore_id ID obtained by \ref osSemaphoreCreate. +* @retval count value +*/ +uint32_t osSemaphoreGetCount(osSemaphoreId semaphore_id) +{ + return uxSemaphoreGetCount(semaphore_id); +} diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h new file mode 100644 index 0000000..a358540 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h @@ -0,0 +1,1071 @@ +/* ---------------------------------------------------------------------- + * $Date: 5. February 2013 + * $Revision: V1.02 + * + * Project: CMSIS-RTOS API + * Title: cmsis_os.h header file + * + * Version 0.02 + * Initial Proposal Phase + * Version 0.03 + * osKernelStart added, optional feature: main started as thread + * osSemaphores have standard behavior + * osTimerCreate does not start the timer, added osTimerStart + * osThreadPass is renamed to osThreadYield + * Version 1.01 + * Support for C++ interface + * - const attribute removed from the osXxxxDef_t typedef's + * - const attribute added to the osXxxxDef macros + * Added: osTimerDelete, osMutexDelete, osSemaphoreDelete + * Added: osKernelInitialize + * Version 1.02 + * Control functions for short timeouts in microsecond resolution: + * Added: osKernelSysTick, osKernelSysTickFrequency, osKernelSysTickMicroSec + * Removed: osSignalGet + * + * + *---------------------------------------------------------------------------- + * + * Portions Copyright © 2016 STMicroelectronics International N.V. All rights reserved. + * Portions Copyright (c) 2013 ARM LIMITED + * All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * - Neither the name of ARM nor the names of its contributors may be used + * to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + *---------------------------------------------------------------------------*/ + + /** + ****************************************************************************** + * @file cmsis_os.h + * @author MCD Application Team + * @date 03-March-2017 + * @brief Header of cmsis_os.c + * A new set of APIs are added in addition to existing ones, these APIs + * are specific to FreeRTOS. + ****************************************************************************** + * @attention + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +#include "FreeRTOS.h" +#include "task.h" +#include "timers.h" +#include "queue.h" +#include "semphr.h" +#include "event_groups.h" + +/** +\page cmsis_os_h Header File Template: cmsis_os.h + +The file \b cmsis_os.h is a template header file for a CMSIS-RTOS compliant Real-Time Operating System (RTOS). +Each RTOS that is compliant with CMSIS-RTOS shall provide a specific \b cmsis_os.h header file that represents +its implementation. + +The file cmsis_os.h contains: + - CMSIS-RTOS API function definitions + - struct definitions for parameters and return types + - status and priority values used by CMSIS-RTOS API functions + - macros for defining threads and other kernel objects + + +Name conventions and header file modifications + +All definitions are prefixed with \b os to give an unique name space for CMSIS-RTOS functions. +Definitions that are prefixed \b os_ are not used in the application code but local to this header file. +All definitions and functions that belong to a module are grouped and have a common prefix, i.e. \b osThread. + +Definitions that are marked with CAN BE CHANGED can be adapted towards the needs of the actual CMSIS-RTOS implementation. +These definitions can be specific to the underlying RTOS kernel. + +Definitions that are marked with MUST REMAIN UNCHANGED cannot be altered. Otherwise the CMSIS-RTOS implementation is no longer +compliant to the standard. Note that some functions are optional and need not to be provided by every CMSIS-RTOS implementation. + + +Function calls from interrupt service routines + +The following CMSIS-RTOS functions can be called from threads and interrupt service routines (ISR): + - \ref osSignalSet + - \ref osSemaphoreRelease + - \ref osPoolAlloc, \ref osPoolCAlloc, \ref osPoolFree + - \ref osMessagePut, \ref osMessageGet + - \ref osMailAlloc, \ref osMailCAlloc, \ref osMailGet, \ref osMailPut, \ref osMailFree + +Functions that cannot be called from an ISR are verifying the interrupt status and return in case that they are called +from an ISR context the status code \b osErrorISR. In some implementations this condition might be caught using the HARD FAULT vector. + +Some CMSIS-RTOS implementations support CMSIS-RTOS function calls from multiple ISR at the same time. +If this is impossible, the CMSIS-RTOS rejects calls by nested ISR functions with the status code \b osErrorISRRecursive. + + +Define and reference object definitions + +With \#define osObjectsExternal objects are defined as external symbols. This allows to create a consistent header file +that is used throughout a project as shown below: + +Header File +\code +#include // CMSIS RTOS header file + +// Thread definition +extern void thread_sample (void const *argument); // function prototype +osThreadDef (thread_sample, osPriorityBelowNormal, 1, 100); + +// Pool definition +osPoolDef(MyPool, 10, long); +\endcode + + +This header file defines all objects when included in a C/C++ source file. When \#define osObjectsExternal is +present before the header file, the objects are defined as external symbols. A single consistent header file can therefore be +used throughout the whole project. + +Example +\code +#include "osObjects.h" // Definition of the CMSIS-RTOS objects +\endcode + +\code +#define osObjectExternal // Objects will be defined as external symbols +#include "osObjects.h" // Reference to the CMSIS-RTOS objects +\endcode + +*/ + +#ifndef _CMSIS_OS_H +#define _CMSIS_OS_H + +/// \note MUST REMAIN UNCHANGED: \b osCMSIS identifies the CMSIS-RTOS API version. +#define osCMSIS 0x10002 ///< API version (main [31:16] .sub [15:0]) + +/// \note CAN BE CHANGED: \b osCMSIS_KERNEL identifies the underlying RTOS kernel and version number. +#define osCMSIS_KERNEL 0x10000 ///< RTOS identification and version (main [31:16] .sub [15:0]) + +/// \note MUST REMAIN UNCHANGED: \b osKernelSystemId shall be consistent in every CMSIS-RTOS. +#define osKernelSystemId "KERNEL V1.00" ///< RTOS identification string + +/// \note MUST REMAIN UNCHANGED: \b osFeature_xxx shall be consistent in every CMSIS-RTOS. +#define osFeature_MainThread 1 ///< main thread 1=main can be thread, 0=not available +#define osFeature_Pool 1 ///< Memory Pools: 1=available, 0=not available +#define osFeature_MailQ 1 ///< Mail Queues: 1=available, 0=not available +#define osFeature_MessageQ 1 ///< Message Queues: 1=available, 0=not available +#define osFeature_Signals 8 ///< maximum number of Signal Flags available per thread +#define osFeature_Semaphore 1 ///< osFeature_Semaphore function: 1=available, 0=not available +#define osFeature_Wait 0 ///< osWait function: 1=available, 0=not available +#define osFeature_SysTick 1 ///< osKernelSysTick functions: 1=available, 0=not available + +#ifdef __cplusplus +extern "C" +{ +#endif + + +// ==== Enumeration, structures, defines ==== + +/// Priority used for thread control. +/// \note MUST REMAIN UNCHANGED: \b osPriority shall be consistent in every CMSIS-RTOS. +typedef enum { + osPriorityIdle = -3, ///< priority: idle (lowest) + osPriorityLow = -2, ///< priority: low + osPriorityBelowNormal = -1, ///< priority: below normal + osPriorityNormal = 0, ///< priority: normal (default) + osPriorityAboveNormal = +1, ///< priority: above normal + osPriorityHigh = +2, ///< priority: high + osPriorityRealtime = +3, ///< priority: realtime (highest) + osPriorityError = 0x84 ///< system cannot determine priority or thread has illegal priority +} osPriority; + +/// Timeout value. +/// \note MUST REMAIN UNCHANGED: \b osWaitForever shall be consistent in every CMSIS-RTOS. +#define osWaitForever 0xFFFFFFFF ///< wait forever timeout value + +/// Status code values returned by CMSIS-RTOS functions. +/// \note MUST REMAIN UNCHANGED: \b osStatus shall be consistent in every CMSIS-RTOS. +typedef enum { + osOK = 0, ///< function completed; no error or event occurred. + osEventSignal = 0x08, ///< function completed; signal event occurred. + osEventMessage = 0x10, ///< function completed; message event occurred. + osEventMail = 0x20, ///< function completed; mail event occurred. + osEventTimeout = 0x40, ///< function completed; timeout occurred. + osErrorParameter = 0x80, ///< parameter error: a mandatory parameter was missing or specified an incorrect object. + osErrorResource = 0x81, ///< resource not available: a specified resource was not available. + osErrorTimeoutResource = 0xC1, ///< resource not available within given time: a specified resource was not available within the timeout period. + osErrorISR = 0x82, ///< not allowed in ISR context: the function cannot be called from interrupt service routines. + osErrorISRRecursive = 0x83, ///< function called multiple times from ISR with same object. + osErrorPriority = 0x84, ///< system cannot determine priority or thread has illegal priority. + osErrorNoMemory = 0x85, ///< system is out of memory: it was impossible to allocate or reserve memory for the operation. + osErrorValue = 0x86, ///< value of a parameter is out of range. + osErrorOS = 0xFF, ///< unspecified RTOS error: run-time error but no other error message fits. + os_status_reserved = 0x7FFFFFFF ///< prevent from enum down-size compiler optimization. +} osStatus; + +#if ( INCLUDE_eTaskGetState == 1 ) +/* Thread state returned by osThreadGetState */ +typedef enum { + osThreadRunning = 0x0, /* A thread is querying the state of itself, so must be running. */ + osThreadReady = 0x1 , /* The thread being queried is in a read or pending ready list. */ + osThreadBlocked = 0x2, /* The thread being queried is in the Blocked state. */ + osThreadSuspended = 0x3, /* The thread being queried is in the Suspended state, or is in the Blocked state with an infinite time out. */ + osThreadDeleted = 0x4, /* The thread being queried has been deleted, but its TCB has not yet been freed. */ + osThreadError = 0x7FFFFFFF +} osThreadState; +#endif /* INCLUDE_eTaskGetState */ + +/// Timer type value for the timer definition. +/// \note MUST REMAIN UNCHANGED: \b os_timer_type shall be consistent in every CMSIS-RTOS. +typedef enum { + osTimerOnce = 0, ///< one-shot timer + osTimerPeriodic = 1 ///< repeating timer +} os_timer_type; + +/// Entry point of a thread. +/// \note MUST REMAIN UNCHANGED: \b os_pthread shall be consistent in every CMSIS-RTOS. +typedef void (*os_pthread) (void const *argument); + +/// Entry point of a timer call back function. +/// \note MUST REMAIN UNCHANGED: \b os_ptimer shall be consistent in every CMSIS-RTOS. +typedef void (*os_ptimer) (void const *argument); + +// >>> the following data type definitions may shall adapted towards a specific RTOS + +/// Thread ID identifies the thread (pointer to a thread control block). +/// \note CAN BE CHANGED: \b os_thread_cb is implementation specific in every CMSIS-RTOS. +typedef TaskHandle_t osThreadId; + +/// Timer ID identifies the timer (pointer to a timer control block). +/// \note CAN BE CHANGED: \b os_timer_cb is implementation specific in every CMSIS-RTOS. +typedef TimerHandle_t osTimerId; + +/// Mutex ID identifies the mutex (pointer to a mutex control block). +/// \note CAN BE CHANGED: \b os_mutex_cb is implementation specific in every CMSIS-RTOS. +typedef SemaphoreHandle_t osMutexId; + +/// Semaphore ID identifies the semaphore (pointer to a semaphore control block). +/// \note CAN BE CHANGED: \b os_semaphore_cb is implementation specific in every CMSIS-RTOS. +typedef SemaphoreHandle_t osSemaphoreId; + +/// Pool ID identifies the memory pool (pointer to a memory pool control block). +/// \note CAN BE CHANGED: \b os_pool_cb is implementation specific in every CMSIS-RTOS. +typedef struct os_pool_cb *osPoolId; + +/// Message ID identifies the message queue (pointer to a message queue control block). +/// \note CAN BE CHANGED: \b os_messageQ_cb is implementation specific in every CMSIS-RTOS. +typedef QueueHandle_t osMessageQId; + +/// Mail ID identifies the mail queue (pointer to a mail queue control block). +/// \note CAN BE CHANGED: \b os_mailQ_cb is implementation specific in every CMSIS-RTOS. +typedef struct os_mailQ_cb *osMailQId; + + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + +typedef StaticTask_t osStaticThreadDef_t; +typedef StaticTimer_t osStaticTimerDef_t; +typedef StaticSemaphore_t osStaticMutexDef_t; +typedef StaticSemaphore_t osStaticSemaphoreDef_t; +typedef StaticQueue_t osStaticMessageQDef_t; + +#endif + + + + +/// Thread Definition structure contains startup information of a thread. +/// \note CAN BE CHANGED: \b os_thread_def is implementation specific in every CMSIS-RTOS. +typedef struct os_thread_def { + char *name; ///< Thread name + os_pthread pthread; ///< start address of thread function + osPriority tpriority; ///< initial thread priority + uint32_t instances; ///< maximum number of instances of that thread function + uint32_t stacksize; ///< stack size requirements in bytes; 0 is default stack size +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + uint32_t *buffer; ///< stack buffer for static allocation; NULL for dynamic allocation + osStaticThreadDef_t *controlblock; ///< control block to hold thread's data for static allocation; NULL for dynamic allocation +#endif +} osThreadDef_t; + +/// Timer Definition structure contains timer parameters. +/// \note CAN BE CHANGED: \b os_timer_def is implementation specific in every CMSIS-RTOS. +typedef struct os_timer_def { + os_ptimer ptimer; ///< start address of a timer function +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + osStaticTimerDef_t *controlblock; ///< control block to hold timer's data for static allocation; NULL for dynamic allocation +#endif +} osTimerDef_t; + +/// Mutex Definition structure contains setup information for a mutex. +/// \note CAN BE CHANGED: \b os_mutex_def is implementation specific in every CMSIS-RTOS. +typedef struct os_mutex_def { + uint32_t dummy; ///< dummy value. +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + osStaticMutexDef_t *controlblock; ///< control block for static allocation; NULL for dynamic allocation +#endif +} osMutexDef_t; + +/// Semaphore Definition structure contains setup information for a semaphore. +/// \note CAN BE CHANGED: \b os_semaphore_def is implementation specific in every CMSIS-RTOS. +typedef struct os_semaphore_def { + uint32_t dummy; ///< dummy value. +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + osStaticSemaphoreDef_t *controlblock; ///< control block for static allocation; NULL for dynamic allocation +#endif +} osSemaphoreDef_t; + +/// Definition structure for memory block allocation. +/// \note CAN BE CHANGED: \b os_pool_def is implementation specific in every CMSIS-RTOS. +typedef struct os_pool_def { + uint32_t pool_sz; ///< number of items (elements) in the pool + uint32_t item_sz; ///< size of an item + void *pool; ///< pointer to memory for pool +} osPoolDef_t; + +/// Definition structure for message queue. +/// \note CAN BE CHANGED: \b os_messageQ_def is implementation specific in every CMSIS-RTOS. +typedef struct os_messageQ_def { + uint32_t queue_sz; ///< number of elements in the queue + uint32_t item_sz; ///< size of an item +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + uint8_t *buffer; ///< buffer for static allocation; NULL for dynamic allocation + osStaticMessageQDef_t *controlblock; ///< control block to hold queue's data for static allocation; NULL for dynamic allocation +#endif + //void *pool; ///< memory array for messages +} osMessageQDef_t; + +/// Definition structure for mail queue. +/// \note CAN BE CHANGED: \b os_mailQ_def is implementation specific in every CMSIS-RTOS. +typedef struct os_mailQ_def { + uint32_t queue_sz; ///< number of elements in the queue + uint32_t item_sz; ///< size of an item + struct os_mailQ_cb **cb; +} osMailQDef_t; + +/// Event structure contains detailed information about an event. +/// \note MUST REMAIN UNCHANGED: \b os_event shall be consistent in every CMSIS-RTOS. +/// However the struct may be extended at the end. +typedef struct { + osStatus status; ///< status code: event or error information + union { + uint32_t v; ///< message as 32-bit value + void *p; ///< message or mail as void pointer + int32_t signals; ///< signal flags + } value; ///< event value + union { + osMailQId mail_id; ///< mail id obtained by \ref osMailCreate + osMessageQId message_id; ///< message id obtained by \ref osMessageCreate + } def; ///< event definition +} osEvent; + + +// ==== Kernel Control Functions ==== + +/// Initialize the RTOS Kernel for creating objects. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osKernelInitialize shall be consistent in every CMSIS-RTOS. +osStatus osKernelInitialize (void); + +/// Start the RTOS Kernel. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osKernelStart shall be consistent in every CMSIS-RTOS. +osStatus osKernelStart (void); + +/// Check if the RTOS kernel is already started. +/// \note MUST REMAIN UNCHANGED: \b osKernelRunning shall be consistent in every CMSIS-RTOS. +/// \return 0 RTOS is not started, 1 RTOS is started. +int32_t osKernelRunning(void); + +#if (defined (osFeature_SysTick) && (osFeature_SysTick != 0)) // System Timer available + +/// Get the RTOS kernel system timer counter +/// \note MUST REMAIN UNCHANGED: \b osKernelSysTick shall be consistent in every CMSIS-RTOS. +/// \return RTOS kernel system timer as 32-bit value +uint32_t osKernelSysTick (void); + +/// The RTOS kernel system timer frequency in Hz +/// \note Reflects the system timer setting and is typically defined in a configuration file. +#define osKernelSysTickFrequency (configTICK_RATE_HZ) + +/// Convert a microseconds value to a RTOS kernel system timer value. +/// \param microsec time value in microseconds. +/// \return time value normalized to the \ref osKernelSysTickFrequency +#define osKernelSysTickMicroSec(microsec) (((uint64_t)microsec * (osKernelSysTickFrequency)) / 1000000) + +#endif // System Timer available + +// ==== Thread Management ==== + +/// Create a Thread Definition with function, priority, and stack requirements. +/// \param name name of the thread function. +/// \param priority initial priority of the thread function. +/// \param instances number of possible thread instances. +/// \param stacksz stack size (in bytes) requirements for the thread function. +/// \note CAN BE CHANGED: The parameters to \b osThreadDef shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#if defined (osObjectsExternal) // object is external +#define osThreadDef(name, thread, priority, instances, stacksz) \ +extern const osThreadDef_t os_thread_def_##name +#else // define the object + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) +#define osThreadDef(name, thread, priority, instances, stacksz) \ +const osThreadDef_t os_thread_def_##name = \ +{ #name, (thread), (priority), (instances), (stacksz), NULL, NULL } + +#define osThreadStaticDef(name, thread, priority, instances, stacksz, buffer, control) \ +const osThreadDef_t os_thread_def_##name = \ +{ #name, (thread), (priority), (instances), (stacksz), (buffer), (control) } +#else //configSUPPORT_STATIC_ALLOCATION == 0 + +#define osThreadDef(name, thread, priority, instances, stacksz) \ +const osThreadDef_t os_thread_def_##name = \ +{ #name, (thread), (priority), (instances), (stacksz)} +#endif +#endif + +/// Access a Thread definition. +/// \param name name of the thread definition object. +/// \note CAN BE CHANGED: The parameter to \b osThread shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#define osThread(name) \ +&os_thread_def_##name + +/// Create a thread and add it to Active Threads and set it to state READY. +/// \param[in] thread_def thread definition referenced with \ref osThread. +/// \param[in] argument pointer that is passed to the thread function as start argument. +/// \return thread ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osThreadCreate shall be consistent in every CMSIS-RTOS. +osThreadId osThreadCreate (const osThreadDef_t *thread_def, void *argument); + +/// Return the thread ID of the current running thread. +/// \return thread ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osThreadGetId shall be consistent in every CMSIS-RTOS. +osThreadId osThreadGetId (void); + +/// Terminate execution of a thread and remove it from Active Threads. +/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osThreadTerminate shall be consistent in every CMSIS-RTOS. +osStatus osThreadTerminate (osThreadId thread_id); + +/// Pass control to next thread that is in state \b READY. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osThreadYield shall be consistent in every CMSIS-RTOS. +osStatus osThreadYield (void); + +/// Change priority of an active thread. +/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +/// \param[in] priority new priority value for the thread function. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osThreadSetPriority shall be consistent in every CMSIS-RTOS. +osStatus osThreadSetPriority (osThreadId thread_id, osPriority priority); + +/// Get current priority of an active thread. +/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +/// \return current priority value of the thread function. +/// \note MUST REMAIN UNCHANGED: \b osThreadGetPriority shall be consistent in every CMSIS-RTOS. +osPriority osThreadGetPriority (osThreadId thread_id); + + +// ==== Generic Wait Functions ==== + +/// Wait for Timeout (Time Delay). +/// \param[in] millisec time delay value +/// \return status code that indicates the execution status of the function. +osStatus osDelay (uint32_t millisec); + +#if (defined (osFeature_Wait) && (osFeature_Wait != 0)) // Generic Wait available + +/// Wait for Signal, Message, Mail, or Timeout. +/// \param[in] millisec timeout value or 0 in case of no time-out +/// \return event that contains signal, message, or mail information or error code. +/// \note MUST REMAIN UNCHANGED: \b osWait shall be consistent in every CMSIS-RTOS. +osEvent osWait (uint32_t millisec); + +#endif // Generic Wait available + + +// ==== Timer Management Functions ==== +/// Define a Timer object. +/// \param name name of the timer object. +/// \param function name of the timer call back function. +/// \note CAN BE CHANGED: The parameter to \b osTimerDef shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#if defined (osObjectsExternal) // object is external +#define osTimerDef(name, function) \ +extern const osTimerDef_t os_timer_def_##name +#else // define the object + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) +#define osTimerDef(name, function) \ +const osTimerDef_t os_timer_def_##name = \ +{ (function), NULL } + +#define osTimerStaticDef(name, function, control) \ +const osTimerDef_t os_timer_def_##name = \ +{ (function), (control) } +#else //configSUPPORT_STATIC_ALLOCATION == 0 +#define osTimerDef(name, function) \ +const osTimerDef_t os_timer_def_##name = \ +{ (function) } +#endif +#endif + +/// Access a Timer definition. +/// \param name name of the timer object. +/// \note CAN BE CHANGED: The parameter to \b osTimer shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#define osTimer(name) \ +&os_timer_def_##name + +/// Create a timer. +/// \param[in] timer_def timer object referenced with \ref osTimer. +/// \param[in] type osTimerOnce for one-shot or osTimerPeriodic for periodic behavior. +/// \param[in] argument argument to the timer call back function. +/// \return timer ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osTimerCreate shall be consistent in every CMSIS-RTOS. +osTimerId osTimerCreate (const osTimerDef_t *timer_def, os_timer_type type, void *argument); + +/// Start or restart a timer. +/// \param[in] timer_id timer ID obtained by \ref osTimerCreate. +/// \param[in] millisec time delay value of the timer. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osTimerStart shall be consistent in every CMSIS-RTOS. +osStatus osTimerStart (osTimerId timer_id, uint32_t millisec); + +/// Stop the timer. +/// \param[in] timer_id timer ID obtained by \ref osTimerCreate. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osTimerStop shall be consistent in every CMSIS-RTOS. +osStatus osTimerStop (osTimerId timer_id); + +/// Delete a timer that was created by \ref osTimerCreate. +/// \param[in] timer_id timer ID obtained by \ref osTimerCreate. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osTimerDelete shall be consistent in every CMSIS-RTOS. +osStatus osTimerDelete (osTimerId timer_id); + + +// ==== Signal Management ==== + +/// Set the specified Signal Flags of an active thread. +/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +/// \param[in] signals specifies the signal flags of the thread that should be set. +/// \return osOK if successful, osErrorOS if failed. +/// \note MUST REMAIN UNCHANGED: \b osSignalSet shall be consistent in every CMSIS-RTOS. +int32_t osSignalSet (osThreadId thread_id, int32_t signals); + +/// Clear the specified Signal Flags of an active thread. +/// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +/// \param[in] signals specifies the signal flags of the thread that shall be cleared. +/// \return previous signal flags of the specified thread or 0x80000000 in case of incorrect parameters. +/// \note MUST REMAIN UNCHANGED: \b osSignalClear shall be consistent in every CMSIS-RTOS. +int32_t osSignalClear (osThreadId thread_id, int32_t signals); + +/// Wait for one or more Signal Flags to become signaled for the current \b RUNNING thread. +/// \param[in] signals wait until all specified signal flags set or 0 for any single signal flag. +/// \param[in] millisec timeout value or 0 in case of no time-out. +/// \return event flag information or error code. +/// \note MUST REMAIN UNCHANGED: \b osSignalWait shall be consistent in every CMSIS-RTOS. +osEvent osSignalWait (int32_t signals, uint32_t millisec); + + +// ==== Mutex Management ==== + +/// Define a Mutex. +/// \param name name of the mutex object. +/// \note CAN BE CHANGED: The parameter to \b osMutexDef shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#if defined (osObjectsExternal) // object is external +#define osMutexDef(name) \ +extern const osMutexDef_t os_mutex_def_##name +#else // define the object + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) +#define osMutexDef(name) \ +const osMutexDef_t os_mutex_def_##name = { 0, NULL } + +#define osMutexStaticDef(name, control) \ +const osMutexDef_t os_mutex_def_##name = { 0, (control) } +#else //configSUPPORT_STATIC_ALLOCATION == 0 +#define osMutexDef(name) \ +const osMutexDef_t os_mutex_def_##name = { 0 } + +#endif + +#endif + +/// Access a Mutex definition. +/// \param name name of the mutex object. +/// \note CAN BE CHANGED: The parameter to \b osMutex shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#define osMutex(name) \ +&os_mutex_def_##name + +/// Create and Initialize a Mutex object. +/// \param[in] mutex_def mutex definition referenced with \ref osMutex. +/// \return mutex ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osMutexCreate shall be consistent in every CMSIS-RTOS. +osMutexId osMutexCreate (const osMutexDef_t *mutex_def); + +/// Wait until a Mutex becomes available. +/// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate. +/// \param[in] millisec timeout value or 0 in case of no time-out. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osMutexWait shall be consistent in every CMSIS-RTOS. +osStatus osMutexWait (osMutexId mutex_id, uint32_t millisec); + +/// Release a Mutex that was obtained by \ref osMutexWait. +/// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osMutexRelease shall be consistent in every CMSIS-RTOS. +osStatus osMutexRelease (osMutexId mutex_id); + +/// Delete a Mutex that was created by \ref osMutexCreate. +/// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osMutexDelete shall be consistent in every CMSIS-RTOS. +osStatus osMutexDelete (osMutexId mutex_id); + + +// ==== Semaphore Management Functions ==== + +#if (defined (osFeature_Semaphore) && (osFeature_Semaphore != 0)) // Semaphore available + +/// Define a Semaphore object. +/// \param name name of the semaphore object. +/// \note CAN BE CHANGED: The parameter to \b osSemaphoreDef shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#if defined (osObjectsExternal) // object is external +#define osSemaphoreDef(name) \ +extern const osSemaphoreDef_t os_semaphore_def_##name +#else // define the object + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) +#define osSemaphoreDef(name) \ +const osSemaphoreDef_t os_semaphore_def_##name = { 0, NULL } + +#define osSemaphoreStaticDef(name, control) \ +const osSemaphoreDef_t os_semaphore_def_##name = { 0, (control) } + +#else //configSUPPORT_STATIC_ALLOCATION == 0 +#define osSemaphoreDef(name) \ +const osSemaphoreDef_t os_semaphore_def_##name = { 0 } +#endif +#endif + +/// Access a Semaphore definition. +/// \param name name of the semaphore object. +/// \note CAN BE CHANGED: The parameter to \b osSemaphore shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#define osSemaphore(name) \ +&os_semaphore_def_##name + +/// Create and Initialize a Semaphore object used for managing resources. +/// \param[in] semaphore_def semaphore definition referenced with \ref osSemaphore. +/// \param[in] count number of available resources. +/// \return semaphore ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osSemaphoreCreate shall be consistent in every CMSIS-RTOS. +osSemaphoreId osSemaphoreCreate (const osSemaphoreDef_t *semaphore_def, int32_t count); + +/// Wait until a Semaphore token becomes available. +/// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate. +/// \param[in] millisec timeout value or 0 in case of no time-out. +/// \return number of available tokens, or -1 in case of incorrect parameters. +/// \note MUST REMAIN UNCHANGED: \b osSemaphoreWait shall be consistent in every CMSIS-RTOS. +int32_t osSemaphoreWait (osSemaphoreId semaphore_id, uint32_t millisec); + +/// Release a Semaphore token. +/// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osSemaphoreRelease shall be consistent in every CMSIS-RTOS. +osStatus osSemaphoreRelease (osSemaphoreId semaphore_id); + +/// Delete a Semaphore that was created by \ref osSemaphoreCreate. +/// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osSemaphoreDelete shall be consistent in every CMSIS-RTOS. +osStatus osSemaphoreDelete (osSemaphoreId semaphore_id); + +#endif // Semaphore available + + +// ==== Memory Pool Management Functions ==== + +#if (defined (osFeature_Pool) && (osFeature_Pool != 0)) // Memory Pool Management available + +/// \brief Define a Memory Pool. +/// \param name name of the memory pool. +/// \param no maximum number of blocks (objects) in the memory pool. +/// \param type data type of a single block (object). +/// \note CAN BE CHANGED: The parameter to \b osPoolDef shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#if defined (osObjectsExternal) // object is external +#define osPoolDef(name, no, type) \ +extern const osPoolDef_t os_pool_def_##name +#else // define the object +#define osPoolDef(name, no, type) \ +const osPoolDef_t os_pool_def_##name = \ +{ (no), sizeof(type), NULL } +#endif + +/// \brief Access a Memory Pool definition. +/// \param name name of the memory pool +/// \note CAN BE CHANGED: The parameter to \b osPool shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#define osPool(name) \ +&os_pool_def_##name + +/// Create and Initialize a memory pool. +/// \param[in] pool_def memory pool definition referenced with \ref osPool. +/// \return memory pool ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osPoolCreate shall be consistent in every CMSIS-RTOS. +osPoolId osPoolCreate (const osPoolDef_t *pool_def); + +/// Allocate a memory block from a memory pool. +/// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate. +/// \return address of the allocated memory block or NULL in case of no memory available. +/// \note MUST REMAIN UNCHANGED: \b osPoolAlloc shall be consistent in every CMSIS-RTOS. +void *osPoolAlloc (osPoolId pool_id); + +/// Allocate a memory block from a memory pool and set memory block to zero. +/// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate. +/// \return address of the allocated memory block or NULL in case of no memory available. +/// \note MUST REMAIN UNCHANGED: \b osPoolCAlloc shall be consistent in every CMSIS-RTOS. +void *osPoolCAlloc (osPoolId pool_id); + +/// Return an allocated memory block back to a specific memory pool. +/// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate. +/// \param[in] block address of the allocated memory block that is returned to the memory pool. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osPoolFree shall be consistent in every CMSIS-RTOS. +osStatus osPoolFree (osPoolId pool_id, void *block); + +#endif // Memory Pool Management available + + +// ==== Message Queue Management Functions ==== + +#if (defined (osFeature_MessageQ) && (osFeature_MessageQ != 0)) // Message Queues available + +/// \brief Create a Message Queue Definition. +/// \param name name of the queue. +/// \param queue_sz maximum number of messages in the queue. +/// \param type data type of a single message element (for debugger). +/// \note CAN BE CHANGED: The parameter to \b osMessageQDef shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#if defined (osObjectsExternal) // object is external +#define osMessageQDef(name, queue_sz, type) \ +extern const osMessageQDef_t os_messageQ_def_##name +#else // define the object +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) +#define osMessageQDef(name, queue_sz, type) \ +const osMessageQDef_t os_messageQ_def_##name = \ +{ (queue_sz), sizeof (type), NULL, NULL } + +#define osMessageQStaticDef(name, queue_sz, type, buffer, control) \ +const osMessageQDef_t os_messageQ_def_##name = \ +{ (queue_sz), sizeof (type) , (buffer), (control)} +#else //configSUPPORT_STATIC_ALLOCATION == 1 +#define osMessageQDef(name, queue_sz, type) \ +const osMessageQDef_t os_messageQ_def_##name = \ +{ (queue_sz), sizeof (type) } + +#endif +#endif + +/// \brief Access a Message Queue Definition. +/// \param name name of the queue +/// \note CAN BE CHANGED: The parameter to \b osMessageQ shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#define osMessageQ(name) \ +&os_messageQ_def_##name + +/// Create and Initialize a Message Queue. +/// \param[in] queue_def queue definition referenced with \ref osMessageQ. +/// \param[in] thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL. +/// \return message queue ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osMessageCreate shall be consistent in every CMSIS-RTOS. +osMessageQId osMessageCreate (const osMessageQDef_t *queue_def, osThreadId thread_id); + +/// Put a Message to a Queue. +/// \param[in] queue_id message queue ID obtained with \ref osMessageCreate. +/// \param[in] info message information. +/// \param[in] millisec timeout value or 0 in case of no time-out. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osMessagePut shall be consistent in every CMSIS-RTOS. +osStatus osMessagePut (osMessageQId queue_id, uint32_t info, uint32_t millisec); + +/// Get a Message or Wait for a Message from a Queue. +/// \param[in] queue_id message queue ID obtained with \ref osMessageCreate. +/// \param[in] millisec timeout value or 0 in case of no time-out. +/// \return event information that includes status code. +/// \note MUST REMAIN UNCHANGED: \b osMessageGet shall be consistent in every CMSIS-RTOS. +osEvent osMessageGet (osMessageQId queue_id, uint32_t millisec); + +#endif // Message Queues available + + +// ==== Mail Queue Management Functions ==== + +#if (defined (osFeature_MailQ) && (osFeature_MailQ != 0)) // Mail Queues available + +/// \brief Create a Mail Queue Definition. +/// \param name name of the queue +/// \param queue_sz maximum number of messages in queue +/// \param type data type of a single message element +/// \note CAN BE CHANGED: The parameter to \b osMailQDef shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#if defined (osObjectsExternal) // object is external +#define osMailQDef(name, queue_sz, type) \ +extern struct os_mailQ_cb *os_mailQ_cb_##name \ +extern osMailQDef_t os_mailQ_def_##name +#else // define the object +#define osMailQDef(name, queue_sz, type) \ +struct os_mailQ_cb *os_mailQ_cb_##name; \ +const osMailQDef_t os_mailQ_def_##name = \ +{ (queue_sz), sizeof (type), (&os_mailQ_cb_##name) } +#endif + +/// \brief Access a Mail Queue Definition. +/// \param name name of the queue +/// \note CAN BE CHANGED: The parameter to \b osMailQ shall be consistent but the +/// macro body is implementation specific in every CMSIS-RTOS. +#define osMailQ(name) \ +&os_mailQ_def_##name + +/// Create and Initialize mail queue. +/// \param[in] queue_def reference to the mail queue definition obtain with \ref osMailQ +/// \param[in] thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL. +/// \return mail queue ID for reference by other functions or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osMailCreate shall be consistent in every CMSIS-RTOS. +osMailQId osMailCreate (const osMailQDef_t *queue_def, osThreadId thread_id); + +/// Allocate a memory block from a mail. +/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate. +/// \param[in] millisec timeout value or 0 in case of no time-out +/// \return pointer to memory block that can be filled with mail or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osMailAlloc shall be consistent in every CMSIS-RTOS. +void *osMailAlloc (osMailQId queue_id, uint32_t millisec); + +/// Allocate a memory block from a mail and set memory block to zero. +/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate. +/// \param[in] millisec timeout value or 0 in case of no time-out +/// \return pointer to memory block that can be filled with mail or NULL in case of error. +/// \note MUST REMAIN UNCHANGED: \b osMailCAlloc shall be consistent in every CMSIS-RTOS. +void *osMailCAlloc (osMailQId queue_id, uint32_t millisec); + +/// Put a mail to a queue. +/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate. +/// \param[in] mail memory block previously allocated with \ref osMailAlloc or \ref osMailCAlloc. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osMailPut shall be consistent in every CMSIS-RTOS. +osStatus osMailPut (osMailQId queue_id, void *mail); + +/// Get a mail from a queue. +/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate. +/// \param[in] millisec timeout value or 0 in case of no time-out +/// \return event that contains mail information or error code. +/// \note MUST REMAIN UNCHANGED: \b osMailGet shall be consistent in every CMSIS-RTOS. +osEvent osMailGet (osMailQId queue_id, uint32_t millisec); + +/// Free a memory block from a mail. +/// \param[in] queue_id mail queue ID obtained with \ref osMailCreate. +/// \param[in] mail pointer to the memory block that was obtained with \ref osMailGet. +/// \return status code that indicates the execution status of the function. +/// \note MUST REMAIN UNCHANGED: \b osMailFree shall be consistent in every CMSIS-RTOS. +osStatus osMailFree (osMailQId queue_id, void *mail); + +#endif // Mail Queues available + +/*************************** Additional specific APIs to Free RTOS ************/ +/** +* @brief Handles the tick increment +* @param none. +* @retval none. +*/ +void osSystickHandler(void); + +#if ( INCLUDE_eTaskGetState == 1 ) +/** +* @brief Obtain the state of any thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval the stae of the thread, states are encoded by the osThreadState enumerated type. +*/ +osThreadState osThreadGetState(osThreadId thread_id); +#endif /* INCLUDE_eTaskGetState */ + +#if ( INCLUDE_eTaskGetState == 1 ) +/** +* @brief Check if a thread is already suspended or not. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval status code that indicates the execution status of the function. +*/ + +osStatus osThreadIsSuspended(osThreadId thread_id); + +#endif /* INCLUDE_eTaskGetState */ + +/** +* @brief Suspend execution of a thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadSuspend (osThreadId thread_id); + +/** +* @brief Resume execution of a suspended thread. +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadResume (osThreadId thread_id); + +/** +* @brief Suspend execution of a all active threads. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadSuspendAll (void); + +/** +* @brief Resume execution of a all suspended threads. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadResumeAll (void); + +/** +* @brief Delay a task until a specified time +* @param PreviousWakeTime Pointer to a variable that holds the time at which the +* task was last unblocked. PreviousWakeTime must be initialised with the current time +* prior to its first use (PreviousWakeTime = osKernelSysTick() ) +* @param millisec time delay value +* @retval status code that indicates the execution status of the function. +*/ +osStatus osDelayUntil (uint32_t *PreviousWakeTime, uint32_t millisec); + +/** +* @brief Abort the delay for a specific thread +* @param thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId +* @retval status code that indicates the execution status of the function. +*/ +osStatus osAbortDelay(osThreadId thread_id); + +/** +* @brief Lists all the current threads, along with their current state +* and stack usage high water mark. +* @param buffer A buffer into which the above mentioned details +* will be written +* @retval status code that indicates the execution status of the function. +*/ +osStatus osThreadList (uint8_t *buffer); + +/** +* @brief Receive an item from a queue without removing the item from the queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval event information that includes status code. +*/ +osEvent osMessagePeek (osMessageQId queue_id, uint32_t millisec); + +/** +* @brief Get the number of messaged stored in a queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @retval number of messages stored in a queue. +*/ +uint32_t osMessageWaiting(osMessageQId queue_id); + +/** +* @brief Get the available space in a message queue. +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @retval available space in a message queue. +*/ +uint32_t osMessageAvailableSpace(osMessageQId queue_id); + +/** +* @brief Delete a Message Queue +* @param queue_id message queue ID obtained with \ref osMessageCreate. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osMessageDelete (osMessageQId queue_id); + +/** +* @brief Create and Initialize a Recursive Mutex +* @param mutex_def mutex definition referenced with \ref osMutex. +* @retval mutex ID for reference by other functions or NULL in case of error.. +*/ +osMutexId osRecursiveMutexCreate (const osMutexDef_t *mutex_def); + +/** +* @brief Release a Recursive Mutex +* @param mutex_id mutex ID obtained by \ref osRecursiveMutexCreate. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osRecursiveMutexRelease (osMutexId mutex_id); + +/** +* @brief Release a Recursive Mutex +* @param mutex_id mutex ID obtained by \ref osRecursiveMutexCreate. +* @param millisec timeout value or 0 in case of no time-out. +* @retval status code that indicates the execution status of the function. +*/ +osStatus osRecursiveMutexWait (osMutexId mutex_id, uint32_t millisec); + +/** +* @brief Returns the current count value of a counting semaphore +* @param semaphore_id semaphore_id ID obtained by \ref osSemaphoreCreate. +* @retval count value +*/ +uint32_t osSemaphoreGetCount(osSemaphoreId semaphore_id); + +#ifdef __cplusplus +} +#endif + +#endif // _CMSIS_OS_H diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/croutine.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/croutine.c new file mode 100644 index 0000000..993e09b --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/croutine.c @@ -0,0 +1,395 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#include "FreeRTOS.h" +#include "task.h" +#include "croutine.h" + +/* Remove the whole file is co-routines are not being used. */ +#if( configUSE_CO_ROUTINES != 0 ) + +/* + * Some kernel aware debuggers require data to be viewed to be global, rather + * than file scope. + */ +#ifdef portREMOVE_STATIC_QUALIFIER + #define static +#endif + + +/* Lists for ready and blocked co-routines. --------------------*/ +static List_t pxReadyCoRoutineLists[ configMAX_CO_ROUTINE_PRIORITIES ]; /*< Prioritised ready co-routines. */ +static List_t xDelayedCoRoutineList1; /*< Delayed co-routines. */ +static List_t xDelayedCoRoutineList2; /*< Delayed co-routines (two lists are used - one for delays that have overflowed the current tick count. */ +static List_t * pxDelayedCoRoutineList; /*< Points to the delayed co-routine list currently being used. */ +static List_t * pxOverflowDelayedCoRoutineList; /*< Points to the delayed co-routine list currently being used to hold co-routines that have overflowed the current tick count. */ +static List_t xPendingReadyCoRoutineList; /*< Holds co-routines that have been readied by an external event. They cannot be added directly to the ready lists as the ready lists cannot be accessed by interrupts. */ + +/* Other file private variables. --------------------------------*/ +CRCB_t * pxCurrentCoRoutine = NULL; +static UBaseType_t uxTopCoRoutineReadyPriority = 0; +static TickType_t xCoRoutineTickCount = 0, xLastTickCount = 0, xPassedTicks = 0; + +/* The initial state of the co-routine when it is created. */ +#define corINITIAL_STATE ( 0 ) + +/* + * Place the co-routine represented by pxCRCB into the appropriate ready queue + * for the priority. It is inserted at the end of the list. + * + * This macro accesses the co-routine ready lists and therefore must not be + * used from within an ISR. + */ +#define prvAddCoRoutineToReadyQueue( pxCRCB ) \ +{ \ + if( pxCRCB->uxPriority > uxTopCoRoutineReadyPriority ) \ + { \ + uxTopCoRoutineReadyPriority = pxCRCB->uxPriority; \ + } \ + vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ pxCRCB->uxPriority ] ), &( pxCRCB->xGenericListItem ) ); \ +} + +/* + * Utility to ready all the lists used by the scheduler. This is called + * automatically upon the creation of the first co-routine. + */ +static void prvInitialiseCoRoutineLists( void ); + +/* + * Co-routines that are readied by an interrupt cannot be placed directly into + * the ready lists (there is no mutual exclusion). Instead they are placed in + * in the pending ready list in order that they can later be moved to the ready + * list by the co-routine scheduler. + */ +static void prvCheckPendingReadyList( void ); + +/* + * Macro that looks at the list of co-routines that are currently delayed to + * see if any require waking. + * + * Co-routines are stored in the queue in the order of their wake time - + * meaning once one co-routine has been found whose timer has not expired + * we need not look any further down the list. + */ +static void prvCheckDelayedList( void ); + +/*-----------------------------------------------------------*/ + +BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex ) +{ +BaseType_t xReturn; +CRCB_t *pxCoRoutine; + + /* Allocate the memory that will store the co-routine control block. */ + pxCoRoutine = ( CRCB_t * ) pvPortMalloc( sizeof( CRCB_t ) ); + if( pxCoRoutine ) + { + /* If pxCurrentCoRoutine is NULL then this is the first co-routine to + be created and the co-routine data structures need initialising. */ + if( pxCurrentCoRoutine == NULL ) + { + pxCurrentCoRoutine = pxCoRoutine; + prvInitialiseCoRoutineLists(); + } + + /* Check the priority is within limits. */ + if( uxPriority >= configMAX_CO_ROUTINE_PRIORITIES ) + { + uxPriority = configMAX_CO_ROUTINE_PRIORITIES - 1; + } + + /* Fill out the co-routine control block from the function parameters. */ + pxCoRoutine->uxState = corINITIAL_STATE; + pxCoRoutine->uxPriority = uxPriority; + pxCoRoutine->uxIndex = uxIndex; + pxCoRoutine->pxCoRoutineFunction = pxCoRoutineCode; + + /* Initialise all the other co-routine control block parameters. */ + vListInitialiseItem( &( pxCoRoutine->xGenericListItem ) ); + vListInitialiseItem( &( pxCoRoutine->xEventListItem ) ); + + /* Set the co-routine control block as a link back from the ListItem_t. + This is so we can get back to the containing CRCB from a generic item + in a list. */ + listSET_LIST_ITEM_OWNER( &( pxCoRoutine->xGenericListItem ), pxCoRoutine ); + listSET_LIST_ITEM_OWNER( &( pxCoRoutine->xEventListItem ), pxCoRoutine ); + + /* Event lists are always in priority order. */ + listSET_LIST_ITEM_VALUE( &( pxCoRoutine->xEventListItem ), ( ( TickType_t ) configMAX_CO_ROUTINE_PRIORITIES - ( TickType_t ) uxPriority ) ); + + /* Now the co-routine has been initialised it can be added to the ready + list at the correct priority. */ + prvAddCoRoutineToReadyQueue( pxCoRoutine ); + + xReturn = pdPASS; + } + else + { + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ) +{ +TickType_t xTimeToWake; + + /* Calculate the time to wake - this may overflow but this is + not a problem. */ + xTimeToWake = xCoRoutineTickCount + xTicksToDelay; + + /* We must remove ourselves from the ready list before adding + ourselves to the blocked list as the same list item is used for + both lists. */ + ( void ) uxListRemove( ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentCoRoutine->xGenericListItem ), xTimeToWake ); + + if( xTimeToWake < xCoRoutineTickCount ) + { + /* Wake time has overflowed. Place this item in the + overflow list. */ + vListInsert( ( List_t * ) pxOverflowDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); + } + else + { + /* The wake time has not overflowed, so we can use the + current block list. */ + vListInsert( ( List_t * ) pxDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGenericListItem ) ); + } + + if( pxEventList ) + { + /* Also add the co-routine to an event list. If this is done then the + function must be called with interrupts disabled. */ + vListInsert( pxEventList, &( pxCurrentCoRoutine->xEventListItem ) ); + } +} +/*-----------------------------------------------------------*/ + +static void prvCheckPendingReadyList( void ) +{ + /* Are there any co-routines waiting to get moved to the ready list? These + are co-routines that have been readied by an ISR. The ISR cannot access + the ready lists itself. */ + while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE ) + { + CRCB_t *pxUnblockedCRCB; + + /* The pending ready list can be accessed by an ISR. */ + portDISABLE_INTERRUPTS(); + { + pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( (&xPendingReadyCoRoutineList) ); + ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); + } + portENABLE_INTERRUPTS(); + + ( void ) uxListRemove( &( pxUnblockedCRCB->xGenericListItem ) ); + prvAddCoRoutineToReadyQueue( pxUnblockedCRCB ); + } +} +/*-----------------------------------------------------------*/ + +static void prvCheckDelayedList( void ) +{ +CRCB_t *pxCRCB; + + xPassedTicks = xTaskGetTickCount() - xLastTickCount; + while( xPassedTicks ) + { + xCoRoutineTickCount++; + xPassedTicks--; + + /* If the tick count has overflowed we need to swap the ready lists. */ + if( xCoRoutineTickCount == 0 ) + { + List_t * pxTemp; + + /* Tick count has overflowed so we need to swap the delay lists. If there are + any items in pxDelayedCoRoutineList here then there is an error! */ + pxTemp = pxDelayedCoRoutineList; + pxDelayedCoRoutineList = pxOverflowDelayedCoRoutineList; + pxOverflowDelayedCoRoutineList = pxTemp; + } + + /* See if this tick has made a timeout expire. */ + while( listLIST_IS_EMPTY( pxDelayedCoRoutineList ) == pdFALSE ) + { + pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); + + if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) + { + /* Timeout not yet expired. */ + break; + } + + portDISABLE_INTERRUPTS(); + { + /* The event could have occurred just before this critical + section. If this is the case then the generic list item will + have been moved to the pending ready list and the following + line is still valid. Also the pvContainer parameter will have + been set to NULL so the following lines are also valid. */ + ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); + + /* Is the co-routine waiting on an event also? */ + if( pxCRCB->xEventListItem.pvContainer ) + { + ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); + } + } + portENABLE_INTERRUPTS(); + + prvAddCoRoutineToReadyQueue( pxCRCB ); + } + } + + xLastTickCount = xCoRoutineTickCount; +} +/*-----------------------------------------------------------*/ + +void vCoRoutineSchedule( void ) +{ + /* See if any co-routines readied by events need moving to the ready lists. */ + prvCheckPendingReadyList(); + + /* See if any delayed co-routines have timed out. */ + prvCheckDelayedList(); + + /* Find the highest priority queue that contains ready co-routines. */ + while( listLIST_IS_EMPTY( &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ) ) + { + if( uxTopCoRoutineReadyPriority == 0 ) + { + /* No more co-routines to check. */ + return; + } + --uxTopCoRoutineReadyPriority; + } + + /* listGET_OWNER_OF_NEXT_ENTRY walks through the list, so the co-routines + of the same priority get an equal share of the processor time. */ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentCoRoutine, &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ); + + /* Call the co-routine. */ + ( pxCurrentCoRoutine->pxCoRoutineFunction )( pxCurrentCoRoutine, pxCurrentCoRoutine->uxIndex ); + + return; +} +/*-----------------------------------------------------------*/ + +static void prvInitialiseCoRoutineLists( void ) +{ +UBaseType_t uxPriority; + + for( uxPriority = 0; uxPriority < configMAX_CO_ROUTINE_PRIORITIES; uxPriority++ ) + { + vListInitialise( ( List_t * ) &( pxReadyCoRoutineLists[ uxPriority ] ) ); + } + + vListInitialise( ( List_t * ) &xDelayedCoRoutineList1 ); + vListInitialise( ( List_t * ) &xDelayedCoRoutineList2 ); + vListInitialise( ( List_t * ) &xPendingReadyCoRoutineList ); + + /* Start with pxDelayedCoRoutineList using list1 and the + pxOverflowDelayedCoRoutineList using list2. */ + pxDelayedCoRoutineList = &xDelayedCoRoutineList1; + pxOverflowDelayedCoRoutineList = &xDelayedCoRoutineList2; +} +/*-----------------------------------------------------------*/ + +BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ) +{ +CRCB_t *pxUnblockedCRCB; +BaseType_t xReturn; + + /* This function is called from within an interrupt. It can only access + event lists and the pending ready list. This function assumes that a + check has already been made to ensure pxEventList is not empty. */ + pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); + ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); + vListInsertEnd( ( List_t * ) &( xPendingReadyCoRoutineList ), &( pxUnblockedCRCB->xEventListItem ) ); + + if( pxUnblockedCRCB->uxPriority >= pxCurrentCoRoutine->uxPriority ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} + +#endif /* configUSE_CO_ROUTINES == 0 */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c new file mode 100644 index 0000000..b8df5fd --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c @@ -0,0 +1,752 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/* Standard includes. */ +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "timers.h" +#include "event_groups.h" + +/* Lint e961 and e750 are suppressed as a MISRA exception justified because the +MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the +header files above, but not in this file, in order to generate the correct +privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */ + +/* The following bit fields convey control information in a task's event list +item value. It is important they don't clash with the +taskEVENT_LIST_ITEM_VALUE_IN_USE definition. */ +#if configUSE_16_BIT_TICKS == 1 + #define eventCLEAR_EVENTS_ON_EXIT_BIT 0x0100U + #define eventUNBLOCKED_DUE_TO_BIT_SET 0x0200U + #define eventWAIT_FOR_ALL_BITS 0x0400U + #define eventEVENT_BITS_CONTROL_BYTES 0xff00U +#else + #define eventCLEAR_EVENTS_ON_EXIT_BIT 0x01000000UL + #define eventUNBLOCKED_DUE_TO_BIT_SET 0x02000000UL + #define eventWAIT_FOR_ALL_BITS 0x04000000UL + #define eventEVENT_BITS_CONTROL_BYTES 0xff000000UL +#endif + +typedef struct xEventGroupDefinition +{ + EventBits_t uxEventBits; + List_t xTasksWaitingForBits; /*< List of tasks waiting for a bit to be set. */ + + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxEventGroupNumber; + #endif + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the event group is statically allocated to ensure no attempt is made to free the memory. */ + #endif +} EventGroup_t; + +/*-----------------------------------------------------------*/ + +/* + * Test the bits set in uxCurrentEventBits to see if the wait condition is met. + * The wait condition is defined by xWaitForAllBits. If xWaitForAllBits is + * pdTRUE then the wait condition is met if all the bits set in uxBitsToWaitFor + * are also set in uxCurrentEventBits. If xWaitForAllBits is pdFALSE then the + * wait condition is met if any of the bits set in uxBitsToWait for are also set + * in uxCurrentEventBits. + */ +static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, const EventBits_t uxBitsToWaitFor, const BaseType_t xWaitForAllBits ) PRIVILEGED_FUNCTION; + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) + { + EventGroup_t *pxEventBits; + + /* A StaticEventGroup_t object must be provided. */ + configASSERT( pxEventGroupBuffer ); + + /* The user has provided a statically allocated event group - use it. */ + pxEventBits = ( EventGroup_t * ) pxEventGroupBuffer; /*lint !e740 EventGroup_t and StaticEventGroup_t are guaranteed to have the same size and alignment requirement - checked by configASSERT(). */ + + if( pxEventBits != NULL ) + { + pxEventBits->uxEventBits = 0; + vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); + + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Both static and dynamic allocation can be used, so note that + this event group was created statically in case the event group + is later deleted. */ + pxEventBits->ucStaticallyAllocated = pdTRUE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + + traceEVENT_GROUP_CREATE( pxEventBits ); + } + else + { + traceEVENT_GROUP_CREATE_FAILED(); + } + + return ( EventGroupHandle_t ) pxEventBits; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + EventGroupHandle_t xEventGroupCreate( void ) + { + EventGroup_t *pxEventBits; + + /* Allocate the event group. */ + pxEventBits = ( EventGroup_t * ) pvPortMalloc( sizeof( EventGroup_t ) ); + + if( pxEventBits != NULL ) + { + pxEventBits->uxEventBits = 0; + vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* Both static and dynamic allocation can be used, so note this + event group was allocated statically in case the event group is + later deleted. */ + pxEventBits->ucStaticallyAllocated = pdFALSE; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + traceEVENT_GROUP_CREATE( pxEventBits ); + } + else + { + traceEVENT_GROUP_CREATE_FAILED(); + } + + return ( EventGroupHandle_t ) pxEventBits; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) +{ +EventBits_t uxOriginalBitValue, uxReturn; +EventGroup_t *pxEventBits = ( EventGroup_t * ) xEventGroup; +BaseType_t xAlreadyYielded; +BaseType_t xTimeoutOccurred = pdFALSE; + + configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + configASSERT( uxBitsToWaitFor != 0 ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + vTaskSuspendAll(); + { + uxOriginalBitValue = pxEventBits->uxEventBits; + + ( void ) xEventGroupSetBits( xEventGroup, uxBitsToSet ); + + if( ( ( uxOriginalBitValue | uxBitsToSet ) & uxBitsToWaitFor ) == uxBitsToWaitFor ) + { + /* All the rendezvous bits are now set - no need to block. */ + uxReturn = ( uxOriginalBitValue | uxBitsToSet ); + + /* Rendezvous always clear the bits. They will have been cleared + already unless this is the only task in the rendezvous. */ + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + + xTicksToWait = 0; + } + else + { + if( xTicksToWait != ( TickType_t ) 0 ) + { + traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ); + + /* Store the bits that the calling task is waiting for in the + task's event list item so the kernel knows when a match is + found. Then enter the blocked state. */ + vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventCLEAR_EVENTS_ON_EXIT_BIT | eventWAIT_FOR_ALL_BITS ), xTicksToWait ); + + /* This assignment is obsolete as uxReturn will get set after + the task unblocks, but some compilers mistakenly generate a + warning about uxReturn being returned without being set if the + assignment is omitted. */ + uxReturn = 0; + } + else + { + /* The rendezvous bits were not set, but no block time was + specified - just return the current event bit value. */ + uxReturn = pxEventBits->uxEventBits; + } + } + } + xAlreadyYielded = xTaskResumeAll(); + + if( xTicksToWait != ( TickType_t ) 0 ) + { + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The task blocked to wait for its required bits to be set - at this + point either the required bits were set or the block time expired. If + the required bits were set they will have been stored in the task's + event list item, and they should now be retrieved then cleared. */ + uxReturn = uxTaskResetEventItemValue(); + + if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) + { + /* The task timed out, just return the current event bit value. */ + taskENTER_CRITICAL(); + { + uxReturn = pxEventBits->uxEventBits; + + /* Although the task got here because it timed out before the + bits it was waiting for were set, it is possible that since it + unblocked another task has set the bits. If this is the case + then it needs to clear the bits before exiting. */ + if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) + { + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + xTimeoutOccurred = pdTRUE; + } + else + { + /* The task unblocked because the bits were set. */ + } + + /* Control bits might be set as the task had blocked should not be + returned. */ + uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; + } + + traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ); + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) +{ +EventGroup_t *pxEventBits = ( EventGroup_t * ) xEventGroup; +EventBits_t uxReturn, uxControlBits = 0; +BaseType_t xWaitConditionMet, xAlreadyYielded; +BaseType_t xTimeoutOccurred = pdFALSE; + + /* Check the user is not attempting to wait on the bits used by the kernel + itself, and that at least one bit is being requested. */ + configASSERT( xEventGroup ); + configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + configASSERT( uxBitsToWaitFor != 0 ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + vTaskSuspendAll(); + { + const EventBits_t uxCurrentEventBits = pxEventBits->uxEventBits; + + /* Check to see if the wait condition is already met or not. */ + xWaitConditionMet = prvTestWaitCondition( uxCurrentEventBits, uxBitsToWaitFor, xWaitForAllBits ); + + if( xWaitConditionMet != pdFALSE ) + { + /* The wait condition has already been met so there is no need to + block. */ + uxReturn = uxCurrentEventBits; + xTicksToWait = ( TickType_t ) 0; + + /* Clear the wait bits if requested to do so. */ + if( xClearOnExit != pdFALSE ) + { + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The wait condition has not been met, but no block time was + specified, so just return the current value. */ + uxReturn = uxCurrentEventBits; + } + else + { + /* The task is going to block to wait for its required bits to be + set. uxControlBits are used to remember the specified behaviour of + this call to xEventGroupWaitBits() - for use when the event bits + unblock the task. */ + if( xClearOnExit != pdFALSE ) + { + uxControlBits |= eventCLEAR_EVENTS_ON_EXIT_BIT; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xWaitForAllBits != pdFALSE ) + { + uxControlBits |= eventWAIT_FOR_ALL_BITS; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Store the bits that the calling task is waiting for in the + task's event list item so the kernel knows when a match is + found. Then enter the blocked state. */ + vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | uxControlBits ), xTicksToWait ); + + /* This is obsolete as it will get set after the task unblocks, but + some compilers mistakenly generate a warning about the variable + being returned without being set if it is not done. */ + uxReturn = 0; + + traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ); + } + } + xAlreadyYielded = xTaskResumeAll(); + + if( xTicksToWait != ( TickType_t ) 0 ) + { + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The task blocked to wait for its required bits to be set - at this + point either the required bits were set or the block time expired. If + the required bits were set they will have been stored in the task's + event list item, and they should now be retrieved then cleared. */ + uxReturn = uxTaskResetEventItemValue(); + + if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) + { + taskENTER_CRITICAL(); + { + /* The task timed out, just return the current event bit value. */ + uxReturn = pxEventBits->uxEventBits; + + /* It is possible that the event bits were updated between this + task leaving the Blocked state and running again. */ + if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) + { + if( xClearOnExit != pdFALSE ) + { + pxEventBits->uxEventBits &= ~uxBitsToWaitFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + /* Prevent compiler warnings when trace macros are not used. */ + xTimeoutOccurred = pdFALSE; + } + else + { + /* The task unblocked because the bits were set. */ + } + + /* The task blocked so control bits may have been set. */ + uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; + } + traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ); + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) +{ +EventGroup_t *pxEventBits = ( EventGroup_t * ) xEventGroup; +EventBits_t uxReturn; + + /* Check the user is not attempting to clear the bits used by the kernel + itself. */ + configASSERT( xEventGroup ); + configASSERT( ( uxBitsToClear & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + + taskENTER_CRITICAL(); + { + traceEVENT_GROUP_CLEAR_BITS( xEventGroup, uxBitsToClear ); + + /* The value returned is the event group value prior to the bits being + cleared. */ + uxReturn = pxEventBits->uxEventBits; + + /* Clear the bits. */ + pxEventBits->uxEventBits &= ~uxBitsToClear; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) + + BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) + { + BaseType_t xReturn; + + traceEVENT_GROUP_CLEAR_BITS_FROM_ISR( xEventGroup, uxBitsToClear ); + xReturn = xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL ); + + return xReturn; + } + +#endif +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) +{ +UBaseType_t uxSavedInterruptStatus; +EventGroup_t *pxEventBits = ( EventGroup_t * ) xEventGroup; +EventBits_t uxReturn; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + uxReturn = pxEventBits->uxEventBits; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) +{ +ListItem_t *pxListItem, *pxNext; +ListItem_t const *pxListEnd; +List_t *pxList; +EventBits_t uxBitsToClear = 0, uxBitsWaitedFor, uxControlBits; +EventGroup_t *pxEventBits = ( EventGroup_t * ) xEventGroup; +BaseType_t xMatchFound = pdFALSE; + + /* Check the user is not attempting to set the bits used by the kernel + itself. */ + configASSERT( xEventGroup ); + configASSERT( ( uxBitsToSet & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); + + pxList = &( pxEventBits->xTasksWaitingForBits ); + pxListEnd = listGET_END_MARKER( pxList ); /*lint !e826 !e740 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + vTaskSuspendAll(); + { + traceEVENT_GROUP_SET_BITS( xEventGroup, uxBitsToSet ); + + pxListItem = listGET_HEAD_ENTRY( pxList ); + + /* Set the bits. */ + pxEventBits->uxEventBits |= uxBitsToSet; + + /* See if the new bit value should unblock any tasks. */ + while( pxListItem != pxListEnd ) + { + pxNext = listGET_NEXT( pxListItem ); + uxBitsWaitedFor = listGET_LIST_ITEM_VALUE( pxListItem ); + xMatchFound = pdFALSE; + + /* Split the bits waited for from the control bits. */ + uxControlBits = uxBitsWaitedFor & eventEVENT_BITS_CONTROL_BYTES; + uxBitsWaitedFor &= ~eventEVENT_BITS_CONTROL_BYTES; + + if( ( uxControlBits & eventWAIT_FOR_ALL_BITS ) == ( EventBits_t ) 0 ) + { + /* Just looking for single bit being set. */ + if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) != ( EventBits_t ) 0 ) + { + xMatchFound = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) == uxBitsWaitedFor ) + { + /* All bits are set. */ + xMatchFound = pdTRUE; + } + else + { + /* Need all bits to be set, but not all the bits were set. */ + } + + if( xMatchFound != pdFALSE ) + { + /* The bits match. Should the bits be cleared on exit? */ + if( ( uxControlBits & eventCLEAR_EVENTS_ON_EXIT_BIT ) != ( EventBits_t ) 0 ) + { + uxBitsToClear |= uxBitsWaitedFor; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Store the actual event flag value in the task's event list + item before removing the task from the event list. The + eventUNBLOCKED_DUE_TO_BIT_SET bit is set so the task knows + that is was unblocked due to its required bits matching, rather + than because it timed out. */ + ( void ) xTaskRemoveFromUnorderedEventList( pxListItem, pxEventBits->uxEventBits | eventUNBLOCKED_DUE_TO_BIT_SET ); + } + + /* Move onto the next list item. Note pxListItem->pxNext is not + used here as the list item may have been removed from the event list + and inserted into the ready/pending reading list. */ + pxListItem = pxNext; + } + + /* Clear any bits that matched when the eventCLEAR_EVENTS_ON_EXIT_BIT + bit was set in the control word. */ + pxEventBits->uxEventBits &= ~uxBitsToClear; + } + ( void ) xTaskResumeAll(); + + return pxEventBits->uxEventBits; +} +/*-----------------------------------------------------------*/ + +void vEventGroupDelete( EventGroupHandle_t xEventGroup ) +{ +EventGroup_t *pxEventBits = ( EventGroup_t * ) xEventGroup; +const List_t *pxTasksWaitingForBits = &( pxEventBits->xTasksWaitingForBits ); + + vTaskSuspendAll(); + { + traceEVENT_GROUP_DELETE( xEventGroup ); + + while( listCURRENT_LIST_LENGTH( pxTasksWaitingForBits ) > ( UBaseType_t ) 0 ) + { + /* Unblock the task, returning 0 as the event list is being deleted + and cannot therefore have any bits set. */ + configASSERT( pxTasksWaitingForBits->xListEnd.pxNext != ( ListItem_t * ) &( pxTasksWaitingForBits->xListEnd ) ); + ( void ) xTaskRemoveFromUnorderedEventList( pxTasksWaitingForBits->xListEnd.pxNext, eventUNBLOCKED_DUE_TO_BIT_SET ); + } + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) + { + /* The event group can only have been allocated dynamically - free + it again. */ + vPortFree( pxEventBits ); + } + #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + { + /* The event group could have been allocated statically or + dynamically, so check before attempting to free the memory. */ + if( pxEventBits->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) + { + vPortFree( pxEventBits ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + } + ( void ) xTaskResumeAll(); +} +/*-----------------------------------------------------------*/ + +/* For internal use only - execute a 'set bits' command that was pended from +an interrupt. */ +void vEventGroupSetBitsCallback( void *pvEventGroup, const uint32_t ulBitsToSet ) +{ + ( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet ); +} +/*-----------------------------------------------------------*/ + +/* For internal use only - execute a 'clear bits' command that was pended from +an interrupt. */ +void vEventGroupClearBitsCallback( void *pvEventGroup, const uint32_t ulBitsToClear ) +{ + ( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear ); +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, const EventBits_t uxBitsToWaitFor, const BaseType_t xWaitForAllBits ) +{ +BaseType_t xWaitConditionMet = pdFALSE; + + if( xWaitForAllBits == pdFALSE ) + { + /* Task only has to wait for one bit within uxBitsToWaitFor to be + set. Is one already set? */ + if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) + { + xWaitConditionMet = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Task has to wait for all the bits in uxBitsToWaitFor to be set. + Are they set already? */ + if( ( uxCurrentEventBits & uxBitsToWaitFor ) == uxBitsToWaitFor ) + { + xWaitConditionMet = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return xWaitConditionMet; +} +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) ) + + BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ) + { + BaseType_t xReturn; + + traceEVENT_GROUP_SET_BITS_FROM_ISR( xEventGroup, uxBitsToSet ); + xReturn = xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken ); + + return xReturn; + } + +#endif +/*-----------------------------------------------------------*/ + +#if (configUSE_TRACE_FACILITY == 1) + + UBaseType_t uxEventGroupGetNumber( void* xEventGroup ) + { + UBaseType_t xReturn; + EventGroup_t *pxEventBits = ( EventGroup_t * ) xEventGroup; + + if( xEventGroup == NULL ) + { + xReturn = 0; + } + else + { + xReturn = pxEventBits->uxEventGroupNumber; + } + + return xReturn; + } + +#endif + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h new file mode 100644 index 0000000..9c506f3 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h @@ -0,0 +1,1063 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef INC_FREERTOS_H +#define INC_FREERTOS_H + +/* + * Include the generic headers required for the FreeRTOS port being used. + */ +#include + +/* + * If stdint.h cannot be located then: + * + If using GCC ensure the -nostdint options is *not* being used. + * + Ensure the project's include path includes the directory in which your + * compiler stores stdint.h. + * + Set any compiler options necessary for it to support C99, as technically + * stdint.h is only mandatory with C99 (FreeRTOS does not require C99 in any + * other way). + * + The FreeRTOS download includes a simple stdint.h definition that can be + * used in cases where none is provided by the compiler. The files only + * contains the typedefs required to build FreeRTOS. Read the instructions + * in FreeRTOS/source/stdint.readme for more information. + */ +#include /* READ COMMENT ABOVE. */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* Application specific configuration options. */ +#include "FreeRTOSConfig.h" + +/* Basic FreeRTOS definitions. */ +#include "projdefs.h" + +/* Definitions specific to the port being used. */ +#include "portable.h" + +/* Must be defaulted before configUSE_NEWLIB_REENTRANT is used below. */ +#ifndef configUSE_NEWLIB_REENTRANT + #define configUSE_NEWLIB_REENTRANT 0 +#endif + +/* Required if struct _reent is used. */ +#if ( configUSE_NEWLIB_REENTRANT == 1 ) + #include +#endif +/* + * Check all the required application specific macros have been defined. + * These macros are application specific and (as downloaded) are defined + * within FreeRTOSConfig.h. + */ + +#ifndef configMINIMAL_STACK_SIZE + #error Missing definition: configMINIMAL_STACK_SIZE must be defined in FreeRTOSConfig.h. configMINIMAL_STACK_SIZE defines the size (in words) of the stack allocated to the idle task. Refer to the demo project provided for your port for a suitable value. +#endif + +#ifndef configMAX_PRIORITIES + #error Missing definition: configMAX_PRIORITIES must be defined in FreeRTOSConfig.h. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_PREEMPTION + #error Missing definition: configUSE_PREEMPTION must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_IDLE_HOOK + #error Missing definition: configUSE_IDLE_HOOK must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_TICK_HOOK + #error Missing definition: configUSE_TICK_HOOK must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configUSE_16_BIT_TICKS + #error Missing definition: configUSE_16_BIT_TICKS must be defined in FreeRTOSConfig.h as either 1 or 0. See the Configuration section of the FreeRTOS API documentation for details. +#endif + +#ifndef configMAX_PRIORITIES + #error configMAX_PRIORITIES must be defined to be greater than or equal to 1. +#endif + +#ifndef configUSE_CO_ROUTINES + #define configUSE_CO_ROUTINES 0 +#endif + +#ifndef INCLUDE_vTaskPrioritySet + #define INCLUDE_vTaskPrioritySet 0 +#endif + +#ifndef INCLUDE_uxTaskPriorityGet + #define INCLUDE_uxTaskPriorityGet 0 +#endif + +#ifndef INCLUDE_vTaskDelete + #define INCLUDE_vTaskDelete 0 +#endif + +#ifndef INCLUDE_vTaskSuspend + #define INCLUDE_vTaskSuspend 0 +#endif + +#ifndef INCLUDE_vTaskDelayUntil + #define INCLUDE_vTaskDelayUntil 0 +#endif + +#ifndef INCLUDE_vTaskDelay + #define INCLUDE_vTaskDelay 0 +#endif + +#ifndef INCLUDE_xTaskGetIdleTaskHandle + #define INCLUDE_xTaskGetIdleTaskHandle 0 +#endif + +#ifndef INCLUDE_xTaskAbortDelay + #define INCLUDE_xTaskAbortDelay 0 +#endif + +#ifndef INCLUDE_xQueueGetMutexHolder + #define INCLUDE_xQueueGetMutexHolder 0 +#endif + +#ifndef INCLUDE_xSemaphoreGetMutexHolder + #define INCLUDE_xSemaphoreGetMutexHolder INCLUDE_xQueueGetMutexHolder +#endif + +#ifndef INCLUDE_xTaskGetHandle + #define INCLUDE_xTaskGetHandle 0 +#endif + +#ifndef INCLUDE_uxTaskGetStackHighWaterMark + #define INCLUDE_uxTaskGetStackHighWaterMark 0 +#endif + +#ifndef INCLUDE_eTaskGetState + #define INCLUDE_eTaskGetState 0 +#endif + +#ifndef INCLUDE_xTaskResumeFromISR + #define INCLUDE_xTaskResumeFromISR 1 +#endif + +#ifndef INCLUDE_xTimerPendFunctionCall + #define INCLUDE_xTimerPendFunctionCall 0 +#endif + +#ifndef INCLUDE_xTaskGetSchedulerState + #define INCLUDE_xTaskGetSchedulerState 0 +#endif + +#ifndef INCLUDE_xTaskGetCurrentTaskHandle + #define INCLUDE_xTaskGetCurrentTaskHandle 0 +#endif + +#if configUSE_CO_ROUTINES != 0 + #ifndef configMAX_CO_ROUTINE_PRIORITIES + #error configMAX_CO_ROUTINE_PRIORITIES must be greater than or equal to 1. + #endif +#endif + +#ifndef configUSE_DAEMON_TASK_STARTUP_HOOK + #define configUSE_DAEMON_TASK_STARTUP_HOOK 0 +#endif + +#ifndef configUSE_APPLICATION_TASK_TAG + #define configUSE_APPLICATION_TASK_TAG 0 +#endif + +#ifndef configNUM_THREAD_LOCAL_STORAGE_POINTERS + #define configNUM_THREAD_LOCAL_STORAGE_POINTERS 0 +#endif + +#ifndef configUSE_RECURSIVE_MUTEXES + #define configUSE_RECURSIVE_MUTEXES 0 +#endif + +#ifndef configUSE_MUTEXES + #define configUSE_MUTEXES 0 +#endif + +#ifndef configUSE_TIMERS + #define configUSE_TIMERS 0 +#endif + +#ifndef configUSE_COUNTING_SEMAPHORES + #define configUSE_COUNTING_SEMAPHORES 0 +#endif + +#ifndef configUSE_ALTERNATIVE_API + #define configUSE_ALTERNATIVE_API 0 +#endif + +#ifndef portCRITICAL_NESTING_IN_TCB + #define portCRITICAL_NESTING_IN_TCB 0 +#endif + +#ifndef configMAX_TASK_NAME_LEN + #define configMAX_TASK_NAME_LEN 16 +#endif + +#ifndef configIDLE_SHOULD_YIELD + #define configIDLE_SHOULD_YIELD 1 +#endif + +#if configMAX_TASK_NAME_LEN < 1 + #error configMAX_TASK_NAME_LEN must be set to a minimum of 1 in FreeRTOSConfig.h +#endif + +#ifndef configASSERT + #define configASSERT( x ) + #define configASSERT_DEFINED 0 +#else + #define configASSERT_DEFINED 1 +#endif + +/* The timers module relies on xTaskGetSchedulerState(). */ +#if configUSE_TIMERS == 1 + + #ifndef configTIMER_TASK_PRIORITY + #error If configUSE_TIMERS is set to 1 then configTIMER_TASK_PRIORITY must also be defined. + #endif /* configTIMER_TASK_PRIORITY */ + + #ifndef configTIMER_QUEUE_LENGTH + #error If configUSE_TIMERS is set to 1 then configTIMER_QUEUE_LENGTH must also be defined. + #endif /* configTIMER_QUEUE_LENGTH */ + + #ifndef configTIMER_TASK_STACK_DEPTH + #error If configUSE_TIMERS is set to 1 then configTIMER_TASK_STACK_DEPTH must also be defined. + #endif /* configTIMER_TASK_STACK_DEPTH */ + +#endif /* configUSE_TIMERS */ + +#ifndef portSET_INTERRUPT_MASK_FROM_ISR + #define portSET_INTERRUPT_MASK_FROM_ISR() 0 +#endif + +#ifndef portCLEAR_INTERRUPT_MASK_FROM_ISR + #define portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedStatusValue ) ( void ) uxSavedStatusValue +#endif + +#ifndef portCLEAN_UP_TCB + #define portCLEAN_UP_TCB( pxTCB ) ( void ) pxTCB +#endif + +#ifndef portPRE_TASK_DELETE_HOOK + #define portPRE_TASK_DELETE_HOOK( pvTaskToDelete, pxYieldPending ) +#endif + +#ifndef portSETUP_TCB + #define portSETUP_TCB( pxTCB ) ( void ) pxTCB +#endif + +#ifndef configQUEUE_REGISTRY_SIZE + #define configQUEUE_REGISTRY_SIZE 0U +#endif + +#if ( configQUEUE_REGISTRY_SIZE < 1 ) + #define vQueueAddToRegistry( xQueue, pcName ) + #define vQueueUnregisterQueue( xQueue ) + #define pcQueueGetName( xQueue ) +#endif + +#ifndef portPOINTER_SIZE_TYPE + #define portPOINTER_SIZE_TYPE uint32_t +#endif + +/* Remove any unused trace macros. */ +#ifndef traceSTART + /* Used to perform any necessary initialisation - for example, open a file + into which trace is to be written. */ + #define traceSTART() +#endif + +#ifndef traceEND + /* Use to close a trace, for example close a file into which trace has been + written. */ + #define traceEND() +#endif + +#ifndef traceTASK_SWITCHED_IN + /* Called after a task has been selected to run. pxCurrentTCB holds a pointer + to the task control block of the selected task. */ + #define traceTASK_SWITCHED_IN() +#endif + +#ifndef traceINCREASE_TICK_COUNT + /* Called before stepping the tick count after waking from tickless idle + sleep. */ + #define traceINCREASE_TICK_COUNT( x ) +#endif + +#ifndef traceLOW_POWER_IDLE_BEGIN + /* Called immediately before entering tickless idle. */ + #define traceLOW_POWER_IDLE_BEGIN() +#endif + +#ifndef traceLOW_POWER_IDLE_END + /* Called when returning to the Idle task after a tickless idle. */ + #define traceLOW_POWER_IDLE_END() +#endif + +#ifndef traceTASK_SWITCHED_OUT + /* Called before a task has been selected to run. pxCurrentTCB holds a pointer + to the task control block of the task being switched out. */ + #define traceTASK_SWITCHED_OUT() +#endif + +#ifndef traceTASK_PRIORITY_INHERIT + /* Called when a task attempts to take a mutex that is already held by a + lower priority task. pxTCBOfMutexHolder is a pointer to the TCB of the task + that holds the mutex. uxInheritedPriority is the priority the mutex holder + will inherit (the priority of the task that is attempting to obtain the + muted. */ + #define traceTASK_PRIORITY_INHERIT( pxTCBOfMutexHolder, uxInheritedPriority ) +#endif + +#ifndef traceTASK_PRIORITY_DISINHERIT + /* Called when a task releases a mutex, the holding of which had resulted in + the task inheriting the priority of a higher priority task. + pxTCBOfMutexHolder is a pointer to the TCB of the task that is releasing the + mutex. uxOriginalPriority is the task's configured (base) priority. */ + #define traceTASK_PRIORITY_DISINHERIT( pxTCBOfMutexHolder, uxOriginalPriority ) +#endif + +#ifndef traceBLOCKING_ON_QUEUE_RECEIVE + /* Task is about to block because it cannot read from a + queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore + upon which the read was attempted. pxCurrentTCB points to the TCB of the + task that attempted the read. */ + #define traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ) +#endif + +#ifndef traceBLOCKING_ON_QUEUE_SEND + /* Task is about to block because it cannot write to a + queue/mutex/semaphore. pxQueue is a pointer to the queue/mutex/semaphore + upon which the write was attempted. pxCurrentTCB points to the TCB of the + task that attempted the write. */ + #define traceBLOCKING_ON_QUEUE_SEND( pxQueue ) +#endif + +#ifndef configCHECK_FOR_STACK_OVERFLOW + #define configCHECK_FOR_STACK_OVERFLOW 0 +#endif + +/* The following event macros are embedded in the kernel API calls. */ + +#ifndef traceMOVED_TASK_TO_READY_STATE + #define traceMOVED_TASK_TO_READY_STATE( pxTCB ) +#endif + +#ifndef tracePOST_MOVED_TASK_TO_READY_STATE + #define tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) +#endif + +#ifndef traceQUEUE_CREATE + #define traceQUEUE_CREATE( pxNewQueue ) +#endif + +#ifndef traceQUEUE_CREATE_FAILED + #define traceQUEUE_CREATE_FAILED( ucQueueType ) +#endif + +#ifndef traceCREATE_MUTEX + #define traceCREATE_MUTEX( pxNewQueue ) +#endif + +#ifndef traceCREATE_MUTEX_FAILED + #define traceCREATE_MUTEX_FAILED() +#endif + +#ifndef traceGIVE_MUTEX_RECURSIVE + #define traceGIVE_MUTEX_RECURSIVE( pxMutex ) +#endif + +#ifndef traceGIVE_MUTEX_RECURSIVE_FAILED + #define traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex ) +#endif + +#ifndef traceTAKE_MUTEX_RECURSIVE + #define traceTAKE_MUTEX_RECURSIVE( pxMutex ) +#endif + +#ifndef traceTAKE_MUTEX_RECURSIVE_FAILED + #define traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex ) +#endif + +#ifndef traceCREATE_COUNTING_SEMAPHORE + #define traceCREATE_COUNTING_SEMAPHORE() +#endif + +#ifndef traceCREATE_COUNTING_SEMAPHORE_FAILED + #define traceCREATE_COUNTING_SEMAPHORE_FAILED() +#endif + +#ifndef traceQUEUE_SEND + #define traceQUEUE_SEND( pxQueue ) +#endif + +#ifndef traceQUEUE_SEND_FAILED + #define traceQUEUE_SEND_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE + #define traceQUEUE_RECEIVE( pxQueue ) +#endif + +#ifndef traceQUEUE_PEEK + #define traceQUEUE_PEEK( pxQueue ) +#endif + +#ifndef traceQUEUE_PEEK_FROM_ISR + #define traceQUEUE_PEEK_FROM_ISR( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE_FAILED + #define traceQUEUE_RECEIVE_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_SEND_FROM_ISR + #define traceQUEUE_SEND_FROM_ISR( pxQueue ) +#endif + +#ifndef traceQUEUE_SEND_FROM_ISR_FAILED + #define traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE_FROM_ISR + #define traceQUEUE_RECEIVE_FROM_ISR( pxQueue ) +#endif + +#ifndef traceQUEUE_RECEIVE_FROM_ISR_FAILED + #define traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_PEEK_FROM_ISR_FAILED + #define traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue ) +#endif + +#ifndef traceQUEUE_DELETE + #define traceQUEUE_DELETE( pxQueue ) +#endif + +#ifndef traceTASK_CREATE + #define traceTASK_CREATE( pxNewTCB ) +#endif + +#ifndef traceTASK_CREATE_FAILED + #define traceTASK_CREATE_FAILED() +#endif + +#ifndef traceTASK_DELETE + #define traceTASK_DELETE( pxTaskToDelete ) +#endif + +#ifndef traceTASK_DELAY_UNTIL + #define traceTASK_DELAY_UNTIL( x ) +#endif + +#ifndef traceTASK_DELAY + #define traceTASK_DELAY() +#endif + +#ifndef traceTASK_PRIORITY_SET + #define traceTASK_PRIORITY_SET( pxTask, uxNewPriority ) +#endif + +#ifndef traceTASK_SUSPEND + #define traceTASK_SUSPEND( pxTaskToSuspend ) +#endif + +#ifndef traceTASK_RESUME + #define traceTASK_RESUME( pxTaskToResume ) +#endif + +#ifndef traceTASK_RESUME_FROM_ISR + #define traceTASK_RESUME_FROM_ISR( pxTaskToResume ) +#endif + +#ifndef traceTASK_INCREMENT_TICK + #define traceTASK_INCREMENT_TICK( xTickCount ) +#endif + +#ifndef traceTIMER_CREATE + #define traceTIMER_CREATE( pxNewTimer ) +#endif + +#ifndef traceTIMER_CREATE_FAILED + #define traceTIMER_CREATE_FAILED() +#endif + +#ifndef traceTIMER_COMMAND_SEND + #define traceTIMER_COMMAND_SEND( xTimer, xMessageID, xMessageValueValue, xReturn ) +#endif + +#ifndef traceTIMER_EXPIRED + #define traceTIMER_EXPIRED( pxTimer ) +#endif + +#ifndef traceTIMER_COMMAND_RECEIVED + #define traceTIMER_COMMAND_RECEIVED( pxTimer, xMessageID, xMessageValue ) +#endif + +#ifndef traceMALLOC + #define traceMALLOC( pvAddress, uiSize ) +#endif + +#ifndef traceFREE + #define traceFREE( pvAddress, uiSize ) +#endif + +#ifndef traceEVENT_GROUP_CREATE + #define traceEVENT_GROUP_CREATE( xEventGroup ) +#endif + +#ifndef traceEVENT_GROUP_CREATE_FAILED + #define traceEVENT_GROUP_CREATE_FAILED() +#endif + +#ifndef traceEVENT_GROUP_SYNC_BLOCK + #define traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ) +#endif + +#ifndef traceEVENT_GROUP_SYNC_END + #define traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ) ( void ) xTimeoutOccurred +#endif + +#ifndef traceEVENT_GROUP_WAIT_BITS_BLOCK + #define traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ) +#endif + +#ifndef traceEVENT_GROUP_WAIT_BITS_END + #define traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ) ( void ) xTimeoutOccurred +#endif + +#ifndef traceEVENT_GROUP_CLEAR_BITS + #define traceEVENT_GROUP_CLEAR_BITS( xEventGroup, uxBitsToClear ) +#endif + +#ifndef traceEVENT_GROUP_CLEAR_BITS_FROM_ISR + #define traceEVENT_GROUP_CLEAR_BITS_FROM_ISR( xEventGroup, uxBitsToClear ) +#endif + +#ifndef traceEVENT_GROUP_SET_BITS + #define traceEVENT_GROUP_SET_BITS( xEventGroup, uxBitsToSet ) +#endif + +#ifndef traceEVENT_GROUP_SET_BITS_FROM_ISR + #define traceEVENT_GROUP_SET_BITS_FROM_ISR( xEventGroup, uxBitsToSet ) +#endif + +#ifndef traceEVENT_GROUP_DELETE + #define traceEVENT_GROUP_DELETE( xEventGroup ) +#endif + +#ifndef tracePEND_FUNC_CALL + #define tracePEND_FUNC_CALL(xFunctionToPend, pvParameter1, ulParameter2, ret) +#endif + +#ifndef tracePEND_FUNC_CALL_FROM_ISR + #define tracePEND_FUNC_CALL_FROM_ISR(xFunctionToPend, pvParameter1, ulParameter2, ret) +#endif + +#ifndef traceQUEUE_REGISTRY_ADD + #define traceQUEUE_REGISTRY_ADD(xQueue, pcQueueName) +#endif + +#ifndef traceTASK_NOTIFY_TAKE_BLOCK + #define traceTASK_NOTIFY_TAKE_BLOCK() +#endif + +#ifndef traceTASK_NOTIFY_TAKE + #define traceTASK_NOTIFY_TAKE() +#endif + +#ifndef traceTASK_NOTIFY_WAIT_BLOCK + #define traceTASK_NOTIFY_WAIT_BLOCK() +#endif + +#ifndef traceTASK_NOTIFY_WAIT + #define traceTASK_NOTIFY_WAIT() +#endif + +#ifndef traceTASK_NOTIFY + #define traceTASK_NOTIFY() +#endif + +#ifndef traceTASK_NOTIFY_FROM_ISR + #define traceTASK_NOTIFY_FROM_ISR() +#endif + +#ifndef traceTASK_NOTIFY_GIVE_FROM_ISR + #define traceTASK_NOTIFY_GIVE_FROM_ISR() +#endif + +#ifndef configGENERATE_RUN_TIME_STATS + #define configGENERATE_RUN_TIME_STATS 0 +#endif + +#if ( configGENERATE_RUN_TIME_STATS == 1 ) + + #ifndef portCONFIGURE_TIMER_FOR_RUN_TIME_STATS + #error If configGENERATE_RUN_TIME_STATS is defined then portCONFIGURE_TIMER_FOR_RUN_TIME_STATS must also be defined. portCONFIGURE_TIMER_FOR_RUN_TIME_STATS should call a port layer function to setup a peripheral timer/counter that can then be used as the run time counter time base. + #endif /* portCONFIGURE_TIMER_FOR_RUN_TIME_STATS */ + + #ifndef portGET_RUN_TIME_COUNTER_VALUE + #ifndef portALT_GET_RUN_TIME_COUNTER_VALUE + #error If configGENERATE_RUN_TIME_STATS is defined then either portGET_RUN_TIME_COUNTER_VALUE or portALT_GET_RUN_TIME_COUNTER_VALUE must also be defined. See the examples provided and the FreeRTOS web site for more information. + #endif /* portALT_GET_RUN_TIME_COUNTER_VALUE */ + #endif /* portGET_RUN_TIME_COUNTER_VALUE */ + +#endif /* configGENERATE_RUN_TIME_STATS */ + +#ifndef portCONFIGURE_TIMER_FOR_RUN_TIME_STATS + #define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() +#endif + +#ifndef configUSE_MALLOC_FAILED_HOOK + #define configUSE_MALLOC_FAILED_HOOK 0 +#endif + +#ifndef portPRIVILEGE_BIT + #define portPRIVILEGE_BIT ( ( UBaseType_t ) 0x00 ) +#endif + +#ifndef portYIELD_WITHIN_API + #define portYIELD_WITHIN_API portYIELD +#endif + +#ifndef portSUPPRESS_TICKS_AND_SLEEP + #define portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ) +#endif + +#ifndef configEXPECTED_IDLE_TIME_BEFORE_SLEEP + #define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 2 +#endif + +#if configEXPECTED_IDLE_TIME_BEFORE_SLEEP < 2 + #error configEXPECTED_IDLE_TIME_BEFORE_SLEEP must not be less than 2 +#endif + +#ifndef configUSE_TICKLESS_IDLE + #define configUSE_TICKLESS_IDLE 0 +#endif + +#ifndef configPRE_SLEEP_PROCESSING + #define configPRE_SLEEP_PROCESSING( x ) +#endif + +#ifndef configPOST_SLEEP_PROCESSING + #define configPOST_SLEEP_PROCESSING( x ) +#endif + +#ifndef configUSE_QUEUE_SETS + #define configUSE_QUEUE_SETS 1 +#endif + +#ifndef portTASK_USES_FLOATING_POINT + #define portTASK_USES_FLOATING_POINT() +#endif + +#ifndef configUSE_TIME_SLICING + #define configUSE_TIME_SLICING 1 +#endif + +#ifndef configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS + #define configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS 0 +#endif + +#ifndef configUSE_STATS_FORMATTING_FUNCTIONS + #define configUSE_STATS_FORMATTING_FUNCTIONS 0 +#endif + +#ifndef portASSERT_IF_INTERRUPT_PRIORITY_INVALID + #define portASSERT_IF_INTERRUPT_PRIORITY_INVALID() +#endif + +#ifndef configUSE_TRACE_FACILITY + #define configUSE_TRACE_FACILITY 0 +#endif + +#ifndef mtCOVERAGE_TEST_MARKER + #define mtCOVERAGE_TEST_MARKER() +#endif + +#ifndef mtCOVERAGE_TEST_DELAY + #define mtCOVERAGE_TEST_DELAY() +#endif + +#ifndef portASSERT_IF_IN_ISR + #define portASSERT_IF_IN_ISR() +#endif + +#ifndef configUSE_PORT_OPTIMISED_TASK_SELECTION + #define configUSE_PORT_OPTIMISED_TASK_SELECTION 0 +#endif + +#ifndef configAPPLICATION_ALLOCATED_HEAP + #define configAPPLICATION_ALLOCATED_HEAP 0 +#endif + +#ifndef configUSE_TASK_NOTIFICATIONS + #define configUSE_TASK_NOTIFICATIONS 1 +#endif + +#ifndef portTICK_TYPE_IS_ATOMIC + #define portTICK_TYPE_IS_ATOMIC 0 +#endif + +#ifndef configSUPPORT_STATIC_ALLOCATION + /* Defaults to 0 for backward compatibility. */ + #define configSUPPORT_STATIC_ALLOCATION 0 +#endif + +#ifndef configSUPPORT_DYNAMIC_ALLOCATION + /* Defaults to 1 for backward compatibility. */ + #define configSUPPORT_DYNAMIC_ALLOCATION 1 +#endif + +/* Sanity check the configuration. */ +#if( configUSE_TICKLESS_IDLE != 0 ) + #if( INCLUDE_vTaskSuspend != 1 ) + #error INCLUDE_vTaskSuspend must be set to 1 if configUSE_TICKLESS_IDLE is not set to 0 + #endif /* INCLUDE_vTaskSuspend */ +#endif /* configUSE_TICKLESS_IDLE */ + +#if( ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 0 ) ) + #error configSUPPORT_STATIC_ALLOCATION and configSUPPORT_DYNAMIC_ALLOCATION cannot both be 0, but can both be 1. +#endif + +#if( ( configUSE_RECURSIVE_MUTEXES == 1 ) && ( configUSE_MUTEXES != 1 ) ) + #error configUSE_MUTEXES must be set to 1 to use recursive mutexes +#endif + +#if( portTICK_TYPE_IS_ATOMIC == 0 ) + /* Either variables of tick type cannot be read atomically, or + portTICK_TYPE_IS_ATOMIC was not set - map the critical sections used when + the tick count is returned to the standard critical section macros. */ + #define portTICK_TYPE_ENTER_CRITICAL() portENTER_CRITICAL() + #define portTICK_TYPE_EXIT_CRITICAL() portEXIT_CRITICAL() + #define portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR() + #define portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( x ) portCLEAR_INTERRUPT_MASK_FROM_ISR( ( x ) ) +#else + /* The tick type can be read atomically, so critical sections used when the + tick count is returned can be defined away. */ + #define portTICK_TYPE_ENTER_CRITICAL() + #define portTICK_TYPE_EXIT_CRITICAL() + #define portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR() 0 + #define portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( x ) ( void ) x +#endif + +/* Definitions to allow backward compatibility with FreeRTOS versions prior to +V8 if desired. */ +#ifndef configENABLE_BACKWARD_COMPATIBILITY + #define configENABLE_BACKWARD_COMPATIBILITY 1 +#endif + +#if configENABLE_BACKWARD_COMPATIBILITY == 1 + #define eTaskStateGet eTaskGetState + #define portTickType TickType_t + #define xTaskHandle TaskHandle_t + #define xQueueHandle QueueHandle_t + #define xSemaphoreHandle SemaphoreHandle_t + #define xQueueSetHandle QueueSetHandle_t + #define xQueueSetMemberHandle QueueSetMemberHandle_t + #define xTimeOutType TimeOut_t + #define xMemoryRegion MemoryRegion_t + #define xTaskParameters TaskParameters_t + #define xTaskStatusType TaskStatus_t + #define xTimerHandle TimerHandle_t + #define xCoRoutineHandle CoRoutineHandle_t + #define pdTASK_HOOK_CODE TaskHookFunction_t + #define portTICK_RATE_MS portTICK_PERIOD_MS + #define pcTaskGetTaskName pcTaskGetName + #define pcTimerGetTimerName pcTimerGetName + #define pcQueueGetQueueName pcQueueGetName + #define vTaskGetTaskInfo vTaskGetInfo + + /* Backward compatibility within the scheduler code only - these definitions + are not really required but are included for completeness. */ + #define tmrTIMER_CALLBACK TimerCallbackFunction_t + #define pdTASK_CODE TaskFunction_t + #define xListItem ListItem_t + #define xList List_t +#endif /* configENABLE_BACKWARD_COMPATIBILITY */ + +#if( configUSE_ALTERNATIVE_API != 0 ) + #error The alternative API was deprecated some time ago, and was removed in FreeRTOS V9.0 0 +#endif + +/* Set configUSE_TASK_FPU_SUPPORT to 0 to omit floating point support even +if floating point hardware is otherwise supported by the FreeRTOS port in use. +This constant is not supported by all FreeRTOS ports that include floating +point support. */ +#ifndef configUSE_TASK_FPU_SUPPORT + #define configUSE_TASK_FPU_SUPPORT 1 +#endif + +/* + * In line with software engineering best practice, FreeRTOS implements a strict + * data hiding policy, so the real structures used by FreeRTOS to maintain the + * state of tasks, queues, semaphores, etc. are not accessible to the application + * code. However, if the application writer wants to statically allocate such + * an object then the size of the object needs to be know. Dummy structures + * that are guaranteed to have the same size and alignment requirements of the + * real objects are used for this purpose. The dummy list and list item + * structures below are used for inclusion in such a dummy structure. + */ +struct xSTATIC_LIST_ITEM +{ + TickType_t xDummy1; + void *pvDummy2[ 4 ]; +}; +typedef struct xSTATIC_LIST_ITEM StaticListItem_t; + +/* See the comments above the struct xSTATIC_LIST_ITEM definition. */ +struct xSTATIC_MINI_LIST_ITEM +{ + TickType_t xDummy1; + void *pvDummy2[ 2 ]; +}; +typedef struct xSTATIC_MINI_LIST_ITEM StaticMiniListItem_t; + +/* See the comments above the struct xSTATIC_LIST_ITEM definition. */ +typedef struct xSTATIC_LIST +{ + UBaseType_t uxDummy1; + void *pvDummy2; + StaticMiniListItem_t xDummy3; +} StaticList_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the Task structure used internally by + * FreeRTOS is not accessible to application code. However, if the application + * writer wants to statically allocate the memory required to create a task then + * the size of the task object needs to be know. The StaticTask_t structure + * below is provided for this purpose. Its sizes and alignment requirements are + * guaranteed to match those of the genuine structure, no matter which + * architecture is being used, and no matter how the values in FreeRTOSConfig.h + * are set. Its contents are somewhat obfuscated in the hope users will + * recognise that it would be unwise to make direct use of the structure members. + */ +typedef struct xSTATIC_TCB +{ + void *pxDummy1; + #if ( portUSING_MPU_WRAPPERS == 1 ) + xMPU_SETTINGS xDummy2; + #endif + StaticListItem_t xDummy3[ 2 ]; + UBaseType_t uxDummy5; + void *pxDummy6; + uint8_t ucDummy7[ configMAX_TASK_NAME_LEN ]; + #if ( portSTACK_GROWTH > 0 ) + void *pxDummy8; + #endif + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + UBaseType_t uxDummy9; + #endif + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy10[ 2 ]; + #endif + #if ( configUSE_MUTEXES == 1 ) + UBaseType_t uxDummy12[ 2 ]; + #endif + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + void *pxDummy14; + #endif + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + void *pvDummy15[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; + #endif + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + uint32_t ulDummy16; + #endif + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + struct _reent xDummy17; + #endif + #if ( configUSE_TASK_NOTIFICATIONS == 1 ) + uint32_t ulDummy18; + uint8_t ucDummy19; + #endif + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t uxDummy20; + #endif + +} StaticTask_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the Queue structure used internally by + * FreeRTOS is not accessible to application code. However, if the application + * writer wants to statically allocate the memory required to create a queue + * then the size of the queue object needs to be know. The StaticQueue_t + * structure below is provided for this purpose. Its sizes and alignment + * requirements are guaranteed to match those of the genuine structure, no + * matter which architecture is being used, and no matter how the values in + * FreeRTOSConfig.h are set. Its contents are somewhat obfuscated in the hope + * users will recognise that it would be unwise to make direct use of the + * structure members. + */ +typedef struct xSTATIC_QUEUE +{ + void *pvDummy1[ 3 ]; + + union + { + void *pvDummy2; + UBaseType_t uxDummy2; + } u; + + StaticList_t xDummy3[ 2 ]; + UBaseType_t uxDummy4[ 3 ]; + uint8_t ucDummy5[ 2 ]; + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucDummy6; + #endif + + #if ( configUSE_QUEUE_SETS == 1 ) + void *pvDummy7; + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy8; + uint8_t ucDummy9; + #endif + +} StaticQueue_t; +typedef StaticQueue_t StaticSemaphore_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the event group structure used + * internally by FreeRTOS is not accessible to application code. However, if + * the application writer wants to statically allocate the memory required to + * create an event group then the size of the event group object needs to be + * know. The StaticEventGroup_t structure below is provided for this purpose. + * Its sizes and alignment requirements are guaranteed to match those of the + * genuine structure, no matter which architecture is being used, and no matter + * how the values in FreeRTOSConfig.h are set. Its contents are somewhat + * obfuscated in the hope users will recognise that it would be unwise to make + * direct use of the structure members. + */ +typedef struct xSTATIC_EVENT_GROUP +{ + TickType_t xDummy1; + StaticList_t xDummy2; + + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy3; + #endif + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucDummy4; + #endif + +} StaticEventGroup_t; + +/* + * In line with software engineering best practice, especially when supplying a + * library that is likely to change in future versions, FreeRTOS implements a + * strict data hiding policy. This means the software timer structure used + * internally by FreeRTOS is not accessible to application code. However, if + * the application writer wants to statically allocate the memory required to + * create a software timer then the size of the queue object needs to be know. + * The StaticTimer_t structure below is provided for this purpose. Its sizes + * and alignment requirements are guaranteed to match those of the genuine + * structure, no matter which architecture is being used, and no matter how the + * values in FreeRTOSConfig.h are set. Its contents are somewhat obfuscated in + * the hope users will recognise that it would be unwise to make direct use of + * the structure members. + */ +typedef struct xSTATIC_TIMER +{ + void *pvDummy1; + StaticListItem_t xDummy2; + TickType_t xDummy3; + UBaseType_t uxDummy4; + void *pvDummy5[ 2 ]; + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxDummy6; + #endif + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucDummy7; + #endif + +} StaticTimer_t; + +#ifdef __cplusplus +} +#endif + +#endif /* INC_FREERTOS_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h new file mode 100644 index 0000000..2662d22 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h @@ -0,0 +1,173 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + + +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +/*----------------------------------------------------------- + * Application specific definitions. + * + * These definitions should be adjusted for your particular hardware and + * application requirements. + * + * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE + * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. + * + * See http://www.freertos.org/a00110.html. + *----------------------------------------------------------*/ + +/* Ensure stdint is only used by the compiler, and not the assembler. */ +#if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__) + #include + extern uint32_t SystemCoreClock; +#endif + +#define configUSE_PREEMPTION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ (SystemCoreClock) +#define configTICK_RATE_HZ ((TickType_t)1000) +#define configMAX_PRIORITIES (7) +#define configMINIMAL_STACK_SIZE ((uint16_t)128) +#define configTOTAL_HEAP_SIZE ((size_t)(15 * 1024)) +#define configMAX_TASK_NAME_LEN (16) +#define configUSE_TRACE_FACILITY 1 +#define configUSE_16_BIT_TICKS 0 +#define configIDLE_SHOULD_YIELD 1 +#define configUSE_MUTEXES 1 +#define configQUEUE_REGISTRY_SIZE 8 +#define configCHECK_FOR_STACK_OVERFLOW 0 +#define configUSE_RECURSIVE_MUTEXES 1 +#define configUSE_MALLOC_FAILED_HOOK 0 +#define configUSE_APPLICATION_TASK_TAG 0 +#define configUSE_COUNTING_SEMAPHORES 1 +#define configGENERATE_RUN_TIME_STATS 0 + +/* Co-routine definitions. */ +#define configUSE_CO_ROUTINES 0 +#define configMAX_CO_ROUTINE_PRIORITIES (2) + +/* Software timer definitions. */ +#define configUSE_TIMERS 0 +#define configTIMER_TASK_PRIORITY (2) +#define configTIMER_QUEUE_LENGTH 10 +#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE * 2) + +/* Set the following definitions to 1 to include the API function, or zero +to exclude the API function. */ +#define INCLUDE_vTaskPrioritySet 1 +#define INCLUDE_uxTaskPriorityGet 1 +#define INCLUDE_vTaskDelete 1 +#define INCLUDE_vTaskCleanUpResources 0 +#define INCLUDE_vTaskSuspend 1 +#define INCLUDE_vTaskDelayUntil 0 +#define INCLUDE_vTaskDelay 1 +#define INCLUDE_xTaskGetSchedulerState 1 + +/* Cortex-M specific definitions. */ +#ifdef __NVIC_PRIO_BITS + /* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */ + #define configPRIO_BITS __NVIC_PRIO_BITS +#else + #define configPRIO_BITS 4 /* 15 priority levels */ +#endif + +/* The lowest interrupt priority that can be used in a call to a "set priority" +function. */ +#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 0xf + +/* The highest interrupt priority that can be used by any interrupt service +routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL +INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER +PRIORITY THAN THIS! (higher priorities are lower numeric values. */ +#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 5 + +/* Interrupt priorities used by the kernel port layer itself. These are generic +to all Cortex-M ports, and do not rely on any particular library functions. */ +#define configKERNEL_INTERRUPT_PRIORITY ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) +/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!! +See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */ +#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) + +/* Normal assert() semantics without relying on the provision of an assert.h +header file. */ +#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); } + +/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS + standard names. */ +#define vPortSVCHandler SVC_Handler +#define xPortPendSVHandler PendSV_Handler + +/* IMPORTANT: This define MUST be commented when used with STM32Cube firmware, + to prevent overwriting SysTick_Handler defined within STM32Cube HAL */ +/* #define xPortSysTickHandler SysTick_Handler */ + +#endif /* FREERTOS_CONFIG_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h new file mode 100644 index 0000000..13c6b82 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h @@ -0,0 +1,171 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef STACK_MACROS_H +#define STACK_MACROS_H + +/* + * Call the stack overflow hook function if the stack of the task being swapped + * out is currently overflowed, or looks like it might have overflowed in the + * past. + * + * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check + * the current stack state only - comparing the current top of stack value to + * the stack limit. Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1 + * will also cause the last few stack bytes to be checked to ensure the value + * to which the bytes were set when the task was created have not been + * overwritten. Note this second test does not guarantee that an overflowed + * stack will always be recognised. + */ + +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH < 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH > 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH < 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \ + const uint32_t ulCheckValue = ( uint32_t ) 0xa5a5a5a5; \ + \ + if( ( pulStack[ 0 ] != ulCheckValue ) || \ + ( pulStack[ 1 ] != ulCheckValue ) || \ + ( pulStack[ 2 ] != ulCheckValue ) || \ + ( pulStack[ 3 ] != ulCheckValue ) ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + int8_t *pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \ + static const uint8_t ucExpectedStackBytes[] = { tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE }; \ + \ + \ + pcEndOfStack -= sizeof( ucExpectedStackBytes ); \ + \ + /* Has the extremity of the task stack ever been written over? */ \ + if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +/* Remove stack overflow macro if not being used. */ +#ifndef taskCHECK_FOR_STACK_OVERFLOW + #define taskCHECK_FOR_STACK_OVERFLOW() +#endif + + + +#endif /* STACK_MACROS_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h new file mode 100644 index 0000000..4f003a0 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h @@ -0,0 +1,762 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef CO_ROUTINE_H +#define CO_ROUTINE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include croutine.h" +#endif + +#include "list.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* Used to hide the implementation of the co-routine control block. The +control block structure however has to be included in the header due to +the macro implementation of the co-routine functionality. */ +typedef void * CoRoutineHandle_t; + +/* Defines the prototype to which co-routine functions must conform. */ +typedef void (*crCOROUTINE_CODE)( CoRoutineHandle_t, UBaseType_t ); + +typedef struct corCoRoutineControlBlock +{ + crCOROUTINE_CODE pxCoRoutineFunction; + ListItem_t xGenericListItem; /*< List item used to place the CRCB in ready and blocked queues. */ + ListItem_t xEventListItem; /*< List item used to place the CRCB in event lists. */ + UBaseType_t uxPriority; /*< The priority of the co-routine in relation to other co-routines. */ + UBaseType_t uxIndex; /*< Used to distinguish between co-routines when multiple co-routines use the same co-routine function. */ + uint16_t uxState; /*< Used internally by the co-routine implementation. */ +} CRCB_t; /* Co-routine control block. Note must be identical in size down to uxPriority with TCB_t. */ + +/** + * croutine. h + *
+ BaseType_t xCoRoutineCreate(
+                                 crCOROUTINE_CODE pxCoRoutineCode,
+                                 UBaseType_t uxPriority,
+                                 UBaseType_t uxIndex
+                               );
+ * + * Create a new co-routine and add it to the list of co-routines that are + * ready to run. + * + * @param pxCoRoutineCode Pointer to the co-routine function. Co-routine + * functions require special syntax - see the co-routine section of the WEB + * documentation for more information. + * + * @param uxPriority The priority with respect to other co-routines at which + * the co-routine will run. + * + * @param uxIndex Used to distinguish between different co-routines that + * execute the same function. See the example below and the co-routine section + * of the WEB documentation for further information. + * + * @return pdPASS if the co-routine was successfully created and added to a ready + * list, otherwise an error code defined with ProjDefs.h. + * + * Example usage: +
+ // Co-routine to be created.
+ void vFlashCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ // This may not be necessary for const variables.
+ static const char cLedToFlash[ 2 ] = { 5, 6 };
+ static const TickType_t uxFlashRates[ 2 ] = { 200, 400 };
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+         // This co-routine just delays for a fixed period, then toggles
+         // an LED.  Two co-routines are created using this function, so
+         // the uxIndex parameter is used to tell the co-routine which
+         // LED to flash and how int32_t to delay.  This assumes xQueue has
+         // already been created.
+         vParTestToggleLED( cLedToFlash[ uxIndex ] );
+         crDELAY( xHandle, uxFlashRates[ uxIndex ] );
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+
+ // Function that creates two co-routines.
+ void vOtherFunction( void )
+ {
+ uint8_t ucParameterToPass;
+ TaskHandle_t xHandle;
+
+     // Create two co-routines at priority 0.  The first is given index 0
+     // so (from the code above) toggles LED 5 every 200 ticks.  The second
+     // is given index 1 so toggles LED 6 every 400 ticks.
+     for( uxIndex = 0; uxIndex < 2; uxIndex++ )
+     {
+         xCoRoutineCreate( vFlashCoRoutine, 0, uxIndex );
+     }
+ }
+   
+ * \defgroup xCoRoutineCreate xCoRoutineCreate + * \ingroup Tasks + */ +BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex ); + + +/** + * croutine. h + *
+ void vCoRoutineSchedule( void );
+ * + * Run a co-routine. + * + * vCoRoutineSchedule() executes the highest priority co-routine that is able + * to run. The co-routine will execute until it either blocks, yields or is + * preempted by a task. Co-routines execute cooperatively so one + * co-routine cannot be preempted by another, but can be preempted by a task. + * + * If an application comprises of both tasks and co-routines then + * vCoRoutineSchedule should be called from the idle task (in an idle task + * hook). + * + * Example usage: +
+ // This idle task hook will schedule a co-routine each time it is called.
+ // The rest of the idle task will execute between co-routine calls.
+ void vApplicationIdleHook( void )
+ {
+	vCoRoutineSchedule();
+ }
+
+ // Alternatively, if you do not require any other part of the idle task to
+ // execute, the idle task hook can call vCoRoutineScheduler() within an
+ // infinite loop.
+ void vApplicationIdleHook( void )
+ {
+    for( ;; )
+    {
+        vCoRoutineSchedule();
+    }
+ }
+ 
+ * \defgroup vCoRoutineSchedule vCoRoutineSchedule + * \ingroup Tasks + */ +void vCoRoutineSchedule( void ); + +/** + * croutine. h + *
+ crSTART( CoRoutineHandle_t xHandle );
+ * + * This macro MUST always be called at the start of a co-routine function. + * + * Example usage: +
+ // Co-routine to be created.
+ void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static int32_t ulAVariable;
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+          // Co-routine functionality goes here.
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+ * \defgroup crSTART crSTART + * \ingroup Tasks + */ +#define crSTART( pxCRCB ) switch( ( ( CRCB_t * )( pxCRCB ) )->uxState ) { case 0: + +/** + * croutine. h + *
+ crEND();
+ * + * This macro MUST always be called at the end of a co-routine function. + * + * Example usage: +
+ // Co-routine to be created.
+ void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static int32_t ulAVariable;
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+          // Co-routine functionality goes here.
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+ * \defgroup crSTART crSTART + * \ingroup Tasks + */ +#define crEND() } + +/* + * These macros are intended for internal use by the co-routine implementation + * only. The macros should not be used directly by application writers. + */ +#define crSET_STATE0( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = (__LINE__ * 2); return; case (__LINE__ * 2): +#define crSET_STATE1( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; case ((__LINE__ * 2)+1): + +/** + * croutine. h + *
+ crDELAY( CoRoutineHandle_t xHandle, TickType_t xTicksToDelay );
+ * + * Delay a co-routine for a fixed period of time. + * + * crDELAY can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * @param xHandle The handle of the co-routine to delay. This is the xHandle + * parameter of the co-routine function. + * + * @param xTickToDelay The number of ticks that the co-routine should delay + * for. The actual amount of time this equates to is defined by + * configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant portTICK_PERIOD_MS + * can be used to convert ticks to milliseconds. + * + * Example usage: +
+ // Co-routine to be created.
+ void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ // This may not be necessary for const variables.
+ // We are to delay for 200ms.
+ static const xTickType xDelayTime = 200 / portTICK_PERIOD_MS;
+
+     // Must start every co-routine with a call to crSTART();
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+        // Delay for 200ms.
+        crDELAY( xHandle, xDelayTime );
+
+        // Do something here.
+     }
+
+     // Must end every co-routine with a call to crEND();
+     crEND();
+ }
+ * \defgroup crDELAY crDELAY + * \ingroup Tasks + */ +#define crDELAY( xHandle, xTicksToDelay ) \ + if( ( xTicksToDelay ) > 0 ) \ + { \ + vCoRoutineAddToDelayedList( ( xTicksToDelay ), NULL ); \ + } \ + crSET_STATE0( ( xHandle ) ); + +/** + *
+ crQUEUE_SEND(
+                  CoRoutineHandle_t xHandle,
+                  QueueHandle_t pxQueue,
+                  void *pvItemToQueue,
+                  TickType_t xTicksToWait,
+                  BaseType_t *pxResult
+             )
+ * + * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine + * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. + * + * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas + * xQueueSend() and xQueueReceive() can only be used from tasks. + * + * crQUEUE_SEND can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xHandle The handle of the calling co-routine. This is the xHandle + * parameter of the co-routine function. + * + * @param pxQueue The handle of the queue on which the data will be posted. + * The handle is obtained as the return value when the queue is created using + * the xQueueCreate() API function. + * + * @param pvItemToQueue A pointer to the data being posted onto the queue. + * The number of bytes of each queued item is specified when the queue is + * created. This number of bytes is copied from pvItemToQueue into the queue + * itself. + * + * @param xTickToDelay The number of ticks that the co-routine should block + * to wait for space to become available on the queue, should space not be + * available immediately. The actual amount of time this equates to is defined + * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant + * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see example + * below). + * + * @param pxResult The variable pointed to by pxResult will be set to pdPASS if + * data was successfully posted onto the queue, otherwise it will be set to an + * error defined within ProjDefs.h. + * + * Example usage: +
+ // Co-routine function that blocks for a fixed period then posts a number onto
+ // a queue.
+ static void prvCoRoutineFlashTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static BaseType_t xNumberToPost = 0;
+ static BaseType_t xResult;
+
+    // Co-routines must begin with a call to crSTART().
+    crSTART( xHandle );
+
+    for( ;; )
+    {
+        // This assumes the queue has already been created.
+        crQUEUE_SEND( xHandle, xCoRoutineQueue, &xNumberToPost, NO_DELAY, &xResult );
+
+        if( xResult != pdPASS )
+        {
+            // The message was not posted!
+        }
+
+        // Increment the number to be posted onto the queue.
+        xNumberToPost++;
+
+        // Delay for 100 ticks.
+        crDELAY( xHandle, 100 );
+    }
+
+    // Co-routines must end with a call to crEND().
+    crEND();
+ }
+ * \defgroup crQUEUE_SEND crQUEUE_SEND + * \ingroup Tasks + */ +#define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ +{ \ + *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) ); \ + if( *( pxResult ) == errQUEUE_BLOCKED ) \ + { \ + crSET_STATE0( ( xHandle ) ); \ + *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \ + } \ + if( *pxResult == errQUEUE_YIELD ) \ + { \ + crSET_STATE1( ( xHandle ) ); \ + *pxResult = pdPASS; \ + } \ +} + +/** + * croutine. h + *
+  crQUEUE_RECEIVE(
+                     CoRoutineHandle_t xHandle,
+                     QueueHandle_t pxQueue,
+                     void *pvBuffer,
+                     TickType_t xTicksToWait,
+                     BaseType_t *pxResult
+                 )
+ * + * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine + * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. + * + * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas + * xQueueSend() and xQueueReceive() can only be used from tasks. + * + * crQUEUE_RECEIVE can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xHandle The handle of the calling co-routine. This is the xHandle + * parameter of the co-routine function. + * + * @param pxQueue The handle of the queue from which the data will be received. + * The handle is obtained as the return value when the queue is created using + * the xQueueCreate() API function. + * + * @param pvBuffer The buffer into which the received item is to be copied. + * The number of bytes of each queued item is specified when the queue is + * created. This number of bytes is copied into pvBuffer. + * + * @param xTickToDelay The number of ticks that the co-routine should block + * to wait for data to become available from the queue, should data not be + * available immediately. The actual amount of time this equates to is defined + * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant + * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see the + * crQUEUE_SEND example). + * + * @param pxResult The variable pointed to by pxResult will be set to pdPASS if + * data was successfully retrieved from the queue, otherwise it will be set to + * an error code as defined within ProjDefs.h. + * + * Example usage: +
+ // A co-routine receives the number of an LED to flash from a queue.  It
+ // blocks on the queue until the number is received.
+ static void prvCoRoutineFlashWorkTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // Variables in co-routines must be declared static if they must maintain value across a blocking call.
+ static BaseType_t xResult;
+ static UBaseType_t uxLEDToFlash;
+
+    // All co-routines must start with a call to crSTART().
+    crSTART( xHandle );
+
+    for( ;; )
+    {
+        // Wait for data to become available on the queue.
+        crQUEUE_RECEIVE( xHandle, xCoRoutineQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
+
+        if( xResult == pdPASS )
+        {
+            // We received the LED to flash - flash it!
+            vParTestToggleLED( uxLEDToFlash );
+        }
+    }
+
+    crEND();
+ }
+ * \defgroup crQUEUE_RECEIVE crQUEUE_RECEIVE + * \ingroup Tasks + */ +#define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ +{ \ + *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), ( xTicksToWait ) ); \ + if( *( pxResult ) == errQUEUE_BLOCKED ) \ + { \ + crSET_STATE0( ( xHandle ) ); \ + *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), 0 ); \ + } \ + if( *( pxResult ) == errQUEUE_YIELD ) \ + { \ + crSET_STATE1( ( xHandle ) ); \ + *( pxResult ) = pdPASS; \ + } \ +} + +/** + * croutine. h + *
+  crQUEUE_SEND_FROM_ISR(
+                            QueueHandle_t pxQueue,
+                            void *pvItemToQueue,
+                            BaseType_t xCoRoutinePreviouslyWoken
+                       )
+ * + * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the + * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() + * functions used by tasks. + * + * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to + * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and + * xQueueReceiveFromISR() can only be used to pass data between a task and and + * ISR. + * + * crQUEUE_SEND_FROM_ISR can only be called from an ISR to send data to a queue + * that is being used from within a co-routine. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xCoRoutinePreviouslyWoken This is included so an ISR can post onto + * the same queue multiple times from a single interrupt. The first call + * should always pass in pdFALSE. Subsequent calls should pass in + * the value returned from the previous call. + * + * @return pdTRUE if a co-routine was woken by posting onto the queue. This is + * used by the ISR to determine if a context switch may be required following + * the ISR. + * + * Example usage: +
+ // A co-routine that blocks on a queue waiting for characters to be received.
+ static void vReceivingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ char cRxedChar;
+ BaseType_t xResult;
+
+     // All co-routines must start with a call to crSTART().
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+         // Wait for data to become available on the queue.  This assumes the
+         // queue xCommsRxQueue has already been created!
+         crQUEUE_RECEIVE( xHandle, xCommsRxQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
+
+         // Was a character received?
+         if( xResult == pdPASS )
+         {
+             // Process the character here.
+         }
+     }
+
+     // All co-routines must end with a call to crEND().
+     crEND();
+ }
+
+ // An ISR that uses a queue to send characters received on a serial port to
+ // a co-routine.
+ void vUART_ISR( void )
+ {
+ char cRxedChar;
+ BaseType_t xCRWokenByPost = pdFALSE;
+
+     // We loop around reading characters until there are none left in the UART.
+     while( UART_RX_REG_NOT_EMPTY() )
+     {
+         // Obtain the character from the UART.
+         cRxedChar = UART_RX_REG;
+
+         // Post the character onto a queue.  xCRWokenByPost will be pdFALSE
+         // the first time around the loop.  If the post causes a co-routine
+         // to be woken (unblocked) then xCRWokenByPost will be set to pdTRUE.
+         // In this manner we can ensure that if more than one co-routine is
+         // blocked on the queue only one is woken by this ISR no matter how
+         // many characters are posted to the queue.
+         xCRWokenByPost = crQUEUE_SEND_FROM_ISR( xCommsRxQueue, &cRxedChar, xCRWokenByPost );
+     }
+ }
+ * \defgroup crQUEUE_SEND_FROM_ISR crQUEUE_SEND_FROM_ISR + * \ingroup Tasks + */ +#define crQUEUE_SEND_FROM_ISR( pxQueue, pvItemToQueue, xCoRoutinePreviouslyWoken ) xQueueCRSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( xCoRoutinePreviouslyWoken ) ) + + +/** + * croutine. h + *
+  crQUEUE_SEND_FROM_ISR(
+                            QueueHandle_t pxQueue,
+                            void *pvBuffer,
+                            BaseType_t * pxCoRoutineWoken
+                       )
+ * + * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the + * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() + * functions used by tasks. + * + * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to + * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and + * xQueueReceiveFromISR() can only be used to pass data between a task and and + * ISR. + * + * crQUEUE_RECEIVE_FROM_ISR can only be called from an ISR to receive data + * from a queue that is being used from within a co-routine (a co-routine + * posted to the queue). + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvBuffer A pointer to a buffer into which the received item will be + * placed. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from the queue into + * pvBuffer. + * + * @param pxCoRoutineWoken A co-routine may be blocked waiting for space to become + * available on the queue. If crQUEUE_RECEIVE_FROM_ISR causes such a + * co-routine to unblock *pxCoRoutineWoken will get set to pdTRUE, otherwise + * *pxCoRoutineWoken will remain unchanged. + * + * @return pdTRUE an item was successfully received from the queue, otherwise + * pdFALSE. + * + * Example usage: +
+ // A co-routine that posts a character to a queue then blocks for a fixed
+ // period.  The character is incremented each time.
+ static void vSendingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
+ {
+ // cChar holds its value while this co-routine is blocked and must therefore
+ // be declared static.
+ static char cCharToTx = 'a';
+ BaseType_t xResult;
+
+     // All co-routines must start with a call to crSTART().
+     crSTART( xHandle );
+
+     for( ;; )
+     {
+         // Send the next character to the queue.
+         crQUEUE_SEND( xHandle, xCoRoutineQueue, &cCharToTx, NO_DELAY, &xResult );
+
+         if( xResult == pdPASS )
+         {
+             // The character was successfully posted to the queue.
+         }
+		 else
+		 {
+			// Could not post the character to the queue.
+		 }
+
+         // Enable the UART Tx interrupt to cause an interrupt in this
+		 // hypothetical UART.  The interrupt will obtain the character
+		 // from the queue and send it.
+		 ENABLE_RX_INTERRUPT();
+
+		 // Increment to the next character then block for a fixed period.
+		 // cCharToTx will maintain its value across the delay as it is
+		 // declared static.
+		 cCharToTx++;
+		 if( cCharToTx > 'x' )
+		 {
+			cCharToTx = 'a';
+		 }
+		 crDELAY( 100 );
+     }
+
+     // All co-routines must end with a call to crEND().
+     crEND();
+ }
+
+ // An ISR that uses a queue to receive characters to send on a UART.
+ void vUART_ISR( void )
+ {
+ char cCharToTx;
+ BaseType_t xCRWokenByPost = pdFALSE;
+
+     while( UART_TX_REG_EMPTY() )
+     {
+         // Are there any characters in the queue waiting to be sent?
+		 // xCRWokenByPost will automatically be set to pdTRUE if a co-routine
+		 // is woken by the post - ensuring that only a single co-routine is
+		 // woken no matter how many times we go around this loop.
+         if( crQUEUE_RECEIVE_FROM_ISR( pxQueue, &cCharToTx, &xCRWokenByPost ) )
+		 {
+			 SEND_CHARACTER( cCharToTx );
+		 }
+     }
+ }
+ * \defgroup crQUEUE_RECEIVE_FROM_ISR crQUEUE_RECEIVE_FROM_ISR + * \ingroup Tasks + */ +#define crQUEUE_RECEIVE_FROM_ISR( pxQueue, pvBuffer, pxCoRoutineWoken ) xQueueCRReceiveFromISR( ( pxQueue ), ( pvBuffer ), ( pxCoRoutineWoken ) ) + +/* + * This function is intended for internal use by the co-routine macros only. + * The macro nature of the co-routine implementation requires that the + * prototype appears here. The function should not be used by application + * writers. + * + * Removes the current co-routine from its ready list and places it in the + * appropriate delayed list. + */ +void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ); + +/* + * This function is intended for internal use by the queue implementation only. + * The function should not be used by application writers. + * + * Removes the highest priority co-routine from the event list and places it in + * the pending ready list. + */ +BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ); + +#ifdef __cplusplus +} +#endif + +#endif /* CO_ROUTINE_H */ diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h new file mode 100644 index 0000000..4ea816c --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h @@ -0,0 +1,321 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef DEPRECATED_DEFINITIONS_H +#define DEPRECATED_DEFINITIONS_H + + +/* Each FreeRTOS port has a unique portmacro.h header file. Originally a +pre-processor definition was used to ensure the pre-processor found the correct +portmacro.h file for the port being used. That scheme was deprecated in favour +of setting the compiler's include path such that it found the correct +portmacro.h file - removing the need for the constant and allowing the +portmacro.h file to be located anywhere in relation to the port being used. The +definitions below remain in the code for backward compatibility only. New +projects should not use them. */ + +#ifdef OPEN_WATCOM_INDUSTRIAL_PC_PORT + #include "..\..\Source\portable\owatcom\16bitdos\pc\portmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef OPEN_WATCOM_FLASH_LITE_186_PORT + #include "..\..\Source\portable\owatcom\16bitdos\flsh186\portmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef GCC_MEGA_AVR + #include "../portable/GCC/ATMega323/portmacro.h" +#endif + +#ifdef IAR_MEGA_AVR + #include "../portable/IAR/ATMega323/portmacro.h" +#endif + +#ifdef MPLAB_PIC24_PORT + #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" +#endif + +#ifdef MPLAB_DSPIC_PORT + #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" +#endif + +#ifdef MPLAB_PIC18F_PORT + #include "../../Source/portable/MPLAB/PIC18F/portmacro.h" +#endif + +#ifdef MPLAB_PIC32MX_PORT + #include "../../Source/portable/MPLAB/PIC32MX/portmacro.h" +#endif + +#ifdef _FEDPICC + #include "libFreeRTOS/Include/portmacro.h" +#endif + +#ifdef SDCC_CYGNAL + #include "../../Source/portable/SDCC/Cygnal/portmacro.h" +#endif + +#ifdef GCC_ARM7 + #include "../../Source/portable/GCC/ARM7_LPC2000/portmacro.h" +#endif + +#ifdef GCC_ARM7_ECLIPSE + #include "portmacro.h" +#endif + +#ifdef ROWLEY_LPC23xx + #include "../../Source/portable/GCC/ARM7_LPC23xx/portmacro.h" +#endif + +#ifdef IAR_MSP430 + #include "..\..\Source\portable\IAR\MSP430\portmacro.h" +#endif + +#ifdef GCC_MSP430 + #include "../../Source/portable/GCC/MSP430F449/portmacro.h" +#endif + +#ifdef ROWLEY_MSP430 + #include "../../Source/portable/Rowley/MSP430F449/portmacro.h" +#endif + +#ifdef ARM7_LPC21xx_KEIL_RVDS + #include "..\..\Source\portable\RVDS\ARM7_LPC21xx\portmacro.h" +#endif + +#ifdef SAM7_GCC + #include "../../Source/portable/GCC/ARM7_AT91SAM7S/portmacro.h" +#endif + +#ifdef SAM7_IAR + #include "..\..\Source\portable\IAR\AtmelSAM7S64\portmacro.h" +#endif + +#ifdef SAM9XE_IAR + #include "..\..\Source\portable\IAR\AtmelSAM9XE\portmacro.h" +#endif + +#ifdef LPC2000_IAR + #include "..\..\Source\portable\IAR\LPC2000\portmacro.h" +#endif + +#ifdef STR71X_IAR + #include "..\..\Source\portable\IAR\STR71x\portmacro.h" +#endif + +#ifdef STR75X_IAR + #include "..\..\Source\portable\IAR\STR75x\portmacro.h" +#endif + +#ifdef STR75X_GCC + #include "..\..\Source\portable\GCC\STR75x\portmacro.h" +#endif + +#ifdef STR91X_IAR + #include "..\..\Source\portable\IAR\STR91x\portmacro.h" +#endif + +#ifdef GCC_H8S + #include "../../Source/portable/GCC/H8S2329/portmacro.h" +#endif + +#ifdef GCC_AT91FR40008 + #include "../../Source/portable/GCC/ARM7_AT91FR40008/portmacro.h" +#endif + +#ifdef RVDS_ARMCM3_LM3S102 + #include "../../Source/portable/RVDS/ARM_CM3/portmacro.h" +#endif + +#ifdef GCC_ARMCM3_LM3S102 + #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" +#endif + +#ifdef GCC_ARMCM3 + #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" +#endif + +#ifdef IAR_ARM_CM3 + #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" +#endif + +#ifdef IAR_ARMCM3_LM + #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" +#endif + +#ifdef HCS12_CODE_WARRIOR + #include "../../Source/portable/CodeWarrior/HCS12/portmacro.h" +#endif + +#ifdef MICROBLAZE_GCC + #include "../../Source/portable/GCC/MicroBlaze/portmacro.h" +#endif + +#ifdef TERN_EE + #include "..\..\Source\portable\Paradigm\Tern_EE\small\portmacro.h" +#endif + +#ifdef GCC_HCS12 + #include "../../Source/portable/GCC/HCS12/portmacro.h" +#endif + +#ifdef GCC_MCF5235 + #include "../../Source/portable/GCC/MCF5235/portmacro.h" +#endif + +#ifdef COLDFIRE_V2_GCC + #include "../../../Source/portable/GCC/ColdFire_V2/portmacro.h" +#endif + +#ifdef COLDFIRE_V2_CODEWARRIOR + #include "../../Source/portable/CodeWarrior/ColdFire_V2/portmacro.h" +#endif + +#ifdef GCC_PPC405 + #include "../../Source/portable/GCC/PPC405_Xilinx/portmacro.h" +#endif + +#ifdef GCC_PPC440 + #include "../../Source/portable/GCC/PPC440_Xilinx/portmacro.h" +#endif + +#ifdef _16FX_SOFTUNE + #include "..\..\Source\portable\Softune\MB96340\portmacro.h" +#endif + +#ifdef BCC_INDUSTRIAL_PC_PORT + /* A short file name has to be used in place of the normal + FreeRTOSConfig.h when using the Borland compiler. */ + #include "frconfig.h" + #include "..\portable\BCC\16BitDOS\PC\prtmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef BCC_FLASH_LITE_186_PORT + /* A short file name has to be used in place of the normal + FreeRTOSConfig.h when using the Borland compiler. */ + #include "frconfig.h" + #include "..\portable\BCC\16BitDOS\flsh186\prtmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef __GNUC__ + #ifdef __AVR32_AVR32A__ + #include "portmacro.h" + #endif +#endif + +#ifdef __ICCAVR32__ + #ifdef __CORE__ + #if __CORE__ == __AVR32A__ + #include "portmacro.h" + #endif + #endif +#endif + +#ifdef __91467D + #include "portmacro.h" +#endif + +#ifdef __96340 + #include "portmacro.h" +#endif + + +#ifdef __IAR_V850ES_Fx3__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx3__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx3_L__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx2__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Hx2__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_78K0R_Kx3__ + #include "../../Source/portable/IAR/78K0R/portmacro.h" +#endif + +#ifdef __IAR_78K0R_Kx3L__ + #include "../../Source/portable/IAR/78K0R/portmacro.h" +#endif + +#endif /* DEPRECATED_DEFINITIONS_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h new file mode 100644 index 0000000..7331c91 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h @@ -0,0 +1,797 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef EVENT_GROUPS_H +#define EVENT_GROUPS_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include event_groups.h" +#endif + +/* FreeRTOS includes. */ +#include "timers.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An event group is a collection of bits to which an application can assign a + * meaning. For example, an application may create an event group to convey + * the status of various CAN bus related events in which bit 0 might mean "A CAN + * message has been received and is ready for processing", bit 1 might mean "The + * application has queued a message that is ready for sending onto the CAN + * network", and bit 2 might mean "It is time to send a SYNC message onto the + * CAN network" etc. A task can then test the bit values to see which events + * are active, and optionally enter the Blocked state to wait for a specified + * bit or a group of specified bits to be active. To continue the CAN bus + * example, a CAN controlling task can enter the Blocked state (and therefore + * not consume any processing time) until either bit 0, bit 1 or bit 2 are + * active, at which time the bit that was actually active would inform the task + * which action it had to take (process a received message, send a message, or + * send a SYNC). + * + * The event groups implementation contains intelligence to avoid race + * conditions that would otherwise occur were an application to use a simple + * variable for the same purpose. This is particularly important with respect + * to when a bit within an event group is to be cleared, and when bits have to + * be set and then tested atomically - as is the case where event groups are + * used to create a synchronisation point between multiple tasks (a + * 'rendezvous'). + * + * \defgroup EventGroup + */ + + + +/** + * event_groups.h + * + * Type by which event groups are referenced. For example, a call to + * xEventGroupCreate() returns an EventGroupHandle_t variable that can then + * be used as a parameter to other event group functions. + * + * \defgroup EventGroupHandle_t EventGroupHandle_t + * \ingroup EventGroup + */ +typedef void * EventGroupHandle_t; + +/* + * The type that holds event bits always matches TickType_t - therefore the + * number of bits it holds is set by configUSE_16_BIT_TICKS (16 bits if set to 1, + * 32 bits if set to 0. + * + * \defgroup EventBits_t EventBits_t + * \ingroup EventGroup + */ +typedef TickType_t EventBits_t; + +/** + * event_groups.h + *
+ EventGroupHandle_t xEventGroupCreate( void );
+ 
+ * + * Create a new event group. + * + * Internally, within the FreeRTOS implementation, event groups use a [small] + * block of memory, in which the event group's structure is stored. If an event + * groups is created using xEventGropuCreate() then the required memory is + * automatically dynamically allocated inside the xEventGroupCreate() function. + * (see http://www.freertos.org/a00111.html). If an event group is created + * using xEventGropuCreateStatic() then the application writer must instead + * provide the memory that will get used by the event group. + * xEventGroupCreateStatic() therefore allows an event group to be created + * without using any dynamic memory allocation. + * + * Although event groups are not related to ticks, for internal implementation + * reasons the number of bits available for use in an event group is dependent + * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If + * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit + * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has + * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store + * event bits within an event group. + * + * @return If the event group was created then a handle to the event group is + * returned. If there was insufficient FreeRTOS heap available to create the + * event group then NULL is returned. See http://www.freertos.org/a00111.html + * + * Example usage: +
+	// Declare a variable to hold the created event group.
+	EventGroupHandle_t xCreatedEventGroup;
+
+	// Attempt to create the event group.
+	xCreatedEventGroup = xEventGroupCreate();
+
+	// Was the event group created successfully?
+	if( xCreatedEventGroup == NULL )
+	{
+		// The event group was not created because there was insufficient
+		// FreeRTOS heap available.
+	}
+	else
+	{
+		// The event group was created.
+	}
+   
+ * \defgroup xEventGroupCreate xEventGroupCreate + * \ingroup EventGroup + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + EventGroupHandle_t xEventGroupCreate( void ) PRIVILEGED_FUNCTION; +#endif + +/** + * event_groups.h + *
+ EventGroupHandle_t xEventGroupCreateStatic( EventGroupHandle_t * pxEventGroupBuffer );
+ 
+ * + * Create a new event group. + * + * Internally, within the FreeRTOS implementation, event groups use a [small] + * block of memory, in which the event group's structure is stored. If an event + * groups is created using xEventGropuCreate() then the required memory is + * automatically dynamically allocated inside the xEventGroupCreate() function. + * (see http://www.freertos.org/a00111.html). If an event group is created + * using xEventGropuCreateStatic() then the application writer must instead + * provide the memory that will get used by the event group. + * xEventGroupCreateStatic() therefore allows an event group to be created + * without using any dynamic memory allocation. + * + * Although event groups are not related to ticks, for internal implementation + * reasons the number of bits available for use in an event group is dependent + * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If + * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit + * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has + * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store + * event bits within an event group. + * + * @param pxEventGroupBuffer pxEventGroupBuffer must point to a variable of type + * StaticEventGroup_t, which will be then be used to hold the event group's data + * structures, removing the need for the memory to be allocated dynamically. + * + * @return If the event group was created then a handle to the event group is + * returned. If pxEventGroupBuffer was NULL then NULL is returned. + * + * Example usage: +
+	// StaticEventGroup_t is a publicly accessible structure that has the same
+	// size and alignment requirements as the real event group structure.  It is
+	// provided as a mechanism for applications to know the size of the event
+	// group (which is dependent on the architecture and configuration file
+	// settings) without breaking the strict data hiding policy by exposing the
+	// real event group internals.  This StaticEventGroup_t variable is passed
+	// into the xSemaphoreCreateEventGroupStatic() function and is used to store
+	// the event group's data structures
+	StaticEventGroup_t xEventGroupBuffer;
+
+	// Create the event group without dynamically allocating any memory.
+	xEventGroup = xEventGroupCreateStatic( &xEventGroupBuffer );
+   
+ */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) PRIVILEGED_FUNCTION; +#endif + +/** + * event_groups.h + *
+	EventBits_t xEventGroupWaitBits( 	EventGroupHandle_t xEventGroup,
+										const EventBits_t uxBitsToWaitFor,
+										const BaseType_t xClearOnExit,
+										const BaseType_t xWaitForAllBits,
+										const TickType_t xTicksToWait );
+ 
+ * + * [Potentially] block to wait for one or more bits to be set within a + * previously created event group. + * + * This function cannot be called from an interrupt. + * + * @param xEventGroup The event group in which the bits are being tested. The + * event group must have previously been created using a call to + * xEventGroupCreate(). + * + * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test + * inside the event group. For example, to wait for bit 0 and/or bit 2 set + * uxBitsToWaitFor to 0x05. To wait for bits 0 and/or bit 1 and/or bit 2 set + * uxBitsToWaitFor to 0x07. Etc. + * + * @param xClearOnExit If xClearOnExit is set to pdTRUE then any bits within + * uxBitsToWaitFor that are set within the event group will be cleared before + * xEventGroupWaitBits() returns if the wait condition was met (if the function + * returns for a reason other than a timeout). If xClearOnExit is set to + * pdFALSE then the bits set in the event group are not altered when the call to + * xEventGroupWaitBits() returns. + * + * @param xWaitForAllBits If xWaitForAllBits is set to pdTRUE then + * xEventGroupWaitBits() will return when either all the bits in uxBitsToWaitFor + * are set or the specified block time expires. If xWaitForAllBits is set to + * pdFALSE then xEventGroupWaitBits() will return when any one of the bits set + * in uxBitsToWaitFor is set or the specified block time expires. The block + * time is specified by the xTicksToWait parameter. + * + * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait + * for one/all (depending on the xWaitForAllBits value) of the bits specified by + * uxBitsToWaitFor to become set. + * + * @return The value of the event group at the time either the bits being waited + * for became set, or the block time expired. Test the return value to know + * which bits were set. If xEventGroupWaitBits() returned because its timeout + * expired then not all the bits being waited for will be set. If + * xEventGroupWaitBits() returned because the bits it was waiting for were set + * then the returned value is the event group value before any bits were + * automatically cleared in the case that xClearOnExit parameter was set to + * pdTRUE. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   void aFunction( EventGroupHandle_t xEventGroup )
+   {
+   EventBits_t uxBits;
+   const TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
+
+		// Wait a maximum of 100ms for either bit 0 or bit 4 to be set within
+		// the event group.  Clear the bits before exiting.
+		uxBits = xEventGroupWaitBits(
+					xEventGroup,	// The event group being tested.
+					BIT_0 | BIT_4,	// The bits within the event group to wait for.
+					pdTRUE,			// BIT_0 and BIT_4 should be cleared before returning.
+					pdFALSE,		// Don't wait for both bits, either bit will do.
+					xTicksToWait );	// Wait a maximum of 100ms for either bit to be set.
+
+		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
+		{
+			// xEventGroupWaitBits() returned because both bits were set.
+		}
+		else if( ( uxBits & BIT_0 ) != 0 )
+		{
+			// xEventGroupWaitBits() returned because just BIT_0 was set.
+		}
+		else if( ( uxBits & BIT_4 ) != 0 )
+		{
+			// xEventGroupWaitBits() returned because just BIT_4 was set.
+		}
+		else
+		{
+			// xEventGroupWaitBits() returned because xTicksToWait ticks passed
+			// without either BIT_0 or BIT_4 becoming set.
+		}
+   }
+   
+ * \defgroup xEventGroupWaitBits xEventGroupWaitBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear );
+ 
+ * + * Clear bits within an event group. This function cannot be called from an + * interrupt. + * + * @param xEventGroup The event group in which the bits are to be cleared. + * + * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear + * in the event group. For example, to clear bit 3 only, set uxBitsToClear to + * 0x08. To clear bit 3 and bit 0 set uxBitsToClear to 0x09. + * + * @return The value of the event group before the specified bits were cleared. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   void aFunction( EventGroupHandle_t xEventGroup )
+   {
+   EventBits_t uxBits;
+
+		// Clear bit 0 and bit 4 in xEventGroup.
+		uxBits = xEventGroupClearBits(
+								xEventGroup,	// The event group being updated.
+								BIT_0 | BIT_4 );// The bits being cleared.
+
+		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
+		{
+			// Both bit 0 and bit 4 were set before xEventGroupClearBits() was
+			// called.  Both will now be clear (not set).
+		}
+		else if( ( uxBits & BIT_0 ) != 0 )
+		{
+			// Bit 0 was set before xEventGroupClearBits() was called.  It will
+			// now be clear.
+		}
+		else if( ( uxBits & BIT_4 ) != 0 )
+		{
+			// Bit 4 was set before xEventGroupClearBits() was called.  It will
+			// now be clear.
+		}
+		else
+		{
+			// Neither bit 0 nor bit 4 were set in the first place.
+		}
+   }
+   
+ * \defgroup xEventGroupClearBits xEventGroupClearBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
+ 
+ * + * A version of xEventGroupClearBits() that can be called from an interrupt. + * + * Setting bits in an event group is not a deterministic operation because there + * are an unknown number of tasks that may be waiting for the bit or bits being + * set. FreeRTOS does not allow nondeterministic operations to be performed + * while interrupts are disabled, so protects event groups that are accessed + * from tasks by suspending the scheduler rather than disabling interrupts. As + * a result event groups cannot be accessed directly from an interrupt service + * routine. Therefore xEventGroupClearBitsFromISR() sends a message to the + * timer task to have the clear operation performed in the context of the timer + * task. + * + * @param xEventGroup The event group in which the bits are to be cleared. + * + * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear. + * For example, to clear bit 3 only, set uxBitsToClear to 0x08. To clear bit 3 + * and bit 0 set uxBitsToClear to 0x09. + * + * @return If the request to execute the function was posted successfully then + * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned + * if the timer service queue was full. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   // An event group which it is assumed has already been created by a call to
+   // xEventGroupCreate().
+   EventGroupHandle_t xEventGroup;
+
+   void anInterruptHandler( void )
+   {
+		// Clear bit 0 and bit 4 in xEventGroup.
+		xResult = xEventGroupClearBitsFromISR(
+							xEventGroup,	 // The event group being updated.
+							BIT_0 | BIT_4 ); // The bits being set.
+
+		if( xResult == pdPASS )
+		{
+			// The message was posted successfully.
+		}
+  }
+   
+ * \defgroup xEventGroupClearBitsFromISR xEventGroupClearBitsFromISR + * \ingroup EventGroup + */ +#if( configUSE_TRACE_FACILITY == 1 ) + BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) PRIVILEGED_FUNCTION; +#else + #define xEventGroupClearBitsFromISR( xEventGroup, uxBitsToClear ) xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL ) +#endif + +/** + * event_groups.h + *
+	EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
+ 
+ * + * Set bits within an event group. + * This function cannot be called from an interrupt. xEventGroupSetBitsFromISR() + * is a version that can be called from an interrupt. + * + * Setting bits in an event group will automatically unblock tasks that are + * blocked waiting for the bits. + * + * @param xEventGroup The event group in which the bits are to be set. + * + * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. + * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 + * and bit 0 set uxBitsToSet to 0x09. + * + * @return The value of the event group at the time the call to + * xEventGroupSetBits() returns. There are two reasons why the returned value + * might have the bits specified by the uxBitsToSet parameter cleared. First, + * if setting a bit results in a task that was waiting for the bit leaving the + * blocked state then it is possible the bit will be cleared automatically + * (see the xClearBitOnExit parameter of xEventGroupWaitBits()). Second, any + * unblocked (or otherwise Ready state) task that has a priority above that of + * the task that called xEventGroupSetBits() will execute and may change the + * event group value before the call to xEventGroupSetBits() returns. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   void aFunction( EventGroupHandle_t xEventGroup )
+   {
+   EventBits_t uxBits;
+
+		// Set bit 0 and bit 4 in xEventGroup.
+		uxBits = xEventGroupSetBits(
+							xEventGroup,	// The event group being updated.
+							BIT_0 | BIT_4 );// The bits being set.
+
+		if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
+		{
+			// Both bit 0 and bit 4 remained set when the function returned.
+		}
+		else if( ( uxBits & BIT_0 ) != 0 )
+		{
+			// Bit 0 remained set when the function returned, but bit 4 was
+			// cleared.  It might be that bit 4 was cleared automatically as a
+			// task that was waiting for bit 4 was removed from the Blocked
+			// state.
+		}
+		else if( ( uxBits & BIT_4 ) != 0 )
+		{
+			// Bit 4 remained set when the function returned, but bit 0 was
+			// cleared.  It might be that bit 0 was cleared automatically as a
+			// task that was waiting for bit 0 was removed from the Blocked
+			// state.
+		}
+		else
+		{
+			// Neither bit 0 nor bit 4 remained set.  It might be that a task
+			// was waiting for both of the bits to be set, and the bits were
+			// cleared as the task left the Blocked state.
+		}
+   }
+   
+ * \defgroup xEventGroupSetBits xEventGroupSetBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken );
+ 
+ * + * A version of xEventGroupSetBits() that can be called from an interrupt. + * + * Setting bits in an event group is not a deterministic operation because there + * are an unknown number of tasks that may be waiting for the bit or bits being + * set. FreeRTOS does not allow nondeterministic operations to be performed in + * interrupts or from critical sections. Therefore xEventGroupSetBitsFromISR() + * sends a message to the timer task to have the set operation performed in the + * context of the timer task - where a scheduler lock is used in place of a + * critical section. + * + * @param xEventGroup The event group in which the bits are to be set. + * + * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. + * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 + * and bit 0 set uxBitsToSet to 0x09. + * + * @param pxHigherPriorityTaskWoken As mentioned above, calling this function + * will result in a message being sent to the timer daemon task. If the + * priority of the timer daemon task is higher than the priority of the + * currently running task (the task the interrupt interrupted) then + * *pxHigherPriorityTaskWoken will be set to pdTRUE by + * xEventGroupSetBitsFromISR(), indicating that a context switch should be + * requested before the interrupt exits. For that reason + * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the + * example code below. + * + * @return If the request to execute the function was posted successfully then + * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned + * if the timer service queue was full. + * + * Example usage: +
+   #define BIT_0	( 1 << 0 )
+   #define BIT_4	( 1 << 4 )
+
+   // An event group which it is assumed has already been created by a call to
+   // xEventGroupCreate().
+   EventGroupHandle_t xEventGroup;
+
+   void anInterruptHandler( void )
+   {
+   BaseType_t xHigherPriorityTaskWoken, xResult;
+
+		// xHigherPriorityTaskWoken must be initialised to pdFALSE.
+		xHigherPriorityTaskWoken = pdFALSE;
+
+		// Set bit 0 and bit 4 in xEventGroup.
+		xResult = xEventGroupSetBitsFromISR(
+							xEventGroup,	// The event group being updated.
+							BIT_0 | BIT_4   // The bits being set.
+							&xHigherPriorityTaskWoken );
+
+		// Was the message posted successfully?
+		if( xResult == pdPASS )
+		{
+			// If xHigherPriorityTaskWoken is now set to pdTRUE then a context
+			// switch should be requested.  The macro used is port specific and
+			// will be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() -
+			// refer to the documentation page for the port being used.
+			portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+		}
+  }
+   
+ * \defgroup xEventGroupSetBitsFromISR xEventGroupSetBitsFromISR + * \ingroup EventGroup + */ +#if( configUSE_TRACE_FACILITY == 1 ) + BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; +#else + #define xEventGroupSetBitsFromISR( xEventGroup, uxBitsToSet, pxHigherPriorityTaskWoken ) xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken ) +#endif + +/** + * event_groups.h + *
+	EventBits_t xEventGroupSync(	EventGroupHandle_t xEventGroup,
+									const EventBits_t uxBitsToSet,
+									const EventBits_t uxBitsToWaitFor,
+									TickType_t xTicksToWait );
+ 
+ * + * Atomically set bits within an event group, then wait for a combination of + * bits to be set within the same event group. This functionality is typically + * used to synchronise multiple tasks, where each task has to wait for the other + * tasks to reach a synchronisation point before proceeding. + * + * This function cannot be used from an interrupt. + * + * The function will return before its block time expires if the bits specified + * by the uxBitsToWait parameter are set, or become set within that time. In + * this case all the bits specified by uxBitsToWait will be automatically + * cleared before the function returns. + * + * @param xEventGroup The event group in which the bits are being tested. The + * event group must have previously been created using a call to + * xEventGroupCreate(). + * + * @param uxBitsToSet The bits to set in the event group before determining + * if, and possibly waiting for, all the bits specified by the uxBitsToWait + * parameter are set. + * + * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test + * inside the event group. For example, to wait for bit 0 and bit 2 set + * uxBitsToWaitFor to 0x05. To wait for bits 0 and bit 1 and bit 2 set + * uxBitsToWaitFor to 0x07. Etc. + * + * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait + * for all of the bits specified by uxBitsToWaitFor to become set. + * + * @return The value of the event group at the time either the bits being waited + * for became set, or the block time expired. Test the return value to know + * which bits were set. If xEventGroupSync() returned because its timeout + * expired then not all the bits being waited for will be set. If + * xEventGroupSync() returned because all the bits it was waiting for were + * set then the returned value is the event group value before any bits were + * automatically cleared. + * + * Example usage: +
+ // Bits used by the three tasks.
+ #define TASK_0_BIT		( 1 << 0 )
+ #define TASK_1_BIT		( 1 << 1 )
+ #define TASK_2_BIT		( 1 << 2 )
+
+ #define ALL_SYNC_BITS ( TASK_0_BIT | TASK_1_BIT | TASK_2_BIT )
+
+ // Use an event group to synchronise three tasks.  It is assumed this event
+ // group has already been created elsewhere.
+ EventGroupHandle_t xEventBits;
+
+ void vTask0( void *pvParameters )
+ {
+ EventBits_t uxReturn;
+ TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
+
+	 for( ;; )
+	 {
+		// Perform task functionality here.
+
+		// Set bit 0 in the event flag to note this task has reached the
+		// sync point.  The other two tasks will set the other two bits defined
+		// by ALL_SYNC_BITS.  All three tasks have reached the synchronisation
+		// point when all the ALL_SYNC_BITS are set.  Wait a maximum of 100ms
+		// for this to happen.
+		uxReturn = xEventGroupSync( xEventBits, TASK_0_BIT, ALL_SYNC_BITS, xTicksToWait );
+
+		if( ( uxReturn & ALL_SYNC_BITS ) == ALL_SYNC_BITS )
+		{
+			// All three tasks reached the synchronisation point before the call
+			// to xEventGroupSync() timed out.
+		}
+	}
+ }
+
+ void vTask1( void *pvParameters )
+ {
+	 for( ;; )
+	 {
+		// Perform task functionality here.
+
+		// Set bit 1 in the event flag to note this task has reached the
+		// synchronisation point.  The other two tasks will set the other two
+		// bits defined by ALL_SYNC_BITS.  All three tasks have reached the
+		// synchronisation point when all the ALL_SYNC_BITS are set.  Wait
+		// indefinitely for this to happen.
+		xEventGroupSync( xEventBits, TASK_1_BIT, ALL_SYNC_BITS, portMAX_DELAY );
+
+		// xEventGroupSync() was called with an indefinite block time, so
+		// this task will only reach here if the syncrhonisation was made by all
+		// three tasks, so there is no need to test the return value.
+	 }
+ }
+
+ void vTask2( void *pvParameters )
+ {
+	 for( ;; )
+	 {
+		// Perform task functionality here.
+
+		// Set bit 2 in the event flag to note this task has reached the
+		// synchronisation point.  The other two tasks will set the other two
+		// bits defined by ALL_SYNC_BITS.  All three tasks have reached the
+		// synchronisation point when all the ALL_SYNC_BITS are set.  Wait
+		// indefinitely for this to happen.
+		xEventGroupSync( xEventBits, TASK_2_BIT, ALL_SYNC_BITS, portMAX_DELAY );
+
+		// xEventGroupSync() was called with an indefinite block time, so
+		// this task will only reach here if the syncrhonisation was made by all
+		// three tasks, so there is no need to test the return value.
+	}
+ }
+
+ 
+ * \defgroup xEventGroupSync xEventGroupSync + * \ingroup EventGroup + */ +EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + + +/** + * event_groups.h + *
+	EventBits_t xEventGroupGetBits( EventGroupHandle_t xEventGroup );
+ 
+ * + * Returns the current value of the bits in an event group. This function + * cannot be used from an interrupt. + * + * @param xEventGroup The event group being queried. + * + * @return The event group bits at the time xEventGroupGetBits() was called. + * + * \defgroup xEventGroupGetBits xEventGroupGetBits + * \ingroup EventGroup + */ +#define xEventGroupGetBits( xEventGroup ) xEventGroupClearBits( xEventGroup, 0 ) + +/** + * event_groups.h + *
+	EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup );
+ 
+ * + * A version of xEventGroupGetBits() that can be called from an ISR. + * + * @param xEventGroup The event group being queried. + * + * @return The event group bits at the time xEventGroupGetBitsFromISR() was called. + * + * \defgroup xEventGroupGetBitsFromISR xEventGroupGetBitsFromISR + * \ingroup EventGroup + */ +EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+	void xEventGroupDelete( EventGroupHandle_t xEventGroup );
+ 
+ * + * Delete an event group that was previously created by a call to + * xEventGroupCreate(). Tasks that are blocked on the event group will be + * unblocked and obtain 0 as the event group's value. + * + * @param xEventGroup The event group being deleted. + */ +void vEventGroupDelete( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; + +/* For internal use only. */ +void vEventGroupSetBitsCallback( void *pvEventGroup, const uint32_t ulBitsToSet ) PRIVILEGED_FUNCTION; +void vEventGroupClearBitsCallback( void *pvEventGroup, const uint32_t ulBitsToClear ) PRIVILEGED_FUNCTION; + + +#if (configUSE_TRACE_FACILITY == 1) + UBaseType_t uxEventGroupGetNumber( void* xEventGroup ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT_GROUPS_H */ + + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/list.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/list.h new file mode 100644 index 0000000..a080d27 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/list.h @@ -0,0 +1,453 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/* + * This is the list implementation used by the scheduler. While it is tailored + * heavily for the schedulers needs, it is also available for use by + * application code. + * + * list_ts can only store pointers to list_item_ts. Each ListItem_t contains a + * numeric value (xItemValue). Most of the time the lists are sorted in + * descending item value order. + * + * Lists are created already containing one list item. The value of this + * item is the maximum possible that can be stored, it is therefore always at + * the end of the list and acts as a marker. The list member pxHead always + * points to this marker - even though it is at the tail of the list. This + * is because the tail contains a wrap back pointer to the true head of + * the list. + * + * In addition to it's value, each list item contains a pointer to the next + * item in the list (pxNext), a pointer to the list it is in (pxContainer) + * and a pointer to back to the object that contains it. These later two + * pointers are included for efficiency of list manipulation. There is + * effectively a two way link between the object containing the list item and + * the list item itself. + * + * + * \page ListIntroduction List Implementation + * \ingroup FreeRTOSIntro + */ + +#ifndef INC_FREERTOS_H + #error FreeRTOS.h must be included before list.h +#endif + +#ifndef LIST_H +#define LIST_H + +/* + * The list structure members are modified from within interrupts, and therefore + * by rights should be declared volatile. However, they are only modified in a + * functionally atomic way (within critical sections of with the scheduler + * suspended) and are either passed by reference into a function or indexed via + * a volatile variable. Therefore, in all use cases tested so far, the volatile + * qualifier can be omitted in order to provide a moderate performance + * improvement without adversely affecting functional behaviour. The assembly + * instructions generated by the IAR, ARM and GCC compilers when the respective + * compiler's options were set for maximum optimisation has been inspected and + * deemed to be as intended. That said, as compiler technology advances, and + * especially if aggressive cross module optimisation is used (a use case that + * has not been exercised to any great extend) then it is feasible that the + * volatile qualifier will be needed for correct optimisation. It is expected + * that a compiler removing essential code because, without the volatile + * qualifier on the list structure members and with aggressive cross module + * optimisation, the compiler deemed the code unnecessary will result in + * complete and obvious failure of the scheduler. If this is ever experienced + * then the volatile qualifier can be inserted in the relevant places within the + * list structures by simply defining configLIST_VOLATILE to volatile in + * FreeRTOSConfig.h (as per the example at the bottom of this comment block). + * If configLIST_VOLATILE is not defined then the preprocessor directives below + * will simply #define configLIST_VOLATILE away completely. + * + * To use volatile list structure members then add the following line to + * FreeRTOSConfig.h (without the quotes): + * "#define configLIST_VOLATILE volatile" + */ +#ifndef configLIST_VOLATILE + #define configLIST_VOLATILE +#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* Macros that can be used to place known values within the list structures, +then check that the known values do not get corrupted during the execution of +the application. These may catch the list data structures being overwritten in +memory. They will not catch data errors caused by incorrect configuration or +use of FreeRTOS.*/ +#if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0 ) + /* Define the macros to do nothing. */ + #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE + #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE + #define listFIRST_LIST_INTEGRITY_CHECK_VALUE + #define listSECOND_LIST_INTEGRITY_CHECK_VALUE + #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) + #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) + #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) + #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) + #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) + #define listTEST_LIST_INTEGRITY( pxList ) +#else + /* Define macros that add new members into the list structures. */ + #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue1; + #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue2; + #define listFIRST_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue1; + #define listSECOND_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue2; + + /* Define macros that set the new structure members to known values. */ + #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue1 = pdINTEGRITY_CHECK_VALUE + #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue2 = pdINTEGRITY_CHECK_VALUE + #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) ( pxList )->xListIntegrityValue1 = pdINTEGRITY_CHECK_VALUE + #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) ( pxList )->xListIntegrityValue2 = pdINTEGRITY_CHECK_VALUE + + /* Define macros that will assert if one of the structure members does not + contain its expected value. */ + #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) configASSERT( ( ( pxItem )->xListItemIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxItem )->xListItemIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) + #define listTEST_LIST_INTEGRITY( pxList ) configASSERT( ( ( pxList )->xListIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxList )->xListIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) +#endif /* configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES */ + + +/* + * Definition of the only type of object that a list can contain. + */ +struct xLIST_ITEM +{ + listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + configLIST_VOLATILE TickType_t xItemValue; /*< The value being listed. In most cases this is used to sort the list in descending order. */ + struct xLIST_ITEM * configLIST_VOLATILE pxNext; /*< Pointer to the next ListItem_t in the list. */ + struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in the list. */ + void * pvOwner; /*< Pointer to the object (normally a TCB) that contains the list item. There is therefore a two way link between the object containing the list item and the list item itself. */ + void * configLIST_VOLATILE pvContainer; /*< Pointer to the list in which this list item is placed (if any). */ + listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ +}; +typedef struct xLIST_ITEM ListItem_t; /* For some reason lint wants this as two separate definitions. */ + +struct xMINI_LIST_ITEM +{ + listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + configLIST_VOLATILE TickType_t xItemValue; + struct xLIST_ITEM * configLIST_VOLATILE pxNext; + struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; +}; +typedef struct xMINI_LIST_ITEM MiniListItem_t; + +/* + * Definition of the type of queue used by the scheduler. + */ +typedef struct xLIST +{ + listFIRST_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + configLIST_VOLATILE UBaseType_t uxNumberOfItems; + ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last item returned by a call to listGET_OWNER_OF_NEXT_ENTRY (). */ + MiniListItem_t xListEnd; /*< List item that contains the maximum possible item value meaning it is always at the end of the list and is therefore used as a marker. */ + listSECOND_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ +} List_t; + +/* + * Access macro to set the owner of a list item. The owner of a list item + * is the object (usually a TCB) that contains the list item. + * + * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER + * \ingroup LinkedList + */ +#define listSET_LIST_ITEM_OWNER( pxListItem, pxOwner ) ( ( pxListItem )->pvOwner = ( void * ) ( pxOwner ) ) + +/* + * Access macro to get the owner of a list item. The owner of a list item + * is the object (usually a TCB) that contains the list item. + * + * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER + * \ingroup LinkedList + */ +#define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner ) + +/* + * Access macro to set the value of the list item. In most cases the value is + * used to sort the list in descending order. + * + * \page listSET_LIST_ITEM_VALUE listSET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listSET_LIST_ITEM_VALUE( pxListItem, xValue ) ( ( pxListItem )->xItemValue = ( xValue ) ) + +/* + * Access macro to retrieve the value of the list item. The value can + * represent anything - for example the priority of a task, or the time at + * which a task should be unblocked. + * + * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listGET_LIST_ITEM_VALUE( pxListItem ) ( ( pxListItem )->xItemValue ) + +/* + * Access macro to retrieve the value of the list item at the head of a given + * list. + * + * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemValue ) + +/* + * Return the list item at the head of the list. + * + * \page listGET_HEAD_ENTRY listGET_HEAD_ENTRY + * \ingroup LinkedList + */ +#define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext ) + +/* + * Return the list item at the head of the list. + * + * \page listGET_NEXT listGET_NEXT + * \ingroup LinkedList + */ +#define listGET_NEXT( pxListItem ) ( ( pxListItem )->pxNext ) + +/* + * Return the list item that marks the end of the list + * + * \page listGET_END_MARKER listGET_END_MARKER + * \ingroup LinkedList + */ +#define listGET_END_MARKER( pxList ) ( ( ListItem_t const * ) ( &( ( pxList )->xListEnd ) ) ) + +/* + * Access macro to determine if a list contains any items. The macro will + * only have the value true if the list is empty. + * + * \page listLIST_IS_EMPTY listLIST_IS_EMPTY + * \ingroup LinkedList + */ +#define listLIST_IS_EMPTY( pxList ) ( ( BaseType_t ) ( ( pxList )->uxNumberOfItems == ( UBaseType_t ) 0 ) ) + +/* + * Access macro to return the number of items in the list. + */ +#define listCURRENT_LIST_LENGTH( pxList ) ( ( pxList )->uxNumberOfItems ) + +/* + * Access function to obtain the owner of the next entry in a list. + * + * The list member pxIndex is used to walk through a list. Calling + * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list + * and returns that entry's pxOwner parameter. Using multiple calls to this + * function it is therefore possible to move through every item contained in + * a list. + * + * The pxOwner parameter of a list item is a pointer to the object that owns + * the list item. In the scheduler this is normally a task control block. + * The pxOwner parameter effectively creates a two way link between the list + * item and its owner. + * + * @param pxTCB pxTCB is set to the address of the owner of the next list item. + * @param pxList The list from which the next item owner is to be returned. + * + * \page listGET_OWNER_OF_NEXT_ENTRY listGET_OWNER_OF_NEXT_ENTRY + * \ingroup LinkedList + */ +#define listGET_OWNER_OF_NEXT_ENTRY( pxTCB, pxList ) \ +{ \ +List_t * const pxConstList = ( pxList ); \ + /* Increment the index to the next item and return the item, ensuring */ \ + /* we don't return the marker used at the end of the list. */ \ + ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ + if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \ + { \ + ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ + } \ + ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \ +} + + +/* + * Access function to obtain the owner of the first entry in a list. Lists + * are normally sorted in ascending item value order. + * + * This function returns the pxOwner member of the first item in the list. + * The pxOwner parameter of a list item is a pointer to the object that owns + * the list item. In the scheduler this is normally a task control block. + * The pxOwner parameter effectively creates a two way link between the list + * item and its owner. + * + * @param pxList The list from which the owner of the head item is to be + * returned. + * + * \page listGET_OWNER_OF_HEAD_ENTRY listGET_OWNER_OF_HEAD_ENTRY + * \ingroup LinkedList + */ +#define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( (&( ( pxList )->xListEnd ))->pxNext->pvOwner ) + +/* + * Check to see if a list item is within a list. The list item maintains a + * "container" pointer that points to the list it is in. All this macro does + * is check to see if the container and the list match. + * + * @param pxList The list we want to know if the list item is within. + * @param pxListItem The list item we want to know if is in the list. + * @return pdTRUE if the list item is in the list, otherwise pdFALSE. + */ +#define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( BaseType_t ) ( ( pxListItem )->pvContainer == ( void * ) ( pxList ) ) ) + +/* + * Return the list a list item is contained within (referenced from). + * + * @param pxListItem The list item being queried. + * @return A pointer to the List_t object that references the pxListItem + */ +#define listLIST_ITEM_CONTAINER( pxListItem ) ( ( pxListItem )->pvContainer ) + +/* + * This provides a crude means of knowing if a list has been initialised, as + * pxList->xListEnd.xItemValue is set to portMAX_DELAY by the vListInitialise() + * function. + */ +#define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portMAX_DELAY ) + +/* + * Must be called before a list is used! This initialises all the members + * of the list structure and inserts the xListEnd item into the list as a + * marker to the back of the list. + * + * @param pxList Pointer to the list being initialised. + * + * \page vListInitialise vListInitialise + * \ingroup LinkedList + */ +void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION; + +/* + * Must be called before a list item is used. This sets the list container to + * null so the item does not think that it is already contained in a list. + * + * @param pxItem Pointer to the list item being initialised. + * + * \page vListInitialiseItem vListInitialiseItem + * \ingroup LinkedList + */ +void vListInitialiseItem( ListItem_t * const pxItem ) PRIVILEGED_FUNCTION; + +/* + * Insert a list item into a list. The item will be inserted into the list in + * a position determined by its item value (descending item value order). + * + * @param pxList The list into which the item is to be inserted. + * + * @param pxNewListItem The item that is to be placed in the list. + * + * \page vListInsert vListInsert + * \ingroup LinkedList + */ +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; + +/* + * Insert a list item into a list. The item will be inserted in a position + * such that it will be the last item within the list returned by multiple + * calls to listGET_OWNER_OF_NEXT_ENTRY. + * + * The list member pxIndex is used to walk through a list. Calling + * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list. + * Placing an item in a list using vListInsertEnd effectively places the item + * in the list position pointed to by pxIndex. This means that every other + * item within the list will be returned by listGET_OWNER_OF_NEXT_ENTRY before + * the pxIndex parameter again points to the item being inserted. + * + * @param pxList The list into which the item is to be inserted. + * + * @param pxNewListItem The list item to be inserted into the list. + * + * \page vListInsertEnd vListInsertEnd + * \ingroup LinkedList + */ +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; + +/* + * Remove an item from a list. The list item has a pointer to the list that + * it is in, so only the list item need be passed into the function. + * + * @param uxListRemove The item to be removed. The item will remove itself from + * the list pointed to by it's pxContainer parameter. + * + * @return The number of items that remain in the list after the list item has + * been removed. + * + * \page uxListRemove uxListRemove + * \ingroup LinkedList + */ +UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) PRIVILEGED_FUNCTION; + +#ifdef __cplusplus +} +#endif + +#endif + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h new file mode 100644 index 0000000..8f7500b --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h @@ -0,0 +1,177 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/* + * When the MPU is used the standard (non MPU) API functions are mapped to + * equivalents that start "MPU_", the prototypes for which are defined in this + * header files. This will cause the application code to call the MPU_ version + * which wraps the non-MPU version with privilege promoting then demoting code, + * so the kernel code always runs will full privileges. + */ + + +#ifndef MPU_PROTOTYPES_H +#define MPU_PROTOTYPES_H + +/* MPU versions of tasks.h API function. */ +BaseType_t MPU_xTaskCreate( TaskFunction_t pxTaskCode, const char * const pcName, const uint16_t usStackDepth, void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask ); +TaskHandle_t MPU_xTaskCreateStatic( TaskFunction_t pxTaskCode, const char * const pcName, const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer ); +BaseType_t MPU_xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ); +void MPU_vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ); +void MPU_vTaskDelete( TaskHandle_t xTaskToDelete ); +void MPU_vTaskDelay( const TickType_t xTicksToDelay ); +void MPU_vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ); +BaseType_t MPU_xTaskAbortDelay( TaskHandle_t xTask ); +UBaseType_t MPU_uxTaskPriorityGet( TaskHandle_t xTask ); +eTaskState MPU_eTaskGetState( TaskHandle_t xTask ); +void MPU_vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ); +void MPU_vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ); +void MPU_vTaskSuspend( TaskHandle_t xTaskToSuspend ); +void MPU_vTaskResume( TaskHandle_t xTaskToResume ); +void MPU_vTaskStartScheduler( void ); +void MPU_vTaskSuspendAll( void ); +BaseType_t MPU_xTaskResumeAll( void ); +TickType_t MPU_xTaskGetTickCount( void ); +UBaseType_t MPU_uxTaskGetNumberOfTasks( void ); +char * MPU_pcTaskGetName( TaskHandle_t xTaskToQuery ); +TaskHandle_t MPU_xTaskGetHandle( const char *pcNameToQuery ); +UBaseType_t MPU_uxTaskGetStackHighWaterMark( TaskHandle_t xTask ); +void MPU_vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ); +TaskHookFunction_t MPU_xTaskGetApplicationTaskTag( TaskHandle_t xTask ); +void MPU_vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ); +void * MPU_pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ); +BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ); +TaskHandle_t MPU_xTaskGetIdleTaskHandle( void ); +UBaseType_t MPU_uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ); +void MPU_vTaskList( char * pcWriteBuffer ); +void MPU_vTaskGetRunTimeStats( char *pcWriteBuffer ); +BaseType_t MPU_xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ); +BaseType_t MPU_xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ); +uint32_t MPU_ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ); +BaseType_t MPU_xTaskNotifyStateClear( TaskHandle_t xTask ); +BaseType_t MPU_xTaskIncrementTick( void ); +TaskHandle_t MPU_xTaskGetCurrentTaskHandle( void ); +void MPU_vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ); +BaseType_t MPU_xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ); +void MPU_vTaskMissedYield( void ); +BaseType_t MPU_xTaskGetSchedulerState( void ); + +/* MPU versions of queue.h API function. */ +BaseType_t MPU_xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ); +BaseType_t MPU_xQueueGenericReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait, const BaseType_t xJustPeek ); +UBaseType_t MPU_uxQueueMessagesWaiting( const QueueHandle_t xQueue ); +UBaseType_t MPU_uxQueueSpacesAvailable( const QueueHandle_t xQueue ); +void MPU_vQueueDelete( QueueHandle_t xQueue ); +QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ); +QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ); +QueueHandle_t MPU_xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ); +QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ); +void* MPU_xQueueGetMutexHolder( QueueHandle_t xSemaphore ); +BaseType_t MPU_xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ); +BaseType_t MPU_xQueueGiveMutexRecursive( QueueHandle_t pxMutex ); +void MPU_vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcName ); +void MPU_vQueueUnregisterQueue( QueueHandle_t xQueue ); +const char * MPU_pcQueueGetName( QueueHandle_t xQueue ); +QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ); +QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ); +QueueSetHandle_t MPU_xQueueCreateSet( const UBaseType_t uxEventQueueLength ); +BaseType_t MPU_xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ); +BaseType_t MPU_xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ); +QueueSetMemberHandle_t MPU_xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ); +BaseType_t MPU_xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ); +void MPU_vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ); +UBaseType_t MPU_uxQueueGetQueueNumber( QueueHandle_t xQueue ); +uint8_t MPU_ucQueueGetQueueType( QueueHandle_t xQueue ); + +/* MPU versions of timers.h API function. */ +TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction ); +TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction, StaticTimer_t *pxTimerBuffer ); +void * MPU_pvTimerGetTimerID( const TimerHandle_t xTimer ); +void MPU_vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ); +BaseType_t MPU_xTimerIsTimerActive( TimerHandle_t xTimer ); +TaskHandle_t MPU_xTimerGetTimerDaemonTaskHandle( void ); +BaseType_t MPU_xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ); +const char * MPU_pcTimerGetName( TimerHandle_t xTimer ); +TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer ); +TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer ); +BaseType_t MPU_xTimerCreateTimerTask( void ); +BaseType_t MPU_xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ); + +/* MPU versions of event_group.h API function. */ +EventGroupHandle_t MPU_xEventGroupCreate( void ); +EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ); +EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ); +EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ); +EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ); +EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ); +void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ); +UBaseType_t MPU_uxEventGroupGetNumber( void* xEventGroup ); + +#endif /* MPU_PROTOTYPES_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h new file mode 100644 index 0000000..78f5a9a --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h @@ -0,0 +1,201 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef MPU_WRAPPERS_H +#define MPU_WRAPPERS_H + +/* This file redefines API functions to be called through a wrapper macro, but +only for ports that are using the MPU. */ +#ifdef portUSING_MPU_WRAPPERS + + /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE will be defined when this file is + included from queue.c or task.c to prevent it from having an effect within + those files. */ + #ifndef MPU_WRAPPERS_INCLUDED_FROM_API_FILE + + /* + * Map standard (non MPU) API functions to equivalents that start + * "MPU_". This will cause the application code to call the MPU_ + * version, which wraps the non-MPU version with privilege promoting + * then demoting code, so the kernel code always runs will full + * privileges. + */ + + /* Map standard tasks.h API functions to the MPU equivalents. */ + #define xTaskCreate MPU_xTaskCreate + #define xTaskCreateStatic MPU_xTaskCreateStatic + #define xTaskCreateRestricted MPU_xTaskCreateRestricted + #define vTaskAllocateMPURegions MPU_vTaskAllocateMPURegions + #define vTaskDelete MPU_vTaskDelete + #define vTaskDelay MPU_vTaskDelay + #define vTaskDelayUntil MPU_vTaskDelayUntil + #define xTaskAbortDelay MPU_xTaskAbortDelay + #define uxTaskPriorityGet MPU_uxTaskPriorityGet + #define eTaskGetState MPU_eTaskGetState + #define vTaskGetInfo MPU_vTaskGetInfo + #define vTaskPrioritySet MPU_vTaskPrioritySet + #define vTaskSuspend MPU_vTaskSuspend + #define vTaskResume MPU_vTaskResume + #define vTaskSuspendAll MPU_vTaskSuspendAll + #define xTaskResumeAll MPU_xTaskResumeAll + #define xTaskGetTickCount MPU_xTaskGetTickCount + #define uxTaskGetNumberOfTasks MPU_uxTaskGetNumberOfTasks + #define pcTaskGetName MPU_pcTaskGetName + #define xTaskGetHandle MPU_xTaskGetHandle + #define uxTaskGetStackHighWaterMark MPU_uxTaskGetStackHighWaterMark + #define vTaskSetApplicationTaskTag MPU_vTaskSetApplicationTaskTag + #define xTaskGetApplicationTaskTag MPU_xTaskGetApplicationTaskTag + #define vTaskSetThreadLocalStoragePointer MPU_vTaskSetThreadLocalStoragePointer + #define pvTaskGetThreadLocalStoragePointer MPU_pvTaskGetThreadLocalStoragePointer + #define xTaskCallApplicationTaskHook MPU_xTaskCallApplicationTaskHook + #define xTaskGetIdleTaskHandle MPU_xTaskGetIdleTaskHandle + #define uxTaskGetSystemState MPU_uxTaskGetSystemState + #define vTaskList MPU_vTaskList + #define vTaskGetRunTimeStats MPU_vTaskGetRunTimeStats + #define xTaskGenericNotify MPU_xTaskGenericNotify + #define xTaskNotifyWait MPU_xTaskNotifyWait + #define ulTaskNotifyTake MPU_ulTaskNotifyTake + #define xTaskNotifyStateClear MPU_xTaskNotifyStateClear + + #define xTaskGetCurrentTaskHandle MPU_xTaskGetCurrentTaskHandle + #define vTaskSetTimeOutState MPU_vTaskSetTimeOutState + #define xTaskCheckForTimeOut MPU_xTaskCheckForTimeOut + #define xTaskGetSchedulerState MPU_xTaskGetSchedulerState + + /* Map standard queue.h API functions to the MPU equivalents. */ + #define xQueueGenericSend MPU_xQueueGenericSend + #define xQueueGenericReceive MPU_xQueueGenericReceive + #define uxQueueMessagesWaiting MPU_uxQueueMessagesWaiting + #define uxQueueSpacesAvailable MPU_uxQueueSpacesAvailable + #define vQueueDelete MPU_vQueueDelete + #define xQueueCreateMutex MPU_xQueueCreateMutex + #define xQueueCreateMutexStatic MPU_xQueueCreateMutexStatic + #define xQueueCreateCountingSemaphore MPU_xQueueCreateCountingSemaphore + #define xQueueCreateCountingSemaphoreStatic MPU_xQueueCreateCountingSemaphoreStatic + #define xQueueGetMutexHolder MPU_xQueueGetMutexHolder + #define xQueueTakeMutexRecursive MPU_xQueueTakeMutexRecursive + #define xQueueGiveMutexRecursive MPU_xQueueGiveMutexRecursive + #define xQueueGenericCreate MPU_xQueueGenericCreate + #define xQueueGenericCreateStatic MPU_xQueueGenericCreateStatic + #define xQueueCreateSet MPU_xQueueCreateSet + #define xQueueAddToSet MPU_xQueueAddToSet + #define xQueueRemoveFromSet MPU_xQueueRemoveFromSet + #define xQueueSelectFromSet MPU_xQueueSelectFromSet + #define xQueueGenericReset MPU_xQueueGenericReset + + #if( configQUEUE_REGISTRY_SIZE > 0 ) + #define vQueueAddToRegistry MPU_vQueueAddToRegistry + #define vQueueUnregisterQueue MPU_vQueueUnregisterQueue + #define pcQueueGetName MPU_pcQueueGetName + #endif + + /* Map standard timer.h API functions to the MPU equivalents. */ + #define xTimerCreate MPU_xTimerCreate + #define xTimerCreateStatic MPU_xTimerCreateStatic + #define pvTimerGetTimerID MPU_pvTimerGetTimerID + #define vTimerSetTimerID MPU_vTimerSetTimerID + #define xTimerIsTimerActive MPU_xTimerIsTimerActive + #define xTimerGetTimerDaemonTaskHandle MPU_xTimerGetTimerDaemonTaskHandle + #define xTimerPendFunctionCall MPU_xTimerPendFunctionCall + #define pcTimerGetName MPU_pcTimerGetName + #define xTimerGetPeriod MPU_xTimerGetPeriod + #define xTimerGetExpiryTime MPU_xTimerGetExpiryTime + #define xTimerGenericCommand MPU_xTimerGenericCommand + + /* Map standard event_group.h API functions to the MPU equivalents. */ + #define xEventGroupCreate MPU_xEventGroupCreate + #define xEventGroupCreateStatic MPU_xEventGroupCreateStatic + #define xEventGroupWaitBits MPU_xEventGroupWaitBits + #define xEventGroupClearBits MPU_xEventGroupClearBits + #define xEventGroupSetBits MPU_xEventGroupSetBits + #define xEventGroupSync MPU_xEventGroupSync + #define vEventGroupDelete MPU_vEventGroupDelete + + /* Remove the privileged function macro. */ + #define PRIVILEGED_FUNCTION + + #else /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ + + /* Ensure API functions go in the privileged execution section. */ + #define PRIVILEGED_FUNCTION __attribute__((section("privileged_functions"))) + #define PRIVILEGED_DATA __attribute__((section("privileged_data"))) + + #endif /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ + +#else /* portUSING_MPU_WRAPPERS */ + + #define PRIVILEGED_FUNCTION + #define PRIVILEGED_DATA + #define portUSING_MPU_WRAPPERS 0 + +#endif /* portUSING_MPU_WRAPPERS */ + + +#endif /* MPU_WRAPPERS_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h new file mode 100644 index 0000000..b9f8be3 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h @@ -0,0 +1,207 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/*----------------------------------------------------------- + * Portable layer API. Each function must be defined for each port. + *----------------------------------------------------------*/ + +#ifndef PORTABLE_H +#define PORTABLE_H + +/* Each FreeRTOS port has a unique portmacro.h header file. Originally a +pre-processor definition was used to ensure the pre-processor found the correct +portmacro.h file for the port being used. That scheme was deprecated in favour +of setting the compiler's include path such that it found the correct +portmacro.h file - removing the need for the constant and allowing the +portmacro.h file to be located anywhere in relation to the port being used. +Purely for reasons of backward compatibility the old method is still valid, but +to make it clear that new projects should not use it, support for the port +specific constants has been moved into the deprecated_definitions.h header +file. */ +#include "deprecated_definitions.h" + +/* If portENTER_CRITICAL is not defined then including deprecated_definitions.h +did not result in a portmacro.h header file being included - and it should be +included here. In this case the path to the correct portmacro.h header file +must be set in the compiler's include path. */ +#ifndef portENTER_CRITICAL + #include "portmacro.h" +#endif + +#if portBYTE_ALIGNMENT == 32 + #define portBYTE_ALIGNMENT_MASK ( 0x001f ) +#endif + +#if portBYTE_ALIGNMENT == 16 + #define portBYTE_ALIGNMENT_MASK ( 0x000f ) +#endif + +#if portBYTE_ALIGNMENT == 8 + #define portBYTE_ALIGNMENT_MASK ( 0x0007 ) +#endif + +#if portBYTE_ALIGNMENT == 4 + #define portBYTE_ALIGNMENT_MASK ( 0x0003 ) +#endif + +#if portBYTE_ALIGNMENT == 2 + #define portBYTE_ALIGNMENT_MASK ( 0x0001 ) +#endif + +#if portBYTE_ALIGNMENT == 1 + #define portBYTE_ALIGNMENT_MASK ( 0x0000 ) +#endif + +#ifndef portBYTE_ALIGNMENT_MASK + #error "Invalid portBYTE_ALIGNMENT definition" +#endif + +#ifndef portNUM_CONFIGURABLE_REGIONS + #define portNUM_CONFIGURABLE_REGIONS 1 +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#include "mpu_wrappers.h" + +/* + * Setup the stack of a new task so it is ready to be placed under the + * scheduler control. The registers have to be placed on the stack in + * the order that the port expects to find them. + * + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION; +#else + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION; +#endif + +/* Used by heap_5.c. */ +typedef struct HeapRegion +{ + uint8_t *pucStartAddress; + size_t xSizeInBytes; +} HeapRegion_t; + +/* + * Used to define multiple heap regions for use by heap_5.c. This function + * must be called before any calls to pvPortMalloc() - not creating a task, + * queue, semaphore, mutex, software timer, event group, etc. will result in + * pvPortMalloc being called. + * + * pxHeapRegions passes in an array of HeapRegion_t structures - each of which + * defines a region of memory that can be used as the heap. The array is + * terminated by a HeapRegions_t structure that has a size of 0. The region + * with the lowest start address must appear first in the array. + */ +void vPortDefineHeapRegions( const HeapRegion_t * const pxHeapRegions ) PRIVILEGED_FUNCTION; + + +/* + * Map to the memory management routines required for the port. + */ +void *pvPortMalloc( size_t xSize ) PRIVILEGED_FUNCTION; +void vPortFree( void *pv ) PRIVILEGED_FUNCTION; +void vPortInitialiseBlocks( void ) PRIVILEGED_FUNCTION; +size_t xPortGetFreeHeapSize( void ) PRIVILEGED_FUNCTION; +size_t xPortGetMinimumEverFreeHeapSize( void ) PRIVILEGED_FUNCTION; + +/* + * Setup the hardware ready for the scheduler to take control. This generally + * sets up a tick interrupt and sets timers for the correct tick frequency. + */ +BaseType_t xPortStartScheduler( void ) PRIVILEGED_FUNCTION; + +/* + * Undo any hardware/ISR setup that was performed by xPortStartScheduler() so + * the hardware is left in its original condition after the scheduler stops + * executing. + */ +void vPortEndScheduler( void ) PRIVILEGED_FUNCTION; + +/* + * The structures and methods of manipulating the MPU are contained within the + * port layer. + * + * Fills the xMPUSettings structure with the memory region information + * contained in xRegions. + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + struct xMEMORY_REGION; + void vPortStoreTaskMPUSettings( xMPU_SETTINGS *xMPUSettings, const struct xMEMORY_REGION * const xRegions, StackType_t *pxBottomOfStack, uint32_t ulStackDepth ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* PORTABLE_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h new file mode 100644 index 0000000..0b63fd8 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h @@ -0,0 +1,161 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef PROJDEFS_H +#define PROJDEFS_H + +/* + * Defines the prototype to which task functions must conform. Defined in this + * file to ensure the type is known before portable.h is included. + */ +typedef void (*TaskFunction_t)( void * ); + +/* Converts a time in milliseconds to a time in ticks. This macro can be +overridden by a macro of the same name defined in FreeRTOSConfig.h in case the +definition here is not suitable for your application. */ +#ifndef pdMS_TO_TICKS + #define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) ) +#endif + +#define pdFALSE ( ( BaseType_t ) 0 ) +#define pdTRUE ( ( BaseType_t ) 1 ) + +#define pdPASS ( pdTRUE ) +#define pdFAIL ( pdFALSE ) +#define errQUEUE_EMPTY ( ( BaseType_t ) 0 ) +#define errQUEUE_FULL ( ( BaseType_t ) 0 ) + +/* FreeRTOS error definitions. */ +#define errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ( -1 ) +#define errQUEUE_BLOCKED ( -4 ) +#define errQUEUE_YIELD ( -5 ) + +/* Macros used for basic data corruption checks. */ +#ifndef configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES + #define configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES 0 +#endif + +#if( configUSE_16_BIT_TICKS == 1 ) + #define pdINTEGRITY_CHECK_VALUE 0x5a5a +#else + #define pdINTEGRITY_CHECK_VALUE 0x5a5a5a5aUL +#endif + +/* The following errno values are used by FreeRTOS+ components, not FreeRTOS +itself. */ +#define pdFREERTOS_ERRNO_NONE 0 /* No errors */ +#define pdFREERTOS_ERRNO_ENOENT 2 /* No such file or directory */ +#define pdFREERTOS_ERRNO_EINTR 4 /* Interrupted system call */ +#define pdFREERTOS_ERRNO_EIO 5 /* I/O error */ +#define pdFREERTOS_ERRNO_ENXIO 6 /* No such device or address */ +#define pdFREERTOS_ERRNO_EBADF 9 /* Bad file number */ +#define pdFREERTOS_ERRNO_EAGAIN 11 /* No more processes */ +#define pdFREERTOS_ERRNO_EWOULDBLOCK 11 /* Operation would block */ +#define pdFREERTOS_ERRNO_ENOMEM 12 /* Not enough memory */ +#define pdFREERTOS_ERRNO_EACCES 13 /* Permission denied */ +#define pdFREERTOS_ERRNO_EFAULT 14 /* Bad address */ +#define pdFREERTOS_ERRNO_EBUSY 16 /* Mount device busy */ +#define pdFREERTOS_ERRNO_EEXIST 17 /* File exists */ +#define pdFREERTOS_ERRNO_EXDEV 18 /* Cross-device link */ +#define pdFREERTOS_ERRNO_ENODEV 19 /* No such device */ +#define pdFREERTOS_ERRNO_ENOTDIR 20 /* Not a directory */ +#define pdFREERTOS_ERRNO_EISDIR 21 /* Is a directory */ +#define pdFREERTOS_ERRNO_EINVAL 22 /* Invalid argument */ +#define pdFREERTOS_ERRNO_ENOSPC 28 /* No space left on device */ +#define pdFREERTOS_ERRNO_ESPIPE 29 /* Illegal seek */ +#define pdFREERTOS_ERRNO_EROFS 30 /* Read only file system */ +#define pdFREERTOS_ERRNO_EUNATCH 42 /* Protocol driver not attached */ +#define pdFREERTOS_ERRNO_EBADE 50 /* Invalid exchange */ +#define pdFREERTOS_ERRNO_EFTYPE 79 /* Inappropriate file type or format */ +#define pdFREERTOS_ERRNO_ENMFILE 89 /* No more files */ +#define pdFREERTOS_ERRNO_ENOTEMPTY 90 /* Directory not empty */ +#define pdFREERTOS_ERRNO_ENAMETOOLONG 91 /* File or path name too long */ +#define pdFREERTOS_ERRNO_EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ +#define pdFREERTOS_ERRNO_ENOBUFS 105 /* No buffer space available */ +#define pdFREERTOS_ERRNO_ENOPROTOOPT 109 /* Protocol not available */ +#define pdFREERTOS_ERRNO_EADDRINUSE 112 /* Address already in use */ +#define pdFREERTOS_ERRNO_ETIMEDOUT 116 /* Connection timed out */ +#define pdFREERTOS_ERRNO_EINPROGRESS 119 /* Connection already in progress */ +#define pdFREERTOS_ERRNO_EALREADY 120 /* Socket already connected */ +#define pdFREERTOS_ERRNO_EADDRNOTAVAIL 125 /* Address not available */ +#define pdFREERTOS_ERRNO_EISCONN 127 /* Socket is already connected */ +#define pdFREERTOS_ERRNO_ENOTCONN 128 /* Socket is not connected */ +#define pdFREERTOS_ERRNO_ENOMEDIUM 135 /* No medium inserted */ +#define pdFREERTOS_ERRNO_EILSEQ 138 /* An invalid UTF-16 sequence was encountered. */ +#define pdFREERTOS_ERRNO_ECANCELED 140 /* Operation canceled. */ + +/* The following endian values are used by FreeRTOS+ components, not FreeRTOS +itself. */ +#define pdFREERTOS_LITTLE_ENDIAN 0 +#define pdFREERTOS_BIG_ENDIAN 1 + +#endif /* PROJDEFS_H */ + + + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h new file mode 100644 index 0000000..30be360 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h @@ -0,0 +1,1798 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + + +#ifndef QUEUE_H +#define QUEUE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include queue.h" +#endif + +#ifdef __cplusplus +extern "C" { +#endif + + +/** + * Type by which queues are referenced. For example, a call to xQueueCreate() + * returns an QueueHandle_t variable that can then be used as a parameter to + * xQueueSend(), xQueueReceive(), etc. + */ +typedef void * QueueHandle_t; + +/** + * Type by which queue sets are referenced. For example, a call to + * xQueueCreateSet() returns an xQueueSet variable that can then be used as a + * parameter to xQueueSelectFromSet(), xQueueAddToSet(), etc. + */ +typedef void * QueueSetHandle_t; + +/** + * Queue sets can contain both queues and semaphores, so the + * QueueSetMemberHandle_t is defined as a type to be used where a parameter or + * return value can be either an QueueHandle_t or an SemaphoreHandle_t. + */ +typedef void * QueueSetMemberHandle_t; + +/* For internal use only. */ +#define queueSEND_TO_BACK ( ( BaseType_t ) 0 ) +#define queueSEND_TO_FRONT ( ( BaseType_t ) 1 ) +#define queueOVERWRITE ( ( BaseType_t ) 2 ) + +/* For internal use only. These definitions *must* match those in queue.c. */ +#define queueQUEUE_TYPE_BASE ( ( uint8_t ) 0U ) +#define queueQUEUE_TYPE_SET ( ( uint8_t ) 0U ) +#define queueQUEUE_TYPE_MUTEX ( ( uint8_t ) 1U ) +#define queueQUEUE_TYPE_COUNTING_SEMAPHORE ( ( uint8_t ) 2U ) +#define queueQUEUE_TYPE_BINARY_SEMAPHORE ( ( uint8_t ) 3U ) +#define queueQUEUE_TYPE_RECURSIVE_MUTEX ( ( uint8_t ) 4U ) + +/** + * queue. h + *
+ QueueHandle_t xQueueCreate(
+							  UBaseType_t uxQueueLength,
+							  UBaseType_t uxItemSize
+						  );
+ * 
+ * + * Creates a new queue instance, and returns a handle by which the new queue + * can be referenced. + * + * Internally, within the FreeRTOS implementation, queues use two blocks of + * memory. The first block is used to hold the queue's data structures. The + * second block is used to hold items placed into the queue. If a queue is + * created using xQueueCreate() then both blocks of memory are automatically + * dynamically allocated inside the xQueueCreate() function. (see + * http://www.freertos.org/a00111.html). If a queue is created using + * xQueueCreateStatic() then the application writer must provide the memory that + * will get used by the queue. xQueueCreateStatic() therefore allows a queue to + * be created without using any dynamic memory allocation. + * + * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html + * + * @param uxQueueLength The maximum number of items that the queue can contain. + * + * @param uxItemSize The number of bytes each item in the queue will require. + * Items are queued by copy, not by reference, so this is the number of bytes + * that will be copied for each posted item. Each item on the queue must be + * the same size. + * + * @return If the queue is successfully create then a handle to the newly + * created queue is returned. If the queue cannot be created then 0 is + * returned. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ };
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+	if( xQueue1 == 0 )
+	{
+		// Queue was not created and must not be used.
+	}
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+	if( xQueue2 == 0 )
+	{
+		// Queue was not created and must not be used.
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueCreate xQueueCreate + * \ingroup QueueManagement + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxItemSize ), ( queueQUEUE_TYPE_BASE ) ) +#endif + +/** + * queue. h + *
+ QueueHandle_t xQueueCreateStatic(
+							  UBaseType_t uxQueueLength,
+							  UBaseType_t uxItemSize,
+							  uint8_t *pucQueueStorageBuffer,
+							  StaticQueue_t *pxQueueBuffer
+						  );
+ * 
+ * + * Creates a new queue instance, and returns a handle by which the new queue + * can be referenced. + * + * Internally, within the FreeRTOS implementation, queues use two blocks of + * memory. The first block is used to hold the queue's data structures. The + * second block is used to hold items placed into the queue. If a queue is + * created using xQueueCreate() then both blocks of memory are automatically + * dynamically allocated inside the xQueueCreate() function. (see + * http://www.freertos.org/a00111.html). If a queue is created using + * xQueueCreateStatic() then the application writer must provide the memory that + * will get used by the queue. xQueueCreateStatic() therefore allows a queue to + * be created without using any dynamic memory allocation. + * + * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html + * + * @param uxQueueLength The maximum number of items that the queue can contain. + * + * @param uxItemSize The number of bytes each item in the queue will require. + * Items are queued by copy, not by reference, so this is the number of bytes + * that will be copied for each posted item. Each item on the queue must be + * the same size. + * + * @param pucQueueStorageBuffer If uxItemSize is not zero then + * pucQueueStorageBuffer must point to a uint8_t array that is at least large + * enough to hold the maximum number of items that can be in the queue at any + * one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is + * zero then pucQueueStorageBuffer can be NULL. + * + * @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which + * will be used to hold the queue's data structure. + * + * @return If the queue is created then a handle to the created queue is + * returned. If pxQueueBuffer is NULL then NULL is returned. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ };
+
+ #define QUEUE_LENGTH 10
+ #define ITEM_SIZE sizeof( uint32_t )
+
+ // xQueueBuffer will hold the queue structure.
+ StaticQueue_t xQueueBuffer;
+
+ // ucQueueStorage will hold the items posted to the queue.  Must be at least
+ // [(queue length) * ( queue item size)] bytes long.
+ uint8_t ucQueueStorage[ QUEUE_LENGTH * ITEM_SIZE ];
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( QUEUE_LENGTH, // The number of items the queue can hold.
+							ITEM_SIZE	  // The size of each item in the queue
+							&( ucQueueStorage[ 0 ] ), // The buffer that will hold the items in the queue.
+							&xQueueBuffer ); // The buffer that will hold the queue structure.
+
+	// The queue is guaranteed to be created successfully as no dynamic memory
+	// allocation is used.  Therefore xQueue1 is now a handle to a valid queue.
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueCreateStatic xQueueCreateStatic + * \ingroup QueueManagement + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xQueueCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGenericCreateStatic( ( uxQueueLength ), ( uxItemSize ), ( pucQueueStorage ), ( pxQueueBuffer ), ( queueQUEUE_TYPE_BASE ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * queue. h + *
+ BaseType_t xQueueSendToToFront(
+								   QueueHandle_t	xQueue,
+								   const void		*pvItemToQueue,
+								   TickType_t		xTicksToWait
+							   );
+ * 
+ * + * This is a macro that calls xQueueGenericSend(). + * + * Post an item to the front of a queue. The item is queued by copy, not by + * reference. This function must not be called from an interrupt service + * routine. See xQueueSendFromISR () for an alternative which may be used + * in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueSendToFront( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueSendToFront( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT ) + +/** + * queue. h + *
+ BaseType_t xQueueSendToBack(
+								   QueueHandle_t	xQueue,
+								   const void		*pvItemToQueue,
+								   TickType_t		xTicksToWait
+							   );
+ * 
+ * + * This is a macro that calls xQueueGenericSend(). + * + * Post an item to the back of a queue. The item is queued by copy, not by + * reference. This function must not be called from an interrupt service + * routine. See xQueueSendFromISR () for an alternative which may be used + * in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the queue + * is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueSendToBack( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueSendToBack( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueSend(
+							  QueueHandle_t xQueue,
+							  const void * pvItemToQueue,
+							  TickType_t xTicksToWait
+						 );
+ * 
+ * + * This is a macro that calls xQueueGenericSend(). It is included for + * backward compatibility with versions of FreeRTOS.org that did not + * include the xQueueSendToFront() and xQueueSendToBack() macros. It is + * equivalent to xQueueSendToBack(). + * + * Post an item on a queue. The item is queued by copy, not by reference. + * This function must not be called from an interrupt service routine. + * See xQueueSendFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueOverwrite(
+							  QueueHandle_t xQueue,
+							  const void * pvItemToQueue
+						 );
+ * 
+ * + * Only for use with queues that have a length of one - so the queue is either + * empty or full. + * + * Post an item on a queue. If the queue is already full then overwrite the + * value held in the queue. The item is queued by copy, not by reference. + * + * This function must not be called from an interrupt service routine. + * See xQueueOverwriteFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle of the queue to which the data is being sent. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @return xQueueOverwrite() is a macro that calls xQueueGenericSend(), and + * therefore has the same return values as xQueueSendToFront(). However, pdPASS + * is the only value that can be returned because xQueueOverwrite() will write + * to the queue even when the queue is already full. + * + * Example usage: +
+
+ void vFunction( void *pvParameters )
+ {
+ QueueHandle_t xQueue;
+ uint32_t ulVarToSend, ulValReceived;
+
+	// Create a queue to hold one uint32_t value.  It is strongly
+	// recommended *not* to use xQueueOverwrite() on queues that can
+	// contain more than one value, and doing so will trigger an assertion
+	// if configASSERT() is defined.
+	xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
+
+	// Write the value 10 to the queue using xQueueOverwrite().
+	ulVarToSend = 10;
+	xQueueOverwrite( xQueue, &ulVarToSend );
+
+	// Peeking the queue should now return 10, but leave the value 10 in
+	// the queue.  A block time of zero is used as it is known that the
+	// queue holds a value.
+	ulValReceived = 0;
+	xQueuePeek( xQueue, &ulValReceived, 0 );
+
+	if( ulValReceived != 10 )
+	{
+		// Error unless the item was removed by a different task.
+	}
+
+	// The queue is still full.  Use xQueueOverwrite() to overwrite the
+	// value held in the queue with 100.
+	ulVarToSend = 100;
+	xQueueOverwrite( xQueue, &ulVarToSend );
+
+	// This time read from the queue, leaving the queue empty once more.
+	// A block time of 0 is used again.
+	xQueueReceive( xQueue, &ulValReceived, 0 );
+
+	// The value read should be the last value written, even though the
+	// queue was already full when the value was written.
+	if( ulValReceived != 100 )
+	{
+		// Error!
+	}
+
+	// ...
+}
+ 
+ * \defgroup xQueueOverwrite xQueueOverwrite + * \ingroup QueueManagement + */ +#define xQueueOverwrite( xQueue, pvItemToQueue ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), 0, queueOVERWRITE ) + + +/** + * queue. h + *
+ BaseType_t xQueueGenericSend(
+									QueueHandle_t xQueue,
+									const void * pvItemToQueue,
+									TickType_t xTicksToWait
+									BaseType_t xCopyPosition
+								);
+ * 
+ * + * It is preferred that the macros xQueueSend(), xQueueSendToFront() and + * xQueueSendToBack() are used in place of calling this function directly. + * + * Post an item on a queue. The item is queued by copy, not by reference. + * This function must not be called from an interrupt service routine. + * See xQueueSendFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the + * item at the back of the queue, or queueSEND_TO_FRONT to place the item + * at the front of the queue (for high priority messages). + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ uint32_t ulVar = 10UL;
+
+ void vATask( void *pvParameters )
+ {
+ QueueHandle_t xQueue1, xQueue2;
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 uint32_t values.
+	xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
+
+	// ...
+
+	if( xQueue1 != 0 )
+	{
+		// Send an uint32_t.  Wait for 10 ticks for space to become
+		// available if necessary.
+		if( xQueueGenericSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10, queueSEND_TO_BACK ) != pdPASS )
+		{
+			// Failed to post the message, even after 10 ticks.
+		}
+	}
+
+	if( xQueue2 != 0 )
+	{
+		// Send a pointer to a struct AMessage object.  Don't block if the
+		// queue is already full.
+		pxMessage = & xMessage;
+		xQueueGenericSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0, queueSEND_TO_BACK );
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueuePeek(
+							 QueueHandle_t xQueue,
+							 void *pvBuffer,
+							 TickType_t xTicksToWait
+						 );
+ * + * This is a macro that calls the xQueueGenericReceive() function. + * + * Receive an item from a queue without removing the item from the queue. + * The item is received by copy so a buffer of adequate size must be + * provided. The number of bytes copied into the buffer was defined when + * the queue was created. + * + * Successfully received items remain on the queue so will be returned again + * by the next call, or a call to xQueueReceive(). + * + * This macro must not be used in an interrupt service routine. See + * xQueuePeekFromISR() for an alternative that can be called from an interrupt + * service routine. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for an item to receive should the queue be empty at the time + * of the call. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * xQueuePeek() will return immediately if xTicksToWait is 0 and the queue + * is empty. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ QueueHandle_t xQueue;
+
+ // Task to create a queue and post a value.
+ void vATask( void *pvParameters )
+ {
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
+	if( xQueue == 0 )
+	{
+		// Failed to create the queue.
+	}
+
+	// ...
+
+	// Send a pointer to a struct AMessage object.  Don't block if the
+	// queue is already full.
+	pxMessage = & xMessage;
+	xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
+
+	// ... Rest of task code.
+ }
+
+ // Task to peek the data from the queue.
+ void vADifferentTask( void *pvParameters )
+ {
+ struct AMessage *pxRxedMessage;
+
+	if( xQueue != 0 )
+	{
+		// Peek a message on the created queue.  Block for 10 ticks if a
+		// message is not immediately available.
+		if( xQueuePeek( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
+		{
+			// pcRxedMessage now points to the struct AMessage variable posted
+			// by vATask, but the item still remains on the queue.
+		}
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueReceive xQueueReceive + * \ingroup QueueManagement + */ +#define xQueuePeek( xQueue, pvBuffer, xTicksToWait ) xQueueGenericReceive( ( xQueue ), ( pvBuffer ), ( xTicksToWait ), pdTRUE ) + +/** + * queue. h + *
+ BaseType_t xQueuePeekFromISR(
+									QueueHandle_t xQueue,
+									void *pvBuffer,
+								);
+ * + * A version of xQueuePeek() that can be called from an interrupt service + * routine (ISR). + * + * Receive an item from a queue without removing the item from the queue. + * The item is received by copy so a buffer of adequate size must be + * provided. The number of bytes copied into the buffer was defined when + * the queue was created. + * + * Successfully received items remain on the queue so will be returned again + * by the next call, or a call to xQueueReceive(). + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * \defgroup xQueuePeekFromISR xQueuePeekFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueueReceive(
+								 QueueHandle_t xQueue,
+								 void *pvBuffer,
+								 TickType_t xTicksToWait
+							);
+ * + * This is a macro that calls the xQueueGenericReceive() function. + * + * Receive an item from a queue. The item is received by copy so a buffer of + * adequate size must be provided. The number of bytes copied into the buffer + * was defined when the queue was created. + * + * Successfully received items are removed from the queue. + * + * This function must not be used in an interrupt service routine. See + * xQueueReceiveFromISR for an alternative that can. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for an item to receive should the queue be empty at the time + * of the call. xQueueReceive() will return immediately if xTicksToWait + * is zero and the queue is empty. The time is defined in tick periods so the + * constant portTICK_PERIOD_MS should be used to convert to real time if this is + * required. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ QueueHandle_t xQueue;
+
+ // Task to create a queue and post a value.
+ void vATask( void *pvParameters )
+ {
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
+	if( xQueue == 0 )
+	{
+		// Failed to create the queue.
+	}
+
+	// ...
+
+	// Send a pointer to a struct AMessage object.  Don't block if the
+	// queue is already full.
+	pxMessage = & xMessage;
+	xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
+
+	// ... Rest of task code.
+ }
+
+ // Task to receive from the queue.
+ void vADifferentTask( void *pvParameters )
+ {
+ struct AMessage *pxRxedMessage;
+
+	if( xQueue != 0 )
+	{
+		// Receive a message on the created queue.  Block for 10 ticks if a
+		// message is not immediately available.
+		if( xQueueReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
+		{
+			// pcRxedMessage now points to the struct AMessage variable posted
+			// by vATask.
+		}
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueReceive xQueueReceive + * \ingroup QueueManagement + */ +#define xQueueReceive( xQueue, pvBuffer, xTicksToWait ) xQueueGenericReceive( ( xQueue ), ( pvBuffer ), ( xTicksToWait ), pdFALSE ) + + +/** + * queue. h + *
+ BaseType_t xQueueGenericReceive(
+									   QueueHandle_t	xQueue,
+									   void	*pvBuffer,
+									   TickType_t	xTicksToWait
+									   BaseType_t	xJustPeek
+									);
+ * + * It is preferred that the macro xQueueReceive() be used rather than calling + * this function directly. + * + * Receive an item from a queue. The item is received by copy so a buffer of + * adequate size must be provided. The number of bytes copied into the buffer + * was defined when the queue was created. + * + * This function must not be used in an interrupt service routine. See + * xQueueReceiveFromISR for an alternative that can. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for an item to receive should the queue be empty at the time + * of the call. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * xQueueGenericReceive() will return immediately if the queue is empty and + * xTicksToWait is 0. + * + * @param xJustPeek When set to true, the item received from the queue is not + * actually removed from the queue - meaning a subsequent call to + * xQueueReceive() will return the same item. When set to false, the item + * being received from the queue is also removed from the queue. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: +
+ struct AMessage
+ {
+	char ucMessageID;
+	char ucData[ 20 ];
+ } xMessage;
+
+ QueueHandle_t xQueue;
+
+ // Task to create a queue and post a value.
+ void vATask( void *pvParameters )
+ {
+ struct AMessage *pxMessage;
+
+	// Create a queue capable of containing 10 pointers to AMessage structures.
+	// These should be passed by pointer as they contain a lot of data.
+	xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
+	if( xQueue == 0 )
+	{
+		// Failed to create the queue.
+	}
+
+	// ...
+
+	// Send a pointer to a struct AMessage object.  Don't block if the
+	// queue is already full.
+	pxMessage = & xMessage;
+	xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
+
+	// ... Rest of task code.
+ }
+
+ // Task to receive from the queue.
+ void vADifferentTask( void *pvParameters )
+ {
+ struct AMessage *pxRxedMessage;
+
+	if( xQueue != 0 )
+	{
+		// Receive a message on the created queue.  Block for 10 ticks if a
+		// message is not immediately available.
+		if( xQueueGenericReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
+		{
+			// pcRxedMessage now points to the struct AMessage variable posted
+			// by vATask.
+		}
+	}
+
+	// ... Rest of task code.
+ }
+ 
+ * \defgroup xQueueReceive xQueueReceive + * \ingroup QueueManagement + */ +BaseType_t xQueueGenericReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait, const BaseType_t xJustPeek ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue );
+ * + * Return the number of messages stored in a queue. + * + * @param xQueue A handle to the queue being queried. + * + * @return The number of messages available in the queue. + * + * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting + * \ingroup QueueManagement + */ +UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue );
+ * + * Return the number of free spaces available in a queue. This is equal to the + * number of items that can be sent to the queue before the queue becomes full + * if no items are removed. + * + * @param xQueue A handle to the queue being queried. + * + * @return The number of spaces available in the queue. + * + * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting + * \ingroup QueueManagement + */ +UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
void vQueueDelete( QueueHandle_t xQueue );
+ * + * Delete a queue - freeing all the memory allocated for storing of items + * placed on the queue. + * + * @param xQueue A handle to the queue to be deleted. + * + * \defgroup vQueueDelete vQueueDelete + * \ingroup QueueManagement + */ +void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueueSendToFrontFromISR(
+										 QueueHandle_t xQueue,
+										 const void *pvItemToQueue,
+										 BaseType_t *pxHigherPriorityTaskWoken
+									  );
+ 
+ * + * This is a macro that calls xQueueGenericSendFromISR(). + * + * Post an item to the front of a queue. It is safe to use this macro from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPrioritTaskWoken;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWoken = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post the byte.
+		xQueueSendToFrontFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.
+	if( xHigherPriorityTaskWoken )
+	{
+		taskYIELD ();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendToFrontFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_FRONT ) + + +/** + * queue. h + *
+ BaseType_t xQueueSendToBackFromISR(
+										 QueueHandle_t xQueue,
+										 const void *pvItemToQueue,
+										 BaseType_t *pxHigherPriorityTaskWoken
+									  );
+ 
+ * + * This is a macro that calls xQueueGenericSendFromISR(). + * + * Post an item to the back of a queue. It is safe to use this macro from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendToBackFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendToBackFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPriorityTaskWoken;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWoken = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post the byte.
+		xQueueSendToBackFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.
+	if( xHigherPriorityTaskWoken )
+	{
+		taskYIELD ();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendToBackFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueOverwriteFromISR(
+							  QueueHandle_t xQueue,
+							  const void * pvItemToQueue,
+							  BaseType_t *pxHigherPriorityTaskWoken
+						 );
+ * 
+ * + * A version of xQueueOverwrite() that can be used in an interrupt service + * routine (ISR). + * + * Only for use with queues that can hold a single item - so the queue is either + * empty or full. + * + * Post an item on a queue. If the queue is already full then overwrite the + * value held in the queue. The item is queued by copy, not by reference. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueOverwriteFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueOverwriteFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return xQueueOverwriteFromISR() is a macro that calls + * xQueueGenericSendFromISR(), and therefore has the same return values as + * xQueueSendToFrontFromISR(). However, pdPASS is the only value that can be + * returned because xQueueOverwriteFromISR() will write to the queue even when + * the queue is already full. + * + * Example usage: +
+
+ QueueHandle_t xQueue;
+
+ void vFunction( void *pvParameters )
+ {
+ 	// Create a queue to hold one uint32_t value.  It is strongly
+	// recommended *not* to use xQueueOverwriteFromISR() on queues that can
+	// contain more than one value, and doing so will trigger an assertion
+	// if configASSERT() is defined.
+	xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
+}
+
+void vAnInterruptHandler( void )
+{
+// xHigherPriorityTaskWoken must be set to pdFALSE before it is used.
+BaseType_t xHigherPriorityTaskWoken = pdFALSE;
+uint32_t ulVarToSend, ulValReceived;
+
+	// Write the value 10 to the queue using xQueueOverwriteFromISR().
+	ulVarToSend = 10;
+	xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
+
+	// The queue is full, but calling xQueueOverwriteFromISR() again will still
+	// pass because the value held in the queue will be overwritten with the
+	// new value.
+	ulVarToSend = 100;
+	xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
+
+	// Reading from the queue will now return 100.
+
+	// ...
+
+	if( xHigherPrioritytaskWoken == pdTRUE )
+	{
+		// Writing to the queue caused a task to unblock and the unblocked task
+		// has a priority higher than or equal to the priority of the currently
+		// executing task (the task this interrupt interrupted).  Perform a context
+		// switch so this interrupt returns directly to the unblocked task.
+		portYIELD_FROM_ISR(); // or portEND_SWITCHING_ISR() depending on the port.
+	}
+}
+ 
+ * \defgroup xQueueOverwriteFromISR xQueueOverwriteFromISR + * \ingroup QueueManagement + */ +#define xQueueOverwriteFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueOVERWRITE ) + +/** + * queue. h + *
+ BaseType_t xQueueSendFromISR(
+									 QueueHandle_t xQueue,
+									 const void *pvItemToQueue,
+									 BaseType_t *pxHigherPriorityTaskWoken
+								);
+ 
+ * + * This is a macro that calls xQueueGenericSendFromISR(). It is included + * for backward compatibility with versions of FreeRTOS.org that did not + * include the xQueueSendToBackFromISR() and xQueueSendToFrontFromISR() + * macros. + * + * Post an item to the back of a queue. It is safe to use this function from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPriorityTaskWoken;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWoken = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post the byte.
+		xQueueSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.
+	if( xHigherPriorityTaskWoken )
+	{
+		// Actual macro used here is port specific.
+		portYIELD_FROM_ISR ();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) + +/** + * queue. h + *
+ BaseType_t xQueueGenericSendFromISR(
+										   QueueHandle_t		xQueue,
+										   const	void	*pvItemToQueue,
+										   BaseType_t	*pxHigherPriorityTaskWoken,
+										   BaseType_t	xCopyPosition
+									   );
+ 
+ * + * It is preferred that the macros xQueueSendFromISR(), + * xQueueSendToFrontFromISR() and xQueueSendToBackFromISR() be used in place + * of calling this function directly. xQueueGiveFromISR() is an + * equivalent for use by semaphores that don't actually copy any data. + * + * Post an item on a queue. It is safe to use this function from within an + * interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueGenericSendFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueGenericSendFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the + * item at the back of the queue, or queueSEND_TO_FRONT to place the item + * at the front of the queue (for high priority messages). + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): +
+ void vBufferISR( void )
+ {
+ char cIn;
+ BaseType_t xHigherPriorityTaskWokenByPost;
+
+	// We have not woken a task at the start of the ISR.
+	xHigherPriorityTaskWokenByPost = pdFALSE;
+
+	// Loop until the buffer is empty.
+	do
+	{
+		// Obtain a byte from the buffer.
+		cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
+
+		// Post each byte.
+		xQueueGenericSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWokenByPost, queueSEND_TO_BACK );
+
+	} while( portINPUT_BYTE( BUFFER_COUNT ) );
+
+	// Now the buffer is empty we can switch context if necessary.  Note that the
+	// name of the yield function required is port specific.
+	if( xHigherPriorityTaskWokenByPost )
+	{
+		taskYIELD_YIELD_FROM_ISR();
+	}
+ }
+ 
+ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *
+ BaseType_t xQueueReceiveFromISR(
+									   QueueHandle_t	xQueue,
+									   void	*pvBuffer,
+									   BaseType_t *pxTaskWoken
+								   );
+ * 
+ * + * Receive an item from a queue. It is safe to use this function from within an + * interrupt service routine. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param pxTaskWoken A task may be blocked waiting for space to become + * available on the queue. If xQueueReceiveFromISR causes such a task to + * unblock *pxTaskWoken will get set to pdTRUE, otherwise *pxTaskWoken will + * remain unchanged. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: +
+
+ QueueHandle_t xQueue;
+
+ // Function to create a queue and post some values.
+ void vAFunction( void *pvParameters )
+ {
+ char cValueToPost;
+ const TickType_t xTicksToWait = ( TickType_t )0xff;
+
+	// Create a queue capable of containing 10 characters.
+	xQueue = xQueueCreate( 10, sizeof( char ) );
+	if( xQueue == 0 )
+	{
+		// Failed to create the queue.
+	}
+
+	// ...
+
+	// Post some characters that will be used within an ISR.  If the queue
+	// is full then this task will block for xTicksToWait ticks.
+	cValueToPost = 'a';
+	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
+	cValueToPost = 'b';
+	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
+
+	// ... keep posting characters ... this task may block when the queue
+	// becomes full.
+
+	cValueToPost = 'c';
+	xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
+ }
+
+ // ISR that outputs all the characters received on the queue.
+ void vISR_Routine( void )
+ {
+ BaseType_t xTaskWokenByReceive = pdFALSE;
+ char cRxedChar;
+
+	while( xQueueReceiveFromISR( xQueue, ( void * ) &cRxedChar, &xTaskWokenByReceive) )
+	{
+		// A character was received.  Output the character now.
+		vOutputCharacter( cRxedChar );
+
+		// If removing the character from the queue woke the task that was
+		// posting onto the queue cTaskWokenByReceive will have been set to
+		// pdTRUE.  No matter how many times this loop iterates only one
+		// task will be woken.
+	}
+
+	if( cTaskWokenByPost != ( char ) pdFALSE;
+	{
+		taskYIELD ();
+	}
+ }
+ 
+ * \defgroup xQueueReceiveFromISR xQueueReceiveFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/* + * Utilities to query queues that are safe to use from an ISR. These utilities + * should be used only from witin an ISR, or within a critical section. + */ +BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/* + * The functions defined above are for passing data to and from tasks. The + * functions below are the equivalents for passing data to and from + * co-routines. + * + * These functions are called from the co-routine macro implementation and + * should not be called directly from application code. Instead use the macro + * wrappers defined within croutine.h. + */ +BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ); +BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxTaskWoken ); +BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ); +BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ); + +/* + * For internal use only. Use xSemaphoreCreateMutex(), + * xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling + * these functions directly. + */ +QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; +void* xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Use xSemaphoreTakeMutexRecursive() or + * xSemaphoreGiveMutexRecursive() instead of calling these functions directly. + */ +BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGiveMutexRecursive( QueueHandle_t pxMutex ) PRIVILEGED_FUNCTION; + +/* + * Reset a queue back to its original empty state. The return value is now + * obsolete and is always set to pdPASS. + */ +#define xQueueReset( xQueue ) xQueueGenericReset( xQueue, pdFALSE ) + +/* + * The registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add + * a queue, semaphore or mutex handle to the registry if you want the handle + * to be available to a kernel aware debugger. If you are not using a kernel + * aware debugger then this function can be ignored. + * + * configQUEUE_REGISTRY_SIZE defines the maximum number of handles the + * registry can hold. configQUEUE_REGISTRY_SIZE must be greater than 0 + * within FreeRTOSConfig.h for the registry to be available. Its value + * does not effect the number of queues, semaphores and mutexes that can be + * created - just the number that the registry can hold. + * + * @param xQueue The handle of the queue being added to the registry. This + * is the handle returned by a call to xQueueCreate(). Semaphore and mutex + * handles can also be passed in here. + * + * @param pcName The name to be associated with the handle. This is the + * name that the kernel aware debugger will display. The queue registry only + * stores a pointer to the string - so the string must be persistent (global or + * preferably in ROM/Flash), not on the stack. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcName ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/* + * The registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add + * a queue, semaphore or mutex handle to the registry if you want the handle + * to be available to a kernel aware debugger, and vQueueUnregisterQueue() to + * remove the queue, semaphore or mutex from the register. If you are not using + * a kernel aware debugger then this function can be ignored. + * + * @param xQueue The handle of the queue being removed from the registry. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + void vQueueUnregisterQueue( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +#endif + +/* + * The queue registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call pcQueueGetName() to look + * up and return the name of a queue in the queue registry from the queue's + * handle. + * + * @param xQueue The handle of the queue the name of which will be returned. + * @return If the queue is in the registry then a pointer to the name of the + * queue is returned. If the queue is not in the registry then NULL is + * returned. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + const char *pcQueueGetName( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/* + * Generic version of the function used to creaet a queue using dynamic memory + * allocation. This is called by other functions and macros that create other + * RTOS objects that use the queue structure as their base. + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +#endif + +/* + * Generic version of the function used to creaet a queue using dynamic memory + * allocation. This is called by other functions and macros that create other + * RTOS objects that use the queue structure as their base. + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +#endif + +/* + * Queue sets provide a mechanism to allow a task to block (pend) on a read + * operation from multiple queues or semaphores simultaneously. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * A queue set must be explicitly created using a call to xQueueCreateSet() + * before it can be used. Once created, standard FreeRTOS queues and semaphores + * can be added to the set using calls to xQueueAddToSet(). + * xQueueSelectFromSet() is then used to determine which, if any, of the queues + * or semaphores contained in the set is in a state where a queue read or + * semaphore take operation would be successful. + * + * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html + * for reasons why queue sets are very rarely needed in practice as there are + * simpler methods of blocking on multiple objects. + * + * Note 2: Blocking on a queue set that contains a mutex will not cause the + * mutex holder to inherit the priority of the blocked task. + * + * Note 3: An additional 4 bytes of RAM is required for each space in a every + * queue added to a queue set. Therefore counting semaphores that have a high + * maximum count value should not be added to a queue set. + * + * Note 4: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param uxEventQueueLength Queue sets store events that occur on + * the queues and semaphores contained in the set. uxEventQueueLength specifies + * the maximum number of events that can be queued at once. To be absolutely + * certain that events are not lost uxEventQueueLength should be set to the + * total sum of the length of the queues added to the set, where binary + * semaphores and mutexes have a length of 1, and counting semaphores have a + * length set by their maximum count value. Examples: + * + If a queue set is to hold a queue of length 5, another queue of length 12, + * and a binary semaphore, then uxEventQueueLength should be set to + * (5 + 12 + 1), or 18. + * + If a queue set is to hold three binary semaphores then uxEventQueueLength + * should be set to (1 + 1 + 1 ), or 3. + * + If a queue set is to hold a counting semaphore that has a maximum count of + * 5, and a counting semaphore that has a maximum count of 3, then + * uxEventQueueLength should be set to (5 + 3), or 8. + * + * @return If the queue set is created successfully then a handle to the created + * queue set is returned. Otherwise NULL is returned. + */ +QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) PRIVILEGED_FUNCTION; + +/* + * Adds a queue or semaphore to a queue set that was previously created by a + * call to xQueueCreateSet(). + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * Note 1: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param xQueueOrSemaphore The handle of the queue or semaphore being added to + * the queue set (cast to an QueueSetMemberHandle_t type). + * + * @param xQueueSet The handle of the queue set to which the queue or semaphore + * is being added. + * + * @return If the queue or semaphore was successfully added to the queue set + * then pdPASS is returned. If the queue could not be successfully added to the + * queue set because it is already a member of a different queue set then pdFAIL + * is returned. + */ +BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* + * Removes a queue or semaphore from a queue set. A queue or semaphore can only + * be removed from a set if the queue or semaphore is empty. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * @param xQueueOrSemaphore The handle of the queue or semaphore being removed + * from the queue set (cast to an QueueSetMemberHandle_t type). + * + * @param xQueueSet The handle of the queue set in which the queue or semaphore + * is included. + * + * @return If the queue or semaphore was successfully removed from the queue set + * then pdPASS is returned. If the queue was not in the queue set, or the + * queue (or semaphore) was not empty, then pdFAIL is returned. + */ +BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* + * xQueueSelectFromSet() selects from the members of a queue set a queue or + * semaphore that either contains data (in the case of a queue) or is available + * to take (in the case of a semaphore). xQueueSelectFromSet() effectively + * allows a task to block (pend) on a read operation on all the queues and + * semaphores in a queue set simultaneously. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html + * for reasons why queue sets are very rarely needed in practice as there are + * simpler methods of blocking on multiple objects. + * + * Note 2: Blocking on a queue set that contains a mutex will not cause the + * mutex holder to inherit the priority of the blocked task. + * + * Note 3: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param xQueueSet The queue set on which the task will (potentially) block. + * + * @param xTicksToWait The maximum time, in ticks, that the calling task will + * remain in the Blocked state (with other tasks executing) to wait for a member + * of the queue set to be ready for a successful queue read or semaphore take + * operation. + * + * @return xQueueSelectFromSet() will return the handle of a queue (cast to + * a QueueSetMemberHandle_t type) contained in the queue set that contains data, + * or the handle of a semaphore (cast to a QueueSetMemberHandle_t type) contained + * in the queue set that is available, or NULL if no such queue or semaphore + * exists before before the specified block time expires. + */ +QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/* + * A version of xQueueSelectFromSet() that can be used from an ISR. + */ +QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* Not public API functions. */ +void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) PRIVILEGED_FUNCTION; +void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) PRIVILEGED_FUNCTION; +UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + + +#ifdef __cplusplus +} +#endif + +#endif /* QUEUE_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h new file mode 100644 index 0000000..a674b02 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h @@ -0,0 +1,1171 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef SEMAPHORE_H +#define SEMAPHORE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include semphr.h" +#endif + +#include "queue.h" + +typedef QueueHandle_t SemaphoreHandle_t; + +#define semBINARY_SEMAPHORE_QUEUE_LENGTH ( ( uint8_t ) 1U ) +#define semSEMAPHORE_QUEUE_ITEM_LENGTH ( ( uint8_t ) 0U ) +#define semGIVE_BLOCK_TIME ( ( TickType_t ) 0U ) + + +/** + * semphr. h + *
vSemaphoreCreateBinary( SemaphoreHandle_t xSemaphore )
+ * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * This old vSemaphoreCreateBinary() macro is now deprecated in favour of the + * xSemaphoreCreateBinary() function. Note that binary semaphores created using + * the vSemaphoreCreateBinary() macro are created in a state such that the + * first call to 'take' the semaphore would pass, whereas binary semaphores + * created using xSemaphoreCreateBinary() are created in a state such that the + * the semaphore must first be 'given' before it can be 'taken'. + * + * Macro that implements a semaphore by using the existing queue mechanism. + * The queue length is 1 as this is a binary semaphore. The data size is 0 + * as we don't want to actually store any data - we just want to know if the + * queue is empty or full. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @param xSemaphore Handle to the created semaphore. Should be of type SemaphoreHandle_t. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to vSemaphoreCreateBinary ().
+    // This is a macro so pass the variable in directly.
+    vSemaphoreCreateBinary( xSemaphore );
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup vSemaphoreCreateBinary vSemaphoreCreateBinary + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define vSemaphoreCreateBinary( xSemaphore ) \ + { \ + ( xSemaphore ) = xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ); \ + if( ( xSemaphore ) != NULL ) \ + { \ + ( void ) xSemaphoreGive( ( xSemaphore ) ); \ + } \ + } +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateBinary( void )
+ * + * Creates a new binary semaphore instance, and returns a handle by which the + * new semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, binary semaphores use a block + * of memory, in which the semaphore structure is stored. If a binary semaphore + * is created using xSemaphoreCreateBinary() then the required memory is + * automatically dynamically allocated inside the xSemaphoreCreateBinary() + * function. (see http://www.freertos.org/a00111.html). If a binary semaphore + * is created using xSemaphoreCreateBinaryStatic() then the application writer + * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a + * binary semaphore to be created without using any dynamic memory allocation. + * + * The old vSemaphoreCreateBinary() macro is now deprecated in favour of this + * xSemaphoreCreateBinary() function. Note that binary semaphores created using + * the vSemaphoreCreateBinary() macro are created in a state such that the + * first call to 'take' the semaphore would pass, whereas binary semaphores + * created using xSemaphoreCreateBinary() are created in a state such that the + * the semaphore must first be 'given' before it can be 'taken'. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @return Handle to the created semaphore, or NULL if the memory required to + * hold the semaphore's data structures could not be allocated. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateBinary().
+    // This is a macro so pass the variable in directly.
+    xSemaphore = xSemaphoreCreateBinary();
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateBinary xSemaphoreCreateBinary + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateBinary() xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateBinaryStatic( StaticSemaphore_t *pxSemaphoreBuffer )
+ * + * Creates a new binary semaphore instance, and returns a handle by which the + * new semaphore can be referenced. + * + * NOTE: In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, binary semaphores use a block + * of memory, in which the semaphore structure is stored. If a binary semaphore + * is created using xSemaphoreCreateBinary() then the required memory is + * automatically dynamically allocated inside the xSemaphoreCreateBinary() + * function. (see http://www.freertos.org/a00111.html). If a binary semaphore + * is created using xSemaphoreCreateBinaryStatic() then the application writer + * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a + * binary semaphore to be created without using any dynamic memory allocation. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the semaphore's data structure, removing the + * need for the memory to be allocated dynamically. + * + * @return If the semaphore is created then a handle to the created semaphore is + * returned. If pxSemaphoreBuffer is NULL then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+ StaticSemaphore_t xSemaphoreBuffer;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateBinary().
+    // The semaphore's data structures will be placed in the xSemaphoreBuffer
+    // variable, the address of which is passed into the function.  The
+    // function's parameter is not NULL, so the function will not attempt any
+    // dynamic memory allocation, and therefore the function will not return
+    // return NULL.
+    xSemaphore = xSemaphoreCreateBinary( &xSemaphoreBuffer );
+
+    // Rest of task code goes here.
+ }
+ 
+ * \defgroup xSemaphoreCreateBinaryStatic xSemaphoreCreateBinaryStatic + * \ingroup Semaphores + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateBinaryStatic( pxStaticSemaphore ) xQueueGenericCreateStatic( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticSemaphore, queueQUEUE_TYPE_BINARY_SEMAPHORE ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *
xSemaphoreTake(
+ *                   SemaphoreHandle_t xSemaphore,
+ *                   TickType_t xBlockTime
+ *               )
+ * + * Macro to obtain a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or + * xSemaphoreCreateCounting(). + * + * @param xSemaphore A handle to the semaphore being taken - obtained when + * the semaphore was created. + * + * @param xBlockTime The time in ticks to wait for the semaphore to become + * available. The macro portTICK_PERIOD_MS can be used to convert this to a + * real time. A block time of zero can be used to poll the semaphore. A block + * time of portMAX_DELAY can be used to block indefinitely (provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h). + * + * @return pdTRUE if the semaphore was obtained. pdFALSE + * if xBlockTime expired without the semaphore becoming available. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ // A task that creates a semaphore.
+ void vATask( void * pvParameters )
+ {
+    // Create the semaphore to guard a shared resource.
+    xSemaphore = xSemaphoreCreateBinary();
+ }
+
+ // A task that uses the semaphore.
+ void vAnotherTask( void * pvParameters )
+ {
+    // ... Do other things.
+
+    if( xSemaphore != NULL )
+    {
+        // See if we can obtain the semaphore.  If the semaphore is not available
+        // wait 10 ticks to see if it becomes free.
+        if( xSemaphoreTake( xSemaphore, ( TickType_t ) 10 ) == pdTRUE )
+        {
+            // We were able to obtain the semaphore and can now access the
+            // shared resource.
+
+            // ...
+
+            // We have finished accessing the shared resource.  Release the
+            // semaphore.
+            xSemaphoreGive( xSemaphore );
+        }
+        else
+        {
+            // We could not obtain the semaphore and can therefore not access
+            // the shared resource safely.
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreTake xSemaphoreTake + * \ingroup Semaphores + */ +#define xSemaphoreTake( xSemaphore, xBlockTime ) xQueueGenericReceive( ( QueueHandle_t ) ( xSemaphore ), NULL, ( xBlockTime ), pdFALSE ) + +/** + * semphr. h + * xSemaphoreTakeRecursive( + * SemaphoreHandle_t xMutex, + * TickType_t xBlockTime + * ) + * + * Macro to recursively obtain, or 'take', a mutex type semaphore. + * The mutex must have previously been created using a call to + * xSemaphoreCreateRecursiveMutex(); + * + * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this + * macro to be available. + * + * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * @param xMutex A handle to the mutex being obtained. This is the + * handle returned by xSemaphoreCreateRecursiveMutex(); + * + * @param xBlockTime The time in ticks to wait for the semaphore to become + * available. The macro portTICK_PERIOD_MS can be used to convert this to a + * real time. A block time of zero can be used to poll the semaphore. If + * the task already owns the semaphore then xSemaphoreTakeRecursive() will + * return immediately no matter what the value of xBlockTime. + * + * @return pdTRUE if the semaphore was obtained. pdFALSE if xBlockTime + * expired without the semaphore becoming available. + * + * Example usage: +
+ SemaphoreHandle_t xMutex = NULL;
+
+ // A task that creates a mutex.
+ void vATask( void * pvParameters )
+ {
+    // Create the mutex to guard a shared resource.
+    xMutex = xSemaphoreCreateRecursiveMutex();
+ }
+
+ // A task that uses the mutex.
+ void vAnotherTask( void * pvParameters )
+ {
+    // ... Do other things.
+
+    if( xMutex != NULL )
+    {
+        // See if we can obtain the mutex.  If the mutex is not available
+        // wait 10 ticks to see if it becomes free.
+        if( xSemaphoreTakeRecursive( xSemaphore, ( TickType_t ) 10 ) == pdTRUE )
+        {
+            // We were able to obtain the mutex and can now access the
+            // shared resource.
+
+            // ...
+            // For some reason due to the nature of the code further calls to
+			// xSemaphoreTakeRecursive() are made on the same mutex.  In real
+			// code these would not be just sequential calls as this would make
+			// no sense.  Instead the calls are likely to be buried inside
+			// a more complex call structure.
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+
+            // The mutex has now been 'taken' three times, so will not be
+			// available to another task until it has also been given back
+			// three times.  Again it is unlikely that real code would have
+			// these calls sequentially, but instead buried in a more complex
+			// call structure.  This is just for illustrative purposes.
+            xSemaphoreGiveRecursive( xMutex );
+			xSemaphoreGiveRecursive( xMutex );
+			xSemaphoreGiveRecursive( xMutex );
+
+			// Now the mutex can be taken by other tasks.
+        }
+        else
+        {
+            // We could not obtain the mutex and can therefore not access
+            // the shared resource safely.
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreTakeRecursive xSemaphoreTakeRecursive + * \ingroup Semaphores + */ +#if( configUSE_RECURSIVE_MUTEXES == 1 ) + #define xSemaphoreTakeRecursive( xMutex, xBlockTime ) xQueueTakeMutexRecursive( ( xMutex ), ( xBlockTime ) ) +#endif + +/** + * semphr. h + *
xSemaphoreGive( SemaphoreHandle_t xSemaphore )
+ * + * Macro to release a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or + * xSemaphoreCreateCounting(). and obtained using sSemaphoreTake(). + * + * This macro must not be used from an ISR. See xSemaphoreGiveFromISR () for + * an alternative which can be used from an ISR. + * + * This macro must also not be used on semaphores created using + * xSemaphoreCreateRecursiveMutex(). + * + * @param xSemaphore A handle to the semaphore being released. This is the + * handle returned when the semaphore was created. + * + * @return pdTRUE if the semaphore was released. pdFALSE if an error occurred. + * Semaphores are implemented using queues. An error can occur if there is + * no space on the queue to post a message - indicating that the + * semaphore was not first obtained correctly. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ void vATask( void * pvParameters )
+ {
+    // Create the semaphore to guard a shared resource.
+    xSemaphore = vSemaphoreCreateBinary();
+
+    if( xSemaphore != NULL )
+    {
+        if( xSemaphoreGive( xSemaphore ) != pdTRUE )
+        {
+            // We would expect this call to fail because we cannot give
+            // a semaphore without first "taking" it!
+        }
+
+        // Obtain the semaphore - don't block if the semaphore is not
+        // immediately available.
+        if( xSemaphoreTake( xSemaphore, ( TickType_t ) 0 ) )
+        {
+            // We now have the semaphore and can access the shared resource.
+
+            // ...
+
+            // We have finished accessing the shared resource so can free the
+            // semaphore.
+            if( xSemaphoreGive( xSemaphore ) != pdTRUE )
+            {
+                // We would not expect this call to fail because we must have
+                // obtained the semaphore to get here.
+            }
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreGive xSemaphoreGive + * \ingroup Semaphores + */ +#define xSemaphoreGive( xSemaphore ) xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK ) + +/** + * semphr. h + *
xSemaphoreGiveRecursive( SemaphoreHandle_t xMutex )
+ * + * Macro to recursively release, or 'give', a mutex type semaphore. + * The mutex must have previously been created using a call to + * xSemaphoreCreateRecursiveMutex(); + * + * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this + * macro to be available. + * + * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * @param xMutex A handle to the mutex being released, or 'given'. This is the + * handle returned by xSemaphoreCreateMutex(); + * + * @return pdTRUE if the semaphore was given. + * + * Example usage: +
+ SemaphoreHandle_t xMutex = NULL;
+
+ // A task that creates a mutex.
+ void vATask( void * pvParameters )
+ {
+    // Create the mutex to guard a shared resource.
+    xMutex = xSemaphoreCreateRecursiveMutex();
+ }
+
+ // A task that uses the mutex.
+ void vAnotherTask( void * pvParameters )
+ {
+    // ... Do other things.
+
+    if( xMutex != NULL )
+    {
+        // See if we can obtain the mutex.  If the mutex is not available
+        // wait 10 ticks to see if it becomes free.
+        if( xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ) == pdTRUE )
+        {
+            // We were able to obtain the mutex and can now access the
+            // shared resource.
+
+            // ...
+            // For some reason due to the nature of the code further calls to
+			// xSemaphoreTakeRecursive() are made on the same mutex.  In real
+			// code these would not be just sequential calls as this would make
+			// no sense.  Instead the calls are likely to be buried inside
+			// a more complex call structure.
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+            xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 );
+
+            // The mutex has now been 'taken' three times, so will not be
+			// available to another task until it has also been given back
+			// three times.  Again it is unlikely that real code would have
+			// these calls sequentially, it would be more likely that the calls
+			// to xSemaphoreGiveRecursive() would be called as a call stack
+			// unwound.  This is just for demonstrative purposes.
+            xSemaphoreGiveRecursive( xMutex );
+			xSemaphoreGiveRecursive( xMutex );
+			xSemaphoreGiveRecursive( xMutex );
+
+			// Now the mutex can be taken by other tasks.
+        }
+        else
+        {
+            // We could not obtain the mutex and can therefore not access
+            // the shared resource safely.
+        }
+    }
+ }
+ 
+ * \defgroup xSemaphoreGiveRecursive xSemaphoreGiveRecursive + * \ingroup Semaphores + */ +#if( configUSE_RECURSIVE_MUTEXES == 1 ) + #define xSemaphoreGiveRecursive( xMutex ) xQueueGiveMutexRecursive( ( xMutex ) ) +#endif + +/** + * semphr. h + *
+ xSemaphoreGiveFromISR(
+                          SemaphoreHandle_t xSemaphore,
+                          BaseType_t *pxHigherPriorityTaskWoken
+                      )
+ * + * Macro to release a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary() or xSemaphoreCreateCounting(). + * + * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) + * must not be used with this macro. + * + * This macro can be used from an ISR. + * + * @param xSemaphore A handle to the semaphore being released. This is the + * handle returned when the semaphore was created. + * + * @param pxHigherPriorityTaskWoken xSemaphoreGiveFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if giving the semaphore caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xSemaphoreGiveFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the semaphore was successfully given, otherwise errQUEUE_FULL. + * + * Example usage: +
+ \#define LONG_TIME 0xffff
+ \#define TICKS_TO_WAIT	10
+ SemaphoreHandle_t xSemaphore = NULL;
+
+ // Repetitive task.
+ void vATask( void * pvParameters )
+ {
+    for( ;; )
+    {
+        // We want this task to run every 10 ticks of a timer.  The semaphore
+        // was created before this task was started.
+
+        // Block waiting for the semaphore to become available.
+        if( xSemaphoreTake( xSemaphore, LONG_TIME ) == pdTRUE )
+        {
+            // It is time to execute.
+
+            // ...
+
+            // We have finished our task.  Return to the top of the loop where
+            // we will block on the semaphore until it is time to execute
+            // again.  Note when using the semaphore for synchronisation with an
+			// ISR in this manner there is no need to 'give' the semaphore back.
+        }
+    }
+ }
+
+ // Timer ISR
+ void vTimerISR( void * pvParameters )
+ {
+ static uint8_t ucLocalTickCount = 0;
+ static BaseType_t xHigherPriorityTaskWoken;
+
+    // A timer tick has occurred.
+
+    // ... Do other time functions.
+
+    // Is it time for vATask () to run?
+	xHigherPriorityTaskWoken = pdFALSE;
+    ucLocalTickCount++;
+    if( ucLocalTickCount >= TICKS_TO_WAIT )
+    {
+        // Unblock the task by releasing the semaphore.
+        xSemaphoreGiveFromISR( xSemaphore, &xHigherPriorityTaskWoken );
+
+        // Reset the count so we release the semaphore again in 10 ticks time.
+        ucLocalTickCount = 0;
+    }
+
+    if( xHigherPriorityTaskWoken != pdFALSE )
+    {
+        // We can force a context switch here.  Context switching from an
+        // ISR uses port specific syntax.  Check the demo task for your port
+        // to find the syntax required.
+    }
+ }
+ 
+ * \defgroup xSemaphoreGiveFromISR xSemaphoreGiveFromISR + * \ingroup Semaphores + */ +#define xSemaphoreGiveFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueGiveFromISR( ( QueueHandle_t ) ( xSemaphore ), ( pxHigherPriorityTaskWoken ) ) + +/** + * semphr. h + *
+ xSemaphoreTakeFromISR(
+                          SemaphoreHandle_t xSemaphore,
+                          BaseType_t *pxHigherPriorityTaskWoken
+                      )
+ * + * Macro to take a semaphore from an ISR. The semaphore must have + * previously been created with a call to xSemaphoreCreateBinary() or + * xSemaphoreCreateCounting(). + * + * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) + * must not be used with this macro. + * + * This macro can be used from an ISR, however taking a semaphore from an ISR + * is not a common operation. It is likely to only be useful when taking a + * counting semaphore when an interrupt is obtaining an object from a resource + * pool (when the semaphore count indicates the number of resources available). + * + * @param xSemaphore A handle to the semaphore being taken. This is the + * handle returned when the semaphore was created. + * + * @param pxHigherPriorityTaskWoken xSemaphoreTakeFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if taking the semaphore caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xSemaphoreTakeFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the semaphore was successfully taken, otherwise + * pdFALSE + */ +#define xSemaphoreTakeFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueReceiveFromISR( ( QueueHandle_t ) ( xSemaphore ), NULL, ( pxHigherPriorityTaskWoken ) ) + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateMutex( void )
+ * + * Creates a new mutex type semaphore instance, and returns a handle by which + * the new mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, mutex semaphores use a block + * of memory, in which the mutex structure is stored. If a mutex is created + * using xSemaphoreCreateMutex() then the required memory is automatically + * dynamically allocated inside the xSemaphoreCreateMutex() function. (see + * http://www.freertos.org/a00111.html). If a mutex is created using + * xSemaphoreCreateMutexStatic() then the application writer must provided the + * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created + * without using any dynamic memory allocation. + * + * Mutexes created using this function can be accessed using the xSemaphoreTake() + * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and + * xSemaphoreGiveRecursive() macros must not be used. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @return If the mutex was successfully created then a handle to the created + * semaphore is returned. If there was not enough heap to allocate the mutex + * data structures then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateMutex().
+    // This is a macro so pass the variable in directly.
+    xSemaphore = xSemaphoreCreateMutex();
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateMutex xSemaphoreCreateMutex + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateMutexStatic( StaticSemaphore_t *pxMutexBuffer )
+ * + * Creates a new mutex type semaphore instance, and returns a handle by which + * the new mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, mutex semaphores use a block + * of memory, in which the mutex structure is stored. If a mutex is created + * using xSemaphoreCreateMutex() then the required memory is automatically + * dynamically allocated inside the xSemaphoreCreateMutex() function. (see + * http://www.freertos.org/a00111.html). If a mutex is created using + * xSemaphoreCreateMutexStatic() then the application writer must provided the + * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created + * without using any dynamic memory allocation. + * + * Mutexes created using this function can be accessed using the xSemaphoreTake() + * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and + * xSemaphoreGiveRecursive() macros must not be used. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, + * which will be used to hold the mutex's data structure, removing the need for + * the memory to be allocated dynamically. + * + * @return If the mutex was successfully created then a handle to the created + * mutex is returned. If pxMutexBuffer was NULL then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+ StaticSemaphore_t xMutexBuffer;
+
+ void vATask( void * pvParameters )
+ {
+    // A mutex cannot be used before it has been created.  xMutexBuffer is
+    // into xSemaphoreCreateMutexStatic() so no dynamic memory allocation is
+    // attempted.
+    xSemaphore = xSemaphoreCreateMutexStatic( &xMutexBuffer );
+
+    // As no dynamic memory allocation was performed, xSemaphore cannot be NULL,
+    // so there is no need to check it.
+ }
+ 
+ * \defgroup xSemaphoreCreateMutexStatic xSemaphoreCreateMutexStatic + * \ingroup Semaphores + */ + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateMutexStatic( pxMutexBuffer ) xQueueCreateMutexStatic( queueQUEUE_TYPE_MUTEX, ( pxMutexBuffer ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateRecursiveMutex( void )
+ * + * Creates a new recursive mutex type semaphore instance, and returns a handle + * by which the new recursive mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, recursive mutexs use a block + * of memory, in which the mutex structure is stored. If a recursive mutex is + * created using xSemaphoreCreateRecursiveMutex() then the required memory is + * automatically dynamically allocated inside the + * xSemaphoreCreateRecursiveMutex() function. (see + * http://www.freertos.org/a00111.html). If a recursive mutex is created using + * xSemaphoreCreateRecursiveMutexStatic() then the application writer must + * provide the memory that will get used by the mutex. + * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to + * be created without using any dynamic memory allocation. + * + * Mutexes created using this macro can be accessed using the + * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The + * xSemaphoreTake() and xSemaphoreGive() macros must not be used. + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @return xSemaphore Handle to the created mutex semaphore. Should be of type + * SemaphoreHandle_t. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+
+ void vATask( void * pvParameters )
+ {
+    // Semaphore cannot be used before a call to xSemaphoreCreateMutex().
+    // This is a macro so pass the variable in directly.
+    xSemaphore = xSemaphoreCreateRecursiveMutex();
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateRecursiveMutex xSemaphoreCreateRecursiveMutex + * \ingroup Semaphores + */ +#if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) + #define xSemaphoreCreateRecursiveMutex() xQueueCreateMutex( queueQUEUE_TYPE_RECURSIVE_MUTEX ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateRecursiveMutexStatic( StaticSemaphore_t *pxMutexBuffer )
+ * + * Creates a new recursive mutex type semaphore instance, and returns a handle + * by which the new recursive mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, recursive mutexs use a block + * of memory, in which the mutex structure is stored. If a recursive mutex is + * created using xSemaphoreCreateRecursiveMutex() then the required memory is + * automatically dynamically allocated inside the + * xSemaphoreCreateRecursiveMutex() function. (see + * http://www.freertos.org/a00111.html). If a recursive mutex is created using + * xSemaphoreCreateRecursiveMutexStatic() then the application writer must + * provide the memory that will get used by the mutex. + * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to + * be created without using any dynamic memory allocation. + * + * Mutexes created using this macro can be accessed using the + * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The + * xSemaphoreTake() and xSemaphoreGive() macros must not be used. + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the recursive mutex's data structure, + * removing the need for the memory to be allocated dynamically. + * + * @return If the recursive mutex was successfully created then a handle to the + * created recursive mutex is returned. If pxMutexBuffer was NULL then NULL is + * returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+ StaticSemaphore_t xMutexBuffer;
+
+ void vATask( void * pvParameters )
+ {
+    // A recursive semaphore cannot be used before it is created.  Here a
+    // recursive mutex is created using xSemaphoreCreateRecursiveMutexStatic().
+    // The address of xMutexBuffer is passed into the function, and will hold
+    // the mutexes data structures - so no dynamic memory allocation will be
+    // attempted.
+    xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &xMutexBuffer );
+
+    // As no dynamic memory allocation was performed, xSemaphore cannot be NULL,
+    // so there is no need to check it.
+ }
+ 
+ * \defgroup xSemaphoreCreateRecursiveMutexStatic xSemaphoreCreateRecursiveMutexStatic + * \ingroup Semaphores + */ +#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) + #define xSemaphoreCreateRecursiveMutexStatic( pxStaticSemaphore ) xQueueCreateMutexStatic( queueQUEUE_TYPE_RECURSIVE_MUTEX, pxStaticSemaphore ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateCounting( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount )
+ * + * Creates a new counting semaphore instance, and returns a handle by which the + * new counting semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a counting semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, counting semaphores use a + * block of memory, in which the counting semaphore structure is stored. If a + * counting semaphore is created using xSemaphoreCreateCounting() then the + * required memory is automatically dynamically allocated inside the + * xSemaphoreCreateCounting() function. (see + * http://www.freertos.org/a00111.html). If a counting semaphore is created + * using xSemaphoreCreateCountingStatic() then the application writer can + * instead optionally provide the memory that will get used by the counting + * semaphore. xSemaphoreCreateCountingStatic() therefore allows a counting + * semaphore to be created without using any dynamic memory allocation. + * + * Counting semaphores are typically used for two things: + * + * 1) Counting events. + * + * In this usage scenario an event handler will 'give' a semaphore each time + * an event occurs (incrementing the semaphore count value), and a handler + * task will 'take' a semaphore each time it processes an event + * (decrementing the semaphore count value). The count value is therefore + * the difference between the number of events that have occurred and the + * number that have been processed. In this case it is desirable for the + * initial count value to be zero. + * + * 2) Resource management. + * + * In this usage scenario the count value indicates the number of resources + * available. To obtain control of a resource a task must first obtain a + * semaphore - decrementing the semaphore count value. When the count value + * reaches zero there are no free resources. When a task finishes with the + * resource it 'gives' the semaphore back - incrementing the semaphore count + * value. In this case it is desirable for the initial count value to be + * equal to the maximum count value, indicating that all resources are free. + * + * @param uxMaxCount The maximum count value that can be reached. When the + * semaphore reaches this value it can no longer be 'given'. + * + * @param uxInitialCount The count value assigned to the semaphore when it is + * created. + * + * @return Handle to the created semaphore. Null if the semaphore could not be + * created. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+
+ void vATask( void * pvParameters )
+ {
+ SemaphoreHandle_t xSemaphore = NULL;
+
+    // Semaphore cannot be used before a call to xSemaphoreCreateCounting().
+    // The max value to which the semaphore can count should be 10, and the
+    // initial value assigned to the count should be 0.
+    xSemaphore = xSemaphoreCreateCounting( 10, 0 );
+
+    if( xSemaphore != NULL )
+    {
+        // The semaphore was created successfully.
+        // The semaphore can now be used.
+    }
+ }
+ 
+ * \defgroup xSemaphoreCreateCounting xSemaphoreCreateCounting + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ) ) +#endif + +/** + * semphr. h + *
SemaphoreHandle_t xSemaphoreCreateCountingStatic( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount, StaticSemaphore_t *pxSemaphoreBuffer )
+ * + * Creates a new counting semaphore instance, and returns a handle by which the + * new counting semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a counting semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, counting semaphores use a + * block of memory, in which the counting semaphore structure is stored. If a + * counting semaphore is created using xSemaphoreCreateCounting() then the + * required memory is automatically dynamically allocated inside the + * xSemaphoreCreateCounting() function. (see + * http://www.freertos.org/a00111.html). If a counting semaphore is created + * using xSemaphoreCreateCountingStatic() then the application writer must + * provide the memory. xSemaphoreCreateCountingStatic() therefore allows a + * counting semaphore to be created without using any dynamic memory allocation. + * + * Counting semaphores are typically used for two things: + * + * 1) Counting events. + * + * In this usage scenario an event handler will 'give' a semaphore each time + * an event occurs (incrementing the semaphore count value), and a handler + * task will 'take' a semaphore each time it processes an event + * (decrementing the semaphore count value). The count value is therefore + * the difference between the number of events that have occurred and the + * number that have been processed. In this case it is desirable for the + * initial count value to be zero. + * + * 2) Resource management. + * + * In this usage scenario the count value indicates the number of resources + * available. To obtain control of a resource a task must first obtain a + * semaphore - decrementing the semaphore count value. When the count value + * reaches zero there are no free resources. When a task finishes with the + * resource it 'gives' the semaphore back - incrementing the semaphore count + * value. In this case it is desirable for the initial count value to be + * equal to the maximum count value, indicating that all resources are free. + * + * @param uxMaxCount The maximum count value that can be reached. When the + * semaphore reaches this value it can no longer be 'given'. + * + * @param uxInitialCount The count value assigned to the semaphore when it is + * created. + * + * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the semaphore's data structure, removing the + * need for the memory to be allocated dynamically. + * + * @return If the counting semaphore was successfully created then a handle to + * the created counting semaphore is returned. If pxSemaphoreBuffer was NULL + * then NULL is returned. + * + * Example usage: +
+ SemaphoreHandle_t xSemaphore;
+ StaticSemaphore_t xSemaphoreBuffer;
+
+ void vATask( void * pvParameters )
+ {
+ SemaphoreHandle_t xSemaphore = NULL;
+
+    // Counting semaphore cannot be used before they have been created.  Create
+    // a counting semaphore using xSemaphoreCreateCountingStatic().  The max
+    // value to which the semaphore can count is 10, and the initial value
+    // assigned to the count will be 0.  The address of xSemaphoreBuffer is
+    // passed in and will be used to hold the semaphore structure, so no dynamic
+    // memory allocation will be used.
+    xSemaphore = xSemaphoreCreateCounting( 10, 0, &xSemaphoreBuffer );
+
+    // No memory allocation was attempted so xSemaphore cannot be NULL, so there
+    // is no need to check its value.
+ }
+ 
+ * \defgroup xSemaphoreCreateCountingStatic xSemaphoreCreateCountingStatic + * \ingroup Semaphores + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateCountingStatic( uxMaxCount, uxInitialCount, pxSemaphoreBuffer ) xQueueCreateCountingSemaphoreStatic( ( uxMaxCount ), ( uxInitialCount ), ( pxSemaphoreBuffer ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *
void vSemaphoreDelete( SemaphoreHandle_t xSemaphore );
+ * + * Delete a semaphore. This function must be used with care. For example, + * do not delete a mutex type semaphore if the mutex is held by a task. + * + * @param xSemaphore A handle to the semaphore to be deleted. + * + * \defgroup vSemaphoreDelete vSemaphoreDelete + * \ingroup Semaphores + */ +#define vSemaphoreDelete( xSemaphore ) vQueueDelete( ( QueueHandle_t ) ( xSemaphore ) ) + +/** + * semphr.h + *
TaskHandle_t xSemaphoreGetMutexHolder( SemaphoreHandle_t xMutex );
+ * + * If xMutex is indeed a mutex type semaphore, return the current mutex holder. + * If xMutex is not a mutex type semaphore, or the mutex is available (not held + * by a task), return NULL. + * + * Note: This is a good way of determining if the calling task is the mutex + * holder, but not a good way of determining the identity of the mutex holder as + * the holder may change between the function exiting and the returned value + * being tested. + */ +#define xSemaphoreGetMutexHolder( xSemaphore ) xQueueGetMutexHolder( ( xSemaphore ) ) + +/** + * semphr.h + *
UBaseType_t uxSemaphoreGetCount( SemaphoreHandle_t xSemaphore );
+ * + * If the semaphore is a counting semaphore then uxSemaphoreGetCount() returns + * its current count value. If the semaphore is a binary semaphore then + * uxSemaphoreGetCount() returns 1 if the semaphore is available, and 0 if the + * semaphore is not available. + * + */ +#define uxSemaphoreGetCount( xSemaphore ) uxQueueMessagesWaiting( ( QueueHandle_t ) ( xSemaphore ) ) + +#endif /* SEMAPHORE_H */ + + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/task.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/task.h new file mode 100644 index 0000000..d0643c0 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/task.h @@ -0,0 +1,2267 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + + +#ifndef INC_TASK_H +#define INC_TASK_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include task.h" +#endif + +#include "list.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * MACROS AND DEFINITIONS + *----------------------------------------------------------*/ + +#define tskKERNEL_VERSION_NUMBER "V9.0.0" +#define tskKERNEL_VERSION_MAJOR 9 +#define tskKERNEL_VERSION_MINOR 0 +#define tskKERNEL_VERSION_BUILD 0 + +/** + * task. h + * + * Type by which tasks are referenced. For example, a call to xTaskCreate + * returns (via a pointer parameter) an TaskHandle_t variable that can then + * be used as a parameter to vTaskDelete to delete the task. + * + * \defgroup TaskHandle_t TaskHandle_t + * \ingroup Tasks + */ +typedef void * TaskHandle_t; + +/* + * Defines the prototype to which the application task hook function must + * conform. + */ +typedef BaseType_t (*TaskHookFunction_t)( void * ); + +/* Task states returned by eTaskGetState. */ +typedef enum +{ + eRunning = 0, /* A task is querying the state of itself, so must be running. */ + eReady, /* The task being queried is in a read or pending ready list. */ + eBlocked, /* The task being queried is in the Blocked state. */ + eSuspended, /* The task being queried is in the Suspended state, or is in the Blocked state with an infinite time out. */ + eDeleted, /* The task being queried has been deleted, but its TCB has not yet been freed. */ + eInvalid /* Used as an 'invalid state' value. */ +} eTaskState; + +/* Actions that can be performed when vTaskNotify() is called. */ +typedef enum +{ + eNoAction = 0, /* Notify the task without updating its notify value. */ + eSetBits, /* Set bits in the task's notification value. */ + eIncrement, /* Increment the task's notification value. */ + eSetValueWithOverwrite, /* Set the task's notification value to a specific value even if the previous value has not yet been read by the task. */ + eSetValueWithoutOverwrite /* Set the task's notification value if the previous value has been read by the task. */ +} eNotifyAction; + +/* + * Used internally only. + */ +typedef struct xTIME_OUT +{ + BaseType_t xOverflowCount; + TickType_t xTimeOnEntering; +} TimeOut_t; + +/* + * Defines the memory ranges allocated to the task when an MPU is used. + */ +typedef struct xMEMORY_REGION +{ + void *pvBaseAddress; + uint32_t ulLengthInBytes; + uint32_t ulParameters; +} MemoryRegion_t; + +/* + * Parameters required to create an MPU protected task. + */ +typedef struct xTASK_PARAMETERS +{ + TaskFunction_t pvTaskCode; + const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + uint16_t usStackDepth; + void *pvParameters; + UBaseType_t uxPriority; + StackType_t *puxStackBuffer; + MemoryRegion_t xRegions[ portNUM_CONFIGURABLE_REGIONS ]; +} TaskParameters_t; + +/* Used with the uxTaskGetSystemState() function to return the state of each task +in the system. */ +typedef struct xTASK_STATUS +{ + TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the structure relates. */ + const char *pcTaskName; /* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + UBaseType_t xTaskNumber; /* A number unique to the task. */ + eTaskState eCurrentState; /* The state in which the task existed when the structure was populated. */ + UBaseType_t uxCurrentPriority; /* The priority at which the task was running (may be inherited) when the structure was populated. */ + UBaseType_t uxBasePriority; /* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */ + uint32_t ulRunTimeCounter; /* The total run time allocated to the task so far, as defined by the run time stats clock. See http://www.freertos.org/rtos-run-time-stats.html. Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */ + StackType_t *pxStackBase; /* Points to the lowest address of the task's stack area. */ + uint16_t usStackHighWaterMark; /* The minimum amount of stack space that has remained for the task since the task was created. The closer this value is to zero the closer the task has come to overflowing its stack. */ +} TaskStatus_t; + +/* Possible return values for eTaskConfirmSleepModeStatus(). */ +typedef enum +{ + eAbortSleep = 0, /* A task has been made ready or a context switch pended since portSUPPORESS_TICKS_AND_SLEEP() was called - abort entering a sleep mode. */ + eStandardSleep, /* Enter a sleep mode that will not last any longer than the expected idle time. */ + eNoTasksWaitingTimeout /* No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be exited by an external interrupt. */ +} eSleepModeStatus; + +/** + * Defines the priority used by the idle task. This must not be modified. + * + * \ingroup TaskUtils + */ +#define tskIDLE_PRIORITY ( ( UBaseType_t ) 0U ) + +/** + * task. h + * + * Macro for forcing a context switch. + * + * \defgroup taskYIELD taskYIELD + * \ingroup SchedulerControl + */ +#define taskYIELD() portYIELD() + +/** + * task. h + * + * Macro to mark the start of a critical code region. Preemptive context + * switches cannot occur when in a critical region. + * + * NOTE: This may alter the stack (depending on the portable implementation) + * so must be used with care! + * + * \defgroup taskENTER_CRITICAL taskENTER_CRITICAL + * \ingroup SchedulerControl + */ +#define taskENTER_CRITICAL() portENTER_CRITICAL() +#define taskENTER_CRITICAL_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR() + +/** + * task. h + * + * Macro to mark the end of a critical code region. Preemptive context + * switches cannot occur when in a critical region. + * + * NOTE: This may alter the stack (depending on the portable implementation) + * so must be used with care! + * + * \defgroup taskEXIT_CRITICAL taskEXIT_CRITICAL + * \ingroup SchedulerControl + */ +#define taskEXIT_CRITICAL() portEXIT_CRITICAL() +#define taskEXIT_CRITICAL_FROM_ISR( x ) portCLEAR_INTERRUPT_MASK_FROM_ISR( x ) +/** + * task. h + * + * Macro to disable all maskable interrupts. + * + * \defgroup taskDISABLE_INTERRUPTS taskDISABLE_INTERRUPTS + * \ingroup SchedulerControl + */ +#define taskDISABLE_INTERRUPTS() portDISABLE_INTERRUPTS() + +/** + * task. h + * + * Macro to enable microcontroller interrupts. + * + * \defgroup taskENABLE_INTERRUPTS taskENABLE_INTERRUPTS + * \ingroup SchedulerControl + */ +#define taskENABLE_INTERRUPTS() portENABLE_INTERRUPTS() + +/* Definitions returned by xTaskGetSchedulerState(). taskSCHEDULER_SUSPENDED is +0 to generate more optimal code when configASSERT() is defined as the constant +is used in assert() statements. */ +#define taskSCHEDULER_SUSPENDED ( ( BaseType_t ) 0 ) +#define taskSCHEDULER_NOT_STARTED ( ( BaseType_t ) 1 ) +#define taskSCHEDULER_RUNNING ( ( BaseType_t ) 2 ) + + +/*----------------------------------------------------------- + * TASK CREATION API + *----------------------------------------------------------*/ + +/** + * task. h + *
+ BaseType_t xTaskCreate(
+							  TaskFunction_t pvTaskCode,
+							  const char * const pcName,
+							  uint16_t usStackDepth,
+							  void *pvParameters,
+							  UBaseType_t uxPriority,
+							  TaskHandle_t *pvCreatedTask
+						  );
+ * + * Create a new task and add it to the list of tasks that are ready to run. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreate() then both blocks of memory are automatically dynamically + * allocated inside the xTaskCreate() function. (see + * http://www.freertos.org/a00111.html). If a task is created using + * xTaskCreateStatic() then the application writer must provide the required + * memory. xTaskCreateStatic() therefore allows a task to be created without + * using any dynamic memory allocation. + * + * See xTaskCreateStatic() for a version that does not use any dynamic memory + * allocation. + * + * xTaskCreate() can only be used to create a task that has unrestricted + * access to the entire microcontroller memory map. Systems that include MPU + * support can alternatively create an MPU constrained task using + * xTaskCreateRestricted(). + * + * @param pvTaskCode Pointer to the task entry function. Tasks + * must be implemented to never return (i.e. continuous loop). + * + * @param pcName A descriptive name for the task. This is mainly used to + * facilitate debugging. Max length defined by configMAX_TASK_NAME_LEN - default + * is 16. + * + * @param usStackDepth The size of the task stack specified as the number of + * variables the stack can hold - not the number of bytes. For example, if + * the stack is 16 bits wide and usStackDepth is defined as 100, 200 bytes + * will be allocated for stack storage. + * + * @param pvParameters Pointer that will be used as the parameter for the task + * being created. + * + * @param uxPriority The priority at which the task should run. Systems that + * include MPU support can optionally create tasks in a privileged (system) + * mode by setting bit portPRIVILEGE_BIT of the priority parameter. For + * example, to create a privileged task at priority 2 the uxPriority parameter + * should be set to ( 2 | portPRIVILEGE_BIT ). + * + * @param pvCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: +
+ // Task to be created.
+ void vTaskCode( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+	 }
+ }
+
+ // Function that creates a task.
+ void vOtherFunction( void )
+ {
+ static uint8_t ucParameterToPass;
+ TaskHandle_t xHandle = NULL;
+
+	 // Create the task, storing the handle.  Note that the passed parameter ucParameterToPass
+	 // must exist for the lifetime of the task, so in this case is declared static.  If it was just an
+	 // an automatic stack variable it might no longer exist, or at least have been corrupted, by the time
+	 // the new task attempts to access it.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
+     configASSERT( xHandle );
+
+	 // Use the handle to delete the task.
+     if( xHandle != NULL )
+     {
+	     vTaskDelete( xHandle );
+     }
+ }
+   
+ * \defgroup xTaskCreate xTaskCreate + * \ingroup Tasks + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint16_t usStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/** + * task. h + *
+ TaskHandle_t xTaskCreateStatic( TaskFunction_t pvTaskCode,
+								 const char * const pcName,
+								 uint32_t ulStackDepth,
+								 void *pvParameters,
+								 UBaseType_t uxPriority,
+								 StackType_t *pxStackBuffer,
+								 StaticTask_t *pxTaskBuffer );
+ * + * Create a new task and add it to the list of tasks that are ready to run. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreate() then both blocks of memory are automatically dynamically + * allocated inside the xTaskCreate() function. (see + * http://www.freertos.org/a00111.html). If a task is created using + * xTaskCreateStatic() then the application writer must provide the required + * memory. xTaskCreateStatic() therefore allows a task to be created without + * using any dynamic memory allocation. + * + * @param pvTaskCode Pointer to the task entry function. Tasks + * must be implemented to never return (i.e. continuous loop). + * + * @param pcName A descriptive name for the task. This is mainly used to + * facilitate debugging. The maximum length of the string is defined by + * configMAX_TASK_NAME_LEN in FreeRTOSConfig.h. + * + * @param ulStackDepth The size of the task stack specified as the number of + * variables the stack can hold - not the number of bytes. For example, if + * the stack is 32-bits wide and ulStackDepth is defined as 100 then 400 bytes + * will be allocated for stack storage. + * + * @param pvParameters Pointer that will be used as the parameter for the task + * being created. + * + * @param uxPriority The priority at which the task will run. + * + * @param pxStackBuffer Must point to a StackType_t array that has at least + * ulStackDepth indexes - the array will then be used as the task's stack, + * removing the need for the stack to be allocated dynamically. + * + * @param pxTaskBuffer Must point to a variable of type StaticTask_t, which will + * then be used to hold the task's data structures, removing the need for the + * memory to be allocated dynamically. + * + * @return If neither pxStackBuffer or pxTaskBuffer are NULL, then the task will + * be created and pdPASS is returned. If either pxStackBuffer or pxTaskBuffer + * are NULL then the task will not be created and + * errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY is returned. + * + * Example usage: +
+
+    // Dimensions the buffer that the task being created will use as its stack.
+    // NOTE:  This is the number of words the stack will hold, not the number of
+    // bytes.  For example, if each stack item is 32-bits, and this is set to 100,
+    // then 400 bytes (100 * 32-bits) will be allocated.
+    #define STACK_SIZE 200
+
+    // Structure that will hold the TCB of the task being created.
+    StaticTask_t xTaskBuffer;
+
+    // Buffer that the task being created will use as its stack.  Note this is
+    // an array of StackType_t variables.  The size of StackType_t is dependent on
+    // the RTOS port.
+    StackType_t xStack[ STACK_SIZE ];
+
+    // Function that implements the task being created.
+    void vTaskCode( void * pvParameters )
+    {
+        // The parameter value is expected to be 1 as 1 is passed in the
+        // pvParameters value in the call to xTaskCreateStatic().
+        configASSERT( ( uint32_t ) pvParameters == 1UL );
+
+        for( ;; )
+        {
+            // Task code goes here.
+        }
+    }
+
+    // Function that creates a task.
+    void vOtherFunction( void )
+    {
+        TaskHandle_t xHandle = NULL;
+
+        // Create the task without using any dynamic memory allocation.
+        xHandle = xTaskCreateStatic(
+                      vTaskCode,       // Function that implements the task.
+                      "NAME",          // Text name for the task.
+                      STACK_SIZE,      // Stack size in words, not bytes.
+                      ( void * ) 1,    // Parameter passed into the task.
+                      tskIDLE_PRIORITY,// Priority at which the task is created.
+                      xStack,          // Array to use as the task's stack.
+                      &xTaskBuffer );  // Variable to hold the task's data structure.
+
+        // puxStackBuffer and pxTaskBuffer were not NULL, so the task will have
+        // been created, and xHandle will be the task's handle.  Use the handle
+        // to suspend the task.
+        vTaskSuspend( xHandle );
+    }
+   
+ * \defgroup xTaskCreateStatic xTaskCreateStatic + * \ingroup Tasks + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + StackType_t * const puxStackBuffer, + StaticTask_t * const pxTaskBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * task. h + *
+ BaseType_t xTaskCreateRestricted( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );
+ * + * xTaskCreateRestricted() should only be used in systems that include an MPU + * implementation. + * + * Create a new task and add it to the list of tasks that are ready to run. + * The function parameters define the memory regions and associated access + * permissions allocated to the task. + * + * @param pxTaskDefinition Pointer to a structure that contains a member + * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API + * documentation) plus an optional stack buffer and the memory region + * definitions. + * + * @param pxCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: +
+// Create an TaskParameters_t structure that defines the task to be created.
+static const TaskParameters_t xCheckTaskParameters =
+{
+	vATask,		// pvTaskCode - the function that implements the task.
+	"ATask",	// pcName - just a text name for the task to assist debugging.
+	100,		// usStackDepth	- the stack size DEFINED IN WORDS.
+	NULL,		// pvParameters - passed into the task function as the function parameters.
+	( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged state.
+	cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack.
+
+	// xRegions - Allocate up to three separate memory regions for access by
+	// the task, with appropriate access permissions.  Different processors have
+	// different memory alignment requirements - refer to the FreeRTOS documentation
+	// for full information.
+	{
+		// Base address					Length	Parameters
+        { cReadWriteArray,				32,		portMPU_REGION_READ_WRITE },
+        { cReadOnlyArray,				32,		portMPU_REGION_READ_ONLY },
+        { cPrivilegedOnlyAccessArray,	128,	portMPU_REGION_PRIVILEGED_READ_WRITE }
+	}
+};
+
+int main( void )
+{
+TaskHandle_t xHandle;
+
+	// Create a task from the const structure defined above.  The task handle
+	// is requested (the second parameter is not NULL) but in this case just for
+	// demonstration purposes as its not actually used.
+	xTaskCreateRestricted( &xRegTest1Parameters, &xHandle );
+
+	// Start the scheduler.
+	vTaskStartScheduler();
+
+	// Will only get here if there was insufficient memory to create the idle
+	// and/or timer task.
+	for( ;; );
+}
+   
+ * \defgroup xTaskCreateRestricted xTaskCreateRestricted + * \ingroup Tasks + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) PRIVILEGED_FUNCTION; +#endif + +/** + * task. h + *
+ void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions );
+ * + * Memory regions are assigned to a restricted task when the task is created by + * a call to xTaskCreateRestricted(). These regions can be redefined using + * vTaskAllocateMPURegions(). + * + * @param xTask The handle of the task being updated. + * + * @param xRegions A pointer to an MemoryRegion_t structure that contains the + * new memory region definitions. + * + * Example usage: +
+// Define an array of MemoryRegion_t structures that configures an MPU region
+// allowing read/write access for 1024 bytes starting at the beginning of the
+// ucOneKByte array.  The other two of the maximum 3 definable regions are
+// unused so set to zero.
+static const MemoryRegion_t xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] =
+{
+	// Base address		Length		Parameters
+	{ ucOneKByte,		1024,		portMPU_REGION_READ_WRITE },
+	{ 0,				0,			0 },
+	{ 0,				0,			0 }
+};
+
+void vATask( void *pvParameters )
+{
+	// This task was created such that it has access to certain regions of
+	// memory as defined by the MPU configuration.  At some point it is
+	// desired that these MPU regions are replaced with that defined in the
+	// xAltRegions const struct above.  Use a call to vTaskAllocateMPURegions()
+	// for this purpose.  NULL is used as the task handle to indicate that this
+	// function should modify the MPU regions of the calling task.
+	vTaskAllocateMPURegions( NULL, xAltRegions );
+
+	// Now the task can continue its function, but from this point on can only
+	// access its stack and the ucOneKByte array (unless any other statically
+	// defined or shared regions have been declared elsewhere).
+}
+   
+ * \defgroup xTaskCreateRestricted xTaskCreateRestricted + * \ingroup Tasks + */ +void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskDelete( TaskHandle_t xTask );
+ * + * INCLUDE_vTaskDelete must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Remove a task from the RTOS real time kernel's management. The task being + * deleted will be removed from all ready, blocked, suspended and event lists. + * + * NOTE: The idle task is responsible for freeing the kernel allocated + * memory from tasks that have been deleted. It is therefore important that + * the idle task is not starved of microcontroller processing time if your + * application makes any calls to vTaskDelete (). Memory allocated by the + * task code is not automatically freed, and should be freed before the task + * is deleted. + * + * See the demo application file death.c for sample code that utilises + * vTaskDelete (). + * + * @param xTask The handle of the task to be deleted. Passing NULL will + * cause the calling task to be deleted. + * + * Example usage: +
+ void vOtherFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create the task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // Use the handle to delete the task.
+	 vTaskDelete( xHandle );
+ }
+   
+ * \defgroup vTaskDelete vTaskDelete + * \ingroup Tasks + */ +void vTaskDelete( TaskHandle_t xTaskToDelete ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * TASK CONTROL API + *----------------------------------------------------------*/ + +/** + * task. h + *
void vTaskDelay( const TickType_t xTicksToDelay );
+ * + * Delay a task for a given number of ticks. The actual time that the + * task remains blocked depends on the tick rate. The constant + * portTICK_PERIOD_MS can be used to calculate real time from the tick + * rate - with the resolution of one tick period. + * + * INCLUDE_vTaskDelay must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * + * vTaskDelay() specifies a time at which the task wishes to unblock relative to + * the time at which vTaskDelay() is called. For example, specifying a block + * period of 100 ticks will cause the task to unblock 100 ticks after + * vTaskDelay() is called. vTaskDelay() does not therefore provide a good method + * of controlling the frequency of a periodic task as the path taken through the + * code, as well as other task and interrupt activity, will effect the frequency + * at which vTaskDelay() gets called and therefore the time at which the task + * next executes. See vTaskDelayUntil() for an alternative API function designed + * to facilitate fixed frequency execution. It does this by specifying an + * absolute time (rather than a relative time) at which the calling task should + * unblock. + * + * @param xTicksToDelay The amount of time, in tick periods, that + * the calling task should block. + * + * Example usage: + + void vTaskFunction( void * pvParameters ) + { + // Block for 500ms. + const TickType_t xDelay = 500 / portTICK_PERIOD_MS; + + for( ;; ) + { + // Simply toggle the LED every 500ms, blocking between each toggle. + vToggleLED(); + vTaskDelay( xDelay ); + } + } + + * \defgroup vTaskDelay vTaskDelay + * \ingroup TaskCtrl + */ +void vTaskDelay( const TickType_t xTicksToDelay ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskDelayUntil( TickType_t *pxPreviousWakeTime, const TickType_t xTimeIncrement );
+ * + * INCLUDE_vTaskDelayUntil must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Delay a task until a specified time. This function can be used by periodic + * tasks to ensure a constant execution frequency. + * + * This function differs from vTaskDelay () in one important aspect: vTaskDelay () will + * cause a task to block for the specified number of ticks from the time vTaskDelay () is + * called. It is therefore difficult to use vTaskDelay () by itself to generate a fixed + * execution frequency as the time between a task starting to execute and that task + * calling vTaskDelay () may not be fixed [the task may take a different path though the + * code between calls, or may get interrupted or preempted a different number of times + * each time it executes]. + * + * Whereas vTaskDelay () specifies a wake time relative to the time at which the function + * is called, vTaskDelayUntil () specifies the absolute (exact) time at which it wishes to + * unblock. + * + * The constant portTICK_PERIOD_MS can be used to calculate real time from the tick + * rate - with the resolution of one tick period. + * + * @param pxPreviousWakeTime Pointer to a variable that holds the time at which the + * task was last unblocked. The variable must be initialised with the current time + * prior to its first use (see the example below). Following this the variable is + * automatically updated within vTaskDelayUntil (). + * + * @param xTimeIncrement The cycle time period. The task will be unblocked at + * time *pxPreviousWakeTime + xTimeIncrement. Calling vTaskDelayUntil with the + * same xTimeIncrement parameter value will cause the task to execute with + * a fixed interface period. + * + * Example usage: +
+ // Perform an action every 10 ticks.
+ void vTaskFunction( void * pvParameters )
+ {
+ TickType_t xLastWakeTime;
+ const TickType_t xFrequency = 10;
+
+	 // Initialise the xLastWakeTime variable with the current time.
+	 xLastWakeTime = xTaskGetTickCount ();
+	 for( ;; )
+	 {
+		 // Wait for the next cycle.
+		 vTaskDelayUntil( &xLastWakeTime, xFrequency );
+
+		 // Perform action here.
+	 }
+ }
+   
+ * \defgroup vTaskDelayUntil vTaskDelayUntil + * \ingroup TaskCtrl + */ +void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskAbortDelay( TaskHandle_t xTask );
+ * + * INCLUDE_xTaskAbortDelay must be defined as 1 in FreeRTOSConfig.h for this + * function to be available. + * + * A task will enter the Blocked state when it is waiting for an event. The + * event it is waiting for can be a temporal event (waiting for a time), such + * as when vTaskDelay() is called, or an event on an object, such as when + * xQueueReceive() or ulTaskNotifyTake() is called. If the handle of a task + * that is in the Blocked state is used in a call to xTaskAbortDelay() then the + * task will leave the Blocked state, and return from whichever function call + * placed the task into the Blocked state. + * + * @param xTask The handle of the task to remove from the Blocked state. + * + * @return If the task referenced by xTask was not in the Blocked state then + * pdFAIL is returned. Otherwise pdPASS is returned. + * + * \defgroup xTaskAbortDelay xTaskAbortDelay + * \ingroup TaskCtrl + */ +BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
UBaseType_t uxTaskPriorityGet( TaskHandle_t xTask );
+ * + * INCLUDE_uxTaskPriorityGet must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Obtain the priority of any task. + * + * @param xTask Handle of the task to be queried. Passing a NULL + * handle results in the priority of the calling task being returned. + * + * @return The priority of xTask. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to obtain the priority of the created task.
+	 // It was created with tskIDLE_PRIORITY, but may have changed
+	 // it itself.
+	 if( uxTaskPriorityGet( xHandle ) != tskIDLE_PRIORITY )
+	 {
+		 // The task has changed it's priority.
+	 }
+
+	 // ...
+
+	 // Is our priority higher than the created task?
+	 if( uxTaskPriorityGet( xHandle ) < uxTaskPriorityGet( NULL ) )
+	 {
+		 // Our priority (obtained using NULL handle) is higher.
+	 }
+ }
+   
+ * \defgroup uxTaskPriorityGet uxTaskPriorityGet + * \ingroup TaskCtrl + */ +UBaseType_t uxTaskPriorityGet( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
UBaseType_t uxTaskPriorityGetFromISR( TaskHandle_t xTask );
+ * + * A version of uxTaskPriorityGet() that can be used from an ISR. + */ +UBaseType_t uxTaskPriorityGetFromISR( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
eTaskState eTaskGetState( TaskHandle_t xTask );
+ * + * INCLUDE_eTaskGetState must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Obtain the state of any task. States are encoded by the eTaskState + * enumerated type. + * + * @param xTask Handle of the task to be queried. + * + * @return The state of xTask at the time the function was called. Note the + * state of the task might change between the function being called, and the + * functions return value being tested by the calling task. + */ +eTaskState eTaskGetState( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState );
+ * + * configUSE_TRACE_FACILITY must be defined as 1 for this function to be + * available. See the configuration section for more information. + * + * Populates a TaskStatus_t structure with information about a task. + * + * @param xTask Handle of the task being queried. If xTask is NULL then + * information will be returned about the calling task. + * + * @param pxTaskStatus A pointer to the TaskStatus_t structure that will be + * filled with information about the task referenced by the handle passed using + * the xTask parameter. + * + * @xGetFreeStackSpace The TaskStatus_t structure contains a member to report + * the stack high water mark of the task being queried. Calculating the stack + * high water mark takes a relatively long time, and can make the system + * temporarily unresponsive - so the xGetFreeStackSpace parameter is provided to + * allow the high water mark checking to be skipped. The high watermark value + * will only be written to the TaskStatus_t structure if xGetFreeStackSpace is + * not set to pdFALSE; + * + * @param eState The TaskStatus_t structure contains a member to report the + * state of the task being queried. Obtaining the task state is not as fast as + * a simple assignment - so the eState parameter is provided to allow the state + * information to be omitted from the TaskStatus_t structure. To obtain state + * information then set eState to eInvalid - otherwise the value passed in + * eState will be reported as the task state in the TaskStatus_t structure. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+ TaskStatus_t xTaskDetails;
+
+    // Obtain the handle of a task from its name.
+    xHandle = xTaskGetHandle( "Task_Name" );
+
+    // Check the handle is not NULL.
+    configASSERT( xHandle );
+
+    // Use the handle to obtain further information about the task.
+    vTaskGetInfo( xHandle,
+                  &xTaskDetails,
+                  pdTRUE, // Include the high water mark in xTaskDetails.
+                  eInvalid ); // Include the task state in xTaskDetails.
+ }
+   
+ * \defgroup vTaskGetInfo vTaskGetInfo + * \ingroup TaskCtrl + */ +void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority );
+ * + * INCLUDE_vTaskPrioritySet must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Set the priority of any task. + * + * A context switch will occur before the function returns if the priority + * being set is higher than the currently executing task. + * + * @param xTask Handle to the task for which the priority is being set. + * Passing a NULL handle results in the priority of the calling task being set. + * + * @param uxNewPriority The priority to which the task will be set. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to raise the priority of the created task.
+	 vTaskPrioritySet( xHandle, tskIDLE_PRIORITY + 1 );
+
+	 // ...
+
+	 // Use a NULL handle to raise our priority to the same value.
+	 vTaskPrioritySet( NULL, tskIDLE_PRIORITY + 1 );
+ }
+   
+ * \defgroup vTaskPrioritySet vTaskPrioritySet + * \ingroup TaskCtrl + */ +void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskSuspend( TaskHandle_t xTaskToSuspend );
+ * + * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Suspend any task. When suspended a task will never get any microcontroller + * processing time, no matter what its priority. + * + * Calls to vTaskSuspend are not accumulative - + * i.e. calling vTaskSuspend () twice on the same task still only requires one + * call to vTaskResume () to ready the suspended task. + * + * @param xTaskToSuspend Handle to the task being suspended. Passing a NULL + * handle will cause the calling task to be suspended. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to suspend the created task.
+	 vTaskSuspend( xHandle );
+
+	 // ...
+
+	 // The created task will not run during this period, unless
+	 // another task calls vTaskResume( xHandle ).
+
+	 //...
+
+
+	 // Suspend ourselves.
+	 vTaskSuspend( NULL );
+
+	 // We cannot get here unless another task calls vTaskResume
+	 // with our handle as the parameter.
+ }
+   
+ * \defgroup vTaskSuspend vTaskSuspend + * \ingroup TaskCtrl + */ +void vTaskSuspend( TaskHandle_t xTaskToSuspend ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskResume( TaskHandle_t xTaskToResume );
+ * + * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Resumes a suspended task. + * + * A task that has been suspended by one or more calls to vTaskSuspend () + * will be made available for running again by a single call to + * vTaskResume (). + * + * @param xTaskToResume Handle to the task being readied. + * + * Example usage: +
+ void vAFunction( void )
+ {
+ TaskHandle_t xHandle;
+
+	 // Create a task, storing the handle.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
+
+	 // ...
+
+	 // Use the handle to suspend the created task.
+	 vTaskSuspend( xHandle );
+
+	 // ...
+
+	 // The created task will not run during this period, unless
+	 // another task calls vTaskResume( xHandle ).
+
+	 //...
+
+
+	 // Resume the suspended task ourselves.
+	 vTaskResume( xHandle );
+
+	 // The created task will once again get microcontroller processing
+	 // time in accordance with its priority within the system.
+ }
+   
+ * \defgroup vTaskResume vTaskResume + * \ingroup TaskCtrl + */ +void vTaskResume( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void xTaskResumeFromISR( TaskHandle_t xTaskToResume );
+ * + * INCLUDE_xTaskResumeFromISR must be defined as 1 for this function to be + * available. See the configuration section for more information. + * + * An implementation of vTaskResume() that can be called from within an ISR. + * + * A task that has been suspended by one or more calls to vTaskSuspend () + * will be made available for running again by a single call to + * xTaskResumeFromISR (). + * + * xTaskResumeFromISR() should not be used to synchronise a task with an + * interrupt if there is a chance that the interrupt could arrive prior to the + * task being suspended - as this can lead to interrupts being missed. Use of a + * semaphore as a synchronisation mechanism would avoid this eventuality. + * + * @param xTaskToResume Handle to the task being readied. + * + * @return pdTRUE if resuming the task should result in a context switch, + * otherwise pdFALSE. This is used by the ISR to determine if a context switch + * may be required following the ISR. + * + * \defgroup vTaskResumeFromISR vTaskResumeFromISR + * \ingroup TaskCtrl + */ +BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * SCHEDULER CONTROL + *----------------------------------------------------------*/ + +/** + * task. h + *
void vTaskStartScheduler( void );
+ * + * Starts the real time kernel tick processing. After calling the kernel + * has control over which tasks are executed and when. + * + * See the demo application file main.c for an example of creating + * tasks and starting the kernel. + * + * Example usage: +
+ void vAFunction( void )
+ {
+	 // Create at least one task before starting the kernel.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
+
+	 // Start the real time kernel with preemption.
+	 vTaskStartScheduler ();
+
+	 // Will not get here unless a task calls vTaskEndScheduler ()
+ }
+   
+ * + * \defgroup vTaskStartScheduler vTaskStartScheduler + * \ingroup SchedulerControl + */ +void vTaskStartScheduler( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskEndScheduler( void );
+ * + * NOTE: At the time of writing only the x86 real mode port, which runs on a PC + * in place of DOS, implements this function. + * + * Stops the real time kernel tick. All created tasks will be automatically + * deleted and multitasking (either preemptive or cooperative) will + * stop. Execution then resumes from the point where vTaskStartScheduler () + * was called, as if vTaskStartScheduler () had just returned. + * + * See the demo application file main. c in the demo/PC directory for an + * example that uses vTaskEndScheduler (). + * + * vTaskEndScheduler () requires an exit function to be defined within the + * portable layer (see vPortEndScheduler () in port. c for the PC port). This + * performs hardware specific operations such as stopping the kernel tick. + * + * vTaskEndScheduler () will cause all of the resources allocated by the + * kernel to be freed - but will not free resources allocated by application + * tasks. + * + * Example usage: +
+ void vTaskCode( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+
+		 // At some point we want to end the real time kernel processing
+		 // so call ...
+		 vTaskEndScheduler ();
+	 }
+ }
+
+ void vAFunction( void )
+ {
+	 // Create at least one task before starting the kernel.
+	 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
+
+	 // Start the real time kernel with preemption.
+	 vTaskStartScheduler ();
+
+	 // Will only get here when the vTaskCode () task has called
+	 // vTaskEndScheduler ().  When we get here we are back to single task
+	 // execution.
+ }
+   
+ * + * \defgroup vTaskEndScheduler vTaskEndScheduler + * \ingroup SchedulerControl + */ +void vTaskEndScheduler( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskSuspendAll( void );
+ * + * Suspends the scheduler without disabling interrupts. Context switches will + * not occur while the scheduler is suspended. + * + * After calling vTaskSuspendAll () the calling task will continue to execute + * without risk of being swapped out until a call to xTaskResumeAll () has been + * made. + * + * API functions that have the potential to cause a context switch (for example, + * vTaskDelayUntil(), xQueueSend(), etc.) must not be called while the scheduler + * is suspended. + * + * Example usage: +
+ void vTask1( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+
+		 // ...
+
+		 // At some point the task wants to perform a long operation during
+		 // which it does not want to get swapped out.  It cannot use
+		 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
+		 // operation may cause interrupts to be missed - including the
+		 // ticks.
+
+		 // Prevent the real time kernel swapping out the task.
+		 vTaskSuspendAll ();
+
+		 // Perform the operation here.  There is no need to use critical
+		 // sections as we have all the microcontroller processing time.
+		 // During this time interrupts will still operate and the kernel
+		 // tick count will be maintained.
+
+		 // ...
+
+		 // The operation is complete.  Restart the kernel.
+		 xTaskResumeAll ();
+	 }
+ }
+   
+ * \defgroup vTaskSuspendAll vTaskSuspendAll + * \ingroup SchedulerControl + */ +void vTaskSuspendAll( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskResumeAll( void );
+ * + * Resumes scheduler activity after it was suspended by a call to + * vTaskSuspendAll(). + * + * xTaskResumeAll() only resumes the scheduler. It does not unsuspend tasks + * that were previously suspended by a call to vTaskSuspend(). + * + * @return If resuming the scheduler caused a context switch then pdTRUE is + * returned, otherwise pdFALSE is returned. + * + * Example usage: +
+ void vTask1( void * pvParameters )
+ {
+	 for( ;; )
+	 {
+		 // Task code goes here.
+
+		 // ...
+
+		 // At some point the task wants to perform a long operation during
+		 // which it does not want to get swapped out.  It cannot use
+		 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
+		 // operation may cause interrupts to be missed - including the
+		 // ticks.
+
+		 // Prevent the real time kernel swapping out the task.
+		 vTaskSuspendAll ();
+
+		 // Perform the operation here.  There is no need to use critical
+		 // sections as we have all the microcontroller processing time.
+		 // During this time interrupts will still operate and the real
+		 // time kernel tick count will be maintained.
+
+		 // ...
+
+		 // The operation is complete.  Restart the kernel.  We want to force
+		 // a context switch - but there is no point if resuming the scheduler
+		 // caused a context switch already.
+		 if( !xTaskResumeAll () )
+		 {
+			  taskYIELD ();
+		 }
+	 }
+ }
+   
+ * \defgroup xTaskResumeAll xTaskResumeAll + * \ingroup SchedulerControl + */ +BaseType_t xTaskResumeAll( void ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * TASK UTILITIES + *----------------------------------------------------------*/ + +/** + * task. h + *
TickType_t xTaskGetTickCount( void );
+ * + * @return The count of ticks since vTaskStartScheduler was called. + * + * \defgroup xTaskGetTickCount xTaskGetTickCount + * \ingroup TaskUtils + */ +TickType_t xTaskGetTickCount( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
TickType_t xTaskGetTickCountFromISR( void );
+ * + * @return The count of ticks since vTaskStartScheduler was called. + * + * This is a version of xTaskGetTickCount() that is safe to be called from an + * ISR - provided that TickType_t is the natural word size of the + * microcontroller being used or interrupt nesting is either not supported or + * not being used. + * + * \defgroup xTaskGetTickCountFromISR xTaskGetTickCountFromISR + * \ingroup TaskUtils + */ +TickType_t xTaskGetTickCountFromISR( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
uint16_t uxTaskGetNumberOfTasks( void );
+ * + * @return The number of tasks that the real time kernel is currently managing. + * This includes all ready, blocked and suspended tasks. A task that + * has been deleted but not yet freed by the idle task will also be + * included in the count. + * + * \defgroup uxTaskGetNumberOfTasks uxTaskGetNumberOfTasks + * \ingroup TaskUtils + */ +UBaseType_t uxTaskGetNumberOfTasks( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
char *pcTaskGetName( TaskHandle_t xTaskToQuery );
+ * + * @return The text (human readable) name of the task referenced by the handle + * xTaskToQuery. A task can query its own name by either passing in its own + * handle, or by setting xTaskToQuery to NULL. + * + * \defgroup pcTaskGetName pcTaskGetName + * \ingroup TaskUtils + */ +char *pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task. h + *
TaskHandle_t xTaskGetHandle( const char *pcNameToQuery );
+ * + * NOTE: This function takes a relatively long time to complete and should be + * used sparingly. + * + * @return The handle of the task that has the human readable name pcNameToQuery. + * NULL is returned if no matching name is found. INCLUDE_xTaskGetHandle + * must be set to 1 in FreeRTOSConfig.h for pcTaskGetHandle() to be available. + * + * \defgroup pcTaskGetHandle pcTaskGetHandle + * \ingroup TaskUtils + */ +TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task.h + *
UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask );
+ * + * INCLUDE_uxTaskGetStackHighWaterMark must be set to 1 in FreeRTOSConfig.h for + * this function to be available. + * + * Returns the high water mark of the stack associated with xTask. That is, + * the minimum free stack space there has been (in words, so on a 32 bit machine + * a value of 1 means 4 bytes) since the task started. The smaller the returned + * number the closer the task has come to overflowing its stack. + * + * @param xTask Handle of the task associated with the stack to be checked. + * Set xTask to NULL to check the stack of the calling task. + * + * @return The smallest amount of free stack space there has been (in words, so + * actual spaces on the stack rather than bytes) since the task referenced by + * xTask was created. + */ +UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/* When using trace macros it is sometimes necessary to include task.h before +FreeRTOS.h. When this is done TaskHookFunction_t will not yet have been defined, +so the following two prototypes will cause a compilation error. This can be +fixed by simply guarding against the inclusion of these two prototypes unless +they are explicitly required by the configUSE_APPLICATION_TASK_TAG configuration +constant. */ +#ifdef configUSE_APPLICATION_TASK_TAG + #if configUSE_APPLICATION_TASK_TAG == 1 + /** + * task.h + *
void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction );
+ * + * Sets pxHookFunction to be the task hook function used by the task xTask. + * Passing xTask as NULL has the effect of setting the calling tasks hook + * function. + */ + void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) PRIVILEGED_FUNCTION; + + /** + * task.h + *
void xTaskGetApplicationTaskTag( TaskHandle_t xTask );
+ * + * Returns the pxHookFunction value assigned to the task xTask. + */ + TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + #endif /* configUSE_APPLICATION_TASK_TAG ==1 */ +#endif /* ifdef configUSE_APPLICATION_TASK_TAG */ + +#if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + + /* Each task contains an array of pointers that is dimensioned by the + configNUM_THREAD_LOCAL_STORAGE_POINTERS setting in FreeRTOSConfig.h. The + kernel does not use the pointers itself, so the application writer can use + the pointers for any purpose they wish. The following two functions are + used to set and query a pointer respectively. */ + void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) PRIVILEGED_FUNCTION; + void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) PRIVILEGED_FUNCTION; + +#endif + +/** + * task.h + *
BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter );
+ * + * Calls the hook function associated with xTask. Passing xTask as NULL has + * the effect of calling the Running tasks (the calling task) hook function. + * + * pvParameter is passed to the hook function for the task to interpret as it + * wants. The return value is the value returned by the task hook function + * registered by the user. + */ +BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) PRIVILEGED_FUNCTION; + +/** + * xTaskGetIdleTaskHandle() is only available if + * INCLUDE_xTaskGetIdleTaskHandle is set to 1 in FreeRTOSConfig.h. + * + * Simply returns the handle of the idle task. It is not valid to call + * xTaskGetIdleTaskHandle() before the scheduler has been started. + */ +TaskHandle_t xTaskGetIdleTaskHandle( void ) PRIVILEGED_FUNCTION; + +/** + * configUSE_TRACE_FACILITY must be defined as 1 in FreeRTOSConfig.h for + * uxTaskGetSystemState() to be available. + * + * uxTaskGetSystemState() populates an TaskStatus_t structure for each task in + * the system. TaskStatus_t structures contain, among other things, members + * for the task handle, task name, task priority, task state, and total amount + * of run time consumed by the task. See the TaskStatus_t structure + * definition in this file for the full member list. + * + * NOTE: This function is intended for debugging use only as its use results in + * the scheduler remaining suspended for an extended period. + * + * @param pxTaskStatusArray A pointer to an array of TaskStatus_t structures. + * The array must contain at least one TaskStatus_t structure for each task + * that is under the control of the RTOS. The number of tasks under the control + * of the RTOS can be determined using the uxTaskGetNumberOfTasks() API function. + * + * @param uxArraySize The size of the array pointed to by the pxTaskStatusArray + * parameter. The size is specified as the number of indexes in the array, or + * the number of TaskStatus_t structures contained in the array, not by the + * number of bytes in the array. + * + * @param pulTotalRunTime If configGENERATE_RUN_TIME_STATS is set to 1 in + * FreeRTOSConfig.h then *pulTotalRunTime is set by uxTaskGetSystemState() to the + * total run time (as defined by the run time stats clock, see + * http://www.freertos.org/rtos-run-time-stats.html) since the target booted. + * pulTotalRunTime can be set to NULL to omit the total run time information. + * + * @return The number of TaskStatus_t structures that were populated by + * uxTaskGetSystemState(). This should equal the number returned by the + * uxTaskGetNumberOfTasks() API function, but will be zero if the value passed + * in the uxArraySize parameter was too small. + * + * Example usage: +
+    // This example demonstrates how a human readable table of run time stats
+	// information is generated from raw data provided by uxTaskGetSystemState().
+	// The human readable table is written to pcWriteBuffer
+	void vTaskGetRunTimeStats( char *pcWriteBuffer )
+	{
+	TaskStatus_t *pxTaskStatusArray;
+	volatile UBaseType_t uxArraySize, x;
+	uint32_t ulTotalRunTime, ulStatsAsPercentage;
+
+		// Make sure the write buffer does not contain a string.
+		*pcWriteBuffer = 0x00;
+
+		// Take a snapshot of the number of tasks in case it changes while this
+		// function is executing.
+		uxArraySize = uxTaskGetNumberOfTasks();
+
+		// Allocate a TaskStatus_t structure for each task.  An array could be
+		// allocated statically at compile time.
+		pxTaskStatusArray = pvPortMalloc( uxArraySize * sizeof( TaskStatus_t ) );
+
+		if( pxTaskStatusArray != NULL )
+		{
+			// Generate raw status information about each task.
+			uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalRunTime );
+
+			// For percentage calculations.
+			ulTotalRunTime /= 100UL;
+
+			// Avoid divide by zero errors.
+			if( ulTotalRunTime > 0 )
+			{
+				// For each populated position in the pxTaskStatusArray array,
+				// format the raw data as human readable ASCII data
+				for( x = 0; x < uxArraySize; x++ )
+				{
+					// What percentage of the total run time has the task used?
+					// This will always be rounded down to the nearest integer.
+					// ulTotalRunTimeDiv100 has already been divided by 100.
+					ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalRunTime;
+
+					if( ulStatsAsPercentage > 0UL )
+					{
+						sprintf( pcWriteBuffer, "%s\t\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage );
+					}
+					else
+					{
+						// If the percentage is zero here then the task has
+						// consumed less than 1% of the total run time.
+						sprintf( pcWriteBuffer, "%s\t\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter );
+					}
+
+					pcWriteBuffer += strlen( ( char * ) pcWriteBuffer );
+				}
+			}
+
+			// The array is no longer needed, free the memory it consumes.
+			vPortFree( pxTaskStatusArray );
+		}
+	}
+	
+ */ +UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
void vTaskList( char *pcWriteBuffer );
+ * + * configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS must + * both be defined as 1 for this function to be available. See the + * configuration section of the FreeRTOS.org website for more information. + * + * NOTE 1: This function will disable interrupts for its duration. It is + * not intended for normal application runtime use but as a debug aid. + * + * Lists all the current tasks, along with their current state and stack + * usage high water mark. + * + * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or + * suspended ('S'). + * + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many of the + * demo applications. Do not consider it to be part of the scheduler. + * + * vTaskList() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that displays task + * names, states and stack usage. + * + * vTaskList() has a dependency on the sprintf() C library function that might + * bloat the code size, use a lot of stack, and provide different results on + * different platforms. An alternative, tiny, third party, and limited + * functionality implementation of sprintf() is provided in many of the + * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note + * printf-stdarg.c does not provide a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly through a + * call to vTaskList(). + * + * @param pcWriteBuffer A buffer into which the above mentioned details + * will be written, in ASCII form. This buffer is assumed to be large + * enough to contain the generated report. Approximately 40 bytes per + * task should be sufficient. + * + * \defgroup vTaskList vTaskList + * \ingroup TaskUtils + */ +void vTaskList( char * pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task. h + *
void vTaskGetRunTimeStats( char *pcWriteBuffer );
+ * + * configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS + * must both be defined as 1 for this function to be available. The application + * must also then provide definitions for + * portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE() + * to configure a peripheral timer/counter and return the timers current count + * value respectively. The counter should be at least 10 times the frequency of + * the tick count. + * + * NOTE 1: This function will disable interrupts for its duration. It is + * not intended for normal application runtime use but as a debug aid. + * + * Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total + * accumulated execution time being stored for each task. The resolution + * of the accumulated time value depends on the frequency of the timer + * configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro. + * Calling vTaskGetRunTimeStats() writes the total execution time of each + * task into a buffer, both as an absolute count value and as a percentage + * of the total system execution time. + * + * NOTE 2: + * + * This function is provided for convenience only, and is used by many of the + * demo applications. Do not consider it to be part of the scheduler. + * + * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that displays the + * amount of time each task has spent in the Running state in both absolute and + * percentage terms. + * + * vTaskGetRunTimeStats() has a dependency on the sprintf() C library function + * that might bloat the code size, use a lot of stack, and provide different + * results on different platforms. An alternative, tiny, third party, and + * limited functionality implementation of sprintf() is provided in many of the + * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note + * printf-stdarg.c does not provide a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() directly + * to get access to raw stats data, rather than indirectly through a call to + * vTaskGetRunTimeStats(). + * + * @param pcWriteBuffer A buffer into which the execution times will be + * written, in ASCII form. This buffer is assumed to be large enough to + * contain the generated report. Approximately 40 bytes per task should + * be sufficient. + * + * \defgroup vTaskGetRunTimeStats vTaskGetRunTimeStats + * \ingroup TaskUtils + */ +void vTaskGetRunTimeStats( char *pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task. h + *
BaseType_t xTaskNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @param ulValue Data that can be sent with the notification. How the data is + * used depends on the value of the eAction parameter. + * + * @param eAction Specifies how the notification updates the task's notification + * value, if at all. Valid values for eAction are as follows: + * + * eSetBits - + * The task's notification value is bitwise ORed with ulValue. xTaskNofify() + * always returns pdPASS in this case. + * + * eIncrement - + * The task's notification value is incremented. ulValue is not used and + * xTaskNotify() always returns pdPASS in this case. + * + * eSetValueWithOverwrite - + * The task's notification value is set to the value of ulValue, even if the + * task being notified had not yet processed the previous notification (the + * task already had a notification pending). xTaskNotify() always returns + * pdPASS in this case. + * + * eSetValueWithoutOverwrite - + * If the task being notified did not already have a notification pending then + * the task's notification value is set to ulValue and xTaskNotify() will + * return pdPASS. If the task being notified already had a notification + * pending then no action is performed and pdFAIL is returned. + * + * eNoAction - + * The task receives a notification without its notification value being + * updated. ulValue is not used and xTaskNotify() always returns pdPASS in + * this case. + * + * pulPreviousNotificationValue - + * Can be used to pass out the subject task's notification value before any + * bits are modified by the notify function. + * + * @return Dependent on the value of eAction. See the description of the + * eAction parameter. + * + * \defgroup xTaskNotify xTaskNotify + * \ingroup TaskNotifications + */ +BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) PRIVILEGED_FUNCTION; +#define xTaskNotify( xTaskToNotify, ulValue, eAction ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL ) +#define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotifyValue ) ) + +/** + * task. h + *
BaseType_t xTaskNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, BaseType_t *pxHigherPriorityTaskWoken );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * A version of xTaskNotify() that can be used from an interrupt service routine + * (ISR). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @param ulValue Data that can be sent with the notification. How the data is + * used depends on the value of the eAction parameter. + * + * @param eAction Specifies how the notification updates the task's notification + * value, if at all. Valid values for eAction are as follows: + * + * eSetBits - + * The task's notification value is bitwise ORed with ulValue. xTaskNofify() + * always returns pdPASS in this case. + * + * eIncrement - + * The task's notification value is incremented. ulValue is not used and + * xTaskNotify() always returns pdPASS in this case. + * + * eSetValueWithOverwrite - + * The task's notification value is set to the value of ulValue, even if the + * task being notified had not yet processed the previous notification (the + * task already had a notification pending). xTaskNotify() always returns + * pdPASS in this case. + * + * eSetValueWithoutOverwrite - + * If the task being notified did not already have a notification pending then + * the task's notification value is set to ulValue and xTaskNotify() will + * return pdPASS. If the task being notified already had a notification + * pending then no action is performed and pdFAIL is returned. + * + * eNoAction - + * The task receives a notification without its notification value being + * updated. ulValue is not used and xTaskNotify() always returns pdPASS in + * this case. + * + * @param pxHigherPriorityTaskWoken xTaskNotifyFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the + * task to which the notification was sent to leave the Blocked state, and the + * unblocked task has a priority higher than the currently running task. If + * xTaskNotifyFromISR() sets this value to pdTRUE then a context switch should + * be requested before the interrupt is exited. How a context switch is + * requested from an ISR is dependent on the port - see the documentation page + * for the port in use. + * + * @return Dependent on the value of eAction. See the description of the + * eAction parameter. + * + * \defgroup xTaskNotify xTaskNotify + * \ingroup TaskNotifications + */ +BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; +#define xTaskNotifyFromISR( xTaskToNotify, ulValue, eAction, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL, ( pxHigherPriorityTaskWoken ) ) +#define xTaskNotifyAndQueryFromISR( xTaskToNotify, ulValue, eAction, pulPreviousNotificationValue, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotificationValue ), ( pxHigherPriorityTaskWoken ) ) + +/** + * task. h + *
BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param ulBitsToClearOnEntry Bits that are set in ulBitsToClearOnEntry value + * will be cleared in the calling task's notification value before the task + * checks to see if any notifications are pending, and optionally blocks if no + * notifications are pending. Setting ulBitsToClearOnEntry to ULONG_MAX (if + * limits.h is included) or 0xffffffffUL (if limits.h is not included) will have + * the effect of resetting the task's notification value to 0. Setting + * ulBitsToClearOnEntry to 0 will leave the task's notification value unchanged. + * + * @param ulBitsToClearOnExit If a notification is pending or received before + * the calling task exits the xTaskNotifyWait() function then the task's + * notification value (see the xTaskNotify() API function) is passed out using + * the pulNotificationValue parameter. Then any bits that are set in + * ulBitsToClearOnExit will be cleared in the task's notification value (note + * *pulNotificationValue is set before any bits are cleared). Setting + * ulBitsToClearOnExit to ULONG_MAX (if limits.h is included) or 0xffffffffUL + * (if limits.h is not included) will have the effect of resetting the task's + * notification value to 0 before the function exits. Setting + * ulBitsToClearOnExit to 0 will leave the task's notification value unchanged + * when the function exits (in which case the value passed out in + * pulNotificationValue will match the task's notification value). + * + * @param pulNotificationValue Used to pass the task's notification value out + * of the function. Note the value passed out will not be effected by the + * clearing of any bits caused by ulBitsToClearOnExit being non-zero. + * + * @param xTicksToWait The maximum amount of time that the task should wait in + * the Blocked state for a notification to be received, should a notification + * not already be pending when xTaskNotifyWait() was called. The task + * will not consume any processing time while it is in the Blocked state. This + * is specified in kernel ticks, the macro pdMS_TO_TICSK( value_in_ms ) can be + * used to convert a time specified in milliseconds to a time specified in + * ticks. + * + * @return If a notification was received (including notifications that were + * already pending when xTaskNotifyWait was called) then pdPASS is + * returned. Otherwise pdFAIL is returned. + * + * \defgroup xTaskNotifyWait xTaskNotifyWait + * \ingroup TaskNotifications + */ +BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskNotifyGive( TaskHandle_t xTaskToNotify );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro + * to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * xTaskNotifyGive() is a helper macro intended for use when task notifications + * are used as light weight and faster binary or counting semaphore equivalents. + * Actual FreeRTOS semaphores are given using the xSemaphoreGive() API function, + * the equivalent action that instead uses a task notification is + * xTaskNotifyGive(). + * + * When task notifications are being used as a binary or counting semaphore + * equivalent then the task being notified should wait for the notification + * using the ulTaskNotificationTake() API function rather than the + * xTaskNotifyWait() API function. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @return xTaskNotifyGive() is a macro that calls xTaskNotify() with the + * eAction parameter set to eIncrement - so pdPASS is always returned. + * + * \defgroup xTaskNotifyGive xTaskNotifyGive + * \ingroup TaskNotifications + */ +#define xTaskNotifyGive( xTaskToNotify ) xTaskGenericNotify( ( xTaskToNotify ), ( 0 ), eIncrement, NULL ) + +/** + * task. h + *
void vTaskNotifyGiveFromISR( TaskHandle_t xTaskHandle, BaseType_t *pxHigherPriorityTaskWoken );
+ *
+ * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro
+ * to be available.
+ *
+ * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
+ * "notification value", which is a 32-bit unsigned integer (uint32_t).
+ *
+ * A version of xTaskNotifyGive() that can be called from an interrupt service
+ * routine (ISR).
+ *
+ * Events can be sent to a task using an intermediary object.  Examples of such
+ * objects are queues, semaphores, mutexes and event groups.  Task notifications
+ * are a method of sending an event directly to a task without the need for such
+ * an intermediary object.
+ *
+ * A notification sent to a task can optionally perform an action, such as
+ * update, overwrite or increment the task's notification value.  In that way
+ * task notifications can be used to send data to a task, or be used as light
+ * weight and fast binary or counting semaphores.
+ *
+ * vTaskNotifyGiveFromISR() is intended for use when task notifications are
+ * used as light weight and faster binary or counting semaphore equivalents.
+ * Actual FreeRTOS semaphores are given from an ISR using the
+ * xSemaphoreGiveFromISR() API function, the equivalent action that instead uses
+ * a task notification is vTaskNotifyGiveFromISR().
+ *
+ * When task notifications are being used as a binary or counting semaphore
+ * equivalent then the task being notified should wait for the notification
+ * using the ulTaskNotificationTake() API function rather than the
+ * xTaskNotifyWait() API function.
+ *
+ * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details.
+ *
+ * @param xTaskToNotify The handle of the task being notified.  The handle to a
+ * task can be returned from the xTaskCreate() API function used to create the
+ * task, and the handle of the currently running task can be obtained by calling
+ * xTaskGetCurrentTaskHandle().
+ *
+ * @param pxHigherPriorityTaskWoken  vTaskNotifyGiveFromISR() will set
+ * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the
+ * task to which the notification was sent to leave the Blocked state, and the
+ * unblocked task has a priority higher than the currently running task.  If
+ * vTaskNotifyGiveFromISR() sets this value to pdTRUE then a context switch
+ * should be requested before the interrupt is exited.  How a context switch is
+ * requested from an ISR is dependent on the port - see the documentation page
+ * for the port in use.
+ *
+ * \defgroup xTaskNotifyWait xTaskNotifyWait
+ * \ingroup TaskNotifications
+ */
+void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION;
+
+/**
+ * task. h
+ * 
uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait );
+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * ulTaskNotifyTake() is intended for use when a task notification is used as a + * faster and lighter weight binary or counting semaphore alternative. Actual + * FreeRTOS semaphores are taken using the xSemaphoreTake() API function, the + * equivalent action that instead uses a task notification is + * ulTaskNotifyTake(). + * + * When a task is using its notification value as a binary or counting semaphore + * other tasks should send notifications to it using the xTaskNotifyGive() + * macro, or xTaskNotify() function with the eAction parameter set to + * eIncrement. + * + * ulTaskNotifyTake() can either clear the task's notification value to + * zero on exit, in which case the notification value acts like a binary + * semaphore, or decrement the task's notification value on exit, in which case + * the notification value acts like a counting semaphore. + * + * A task can use ulTaskNotifyTake() to [optionally] block to wait for a + * the task's notification value to be non-zero. The task does not consume any + * CPU time while it is in the Blocked state. + * + * Where as xTaskNotifyWait() will return when a notification is pending, + * ulTaskNotifyTake() will return when the task's notification value is + * not zero. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xClearCountOnExit if xClearCountOnExit is pdFALSE then the task's + * notification value is decremented when the function exits. In this way the + * notification value acts like a counting semaphore. If xClearCountOnExit is + * not pdFALSE then the task's notification value is cleared to zero when the + * function exits. In this way the notification value acts like a binary + * semaphore. + * + * @param xTicksToWait The maximum amount of time that the task should wait in + * the Blocked state for the task's notification value to be greater than zero, + * should the count not already be greater than zero when + * ulTaskNotifyTake() was called. The task will not consume any processing + * time while it is in the Blocked state. This is specified in kernel ticks, + * the macro pdMS_TO_TICSK( value_in_ms ) can be used to convert a time + * specified in milliseconds to a time specified in ticks. + * + * @return The task's notification count before it is either cleared to zero or + * decremented (see the xClearCountOnExit parameter). + * + * \defgroup ulTaskNotifyTake ulTaskNotifyTake + * \ingroup TaskNotifications + */ +uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * task. h + *
BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask );
+ * + * If the notification state of the task referenced by the handle xTask is + * eNotified, then set the task's notification state to eNotWaitingNotification. + * The task's notification value is not altered. Set xTask to NULL to clear the + * notification state of the calling task. + * + * @return pdTRUE if the task's notification state was set to + * eNotWaitingNotification, otherwise pdFALSE. + * \defgroup xTaskNotifyStateClear xTaskNotifyStateClear + * \ingroup TaskNotifications + */ +BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ); + +/*----------------------------------------------------------- + * SCHEDULER INTERNALS AVAILABLE FOR PORTING PURPOSES + *----------------------------------------------------------*/ + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY + * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS + * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * Called from the real time kernel tick (either preemptive or cooperative), + * this increments the tick count and checks if any tasks that are blocked + * for a finite period required removing from a blocked list and placing on + * a ready list. If a non-zero value is returned then a context switch is + * required because either: + * + A task was removed from a blocked list because its timeout had expired, + * or + * + Time slicing is in use and there is a task of equal priority to the + * currently running task. + */ +BaseType_t xTaskIncrementTick( void ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * Removes the calling task from the ready list and places it both + * on the list of tasks waiting for a particular event, and the + * list of delayed tasks. The task will be removed from both lists + * and replaced on the ready list should either the event occur (and + * there be no higher priority tasks waiting on the same event) or + * the delay period expires. + * + * The 'unordered' version replaces the event list item value with the + * xItemValue value, and inserts the list item at the end of the list. + * + * The 'ordered' version uses the existing event list item value (which is the + * owning tasks priority) to insert the list item into the event list is task + * priority order. + * + * @param pxEventList The list containing tasks that are blocked waiting + * for the event to occur. + * + * @param xItemValue The item value to use for the event list item when the + * event list is not ordered by task priority. + * + * @param xTicksToWait The maximum amount of time that the task should wait + * for the event to occur. This is specified in kernel ticks,the constant + * portTICK_PERIOD_MS can be used to convert kernel ticks into a real time + * period. + */ +void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * This function performs nearly the same function as vTaskPlaceOnEventList(). + * The difference being that this function does not permit tasks to block + * indefinitely, whereas vTaskPlaceOnEventList() does. + * + */ +void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * Removes a task from both the specified event list and the list of blocked + * tasks, and places it on a ready queue. + * + * xTaskRemoveFromEventList()/xTaskRemoveFromUnorderedEventList() will be called + * if either an event occurs to unblock a task, or the block timeout period + * expires. + * + * xTaskRemoveFromEventList() is used when the event list is in task priority + * order. It removes the list item from the head of the event list as that will + * have the highest priority owning task of all the tasks on the event list. + * xTaskRemoveFromUnorderedEventList() is used when the event list is not + * ordered and the event list items hold something other than the owning tasks + * priority. In this case the event list item value is updated to the value + * passed in the xItemValue parameter. + * + * @return pdTRUE if the task being removed has a higher priority than the task + * making the call, otherwise pdFALSE. + */ +BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION; +BaseType_t xTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY + * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS + * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * Sets the pointer to the current TCB to the TCB of the highest priority task + * that is ready to run. + */ +void vTaskSwitchContext( void ) PRIVILEGED_FUNCTION; + +/* + * THESE FUNCTIONS MUST NOT BE USED FROM APPLICATION CODE. THEY ARE USED BY + * THE EVENT BITS MODULE. + */ +TickType_t uxTaskResetEventItemValue( void ) PRIVILEGED_FUNCTION; + +/* + * Return the handle of the calling task. + */ +TaskHandle_t xTaskGetCurrentTaskHandle( void ) PRIVILEGED_FUNCTION; + +/* + * Capture the current time status for future reference. + */ +void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION; + +/* + * Compare the time status now with that previously captured to see if the + * timeout has expired. + */ +BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) PRIVILEGED_FUNCTION; + +/* + * Shortcut used by the queue implementation to prevent unnecessary call to + * taskYIELD(); + */ +void vTaskMissedYield( void ) PRIVILEGED_FUNCTION; + +/* + * Returns the scheduler state as taskSCHEDULER_RUNNING, + * taskSCHEDULER_NOT_STARTED or taskSCHEDULER_SUSPENDED. + */ +BaseType_t xTaskGetSchedulerState( void ) PRIVILEGED_FUNCTION; + +/* + * Raises the priority of the mutex holder to that of the calling task should + * the mutex holder have a priority less than the calling task. + */ +void vTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; + +/* + * Set the priority of a task back to its proper priority in the case that it + * inherited a higher priority while it was holding a semaphore. + */ +BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; + +/* + * Get the uxTCBNumber assigned to the task referenced by the xTask parameter. + */ +UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/* + * Set the uxTaskNumber of the task referenced by the xTask parameter to + * uxHandle. + */ +void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) PRIVILEGED_FUNCTION; + +/* + * Only available when configUSE_TICKLESS_IDLE is set to 1. + * If tickless mode is being used, or a low power mode is implemented, then + * the tick interrupt will not execute during idle periods. When this is the + * case, the tick count value maintained by the scheduler needs to be kept up + * to date with the actual execution time by being skipped forward by a time + * equal to the idle period. + */ +void vTaskStepTick( const TickType_t xTicksToJump ) PRIVILEGED_FUNCTION; + +/* + * Only avilable when configUSE_TICKLESS_IDLE is set to 1. + * Provided for use within portSUPPRESS_TICKS_AND_SLEEP() to allow the port + * specific sleep function to determine if it is ok to proceed with the sleep, + * and if it is ok to proceed, if it is ok to sleep indefinitely. + * + * This function is necessary because portSUPPRESS_TICKS_AND_SLEEP() is only + * called with the scheduler suspended, not from within a critical section. It + * is therefore possible for an interrupt to request a context switch between + * portSUPPRESS_TICKS_AND_SLEEP() and the low power mode actually being + * entered. eTaskConfirmSleepModeStatus() should be called from a short + * critical section between the timer being stopped and the sleep mode being + * entered to ensure it is ok to proceed into the sleep mode. + */ +eSleepModeStatus eTaskConfirmSleepModeStatus( void ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Increment the mutex held count when a mutex is + * taken and return the handle of the task that has taken the mutex. + */ +void *pvTaskIncrementMutexHeldCount( void ) PRIVILEGED_FUNCTION; + +#ifdef __cplusplus +} +#endif +#endif /* INC_TASK_H */ + + + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h new file mode 100644 index 0000000..798c955 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h @@ -0,0 +1,1314 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + + +#ifndef TIMERS_H +#define TIMERS_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include timers.h" +#endif + +/*lint -e537 This headers are only multiply included if the application code +happens to also be including task.h. */ +#include "task.h" +/*lint +e537 */ + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * MACROS AND DEFINITIONS + *----------------------------------------------------------*/ + +/* IDs for commands that can be sent/received on the timer queue. These are to +be used solely through the macros that make up the public software timer API, +as defined below. The commands that are sent from interrupts must use the +highest numbers as tmrFIRST_FROM_ISR_COMMAND is used to determine if the task +or interrupt version of the queue send function should be used. */ +#define tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR ( ( BaseType_t ) -2 ) +#define tmrCOMMAND_EXECUTE_CALLBACK ( ( BaseType_t ) -1 ) +#define tmrCOMMAND_START_DONT_TRACE ( ( BaseType_t ) 0 ) +#define tmrCOMMAND_START ( ( BaseType_t ) 1 ) +#define tmrCOMMAND_RESET ( ( BaseType_t ) 2 ) +#define tmrCOMMAND_STOP ( ( BaseType_t ) 3 ) +#define tmrCOMMAND_CHANGE_PERIOD ( ( BaseType_t ) 4 ) +#define tmrCOMMAND_DELETE ( ( BaseType_t ) 5 ) + +#define tmrFIRST_FROM_ISR_COMMAND ( ( BaseType_t ) 6 ) +#define tmrCOMMAND_START_FROM_ISR ( ( BaseType_t ) 6 ) +#define tmrCOMMAND_RESET_FROM_ISR ( ( BaseType_t ) 7 ) +#define tmrCOMMAND_STOP_FROM_ISR ( ( BaseType_t ) 8 ) +#define tmrCOMMAND_CHANGE_PERIOD_FROM_ISR ( ( BaseType_t ) 9 ) + + +/** + * Type by which software timers are referenced. For example, a call to + * xTimerCreate() returns an TimerHandle_t variable that can then be used to + * reference the subject timer in calls to other software timer API functions + * (for example, xTimerStart(), xTimerReset(), etc.). + */ +typedef void * TimerHandle_t; + +/* + * Defines the prototype to which timer callback functions must conform. + */ +typedef void (*TimerCallbackFunction_t)( TimerHandle_t xTimer ); + +/* + * Defines the prototype to which functions used with the + * xTimerPendFunctionCallFromISR() function must conform. + */ +typedef void (*PendedFunction_t)( void *, uint32_t ); + +/** + * TimerHandle_t xTimerCreate( const char * const pcTimerName, + * TickType_t xTimerPeriodInTicks, + * UBaseType_t uxAutoReload, + * void * pvTimerID, + * TimerCallbackFunction_t pxCallbackFunction ); + * + * Creates a new software timer instance, and returns a handle by which the + * created software timer can be referenced. + * + * Internally, within the FreeRTOS implementation, software timers use a block + * of memory, in which the timer data structure is stored. If a software timer + * is created using xTimerCreate() then the required memory is automatically + * dynamically allocated inside the xTimerCreate() function. (see + * http://www.freertos.org/a00111.html). If a software timer is created using + * xTimerCreateStatic() then the application writer must provide the memory that + * will get used by the software timer. xTimerCreateStatic() therefore allows a + * software timer to be created without using any dynamic memory allocation. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a + * timer into the active state. + * + * @param pcTimerName A text name that is assigned to the timer. This is done + * purely to assist debugging. The kernel itself only ever references a timer + * by its handle, and never by its name. + * + * @param xTimerPeriodInTicks The timer period. The time is defined in tick + * periods so the constant portTICK_PERIOD_MS can be used to convert a time that + * has been specified in milliseconds. For example, if the timer must expire + * after 100 ticks, then xTimerPeriodInTicks should be set to 100. + * Alternatively, if the timer must expire after 500ms, then xPeriod can be set + * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or + * equal to 1000. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. + * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + * + * @param pvTimerID An identifier that is assigned to the timer being created. + * Typically this would be used in the timer callback function to identify which + * timer expired when the same callback function is assigned to more than one + * timer. + * + * @param pxCallbackFunction The function to call when the timer expires. + * Callback functions must have the prototype defined by TimerCallbackFunction_t, + * which is "void vCallbackFunction( TimerHandle_t xTimer );". + * + * @return If the timer is successfully created then a handle to the newly + * created timer is returned. If the timer cannot be created (because either + * there is insufficient FreeRTOS heap remaining to allocate the timer + * structures, or the timer period was set to 0) then NULL is returned. + * + * Example usage: + * @verbatim + * #define NUM_TIMERS 5 + * + * // An array to hold handles to the created timers. + * TimerHandle_t xTimers[ NUM_TIMERS ]; + * + * // An array to hold a count of the number of times each timer expires. + * int32_t lExpireCounters[ NUM_TIMERS ] = { 0 }; + * + * // Define a callback function that will be used by multiple timer instances. + * // The callback function does nothing but count the number of times the + * // associated timer expires, and stop the timer once the timer has expired + * // 10 times. + * void vTimerCallback( TimerHandle_t pxTimer ) + * { + * int32_t lArrayIndex; + * const int32_t xMaxExpiryCountBeforeStopping = 10; + * + * // Optionally do something if the pxTimer parameter is NULL. + * configASSERT( pxTimer ); + * + * // Which timer expired? + * lArrayIndex = ( int32_t ) pvTimerGetTimerID( pxTimer ); + * + * // Increment the number of times that pxTimer has expired. + * lExpireCounters[ lArrayIndex ] += 1; + * + * // If the timer has expired 10 times then stop it from running. + * if( lExpireCounters[ lArrayIndex ] == xMaxExpiryCountBeforeStopping ) + * { + * // Do not use a block time if calling a timer API function from a + * // timer callback function, as doing so could cause a deadlock! + * xTimerStop( pxTimer, 0 ); + * } + * } + * + * void main( void ) + * { + * int32_t x; + * + * // Create then start some timers. Starting the timers before the scheduler + * // has been started means the timers will start running immediately that + * // the scheduler starts. + * for( x = 0; x < NUM_TIMERS; x++ ) + * { + * xTimers[ x ] = xTimerCreate( "Timer", // Just a text name, not used by the kernel. + * ( 100 * x ), // The timer period in ticks. + * pdTRUE, // The timers will auto-reload themselves when they expire. + * ( void * ) x, // Assign each timer a unique id equal to its array index. + * vTimerCallback // Each timer calls the same callback when it expires. + * ); + * + * if( xTimers[ x ] == NULL ) + * { + * // The timer was not created. + * } + * else + * { + * // Start the timer. No block time is specified, and even if one was + * // it would be ignored because the scheduler has not yet been + * // started. + * if( xTimerStart( xTimers[ x ], 0 ) != pdPASS ) + * { + * // The timer could not be set into the Active state. + * } + * } + * } + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timers running as they have already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + TimerHandle_t xTimerCreate( const char * const pcTimerName, + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/** + * TimerHandle_t xTimerCreateStatic(const char * const pcTimerName, + * TickType_t xTimerPeriodInTicks, + * UBaseType_t uxAutoReload, + * void * pvTimerID, + * TimerCallbackFunction_t pxCallbackFunction, + * StaticTimer_t *pxTimerBuffer ); + * + * Creates a new software timer instance, and returns a handle by which the + * created software timer can be referenced. + * + * Internally, within the FreeRTOS implementation, software timers use a block + * of memory, in which the timer data structure is stored. If a software timer + * is created using xTimerCreate() then the required memory is automatically + * dynamically allocated inside the xTimerCreate() function. (see + * http://www.freertos.org/a00111.html). If a software timer is created using + * xTimerCreateStatic() then the application writer must provide the memory that + * will get used by the software timer. xTimerCreateStatic() therefore allows a + * software timer to be created without using any dynamic memory allocation. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a + * timer into the active state. + * + * @param pcTimerName A text name that is assigned to the timer. This is done + * purely to assist debugging. The kernel itself only ever references a timer + * by its handle, and never by its name. + * + * @param xTimerPeriodInTicks The timer period. The time is defined in tick + * periods so the constant portTICK_PERIOD_MS can be used to convert a time that + * has been specified in milliseconds. For example, if the timer must expire + * after 100 ticks, then xTimerPeriodInTicks should be set to 100. + * Alternatively, if the timer must expire after 500ms, then xPeriod can be set + * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or + * equal to 1000. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. + * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + * + * @param pvTimerID An identifier that is assigned to the timer being created. + * Typically this would be used in the timer callback function to identify which + * timer expired when the same callback function is assigned to more than one + * timer. + * + * @param pxCallbackFunction The function to call when the timer expires. + * Callback functions must have the prototype defined by TimerCallbackFunction_t, + * which is "void vCallbackFunction( TimerHandle_t xTimer );". + * + * @param pxTimerBuffer Must point to a variable of type StaticTimer_t, which + * will be then be used to hold the software timer's data structures, removing + * the need for the memory to be allocated dynamically. + * + * @return If the timer is created then a handle to the created timer is + * returned. If pxTimerBuffer was NULL then NULL is returned. + * + * Example usage: + * @verbatim + * + * // The buffer used to hold the software timer's data structure. + * static StaticTimer_t xTimerBuffer; + * + * // A variable that will be incremented by the software timer's callback + * // function. + * UBaseType_t uxVariableToIncrement = 0; + * + * // A software timer callback function that increments a variable passed to + * // it when the software timer was created. After the 5th increment the + * // callback function stops the software timer. + * static void prvTimerCallback( TimerHandle_t xExpiredTimer ) + * { + * UBaseType_t *puxVariableToIncrement; + * BaseType_t xReturned; + * + * // Obtain the address of the variable to increment from the timer ID. + * puxVariableToIncrement = ( UBaseType_t * ) pvTimerGetTimerID( xExpiredTimer ); + * + * // Increment the variable to show the timer callback has executed. + * ( *puxVariableToIncrement )++; + * + * // If this callback has executed the required number of times, stop the + * // timer. + * if( *puxVariableToIncrement == 5 ) + * { + * // This is called from a timer callback so must not block. + * xTimerStop( xExpiredTimer, staticDONT_BLOCK ); + * } + * } + * + * + * void main( void ) + * { + * // Create the software time. xTimerCreateStatic() has an extra parameter + * // than the normal xTimerCreate() API function. The parameter is a pointer + * // to the StaticTimer_t structure that will hold the software timer + * // structure. If the parameter is passed as NULL then the structure will be + * // allocated dynamically, just as if xTimerCreate() had been called. + * xTimer = xTimerCreateStatic( "T1", // Text name for the task. Helps debugging only. Not used by FreeRTOS. + * xTimerPeriod, // The period of the timer in ticks. + * pdTRUE, // This is an auto-reload timer. + * ( void * ) &uxVariableToIncrement, // A variable incremented by the software timer's callback function + * prvTimerCallback, // The function to execute when the timer expires. + * &xTimerBuffer ); // The buffer that will hold the software timer structure. + * + * // The scheduler has not started yet so a block time is not used. + * xReturned = xTimerStart( xTimer, 0 ); + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timers running as they have already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + StaticTimer_t *pxTimerBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * void *pvTimerGetTimerID( TimerHandle_t xTimer ); + * + * Returns the ID assigned to the timer. + * + * IDs are assigned to timers using the pvTimerID parameter of the call to + * xTimerCreated() that was used to create the timer, and by calling the + * vTimerSetTimerID() API function. + * + * If the same callback function is assigned to multiple timers then the timer + * ID can be used as time specific (timer local) storage. + * + * @param xTimer The timer being queried. + * + * @return The ID assigned to the timer being queried. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + */ +void *pvTimerGetTimerID( const TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ); + * + * Sets the ID assigned to the timer. + * + * IDs are assigned to timers using the pvTimerID parameter of the call to + * xTimerCreated() that was used to create the timer. + * + * If the same callback function is assigned to multiple timers then the timer + * ID can be used as time specific (timer local) storage. + * + * @param xTimer The timer being updated. + * + * @param pvNewID The ID to assign to the timer. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + */ +void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) PRIVILEGED_FUNCTION; + +/** + * BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ); + * + * Queries a timer to see if it is active or dormant. + * + * A timer will be dormant if: + * 1) It has been created but not started, or + * 2) It is an expired one-shot timer that has not been restarted. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a timer into the + * active state. + * + * @param xTimer The timer being queried. + * + * @return pdFALSE will be returned if the timer is dormant. A value other than + * pdFALSE will be returned if the timer is active. + * + * Example usage: + * @verbatim + * // This function assumes xTimer has already been created. + * void vAFunction( TimerHandle_t xTimer ) + * { + * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" + * { + * // xTimer is active, do something. + * } + * else + * { + * // xTimer is not active, do something else. + * } + * } + * @endverbatim + */ +BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ); + * + * Simply returns the handle of the timer service/daemon task. It it not valid + * to call xTimerGetTimerDaemonTaskHandle() before the scheduler has been started. + */ +TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) PRIVILEGED_FUNCTION; + +/** + * BaseType_t xTimerStart( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerStart() starts a timer that was previously created using the + * xTimerCreate() API function. If the timer had already been started and was + * already in the active state, then xTimerStart() has equivalent functionality + * to the xTimerReset() API function. + * + * Starting a timer ensures the timer is in the active state. If the timer + * is not stopped, deleted, or reset in the mean time, the callback function + * associated with the timer will get called 'n' ticks after xTimerStart() was + * called, where 'n' is the timers defined period. + * + * It is valid to call xTimerStart() before the scheduler has been started, but + * when this is done the timer will not actually start until the scheduler is + * started, and the timers expiry time will be relative to when the scheduler is + * started, not relative to when xTimerStart() was called. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStart() + * to be available. + * + * @param xTimer The handle of the timer being started/restarted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the start command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerStart() was called. xTicksToWait is ignored if xTimerStart() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the start command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system, although the + * timers expiry time is relative to when xTimerStart() is actually called. The + * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + * + */ +#define xTimerStart( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerStop( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerStop() stops a timer that was previously started using either of the + * The xTimerStart(), xTimerReset(), xTimerStartFromISR(), xTimerResetFromISR(), + * xTimerChangePeriod() or xTimerChangePeriodFromISR() API functions. + * + * Stopping a timer ensures the timer is not in the active state. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStop() + * to be available. + * + * @param xTimer The handle of the timer being stopped. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the stop command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerStop() was called. xTicksToWait is ignored if xTimerStop() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the stop command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + * + */ +#define xTimerStop( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0U, NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerChangePeriod( TimerHandle_t xTimer, + * TickType_t xNewPeriod, + * TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerChangePeriod() changes the period of a timer that was previously + * created using the xTimerCreate() API function. + * + * xTimerChangePeriod() can be called to change the period of an active or + * dormant state timer. + * + * The configUSE_TIMERS configuration constant must be set to 1 for + * xTimerChangePeriod() to be available. + * + * @param xTimer The handle of the timer that is having its period changed. + * + * @param xNewPeriod The new period for xTimer. Timer periods are specified in + * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time + * that has been specified in milliseconds. For example, if the timer must + * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, + * if the timer must expire after 500ms, then xNewPeriod can be set to + * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than + * or equal to 1000. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the change period command to be + * successfully sent to the timer command queue, should the queue already be + * full when xTimerChangePeriod() was called. xTicksToWait is ignored if + * xTimerChangePeriod() is called before the scheduler is started. + * + * @return pdFAIL will be returned if the change period command could not be + * sent to the timer command queue even after xTicksToWait ticks had passed. + * pdPASS will be returned if the command was successfully sent to the timer + * command queue. When the command is actually processed will depend on the + * priority of the timer service/daemon task relative to other tasks in the + * system. The timer service/daemon task priority is set by the + * configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This function assumes xTimer has already been created. If the timer + * // referenced by xTimer is already active when it is called, then the timer + * // is deleted. If the timer referenced by xTimer is not active when it is + * // called, then the period of the timer is set to 500ms and the timer is + * // started. + * void vAFunction( TimerHandle_t xTimer ) + * { + * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" + * { + * // xTimer is already active - delete it. + * xTimerDelete( xTimer ); + * } + * else + * { + * // xTimer is not active, change its period to 500ms. This will also + * // cause the timer to start. Block for a maximum of 100 ticks if the + * // change period command cannot immediately be sent to the timer + * // command queue. + * if( xTimerChangePeriod( xTimer, 500 / portTICK_PERIOD_MS, 100 ) == pdPASS ) + * { + * // The command was successfully sent. + * } + * else + * { + * // The command could not be sent, even after waiting for 100 ticks + * // to pass. Take appropriate action here. + * } + * } + * } + * @endverbatim + */ + #define xTimerChangePeriod( xTimer, xNewPeriod, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerDelete( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerDelete() deletes a timer that was previously created using the + * xTimerCreate() API function. + * + * The configUSE_TIMERS configuration constant must be set to 1 for + * xTimerDelete() to be available. + * + * @param xTimer The handle of the timer being deleted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the delete command to be + * successfully sent to the timer command queue, should the queue already be + * full when xTimerDelete() was called. xTicksToWait is ignored if xTimerDelete() + * is called before the scheduler is started. + * + * @return pdFAIL will be returned if the delete command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerChangePeriod() API function example usage scenario. + */ +#define xTimerDelete( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_DELETE, 0U, NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerReset( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerReset() re-starts a timer that was previously created using the + * xTimerCreate() API function. If the timer had already been started and was + * already in the active state, then xTimerReset() will cause the timer to + * re-evaluate its expiry time so that it is relative to when xTimerReset() was + * called. If the timer was in the dormant state then xTimerReset() has + * equivalent functionality to the xTimerStart() API function. + * + * Resetting a timer ensures the timer is in the active state. If the timer + * is not stopped, deleted, or reset in the mean time, the callback function + * associated with the timer will get called 'n' ticks after xTimerReset() was + * called, where 'n' is the timers defined period. + * + * It is valid to call xTimerReset() before the scheduler has been started, but + * when this is done the timer will not actually start until the scheduler is + * started, and the timers expiry time will be relative to when the scheduler is + * started, not relative to when xTimerReset() was called. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerReset() + * to be available. + * + * @param xTimer The handle of the timer being reset/started/restarted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the reset command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerReset() was called. xTicksToWait is ignored if xTimerReset() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the reset command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system, although the + * timers expiry time is relative to when xTimerStart() is actually called. The + * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * @verbatim + * // When a key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer. + * + * TimerHandle_t xBacklightTimer = NULL; + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press event handler. + * void vKeyPressEventHandler( char cKey ) + * { + * // Ensure the LCD back-light is on, then reset the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. Wait 10 ticks for the command to be successfully sent + * // if it cannot be sent immediately. + * vSetBacklightState( BACKLIGHT_ON ); + * if( xTimerReset( xBacklightTimer, 100 ) != pdPASS ) + * { + * // The reset command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * } + * + * void main( void ) + * { + * int32_t x; + * + * // Create then start the one-shot timer that is responsible for turning + * // the back-light off if no keys are pressed within a 5 second period. + * xBacklightTimer = xTimerCreate( "BacklightTimer", // Just a text name, not used by the kernel. + * ( 5000 / portTICK_PERIOD_MS), // The timer period in ticks. + * pdFALSE, // The timer is a one-shot timer. + * 0, // The id is not used by the callback so can take any value. + * vBacklightTimerCallback // The callback function that switches the LCD back-light off. + * ); + * + * if( xBacklightTimer == NULL ) + * { + * // The timer was not created. + * } + * else + * { + * // Start the timer. No block time is specified, and even if one was + * // it would be ignored because the scheduler has not yet been + * // started. + * if( xTimerStart( xBacklightTimer, 0 ) != pdPASS ) + * { + * // The timer could not be set into the Active state. + * } + * } + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timer running as it has already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#define xTimerReset( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerStartFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerStart() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer being started/restarted. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerStartFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerStartFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerStartFromISR() function. If + * xTimerStartFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the start command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system, although the timers expiry time is + * relative to when xTimerStartFromISR() is actually called. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xBacklightTimer has already been created. When a + * // key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer, and unlike the example given for + * // the xTimerReset() function, the key press event handler is an interrupt + * // service routine. + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press interrupt service routine. + * void vKeyPressEventInterruptHandler( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // Ensure the LCD back-light is on, then restart the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. This is an interrupt service routine so can only + * // call FreeRTOS API functions that end in "FromISR". + * vSetBacklightState( BACKLIGHT_ON ); + * + * // xTimerStartFromISR() or xTimerResetFromISR() could be called here + * // as both cause the timer to re-calculate its expiry time. + * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was + * // declared (in this function). + * if( xTimerStartFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The start command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerStartFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerStopFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerStop() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer being stopped. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerStopFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerStopFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerStopFromISR() function. If + * xTimerStopFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the stop command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system. The timer service/daemon task + * priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xTimer has already been created and started. When + * // an interrupt occurs, the timer should be simply stopped. + * + * // The interrupt service routine that stops the timer. + * void vAnExampleInterruptServiceRoutine( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // The interrupt has occurred - simply stop the timer. + * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined + * // (within this function). As this is an interrupt service routine, only + * // FreeRTOS API functions that end in "FromISR" can be used. + * if( xTimerStopFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The stop command was not executed successfully. Take appropriate + * // action here. + * } + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerStopFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP_FROM_ISR, 0, ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerChangePeriodFromISR( TimerHandle_t xTimer, + * TickType_t xNewPeriod, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerChangePeriod() that can be called from an interrupt + * service routine. + * + * @param xTimer The handle of the timer that is having its period changed. + * + * @param xNewPeriod The new period for xTimer. Timer periods are specified in + * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time + * that has been specified in milliseconds. For example, if the timer must + * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, + * if the timer must expire after 500ms, then xNewPeriod can be set to + * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than + * or equal to 1000. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerChangePeriodFromISR() writes a message to the + * timer command queue, so has the potential to transition the timer service/ + * daemon task out of the Blocked state. If calling xTimerChangePeriodFromISR() + * causes the timer service/daemon task to leave the Blocked state, and the + * timer service/daemon task has a priority equal to or greater than the + * currently executing task (the task that was interrupted), then + * *pxHigherPriorityTaskWoken will get set to pdTRUE internally within the + * xTimerChangePeriodFromISR() function. If xTimerChangePeriodFromISR() sets + * this value to pdTRUE then a context switch should be performed before the + * interrupt exits. + * + * @return pdFAIL will be returned if the command to change the timers period + * could not be sent to the timer command queue. pdPASS will be returned if the + * command was successfully sent to the timer command queue. When the command + * is actually processed will depend on the priority of the timer service/daemon + * task relative to other tasks in the system. The timer service/daemon task + * priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xTimer has already been created and started. When + * // an interrupt occurs, the period of xTimer should be changed to 500ms. + * + * // The interrupt service routine that changes the period of xTimer. + * void vAnExampleInterruptServiceRoutine( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // The interrupt has occurred - change the period of xTimer to 500ms. + * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined + * // (within this function). As this is an interrupt service routine, only + * // FreeRTOS API functions that end in "FromISR" can be used. + * if( xTimerChangePeriodFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The command to change the timers period was not executed + * // successfully. Take appropriate action here. + * } + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerChangePeriodFromISR( xTimer, xNewPeriod, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD_FROM_ISR, ( xNewPeriod ), ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerResetFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerReset() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer that is to be started, reset, or + * restarted. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerResetFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerResetFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerResetFromISR() function. If + * xTimerResetFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the reset command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system, although the timers expiry time is + * relative to when xTimerResetFromISR() is actually called. The timer service/daemon + * task priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xBacklightTimer has already been created. When a + * // key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer, and unlike the example given for + * // the xTimerReset() function, the key press event handler is an interrupt + * // service routine. + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press interrupt service routine. + * void vKeyPressEventInterruptHandler( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // Ensure the LCD back-light is on, then reset the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. This is an interrupt service routine so can only + * // call FreeRTOS API functions that end in "FromISR". + * vSetBacklightState( BACKLIGHT_ON ); + * + * // xTimerStartFromISR() or xTimerResetFromISR() could be called here + * // as both cause the timer to re-calculate its expiry time. + * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was + * // declared (in this function). + * if( xTimerResetFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The reset command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerResetFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) + + +/** + * BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, + * void *pvParameter1, + * uint32_t ulParameter2, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * + * Used from application interrupt service routines to defer the execution of a + * function to the RTOS daemon task (the timer service task, hence this function + * is implemented in timers.c and is prefixed with 'Timer'). + * + * Ideally an interrupt service routine (ISR) is kept as short as possible, but + * sometimes an ISR either has a lot of processing to do, or needs to perform + * processing that is not deterministic. In these cases + * xTimerPendFunctionCallFromISR() can be used to defer processing of a function + * to the RTOS daemon task. + * + * A mechanism is provided that allows the interrupt to return directly to the + * task that will subsequently execute the pended callback function. This + * allows the callback function to execute contiguously in time with the + * interrupt - just as if the callback had executed in the interrupt itself. + * + * @param xFunctionToPend The function to execute from the timer service/ + * daemon task. The function must conform to the PendedFunction_t + * prototype. + * + * @param pvParameter1 The value of the callback function's first parameter. + * The parameter has a void * type to allow it to be used to pass any type. + * For example, unsigned longs can be cast to a void *, or the void * can be + * used to point to a structure. + * + * @param ulParameter2 The value of the callback function's second parameter. + * + * @param pxHigherPriorityTaskWoken As mentioned above, calling this function + * will result in a message being sent to the timer daemon task. If the + * priority of the timer daemon task (which is set using + * configTIMER_TASK_PRIORITY in FreeRTOSConfig.h) is higher than the priority of + * the currently running task (the task the interrupt interrupted) then + * *pxHigherPriorityTaskWoken will be set to pdTRUE within + * xTimerPendFunctionCallFromISR(), indicating that a context switch should be + * requested before the interrupt exits. For that reason + * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the + * example code below. + * + * @return pdPASS is returned if the message was successfully sent to the + * timer daemon task, otherwise pdFALSE is returned. + * + * Example usage: + * @verbatim + * + * // The callback function that will execute in the context of the daemon task. + * // Note callback functions must all use this same prototype. + * void vProcessInterface( void *pvParameter1, uint32_t ulParameter2 ) + * { + * BaseType_t xInterfaceToService; + * + * // The interface that requires servicing is passed in the second + * // parameter. The first parameter is not used in this case. + * xInterfaceToService = ( BaseType_t ) ulParameter2; + * + * // ...Perform the processing here... + * } + * + * // An ISR that receives data packets from multiple interfaces + * void vAnISR( void ) + * { + * BaseType_t xInterfaceToService, xHigherPriorityTaskWoken; + * + * // Query the hardware to determine which interface needs processing. + * xInterfaceToService = prvCheckInterfaces(); + * + * // The actual processing is to be deferred to a task. Request the + * // vProcessInterface() callback function is executed, passing in the + * // number of the interface that needs processing. The interface to + * // service is passed in the second parameter. The first parameter is + * // not used in this case. + * xHigherPriorityTaskWoken = pdFALSE; + * xTimerPendFunctionCallFromISR( vProcessInterface, NULL, ( uint32_t ) xInterfaceToService, &xHigherPriorityTaskWoken ); + * + * // If xHigherPriorityTaskWoken is now set to pdTRUE then a context + * // switch should be requested. The macro used is port specific and will + * // be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() - refer to + * // the documentation page for the port being used. + * portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); + * + * } + * @endverbatim + */ +BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + + /** + * BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, + * void *pvParameter1, + * uint32_t ulParameter2, + * TickType_t xTicksToWait ); + * + * + * Used to defer the execution of a function to the RTOS daemon task (the timer + * service task, hence this function is implemented in timers.c and is prefixed + * with 'Timer'). + * + * @param xFunctionToPend The function to execute from the timer service/ + * daemon task. The function must conform to the PendedFunction_t + * prototype. + * + * @param pvParameter1 The value of the callback function's first parameter. + * The parameter has a void * type to allow it to be used to pass any type. + * For example, unsigned longs can be cast to a void *, or the void * can be + * used to point to a structure. + * + * @param ulParameter2 The value of the callback function's second parameter. + * + * @param xTicksToWait Calling this function will result in a message being + * sent to the timer daemon task on a queue. xTicksToWait is the amount of + * time the calling task should remain in the Blocked state (so not using any + * processing time) for space to become available on the timer queue if the + * queue is found to be full. + * + * @return pdPASS is returned if the message was successfully sent to the + * timer daemon task, otherwise pdFALSE is returned. + * + */ +BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * const char * const pcTimerGetName( TimerHandle_t xTimer ); + * + * Returns the name that was assigned to a timer when the timer was created. + * + * @param xTimer The handle of the timer being queried. + * + * @return The name assigned to the timer specified by the xTimer parameter. + */ +const char * pcTimerGetName( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * TickType_t xTimerGetPeriod( TimerHandle_t xTimer ); + * + * Returns the period of a timer. + * + * @param xTimer The handle of the timer being queried. + * + * @return The period of the timer in ticks. + */ +TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** +* TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ); +* +* Returns the time in ticks at which the timer will expire. If this is less +* than the current tick count then the expiry time has overflowed from the +* current time. +* +* @param xTimer The handle of the timer being queried. +* +* @return If the timer is running then the time in ticks at which the timer +* will next expire is returned. If the timer is not running then the return +* value is undefined. +*/ +TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/* + * Functions beyond this part are not part of the public API and are intended + * for use by the kernel only. + */ +BaseType_t xTimerCreateTimerTask( void ) PRIVILEGED_FUNCTION; +BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +#ifdef __cplusplus +} +#endif +#endif /* TIMERS_H */ + + + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/list.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/list.c new file mode 100644 index 0000000..5e207c1 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/list.c @@ -0,0 +1,240 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + + +#include +#include "FreeRTOS.h" +#include "list.h" + +/*----------------------------------------------------------- + * PUBLIC LIST API documented in list.h + *----------------------------------------------------------*/ + +void vListInitialise( List_t * const pxList ) +{ + /* The list structure contains a list item which is used to mark the + end of the list. To initialise the list the list end is inserted + as the only list entry. */ + pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + + /* The list end value is the highest possible value in the list to + ensure it remains at the end of the list. */ + pxList->xListEnd.xItemValue = portMAX_DELAY; + + /* The list end next and previous pointers point to itself so we know + when the list is empty. */ + pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + + pxList->uxNumberOfItems = ( UBaseType_t ) 0U; + + /* Write known values into the list if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); + listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); +} +/*-----------------------------------------------------------*/ + +void vListInitialiseItem( ListItem_t * const pxItem ) +{ + /* Make sure the list item is not recorded as being on a list. */ + pxItem->pvContainer = NULL; + + /* Write known values into the list item if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); + listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); +} +/*-----------------------------------------------------------*/ + +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t * const pxIndex = pxList->pxIndex; + + /* Only effective when configASSERT() is also defined, these tests may catch + the list data structures being overwritten in memory. They will not catch + data errors caused by incorrect configuration or use of FreeRTOS. */ + listTEST_LIST_INTEGRITY( pxList ); + listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); + + /* Insert a new list item into pxList, but rather than sort the list, + makes the new list item the last item to be removed by a call to + listGET_OWNER_OF_NEXT_ENTRY(). */ + pxNewListItem->pxNext = pxIndex; + pxNewListItem->pxPrevious = pxIndex->pxPrevious; + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + pxIndex->pxPrevious->pxNext = pxNewListItem; + pxIndex->pxPrevious = pxNewListItem; + + /* Remember which list the item is in. */ + pxNewListItem->pvContainer = ( void * ) pxList; + + ( pxList->uxNumberOfItems )++; +} +/*-----------------------------------------------------------*/ + +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t *pxIterator; +const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; + + /* Only effective when configASSERT() is also defined, these tests may catch + the list data structures being overwritten in memory. They will not catch + data errors caused by incorrect configuration or use of FreeRTOS. */ + listTEST_LIST_INTEGRITY( pxList ); + listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); + + /* Insert the new list item into the list, sorted in xItemValue order. + + If the list already contains a list item with the same item value then the + new list item should be placed after it. This ensures that TCB's which are + stored in ready lists (all of which have the same xItemValue value) get a + share of the CPU. However, if the xItemValue is the same as the back marker + the iteration loop below will not end. Therefore the value is checked + first, and the algorithm slightly modified if necessary. */ + if( xValueOfInsertion == portMAX_DELAY ) + { + pxIterator = pxList->xListEnd.pxPrevious; + } + else + { + /* *** NOTE *********************************************************** + If you find your application is crashing here then likely causes are + listed below. In addition see http://www.freertos.org/FAQHelp.html for + more tips, and ensure configASSERT() is defined! + http://www.freertos.org/a00110.html#configASSERT + + 1) Stack overflow - + see http://www.freertos.org/Stacks-and-stack-overflow-checking.html + 2) Incorrect interrupt priority assignment, especially on Cortex-M + parts where numerically high priority values denote low actual + interrupt priorities, which can seem counter intuitive. See + http://www.freertos.org/RTOS-Cortex-M3-M4.html and the definition + of configMAX_SYSCALL_INTERRUPT_PRIORITY on + http://www.freertos.org/a00110.html + 3) Calling an API function from within a critical section or when + the scheduler is suspended, or calling an API function that does + not end in "FromISR" from an interrupt. + 4) Using a queue or semaphore before it has been initialised or + before the scheduler has been started (are interrupts firing + before vTaskStartScheduler() has been called?). + **********************************************************************/ + + for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + { + /* There is nothing to do here, just iterating to the wanted + insertion position. */ + } + } + + pxNewListItem->pxNext = pxIterator->pxNext; + pxNewListItem->pxNext->pxPrevious = pxNewListItem; + pxNewListItem->pxPrevious = pxIterator; + pxIterator->pxNext = pxNewListItem; + + /* Remember which list the item is in. This allows fast removal of the + item later. */ + pxNewListItem->pvContainer = ( void * ) pxList; + + ( pxList->uxNumberOfItems )++; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) +{ +/* The list item knows which list it is in. Obtain the list from the list +item. */ +List_t * const pxList = ( List_t * ) pxItemToRemove->pvContainer; + + pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; + pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + /* Make sure the index is left pointing to a valid item. */ + if( pxList->pxIndex == pxItemToRemove ) + { + pxList->pxIndex = pxItemToRemove->pxPrevious; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxItemToRemove->pvContainer = NULL; + ( pxList->uxNumberOfItems )--; + + return pxList->uxNumberOfItems; +} +/*-----------------------------------------------------------*/ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c new file mode 100644 index 0000000..51d5c57 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c @@ -0,0 +1,573 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/*----------------------------------------------------------- + * Implementation of functions defined in portable.h for the ARM CM0 port. + *----------------------------------------------------------*/ + +/* Scheduler includes. */ +#include "FreeRTOS.h" +#include "task.h" + +#ifndef configSYSTICK_CLOCK_HZ + #define configSYSTICK_CLOCK_HZ configCPU_CLOCK_HZ +#endif + +/* Constants required to manipulate the NVIC. */ +#define portNVIC_SYSTICK_CTRL (* ( ( volatile uint32_t *) 0xe000e010 ) ) +#define portNVIC_SYSTICK_LOAD (* ( ( volatile uint32_t *) 0xe000e014 ) ) +#define portNVIC_SYSTICK_CURRENT_VALUE (* ( ( volatile uint32_t * ) 0xe000e018 )) +#define portNVIC_INT_CTRL ( ( volatile uint32_t *) 0xe000ed04 ) +#define portNVIC_SYSPRI2 ( ( volatile uint32_t *) 0xe000ed20 ) +#define portNVIC_SYSTICK_CLK 0x00000004 +#define portNVIC_SYSTICK_INT 0x00000002 +#define portNVIC_SYSTICK_ENABLE 0x00000001 +#define portNVIC_SYSTICK_COUNT_FLAG ( 1UL << 16UL ) +#define portNVIC_PENDSVSET 0x10000000 +#define portMIN_INTERRUPT_PRIORITY ( 255UL ) +#define portNVIC_PENDSV_PRI ( portMIN_INTERRUPT_PRIORITY << 16UL ) +#define portNVIC_SYSTICK_PRI ( portMIN_INTERRUPT_PRIORITY << 24UL ) + +/* Constants required to set up the initial stack. */ +#define portINITIAL_XPSR ( 0x01000000 ) + +/* The systick is a 24-bit counter. */ +#define portMAX_24_BIT_NUMBER ( 0xffffffUL ) + +/* A fiddle factor to estimate the number of SysTick counts that would have +occurred while the SysTick counter is stopped during tickless idle +calculations. */ +#define portMISSED_COUNTS_FACTOR ( 45UL ) + +/* Let the user override the pre-loading of the initial LR with the address of +prvTaskExitError() in case it messes up unwinding of the stack in the +debugger. */ +#ifdef configTASK_RETURN_ADDRESS + #define portTASK_RETURN_ADDRESS configTASK_RETURN_ADDRESS +#else + #define portTASK_RETURN_ADDRESS prvTaskExitError +#endif + +/* Each task maintains its own interrupt status in the critical nesting +variable. */ +static UBaseType_t uxCriticalNesting = 0xaaaaaaaa; + +/* + * Setup the timer to generate the tick interrupts. The implementation in this + * file is weak to allow application writers to change the timer used to + * generate the tick interrupt. + */ +void vPortSetupTimerInterrupt( void ); + +/* + * Exception handlers. + */ +void xPortPendSVHandler( void ) __attribute__ (( naked )); +void xPortSysTickHandler( void ); +void vPortSVCHandler( void ); + +/* + * Start first task is a separate function so it can be tested in isolation. + */ +static void vPortStartFirstTask( void ) __attribute__ (( naked )); + +/* + * Used to catch tasks that attempt to return from their implementing function. + */ +static void prvTaskExitError( void ); + +/*-----------------------------------------------------------*/ + +/* + * The number of SysTick increments that make up one tick period. + */ +#if configUSE_TICKLESS_IDLE == 1 + static unsigned long ulTimerCountsForOneTick = 0; +#endif /* configUSE_TICKLESS_IDLE */ + +/* + * The maximum number of tick periods that can be suppressed is limited by the + * 24 bit resolution of the SysTick timer. + */ +#if configUSE_TICKLESS_IDLE == 1 + static unsigned long xMaximumPossibleSuppressedTicks = 0; +#endif /* configUSE_TICKLESS_IDLE */ + +/* + * Compensate for the CPU cycles that pass while the SysTick is stopped (low + * power functionality only. + */ +#if configUSE_TICKLESS_IDLE == 1 + static unsigned long ulStoppedTimerCompensation = 0; +#endif /* configUSE_TICKLESS_IDLE */ + +/*-----------------------------------------------------------*/ + +/* + * See header file for description. + */ +StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) +{ + /* Simulate the stack frame as it would be created by a context switch + interrupt. */ + pxTopOfStack--; /* Offset added to account for the way the MCU uses the stack on entry/exit of interrupts. */ + *pxTopOfStack = portINITIAL_XPSR; /* xPSR */ + pxTopOfStack--; + *pxTopOfStack = ( StackType_t ) pxCode; /* PC */ + pxTopOfStack--; + *pxTopOfStack = ( StackType_t ) portTASK_RETURN_ADDRESS; /* LR */ + pxTopOfStack -= 5; /* R12, R3, R2 and R1. */ + *pxTopOfStack = ( StackType_t ) pvParameters; /* R0 */ + pxTopOfStack -= 8; /* R11..R4. */ + + return pxTopOfStack; +} +/*-----------------------------------------------------------*/ + +static void prvTaskExitError( void ) +{ + /* A function that implements a task must not exit or attempt to return to + its caller as there is nothing to return to. If a task wants to exit it + should instead call vTaskDelete( NULL ). + + Artificially force an assert() to be triggered if configASSERT() is + defined, then stop here so application writers can catch the error. */ + configASSERT( uxCriticalNesting == ~0UL ); + portDISABLE_INTERRUPTS(); + for( ;; ); +} +/*-----------------------------------------------------------*/ + +void vPortSVCHandler( void ) +{ + /* This function is no longer used, but retained for backward + compatibility. */ +} +/*-----------------------------------------------------------*/ + +void vPortStartFirstTask( void ) +{ + /* The MSP stack is not reset as, unlike on M3/4 parts, there is no vector + table offset register that can be used to locate the initial stack value. + Not all M0 parts have the application vector table at address 0. */ + __asm volatile( + " ldr r2, pxCurrentTCBConst2 \n" /* Obtain location of pxCurrentTCB. */ + " ldr r3, [r2] \n" + " ldr r0, [r3] \n" /* The first item in pxCurrentTCB is the task top of stack. */ + " add r0, #32 \n" /* Discard everything up to r0. */ + " msr psp, r0 \n" /* This is now the new top of stack to use in the task. */ + " movs r0, #2 \n" /* Switch to the psp stack. */ + " msr CONTROL, r0 \n" + " isb \n" + " pop {r0-r5} \n" /* Pop the registers that are saved automatically. */ + " mov lr, r5 \n" /* lr is now in r5. */ + " pop {r3} \n" /* Return address is now in r3. */ + " pop {r2} \n" /* Pop and discard XPSR. */ + " cpsie i \n" /* The first task has its context and interrupts can be enabled. */ + " bx r3 \n" /* Finally, jump to the user defined task code. */ + " \n" + " .align 4 \n" + "pxCurrentTCBConst2: .word pxCurrentTCB " + ); +} +/*-----------------------------------------------------------*/ + +/* + * See header file for description. + */ +BaseType_t xPortStartScheduler( void ) +{ + /* Make PendSV, CallSV and SysTick the same priroity as the kernel. */ + *(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI; + *(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI; + + /* Start the timer that generates the tick ISR. Interrupts are disabled + here already. */ + vPortSetupTimerInterrupt(); + + /* Initialise the critical nesting count ready for the first task. */ + uxCriticalNesting = 0; + + /* Start the first task. */ + vPortStartFirstTask(); + + /* Should never get here as the tasks will now be executing! Call the task + exit error function to prevent compiler warnings about a static function + not being called in the case that the application writer overrides this + functionality by defining configTASK_RETURN_ADDRESS. */ + prvTaskExitError(); + + /* Should not get here! */ + return 0; +} +/*-----------------------------------------------------------*/ + +void vPortEndScheduler( void ) +{ + /* Not implemented in ports where there is nothing to return to. + Artificially force an assert. */ + configASSERT( uxCriticalNesting == 1000UL ); +} +/*-----------------------------------------------------------*/ + +void vPortYield( void ) +{ + /* Set a PendSV to request a context switch. */ + *( portNVIC_INT_CTRL ) = portNVIC_PENDSVSET; + + /* Barriers are normally not required but do ensure the code is completely + within the specified behaviour for the architecture. */ + __asm volatile( "dsb" ); + __asm volatile( "isb" ); +} +/*-----------------------------------------------------------*/ + +void vPortEnterCritical( void ) +{ + portDISABLE_INTERRUPTS(); + uxCriticalNesting++; + __asm volatile( "dsb" ); + __asm volatile( "isb" ); +} +/*-----------------------------------------------------------*/ + +void vPortExitCritical( void ) +{ + configASSERT( uxCriticalNesting ); + uxCriticalNesting--; + if( uxCriticalNesting == 0 ) + { + portENABLE_INTERRUPTS(); + } +} +/*-----------------------------------------------------------*/ + +uint32_t ulSetInterruptMaskFromISR( void ) +{ + __asm volatile( + " mrs r0, PRIMASK \n" + " cpsid i \n" + " bx lr " + ); + + /* To avoid compiler warnings. This line will never be reached. */ + return 0; +} +/*-----------------------------------------------------------*/ + +void vClearInterruptMaskFromISR( uint32_t ulMask ) +{ + __asm volatile( + " msr PRIMASK, r0 \n" + " bx lr " + ); + + /* Just to avoid compiler warning. */ + ( void ) ulMask; +} +/*-----------------------------------------------------------*/ + +void xPortPendSVHandler( void ) +{ + /* This is a naked function. */ + + __asm volatile + ( + " mrs r0, psp \n" + " \n" + " ldr r3, pxCurrentTCBConst \n" /* Get the location of the current TCB. */ + " ldr r2, [r3] \n" + " \n" + " sub r0, r0, #32 \n" /* Make space for the remaining low registers. */ + " str r0, [r2] \n" /* Save the new top of stack. */ + " stmia r0!, {r4-r7} \n" /* Store the low registers that are not saved automatically. */ + " mov r4, r8 \n" /* Store the high registers. */ + " mov r5, r9 \n" + " mov r6, r10 \n" + " mov r7, r11 \n" + " stmia r0!, {r4-r7} \n" + " \n" + " push {r3, r14} \n" + " cpsid i \n" + " bl vTaskSwitchContext \n" + " cpsie i \n" + " pop {r2, r3} \n" /* lr goes in r3. r2 now holds tcb pointer. */ + " \n" + " ldr r1, [r2] \n" + " ldr r0, [r1] \n" /* The first item in pxCurrentTCB is the task top of stack. */ + " add r0, r0, #16 \n" /* Move to the high registers. */ + " ldmia r0!, {r4-r7} \n" /* Pop the high registers. */ + " mov r8, r4 \n" + " mov r9, r5 \n" + " mov r10, r6 \n" + " mov r11, r7 \n" + " \n" + " msr psp, r0 \n" /* Remember the new top of stack for the task. */ + " \n" + " sub r0, r0, #32 \n" /* Go back for the low registers that are not automatically restored. */ + " ldmia r0!, {r4-r7} \n" /* Pop low registers. */ + " \n" + " bx r3 \n" + " \n" + " .align 4 \n" + "pxCurrentTCBConst: .word pxCurrentTCB " + ); +} +/*-----------------------------------------------------------*/ + +void xPortSysTickHandler( void ) +{ +uint32_t ulPreviousMask; + + ulPreviousMask = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* Increment the RTOS tick. */ + if( xTaskIncrementTick() != pdFALSE ) + { + /* Pend a context switch. */ + *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( ulPreviousMask ); +} +/*-----------------------------------------------------------*/ + +#if configUSE_TICKLESS_IDLE == 1 + + __attribute__((weak)) void vPortSuppressTicksAndSleep( TickType_t xExpectedIdleTime ) + { + uint32_t ulReloadValue, ulCompleteTickPeriods, ulCompletedSysTickDecrements, ulSysTickCTRL; + TickType_t xModifiableIdleTime; + + /* Make sure the SysTick reload value does not overflow the counter. */ + if( xExpectedIdleTime > xMaximumPossibleSuppressedTicks ) + { + xExpectedIdleTime = xMaximumPossibleSuppressedTicks; + } + + /* Stop the SysTick momentarily. The time the SysTick is stopped for + is accounted for as best it can be, but using the tickless mode will + inevitably result in some tiny drift of the time maintained by the + kernel with respect to calendar time. */ + portNVIC_SYSTICK_CTRL &= ~portNVIC_SYSTICK_ENABLE; + + /* Calculate the reload value required to wait xExpectedIdleTime + tick periods. -1 is used because this code will execute part way + through one of the tick periods. */ + ulReloadValue = portNVIC_SYSTICK_CURRENT_VALUE + ( ulTimerCountsForOneTick * ( xExpectedIdleTime - 1UL ) ); + if( ulReloadValue > ulStoppedTimerCompensation ) + { + ulReloadValue -= ulStoppedTimerCompensation; + } + + /* Enter a critical section but don't use the taskENTER_CRITICAL() + method as that will mask interrupts that should exit sleep mode. */ + __asm volatile( "cpsid i" ); + + /* If a context switch is pending or a task is waiting for the scheduler + to be unsuspended then abandon the low power entry. */ + if( eTaskConfirmSleepModeStatus() == eAbortSleep ) + { + /* Restart from whatever is left in the count register to complete + this tick period. */ + portNVIC_SYSTICK_LOAD = portNVIC_SYSTICK_CURRENT_VALUE; + + /* Restart SysTick. */ + portNVIC_SYSTICK_CTRL |= portNVIC_SYSTICK_ENABLE; + + /* Reset the reload register to the value required for normal tick + periods. */ + portNVIC_SYSTICK_LOAD = ulTimerCountsForOneTick - 1UL; + + /* Re-enable interrupts - see comments above the cpsid instruction() + above. */ + __asm volatile( "cpsie i" ); + } + else + { + /* Set the new reload value. */ + portNVIC_SYSTICK_LOAD = ulReloadValue; + + /* Clear the SysTick count flag and set the count value back to + zero. */ + portNVIC_SYSTICK_CURRENT_VALUE = 0UL; + + /* Restart SysTick. */ + portNVIC_SYSTICK_CTRL |= portNVIC_SYSTICK_ENABLE; + + /* Sleep until something happens. configPRE_SLEEP_PROCESSING() can + set its parameter to 0 to indicate that its implementation contains + its own wait for interrupt or wait for event instruction, and so wfi + should not be executed again. However, the original expected idle + time variable must remain unmodified, so a copy is taken. */ + xModifiableIdleTime = xExpectedIdleTime; + configPRE_SLEEP_PROCESSING( &xModifiableIdleTime ); + if( xModifiableIdleTime > 0 ) + { + __asm volatile( "dsb" ); + __asm volatile( "wfi" ); + __asm volatile( "isb" ); + } + configPOST_SLEEP_PROCESSING( &xExpectedIdleTime ); + + /* Stop SysTick. Again, the time the SysTick is stopped for is + accounted for as best it can be, but using the tickless mode will + inevitably result in some tiny drift of the time maintained by the + kernel with respect to calendar time. */ + ulSysTickCTRL = portNVIC_SYSTICK_CTRL; + portNVIC_SYSTICK_CTRL = ( ulSysTickCTRL & ~portNVIC_SYSTICK_ENABLE ); + + /* Re-enable interrupts - see comments above the cpsid instruction() + above. */ + __asm volatile( "cpsie i" ); + + if( ( ulSysTickCTRL & portNVIC_SYSTICK_COUNT_FLAG ) != 0 ) + { + uint32_t ulCalculatedLoadValue; + + /* The tick interrupt has already executed, and the SysTick + count reloaded with ulReloadValue. Reset the + portNVIC_SYSTICK_LOAD with whatever remains of this tick + period. */ + ulCalculatedLoadValue = ( ulTimerCountsForOneTick - 1UL ) - ( ulReloadValue - portNVIC_SYSTICK_CURRENT_VALUE ); + + /* Don't allow a tiny value, or values that have somehow + underflowed because the post sleep hook did something + that took too long. */ + if( ( ulCalculatedLoadValue < ulStoppedTimerCompensation ) || ( ulCalculatedLoadValue > ulTimerCountsForOneTick ) ) + { + ulCalculatedLoadValue = ( ulTimerCountsForOneTick - 1UL ); + } + + portNVIC_SYSTICK_LOAD = ulCalculatedLoadValue; + + /* The tick interrupt handler will already have pended the tick + processing in the kernel. As the pending tick will be + processed as soon as this function exits, the tick value + maintained by the tick is stepped forward by one less than the + time spent waiting. */ + ulCompleteTickPeriods = xExpectedIdleTime - 1UL; + } + else + { + /* Something other than the tick interrupt ended the sleep. + Work out how long the sleep lasted rounded to complete tick + periods (not the ulReload value which accounted for part + ticks). */ + ulCompletedSysTickDecrements = ( xExpectedIdleTime * ulTimerCountsForOneTick ) - portNVIC_SYSTICK_CURRENT_VALUE; + + /* How many complete tick periods passed while the processor + was waiting? */ + ulCompleteTickPeriods = ulCompletedSysTickDecrements / ulTimerCountsForOneTick; + + /* The reload value is set to whatever fraction of a single tick + period remains. */ + portNVIC_SYSTICK_LOAD = ( ( ulCompleteTickPeriods + 1 ) * ulTimerCountsForOneTick ) - ulCompletedSysTickDecrements; + } + + /* Restart SysTick so it runs from portNVIC_SYSTICK_LOAD + again, then set portNVIC_SYSTICK_LOAD back to its standard + value. The critical section is used to ensure the tick interrupt + can only execute once in the case that the reload register is near + zero. */ + portNVIC_SYSTICK_CURRENT_VALUE = 0UL; + portENTER_CRITICAL(); + { + portNVIC_SYSTICK_CTRL |= portNVIC_SYSTICK_ENABLE; + vTaskStepTick( ulCompleteTickPeriods ); + portNVIC_SYSTICK_LOAD = ulTimerCountsForOneTick - 1UL; + } + portEXIT_CRITICAL(); + } + } + +#endif /* #if configUSE_TICKLESS_IDLE */ +/*-----------------------------------------------------------*/ + +/* + * Setup the systick timer to generate the tick interrupts at the required + * frequency. + */ +__attribute__(( weak )) void vPortSetupTimerInterrupt( void ) +{ + /* Calculate the constants required to configure the tick interrupt. */ + #if configUSE_TICKLESS_IDLE == 1 + { + ulTimerCountsForOneTick = ( configSYSTICK_CLOCK_HZ / configTICK_RATE_HZ ); + xMaximumPossibleSuppressedTicks = portMAX_24_BIT_NUMBER / ulTimerCountsForOneTick; + ulStoppedTimerCompensation = portMISSED_COUNTS_FACTOR / ( configCPU_CLOCK_HZ / configSYSTICK_CLOCK_HZ ); + } + #endif /* configUSE_TICKLESS_IDLE */ + /* Configure SysTick to interrupt at the requested rate. */ + + portNVIC_SYSTICK_LOAD = ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL; + portNVIC_SYSTICK_CTRL = portNVIC_SYSTICK_CLK | portNVIC_SYSTICK_INT | portNVIC_SYSTICK_ENABLE; +} +/*-----------------------------------------------------------*/ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h b/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h new file mode 100644 index 0000000..ddc24ce --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h @@ -0,0 +1,165 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + + +#ifndef PORTMACRO_H +#define PORTMACRO_H + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * Port specific definitions. + * + * The settings in this file configure FreeRTOS correctly for the + * given hardware and compiler. + * + * These settings should not be altered. + *----------------------------------------------------------- + */ + +/* Type definitions. */ +#define portCHAR char +#define portFLOAT float +#define portDOUBLE double +#define portLONG long +#define portSHORT short +#define portSTACK_TYPE uint32_t +#define portBASE_TYPE long + +typedef portSTACK_TYPE StackType_t; +typedef long BaseType_t; +typedef unsigned long UBaseType_t; + +#if( configUSE_16_BIT_TICKS == 1 ) + typedef uint16_t TickType_t; + #define portMAX_DELAY ( TickType_t ) 0xffff +#else + typedef uint32_t TickType_t; + #define portMAX_DELAY ( TickType_t ) 0xffffffffUL + + /* 32-bit tick type on a 32-bit architecture, so reads of the tick count do + not need to be guarded with a critical section. */ + #define portTICK_TYPE_IS_ATOMIC 1 +#endif +/*-----------------------------------------------------------*/ + +/* Architecture specifics. */ +#define portSTACK_GROWTH ( -1 ) +#define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ ) +#define portBYTE_ALIGNMENT 8 +/*-----------------------------------------------------------*/ + + +/* Scheduler utilities. */ +extern void vPortYield( void ); +#define portNVIC_INT_CTRL_REG ( * ( ( volatile uint32_t * ) 0xe000ed04 ) ) +#define portNVIC_PENDSVSET_BIT ( 1UL << 28UL ) +#define portYIELD() vPortYield() +#define portEND_SWITCHING_ISR( xSwitchRequired ) if( xSwitchRequired ) portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT +#define portYIELD_FROM_ISR( x ) portEND_SWITCHING_ISR( x ) +/*-----------------------------------------------------------*/ + + +/* Critical section management. */ +extern void vPortEnterCritical( void ); +extern void vPortExitCritical( void ); +extern uint32_t ulSetInterruptMaskFromISR( void ) __attribute__((naked)); +extern void vClearInterruptMaskFromISR( uint32_t ulMask ) __attribute__((naked)); + +#define portSET_INTERRUPT_MASK_FROM_ISR() ulSetInterruptMaskFromISR() +#define portCLEAR_INTERRUPT_MASK_FROM_ISR(x) vClearInterruptMaskFromISR( x ) +#define portDISABLE_INTERRUPTS() __asm volatile ( " cpsid i " ) +#define portENABLE_INTERRUPTS() __asm volatile ( " cpsie i " ) +#define portENTER_CRITICAL() vPortEnterCritical() +#define portEXIT_CRITICAL() vPortExitCritical() + +/*-----------------------------------------------------------*/ + +/* Tickless idle/low power functionality. */ +#ifndef portSUPPRESS_TICKS_AND_SLEEP + extern void vPortSuppressTicksAndSleep( TickType_t xExpectedIdleTime ); + #define portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ) vPortSuppressTicksAndSleep( xExpectedIdleTime ) +#endif + +/*-----------------------------------------------------------*/ + +/* Task function macros as described on the FreeRTOS.org WEB site. */ +#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters ) +#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters ) + +#define portNOP() + +#ifdef __cplusplus +} +#endif + +#endif /* PORTMACRO_H */ + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c new file mode 100644 index 0000000..e7c7ade --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c @@ -0,0 +1,478 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/* + * A sample implementation of pvPortMalloc() and vPortFree() that combines + * (coalescences) adjacent memory blocks as they are freed, and in so doing + * limits memory fragmentation. + * + * See heap_1.c, heap_2.c and heap_3.c for alternative implementations, and the + * memory management pages of http://www.FreeRTOS.org for more information. + */ +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" + +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 0 ) + #error This file must not be used if configSUPPORT_DYNAMIC_ALLOCATION is 0 +#endif + +/* Block sizes must not get too small. */ +#define heapMINIMUM_BLOCK_SIZE ( ( size_t ) ( xHeapStructSize << 1 ) ) + +/* Assumes 8bit bytes! */ +#define heapBITS_PER_BYTE ( ( size_t ) 8 ) + +/* Allocate the memory for the heap. */ +#if( configAPPLICATION_ALLOCATED_HEAP == 1 ) + /* The application writer has already defined the array used for the RTOS + heap - probably so it can be placed in a special segment or address. */ + extern uint8_t ucHeap[ configTOTAL_HEAP_SIZE ]; +#else + static uint8_t ucHeap[ configTOTAL_HEAP_SIZE ]; +#endif /* configAPPLICATION_ALLOCATED_HEAP */ + +/* Define the linked list structure. This is used to link free blocks in order +of their memory address. */ +typedef struct A_BLOCK_LINK +{ + struct A_BLOCK_LINK *pxNextFreeBlock; /*<< The next free block in the list. */ + size_t xBlockSize; /*<< The size of the free block. */ +} BlockLink_t; + +/*-----------------------------------------------------------*/ + +/* + * Inserts a block of memory that is being freed into the correct position in + * the list of free memory blocks. The block being freed will be merged with + * the block in front it and/or the block behind it if the memory blocks are + * adjacent to each other. + */ +static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ); + +/* + * Called automatically to setup the required heap structures the first time + * pvPortMalloc() is called. + */ +static void prvHeapInit( void ); + +/*-----------------------------------------------------------*/ + +/* The size of the structure placed at the beginning of each allocated memory +block must by correctly byte aligned. */ +static const size_t xHeapStructSize = ( sizeof( BlockLink_t ) + ( ( size_t ) ( portBYTE_ALIGNMENT - 1 ) ) ) & ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); + +/* Create a couple of list links to mark the start and end of the list. */ +static BlockLink_t xStart, *pxEnd = NULL; + +/* Keeps track of the number of free bytes remaining, but says nothing about +fragmentation. */ +static size_t xFreeBytesRemaining = 0U; +static size_t xMinimumEverFreeBytesRemaining = 0U; + +/* Gets set to the top bit of an size_t type. When this bit in the xBlockSize +member of an BlockLink_t structure is set then the block belongs to the +application. When the bit is free the block is still part of the free heap +space. */ +static size_t xBlockAllocatedBit = 0; + +/*-----------------------------------------------------------*/ + +void *pvPortMalloc( size_t xWantedSize ) +{ +BlockLink_t *pxBlock, *pxPreviousBlock, *pxNewBlockLink; +void *pvReturn = NULL; + + vTaskSuspendAll(); + { + /* If this is the first call to malloc then the heap will require + initialisation to setup the list of free blocks. */ + if( pxEnd == NULL ) + { + prvHeapInit(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Check the requested block size is not so large that the top bit is + set. The top bit of the block size member of the BlockLink_t structure + is used to determine who owns the block - the application or the + kernel, so it must be free. */ + if( ( xWantedSize & xBlockAllocatedBit ) == 0 ) + { + /* The wanted size is increased so it can contain a BlockLink_t + structure in addition to the requested amount of bytes. */ + if( xWantedSize > 0 ) + { + xWantedSize += xHeapStructSize; + + /* Ensure that blocks are always aligned to the required number + of bytes. */ + if( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) != 0x00 ) + { + /* Byte alignment required. */ + xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) ); + configASSERT( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) == 0 ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( ( xWantedSize > 0 ) && ( xWantedSize <= xFreeBytesRemaining ) ) + { + /* Traverse the list from the start (lowest address) block until + one of adequate size is found. */ + pxPreviousBlock = &xStart; + pxBlock = xStart.pxNextFreeBlock; + while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock != NULL ) ) + { + pxPreviousBlock = pxBlock; + pxBlock = pxBlock->pxNextFreeBlock; + } + + /* If the end marker was reached then a block of adequate size + was not found. */ + if( pxBlock != pxEnd ) + { + /* Return the memory space pointed to - jumping over the + BlockLink_t structure at its start. */ + pvReturn = ( void * ) ( ( ( uint8_t * ) pxPreviousBlock->pxNextFreeBlock ) + xHeapStructSize ); + + /* This block is being returned for use so must be taken out + of the list of free blocks. */ + pxPreviousBlock->pxNextFreeBlock = pxBlock->pxNextFreeBlock; + + /* If the block is larger than required it can be split into + two. */ + if( ( pxBlock->xBlockSize - xWantedSize ) > heapMINIMUM_BLOCK_SIZE ) + { + /* This block is to be split into two. Create a new + block following the number of bytes requested. The void + cast is used to prevent byte alignment warnings from the + compiler. */ + pxNewBlockLink = ( void * ) ( ( ( uint8_t * ) pxBlock ) + xWantedSize ); + configASSERT( ( ( ( size_t ) pxNewBlockLink ) & portBYTE_ALIGNMENT_MASK ) == 0 ); + + /* Calculate the sizes of two blocks split from the + single block. */ + pxNewBlockLink->xBlockSize = pxBlock->xBlockSize - xWantedSize; + pxBlock->xBlockSize = xWantedSize; + + /* Insert the new block into the list of free blocks. */ + prvInsertBlockIntoFreeList( pxNewBlockLink ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xFreeBytesRemaining -= pxBlock->xBlockSize; + + if( xFreeBytesRemaining < xMinimumEverFreeBytesRemaining ) + { + xMinimumEverFreeBytesRemaining = xFreeBytesRemaining; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The block is being returned - it is allocated and owned + by the application and has no "next" block. */ + pxBlock->xBlockSize |= xBlockAllocatedBit; + pxBlock->pxNextFreeBlock = NULL; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceMALLOC( pvReturn, xWantedSize ); + } + ( void ) xTaskResumeAll(); + + #if( configUSE_MALLOC_FAILED_HOOK == 1 ) + { + if( pvReturn == NULL ) + { + extern void vApplicationMallocFailedHook( void ); + vApplicationMallocFailedHook(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif + + configASSERT( ( ( ( size_t ) pvReturn ) & ( size_t ) portBYTE_ALIGNMENT_MASK ) == 0 ); + return pvReturn; +} +/*-----------------------------------------------------------*/ + +void vPortFree( void *pv ) +{ +uint8_t *puc = ( uint8_t * ) pv; +BlockLink_t *pxLink; + + if( pv != NULL ) + { + /* The memory being freed will have an BlockLink_t structure immediately + before it. */ + puc -= xHeapStructSize; + + /* This casting is to keep the compiler from issuing warnings. */ + pxLink = ( void * ) puc; + + /* Check the block is actually allocated. */ + configASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); + configASSERT( pxLink->pxNextFreeBlock == NULL ); + + if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) + { + if( pxLink->pxNextFreeBlock == NULL ) + { + /* The block is being returned to the heap - it is no longer + allocated. */ + pxLink->xBlockSize &= ~xBlockAllocatedBit; + + vTaskSuspendAll(); + { + /* Add this block to the list of free blocks. */ + xFreeBytesRemaining += pxLink->xBlockSize; + traceFREE( pv, pxLink->xBlockSize ); + prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); + } + ( void ) xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } +} +/*-----------------------------------------------------------*/ + +size_t xPortGetFreeHeapSize( void ) +{ + return xFreeBytesRemaining; +} +/*-----------------------------------------------------------*/ + +size_t xPortGetMinimumEverFreeHeapSize( void ) +{ + return xMinimumEverFreeBytesRemaining; +} +/*-----------------------------------------------------------*/ + +void vPortInitialiseBlocks( void ) +{ + /* This just exists to keep the linker quiet. */ +} +/*-----------------------------------------------------------*/ + +static void prvHeapInit( void ) +{ +BlockLink_t *pxFirstFreeBlock; +uint8_t *pucAlignedHeap; +size_t uxAddress; +size_t xTotalHeapSize = configTOTAL_HEAP_SIZE; + + /* Ensure the heap starts on a correctly aligned boundary. */ + uxAddress = ( size_t ) ucHeap; + + if( ( uxAddress & portBYTE_ALIGNMENT_MASK ) != 0 ) + { + uxAddress += ( portBYTE_ALIGNMENT - 1 ); + uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); + xTotalHeapSize -= uxAddress - ( size_t ) ucHeap; + } + + pucAlignedHeap = ( uint8_t * ) uxAddress; + + /* xStart is used to hold a pointer to the first item in the list of free + blocks. The void cast is used to prevent compiler warnings. */ + xStart.pxNextFreeBlock = ( void * ) pucAlignedHeap; + xStart.xBlockSize = ( size_t ) 0; + + /* pxEnd is used to mark the end of the list of free blocks and is inserted + at the end of the heap space. */ + uxAddress = ( ( size_t ) pucAlignedHeap ) + xTotalHeapSize; + uxAddress -= xHeapStructSize; + uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); + pxEnd = ( void * ) uxAddress; + pxEnd->xBlockSize = 0; + pxEnd->pxNextFreeBlock = NULL; + + /* To start with there is a single free block that is sized to take up the + entire heap space, minus the space taken by pxEnd. */ + pxFirstFreeBlock = ( void * ) pucAlignedHeap; + pxFirstFreeBlock->xBlockSize = uxAddress - ( size_t ) pxFirstFreeBlock; + pxFirstFreeBlock->pxNextFreeBlock = pxEnd; + + /* Only one block exists - and it covers the entire usable heap space. */ + xMinimumEverFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; + xFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; + + /* Work out the position of the top bit in a size_t variable. */ + xBlockAllocatedBit = ( ( size_t ) 1 ) << ( ( sizeof( size_t ) * heapBITS_PER_BYTE ) - 1 ); +} +/*-----------------------------------------------------------*/ + +static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ) +{ +BlockLink_t *pxIterator; +uint8_t *puc; + + /* Iterate through the list until a block is found that has a higher address + than the block being inserted. */ + for( pxIterator = &xStart; pxIterator->pxNextFreeBlock < pxBlockToInsert; pxIterator = pxIterator->pxNextFreeBlock ) + { + /* Nothing to do here, just iterate to the right position. */ + } + + /* Do the block being inserted, and the block it is being inserted after + make a contiguous block of memory? */ + puc = ( uint8_t * ) pxIterator; + if( ( puc + pxIterator->xBlockSize ) == ( uint8_t * ) pxBlockToInsert ) + { + pxIterator->xBlockSize += pxBlockToInsert->xBlockSize; + pxBlockToInsert = pxIterator; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Do the block being inserted, and the block it is being inserted before + make a contiguous block of memory? */ + puc = ( uint8_t * ) pxBlockToInsert; + if( ( puc + pxBlockToInsert->xBlockSize ) == ( uint8_t * ) pxIterator->pxNextFreeBlock ) + { + if( pxIterator->pxNextFreeBlock != pxEnd ) + { + /* Form one big block from the two blocks. */ + pxBlockToInsert->xBlockSize += pxIterator->pxNextFreeBlock->xBlockSize; + pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock->pxNextFreeBlock; + } + else + { + pxBlockToInsert->pxNextFreeBlock = pxEnd; + } + } + else + { + pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock; + } + + /* If the block being inserted plugged a gab, so was merged with the block + before and the block after, then it's pxNextFreeBlock pointer will have + already been set, and should not be set here as that would make it point + to itself. */ + if( pxIterator != pxBlockToInsert ) + { + pxIterator->pxNextFreeBlock = pxBlockToInsert; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/queue.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/queue.c new file mode 100644 index 0000000..ce623be --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/queue.c @@ -0,0 +1,2566 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" +#include "queue.h" + +#if ( configUSE_CO_ROUTINES == 1 ) + #include "croutine.h" +#endif + +/* Lint e961 and e750 are suppressed as a MISRA exception justified because the +MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the +header files above, but not in this file, in order to generate the correct +privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */ + + +/* Constants used with the cRxLock and cTxLock structure members. */ +#define queueUNLOCKED ( ( int8_t ) -1 ) +#define queueLOCKED_UNMODIFIED ( ( int8_t ) 0 ) + +/* When the Queue_t structure is used to represent a base queue its pcHead and +pcTail members are used as pointers into the queue storage area. When the +Queue_t structure is used to represent a mutex pcHead and pcTail pointers are +not necessary, and the pcHead pointer is set to NULL to indicate that the +pcTail pointer actually points to the mutex holder (if any). Map alternative +names to the pcHead and pcTail structure members to ensure the readability of +the code is maintained despite this dual use of two structure members. An +alternative implementation would be to use a union, but use of a union is +against the coding standard (although an exception to the standard has been +permitted where the dual use also significantly changes the type of the +structure member). */ +#define pxMutexHolder pcTail +#define uxQueueType pcHead +#define queueQUEUE_IS_MUTEX NULL + +/* Semaphores do not actually store or copy data, so have an item size of +zero. */ +#define queueSEMAPHORE_QUEUE_ITEM_LENGTH ( ( UBaseType_t ) 0 ) +#define queueMUTEX_GIVE_BLOCK_TIME ( ( TickType_t ) 0U ) + +#if( configUSE_PREEMPTION == 0 ) + /* If the cooperative scheduler is being used then a yield should not be + performed just because a higher priority task has been woken. */ + #define queueYIELD_IF_USING_PREEMPTION() +#else + #define queueYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() +#endif + +/* + * Definition of the queue used by the scheduler. + * Items are queued by copy, not reference. See the following link for the + * rationale: http://www.freertos.org/Embedded-RTOS-Queues.html + */ +typedef struct QueueDefinition +{ + int8_t *pcHead; /*< Points to the beginning of the queue storage area. */ + int8_t *pcTail; /*< Points to the byte at the end of the queue storage area. Once more byte is allocated than necessary to store the queue items, this is used as a marker. */ + int8_t *pcWriteTo; /*< Points to the free next place in the storage area. */ + + union /* Use of a union is an exception to the coding standard to ensure two mutually exclusive structure members don't appear simultaneously (wasting RAM). */ + { + int8_t *pcReadFrom; /*< Points to the last place that a queued item was read from when the structure is used as a queue. */ + UBaseType_t uxRecursiveCallCount;/*< Maintains a count of the number of times a recursive mutex has been recursively 'taken' when the structure is used as a mutex. */ + } u; + + List_t xTasksWaitingToSend; /*< List of tasks that are blocked waiting to post onto this queue. Stored in priority order. */ + List_t xTasksWaitingToReceive; /*< List of tasks that are blocked waiting to read from this queue. Stored in priority order. */ + + volatile UBaseType_t uxMessagesWaiting;/*< The number of items currently in the queue. */ + UBaseType_t uxLength; /*< The length of the queue defined as the number of items it will hold, not the number of bytes. */ + UBaseType_t uxItemSize; /*< The size of each items that the queue will hold. */ + + volatile int8_t cRxLock; /*< Stores the number of items received from the queue (removed from the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ + volatile int8_t cTxLock; /*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the memory used by the queue was statically allocated to ensure no attempt is made to free the memory. */ + #endif + + #if ( configUSE_QUEUE_SETS == 1 ) + struct QueueDefinition *pxQueueSetContainer; + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxQueueNumber; + uint8_t ucQueueType; + #endif + +} xQUEUE; + +/* The old xQUEUE name is maintained above then typedefed to the new Queue_t +name below to enable the use of older kernel aware debuggers. */ +typedef xQUEUE Queue_t; + +/*-----------------------------------------------------------*/ + +/* + * The queue registry is just a means for kernel aware debuggers to locate + * queue structures. It has no other purpose so is an optional component. + */ +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + /* The type stored within the queue registry array. This allows a name + to be assigned to each queue making kernel aware debugging a little + more user friendly. */ + typedef struct QUEUE_REGISTRY_ITEM + { + const char *pcQueueName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + QueueHandle_t xHandle; + } xQueueRegistryItem; + + /* The old xQueueRegistryItem name is maintained above then typedefed to the + new xQueueRegistryItem name below to enable the use of older kernel aware + debuggers. */ + typedef xQueueRegistryItem QueueRegistryItem_t; + + /* The queue registry is simply an array of QueueRegistryItem_t structures. + The pcQueueName member of a structure being NULL is indicative of the + array position being vacant. */ + PRIVILEGED_DATA QueueRegistryItem_t xQueueRegistry[ configQUEUE_REGISTRY_SIZE ]; + +#endif /* configQUEUE_REGISTRY_SIZE */ + +/* + * Unlocks a queue locked by a call to prvLockQueue. Locking a queue does not + * prevent an ISR from adding or removing items to the queue, but does prevent + * an ISR from removing tasks from the queue event lists. If an ISR finds a + * queue is locked it will instead increment the appropriate queue lock count + * to indicate that a task may require unblocking. When the queue in unlocked + * these lock counts are inspected, and the appropriate action taken. + */ +static void prvUnlockQueue( Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Uses a critical section to determine if there is any data in a queue. + * + * @return pdTRUE if the queue contains no items, otherwise pdFALSE. + */ +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Uses a critical section to determine if there is any space in a queue. + * + * @return pdTRUE if there is no space, otherwise pdFALSE; + */ +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Copies an item into the queue, either at the front of the queue or the + * back of the queue. + */ +static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) PRIVILEGED_FUNCTION; + +/* + * Copies an item out of a queue. + */ +static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; + +#if ( configUSE_QUEUE_SETS == 1 ) + /* + * Checks to see if a queue is a member of a queue set, and if so, notifies + * the queue set that the queue contains data. + */ + static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; +#endif + +/* + * Called after a Queue_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; + +/* + * Mutexes are a special type of queue. When a mutex is created, first the + * queue is created, then prvInitialiseMutex() is called to configure the queue + * as a mutex. + */ +#if( configUSE_MUTEXES == 1 ) + static void prvInitialiseMutex( Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; +#endif + +/*-----------------------------------------------------------*/ + +/* + * Macro to mark a queue as locked. Locking a queue prevents an ISR from + * accessing the queue event lists. + */ +#define prvLockQueue( pxQueue ) \ + taskENTER_CRITICAL(); \ + { \ + if( ( pxQueue )->cRxLock == queueUNLOCKED ) \ + { \ + ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \ + } \ + if( ( pxQueue )->cTxLock == queueUNLOCKED ) \ + { \ + ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \ + } \ + } \ + taskEXIT_CRITICAL() +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) +{ +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + configASSERT( pxQueue ); + + taskENTER_CRITICAL(); + { + pxQueue->pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); + pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; + pxQueue->pcWriteTo = pxQueue->pcHead; + pxQueue->u.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - ( UBaseType_t ) 1U ) * pxQueue->uxItemSize ); + pxQueue->cRxLock = queueUNLOCKED; + pxQueue->cTxLock = queueUNLOCKED; + + if( xNewQueue == pdFALSE ) + { + /* If there are tasks blocked waiting to read from the queue, then + the tasks will remain blocked as after this function exits the queue + will still be empty. If there are tasks blocked waiting to write to + the queue, then one should be unblocked as after this function exits + it will be possible to write to it. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Ensure the event queues start in the correct state. */ + vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); + vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); + } + } + taskEXIT_CRITICAL(); + + /* A value is returned for calling semantic consistency with previous + versions. */ + return pdPASS; +} +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) + { + Queue_t *pxNewQueue; + + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); + + /* The StaticQueue_t structure and the queue storage area must be + supplied. */ + configASSERT( pxStaticQueue != NULL ); + + /* A queue storage area should be provided if the item size is not 0, and + should not be provided if the item size is 0. */ + configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ); + configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticQueue_t or StaticSemaphore_t equals the size of + the real queue and semaphore structures. */ + volatile size_t xSize = sizeof( StaticQueue_t ); + configASSERT( xSize == sizeof( Queue_t ) ); + } + #endif /* configASSERT_DEFINED */ + + /* The address of a statically allocated queue was passed in, use it. + The address of a statically allocated storage area was also passed in + but is already set. */ + pxNewQueue = ( Queue_t * ) pxStaticQueue; /*lint !e740 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + + if( pxNewQueue != NULL ) + { + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Queues can be allocated wither statically or dynamically, so + note this queue was allocated statically in case the queue is + later deleted. */ + pxNewQueue->ucStaticallyAllocated = pdTRUE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + + prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); + } + + return pxNewQueue; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) + { + Queue_t *pxNewQueue; + size_t xQueueSizeInBytes; + uint8_t *pucQueueStorage; + + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); + + if( uxItemSize == ( UBaseType_t ) 0 ) + { + /* There is not going to be a queue storage area. */ + xQueueSizeInBytes = ( size_t ) 0; + } + else + { + /* Allocate enough space to hold the maximum number of items that + can be in the queue at any time. */ + xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + + pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); + + if( pxNewQueue != NULL ) + { + /* Jump past the queue structure to find the location of the queue + storage area. */ + pucQueueStorage = ( ( uint8_t * ) pxNewQueue ) + sizeof( Queue_t ); + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* Queues can be created either statically or dynamically, so + note this task was created dynamically in case it is later + deleted. */ + pxNewQueue->ucStaticallyAllocated = pdFALSE; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); + } + + return pxNewQueue; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) +{ + /* Remove compiler warnings about unused parameters should + configUSE_TRACE_FACILITY not be set to 1. */ + ( void ) ucQueueType; + + if( uxItemSize == ( UBaseType_t ) 0 ) + { + /* No RAM was allocated for the queue storage area, but PC head cannot + be set to NULL because NULL is used as a key to say the queue is used as + a mutex. Therefore just set pcHead to point to the queue as a benign + value that is known to be within the memory map. */ + pxNewQueue->pcHead = ( int8_t * ) pxNewQueue; + } + else + { + /* Set the head to the start of the queue storage area. */ + pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; + } + + /* Initialise the queue members as described where the queue type is + defined. */ + pxNewQueue->uxLength = uxQueueLength; + pxNewQueue->uxItemSize = uxItemSize; + ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); + + #if ( configUSE_TRACE_FACILITY == 1 ) + { + pxNewQueue->ucQueueType = ucQueueType; + } + #endif /* configUSE_TRACE_FACILITY */ + + #if( configUSE_QUEUE_SETS == 1 ) + { + pxNewQueue->pxQueueSetContainer = NULL; + } + #endif /* configUSE_QUEUE_SETS */ + + traceQUEUE_CREATE( pxNewQueue ); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_MUTEXES == 1 ) + + static void prvInitialiseMutex( Queue_t *pxNewQueue ) + { + if( pxNewQueue != NULL ) + { + /* The queue create function will set all the queue structure members + correctly for a generic queue, but this function is creating a + mutex. Overwrite those members that need to be set differently - + in particular the information required for priority inheritance. */ + pxNewQueue->pxMutexHolder = NULL; + pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX; + + /* In case this is a recursive mutex. */ + pxNewQueue->u.uxRecursiveCallCount = 0; + + traceCREATE_MUTEX( pxNewQueue ); + + /* Start with the semaphore in the expected state. */ + ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK ); + } + else + { + traceCREATE_MUTEX_FAILED(); + } + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) + { + Queue_t *pxNewQueue; + const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; + + pxNewQueue = ( Queue_t * ) xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); + prvInitialiseMutex( pxNewQueue ); + + return pxNewQueue; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) + { + Queue_t *pxNewQueue; + const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; + + /* Prevent compiler warnings about unused parameters if + configUSE_TRACE_FACILITY does not equal 1. */ + ( void ) ucQueueType; + + pxNewQueue = ( Queue_t * ) xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueType ); + prvInitialiseMutex( pxNewQueue ); + + return pxNewQueue; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) ) + + void* xQueueGetMutexHolder( QueueHandle_t xSemaphore ) + { + void *pxReturn; + + /* This function is called by xSemaphoreGetMutexHolder(), and should not + be called directly. Note: This is a good way of determining if the + calling task is the mutex holder, but not a good way of determining the + identity of the mutex holder, as the holder may change between the + following critical section exiting and the function returning. */ + taskENTER_CRITICAL(); + { + if( ( ( Queue_t * ) xSemaphore )->uxQueueType == queueQUEUE_IS_MUTEX ) + { + pxReturn = ( void * ) ( ( Queue_t * ) xSemaphore )->pxMutexHolder; + } + else + { + pxReturn = NULL; + } + } + taskEXIT_CRITICAL(); + + return pxReturn; + } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */ + +#endif +/*-----------------------------------------------------------*/ + +#if ( configUSE_RECURSIVE_MUTEXES == 1 ) + + BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) + { + BaseType_t xReturn; + Queue_t * const pxMutex = ( Queue_t * ) xMutex; + + configASSERT( pxMutex ); + + /* If this is the task that holds the mutex then pxMutexHolder will not + change outside of this task. If this task does not hold the mutex then + pxMutexHolder can never coincidentally equal the tasks handle, and as + this is the only condition we are interested in it does not matter if + pxMutexHolder is accessed simultaneously by another task. Therefore no + mutual exclusion is required to test the pxMutexHolder variable. */ + if( pxMutex->pxMutexHolder == ( void * ) xTaskGetCurrentTaskHandle() ) /*lint !e961 Not a redundant cast as TaskHandle_t is a typedef. */ + { + traceGIVE_MUTEX_RECURSIVE( pxMutex ); + + /* uxRecursiveCallCount cannot be zero if pxMutexHolder is equal to + the task handle, therefore no underflow check is required. Also, + uxRecursiveCallCount is only modified by the mutex holder, and as + there can only be one, no mutual exclusion is required to modify the + uxRecursiveCallCount member. */ + ( pxMutex->u.uxRecursiveCallCount )--; + + /* Has the recursive call count unwound to 0? */ + if( pxMutex->u.uxRecursiveCallCount == ( UBaseType_t ) 0 ) + { + /* Return the mutex. This will automatically unblock any other + task that might be waiting to access the mutex. */ + ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = pdPASS; + } + else + { + /* The mutex cannot be given because the calling task is not the + holder. */ + xReturn = pdFAIL; + + traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex ); + } + + return xReturn; + } + +#endif /* configUSE_RECURSIVE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_RECURSIVE_MUTEXES == 1 ) + + BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxMutex = ( Queue_t * ) xMutex; + + configASSERT( pxMutex ); + + /* Comments regarding mutual exclusion as per those within + xQueueGiveMutexRecursive(). */ + + traceTAKE_MUTEX_RECURSIVE( pxMutex ); + + if( pxMutex->pxMutexHolder == ( void * ) xTaskGetCurrentTaskHandle() ) /*lint !e961 Cast is not redundant as TaskHandle_t is a typedef. */ + { + ( pxMutex->u.uxRecursiveCallCount )++; + xReturn = pdPASS; + } + else + { + xReturn = xQueueGenericReceive( pxMutex, NULL, xTicksToWait, pdFALSE ); + + /* pdPASS will only be returned if the mutex was successfully + obtained. The calling task may have entered the Blocked state + before reaching here. */ + if( xReturn != pdFAIL ) + { + ( pxMutex->u.uxRecursiveCallCount )++; + } + else + { + traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex ); + } + } + + return xReturn; + } + +#endif /* configUSE_RECURSIVE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) + { + QueueHandle_t xHandle; + + configASSERT( uxMaxCount != 0 ); + configASSERT( uxInitialCount <= uxMaxCount ); + + xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQueue, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); + + if( xHandle != NULL ) + { + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; + + traceCREATE_COUNTING_SEMAPHORE(); + } + else + { + traceCREATE_COUNTING_SEMAPHORE_FAILED(); + } + + return xHandle; + } + +#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) + { + QueueHandle_t xHandle; + + configASSERT( uxMaxCount != 0 ); + configASSERT( uxInitialCount <= uxMaxCount ); + + xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); + + if( xHandle != NULL ) + { + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; + + traceCREATE_COUNTING_SEMAPHORE(); + } + else + { + traceCREATE_COUNTING_SEMAPHORE_FAILED(); + } + + return xHandle; + } + +#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) +{ +BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired; +TimeOut_t xTimeOut; +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /* This function relaxes the coding standard somewhat to allow return + statements within the function itself. This is done in the interest + of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + /* Is there room on the queue now? The running task must be the + highest priority task wanting to access the queue. If the head item + in the queue is to be overwritten then it does not matter if the + queue is full. */ + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) + { + traceQUEUE_SEND( pxQueue ); + xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting + to the queue set caused a higher priority task to + unblock. A context switch is required. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* If there was a task waiting for data to arrive on the + queue then unblock it now. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The unblocked task has a priority higher than + our own so yield immediately. Yes it is ok to + do this from within the critical section - the + kernel takes care of that. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xYieldRequired != pdFALSE ) + { + /* This path is a special case that will only get + executed if the task was holding multiple mutexes + and the mutexes were given back in an order that is + different to that in which they were taken. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + /* If there was a task waiting for data to arrive on the + queue then unblock it now. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The unblocked task has a priority higher than + our own so yield immediately. Yes it is ok to do + this from within the critical section - the kernel + takes care of that. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xYieldRequired != pdFALSE ) + { + /* This path is a special case that will only get + executed if the task was holding multiple mutexes and + the mutexes were given back in an order that is + different to that in which they were taken. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_QUEUE_SETS */ + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was full and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + + /* Return to the original privilege level before exiting + the function. */ + traceQUEUE_SEND_FAILED( pxQueue ); + return errQUEUE_FULL; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was full and a block time was specified so + configure the timeout structure. */ + vTaskSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + if( prvIsQueueFull( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_SEND( pxQueue ); + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); + + /* Unlocking the queue means queue events can effect the + event list. It is possible that interrupts occurring now + remove this task from the event list again - but as the + scheduler is suspended the task will go onto the pending + ready last instead of the actual ready list. */ + prvUnlockQueue( pxQueue ); + + /* Resuming the scheduler will move tasks from the pending + ready list into the ready list - so it is feasible that this + task is already in a ready list before it yields - in which + case the yield will not cause a context switch unless there + is also a higher priority task in the pending ready list. */ + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + } + else + { + /* Try again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* The timeout has expired. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + traceQUEUE_SEND_FAILED( pxQueue ); + return errQUEUE_FULL; + } + } +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + /* Similar to xQueueGenericSend, except without blocking if there is no room + in the queue. Also don't directly wake a task that was blocked on a queue + read, instead return a flag to say whether a context switch is required or + not (i.e. has a task with a higher priority than us been woken by this + post). */ + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) + { + const int8_t cTxLock = pxQueue->cTxLock; + + traceQUEUE_SEND_FROM_ISR( pxQueue ); + + /* Semaphores use xQueueGiveFromISR(), so pxQueue will not be a + semaphore or mutex. That means prvCopyDataToQueue() cannot result + in a task disinheriting a priority and prvCopyDataToQueue() can be + called here even though the disinherit function does not check if + the scheduler is suspended before accessing the ready lists. */ + ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + /* The event list is not altered if the queue is locked. This will + be done when the queue is unlocked later. */ + if( cTxLock == queueUNLOCKED ) + { + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting + to the queue set caused a higher priority task to + unblock. A context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so + record that a context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_QUEUE_SETS */ + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was posted while it was locked. */ + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); + xReturn = errQUEUE_FULL; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + /* Similar to xQueueGenericSendFromISR() but used with semaphores where the + item size is 0. Don't directly wake a task that was blocked on a queue + read, instead return a flag to say whether a context switch is required or + not (i.e. has a task with a higher priority than us been woken by this + post). */ + + configASSERT( pxQueue ); + + /* xQueueGenericSendFromISR() should be used instead of xQueueGiveFromISR() + if the item size is not 0. */ + configASSERT( pxQueue->uxItemSize == 0 ); + + /* Normally a mutex would not be given from an interrupt, especially if + there is a mutex holder, as priority inheritance makes no sense for an + interrupts, only tasks. */ + configASSERT( !( ( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) && ( pxQueue->pxMutexHolder != NULL ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* When the queue is used to implement a semaphore no data is ever + moved through the queue but it is still valid to see if the queue 'has + space'. */ + if( uxMessagesWaiting < pxQueue->uxLength ) + { + const int8_t cTxLock = pxQueue->cTxLock; + + traceQUEUE_SEND_FROM_ISR( pxQueue ); + + /* A task can only have an inherited priority if it is a mutex + holder - and if there is a mutex holder then the mutex cannot be + given from an ISR. As this is the ISR version of the function it + can be assumed there is no mutex holder and no need to determine if + priority disinheritance is needed. Simply increase the count of + messages (semaphores) available. */ + pxQueue->uxMessagesWaiting = uxMessagesWaiting + 1; + + /* The event list is not altered if the queue is locked. This will + be done when the queue is unlocked later. */ + if( cTxLock == queueUNLOCKED ) + { + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue, queueSEND_TO_BACK ) != pdFALSE ) + { + /* The semaphore is a member of a queue set, and + posting to the queue set caused a higher priority + task to unblock. A context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so + record that a context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_QUEUE_SETS */ + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was posted while it was locked. */ + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); + xReturn = errQUEUE_FULL; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait, const BaseType_t xJustPeeking ) +{ +BaseType_t xEntryTimeSet = pdFALSE; +TimeOut_t xTimeOut; +int8_t *pcOriginalReadPosition; +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + /* This function relaxes the coding standard somewhat to allow return + statements within the function itself. This is done in the interest + of execution time efficiency. */ + + for( ;; ) + { + taskENTER_CRITICAL(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Is there data in the queue now? To be running the calling task + must be the highest priority task wanting to access the queue. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Remember the read position in case the queue is only being + peeked. */ + pcOriginalReadPosition = pxQueue->u.pcReadFrom; + + prvCopyDataFromQueue( pxQueue, pvBuffer ); + + if( xJustPeeking == pdFALSE ) + { + traceQUEUE_RECEIVE( pxQueue ); + + /* Actually removing data, not just peeking. */ + pxQueue->uxMessagesWaiting = uxMessagesWaiting - 1; + + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + /* Record the information required to implement + priority inheritance should it become necessary. */ + pxQueue->pxMutexHolder = ( int8_t * ) pvTaskIncrementMutexHeldCount(); /*lint !e961 Cast is not redundant as TaskHandle_t is a typedef. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_MUTEXES */ + + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + traceQUEUE_PEEK( pxQueue ); + + /* The data is not being removed, so reset the read + pointer. */ + pxQueue->u.pcReadFrom = pcOriginalReadPosition; + + /* The data is being left in the queue, so see if there are + any other tasks waiting for the data. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority than this task. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was empty and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was empty and a block time was specified so + configure the timeout structure. */ + vTaskSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); + + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + taskENTER_CRITICAL(); + { + vTaskPriorityInherit( ( void * ) pxQueue->pxMutexHolder ); + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif + + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); + prvUnlockQueue( pxQueue ); + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Try again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Cannot block in an ISR, so check there is data available. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + const int8_t cRxLock = pxQueue->cRxLock; + + traceQUEUE_RECEIVE_FROM_ISR( pxQueue ); + + prvCopyDataFromQueue( pxQueue, pvBuffer ); + pxQueue->uxMessagesWaiting = uxMessagesWaiting - 1; + + /* If the queue is locked the event list will not be modified. + Instead update the lock count so the task that unlocks the queue + will know that an ISR has removed data while the queue was + locked. */ + if( cRxLock == queueUNLOCKED ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + /* The task waiting has a higher priority than us so + force a context switch. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was removed while it was locked. */ + pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue ); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +int8_t *pcOriginalReadPosition; +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( pxQueue->uxItemSize != 0 ); /* Can't peek a semaphore. */ + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* Cannot block in an ISR, so check there is data available. */ + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + traceQUEUE_PEEK_FROM_ISR( pxQueue ); + + /* Remember the read position so it can be reset as nothing is + actually being removed from the queue. */ + pcOriginalReadPosition = pxQueue->u.pcReadFrom; + prvCopyDataFromQueue( pxQueue, pvBuffer ); + pxQueue->u.pcReadFrom = pcOriginalReadPosition; + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue ); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; + + configASSERT( xQueue ); + + taskENTER_CRITICAL(); + { + uxReturn = ( ( Queue_t * ) xQueue )->uxMessagesWaiting; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; +Queue_t *pxQueue; + + pxQueue = ( Queue_t * ) xQueue; + configASSERT( pxQueue ); + + taskENTER_CRITICAL(); + { + uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; + + configASSERT( xQueue ); + + uxReturn = ( ( Queue_t * ) xQueue )->uxMessagesWaiting; + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +void vQueueDelete( QueueHandle_t xQueue ) +{ +Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + configASSERT( pxQueue ); + traceQUEUE_DELETE( pxQueue ); + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + vQueueUnregisterQueue( pxQueue ); + } + #endif + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) + { + /* The queue can only have been allocated dynamically - free it + again. */ + vPortFree( pxQueue ); + } + #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + { + /* The queue could have been allocated statically or dynamically, so + check before attempting to free the memory. */ + if( pxQueue->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) + { + vPortFree( pxQueue ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #else + { + /* The queue must have been statically allocated, so is not going to be + deleted. Avoid compiler warnings about the unused parameter. */ + ( void ) pxQueue; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) + { + return ( ( Queue_t * ) xQueue )->uxQueueNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) + { + ( ( Queue_t * ) xQueue )->uxQueueNumber = uxQueueNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) + { + return ( ( Queue_t * ) xQueue )->ucQueueType; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) +{ +BaseType_t xReturn = pdFALSE; +UBaseType_t uxMessagesWaiting; + + /* This function is called from a critical section. */ + + uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) + { + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + /* The mutex is no longer being held. */ + xReturn = xTaskPriorityDisinherit( ( void * ) pxQueue->pxMutexHolder ); + pxQueue->pxMutexHolder = NULL; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_MUTEXES */ + } + else if( xPosition == queueSEND_TO_BACK ) + { + ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. */ + pxQueue->pcWriteTo += pxQueue->uxItemSize; + if( pxQueue->pcWriteTo >= pxQueue->pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ + { + pxQueue->pcWriteTo = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + ( void ) memcpy( ( void * ) pxQueue->u.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + pxQueue->u.pcReadFrom -= pxQueue->uxItemSize; + if( pxQueue->u.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ + { + pxQueue->u.pcReadFrom = ( pxQueue->pcTail - pxQueue->uxItemSize ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xPosition == queueOVERWRITE ) + { + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* An item is not being added but overwritten, so subtract + one from the recorded number of items in the queue so when + one is added again below the number of recorded items remains + correct. */ + --uxMessagesWaiting; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + pxQueue->uxMessagesWaiting = uxMessagesWaiting + 1; + + return xReturn; +} +/*-----------------------------------------------------------*/ + +static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) +{ + if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) + { + pxQueue->u.pcReadFrom += pxQueue->uxItemSize; + if( pxQueue->u.pcReadFrom >= pxQueue->pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ + { + pxQueue->u.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. */ + } +} +/*-----------------------------------------------------------*/ + +static void prvUnlockQueue( Queue_t * const pxQueue ) +{ + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. */ + + /* The lock counts contains the number of extra data items placed or + removed from the queue while the queue was locked. When a queue is + locked items can be added or removed, but the event lists cannot be + updated. */ + taskENTER_CRITICAL(); + { + int8_t cTxLock = pxQueue->cTxLock; + + /* See if data was added to the queue while it was locked. */ + while( cTxLock > queueLOCKED_UNMODIFIED ) + { + /* Data was posted while the queue was locked. Are any tasks + blocked waiting for data to become available? */ + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue, queueSEND_TO_BACK ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting to + the queue set caused a higher priority task to unblock. + A context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Tasks that are removed from the event list will get + added to the pending ready list as the scheduler is still + suspended. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + break; + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + /* Tasks that are removed from the event list will get added to + the pending ready list as the scheduler is still suspended. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that + a context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + break; + } + } + #endif /* configUSE_QUEUE_SETS */ + + --cTxLock; + } + + pxQueue->cTxLock = queueUNLOCKED; + } + taskEXIT_CRITICAL(); + + /* Do the same for the Rx lock. */ + taskENTER_CRITICAL(); + { + int8_t cRxLock = pxQueue->cRxLock; + + while( cRxLock > queueLOCKED_UNMODIFIED ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + --cRxLock; + } + else + { + break; + } + } + + pxQueue->cRxLock = queueUNLOCKED; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) +{ +BaseType_t xReturn; + + configASSERT( xQueue ); + if( ( ( Queue_t * ) xQueue )->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) +{ +BaseType_t xReturn; + + configASSERT( xQueue ); + if( ( ( Queue_t * ) xQueue )->uxMessagesWaiting == ( ( Queue_t * ) xQueue )->uxLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + /* If the queue is already full we may have to block. A critical section + is required to prevent an interrupt removing something from the queue + between the check to see if the queue is full and blocking on the queue. */ + portDISABLE_INTERRUPTS(); + { + if( prvIsQueueFull( pxQueue ) != pdFALSE ) + { + /* The queue is full - do we want to block or just leave without + posting? */ + if( xTicksToWait > ( TickType_t ) 0 ) + { + /* As this is called from a coroutine we cannot block directly, but + return indicating that we need to block. */ + vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToSend ) ); + portENABLE_INTERRUPTS(); + return errQUEUE_BLOCKED; + } + else + { + portENABLE_INTERRUPTS(); + return errQUEUE_FULL; + } + } + } + portENABLE_INTERRUPTS(); + + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) + { + /* There is room in the queue, copy the data into the queue. */ + prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); + xReturn = pdPASS; + + /* Were any co-routines waiting for data to become available? */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + /* In this instance the co-routine could be placed directly + into the ready list as we are within a critical section. + Instead the same pending ready list mechanism is used as if + the event were caused from within an interrupt. */ + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The co-routine waiting has a higher priority so record + that a yield might be appropriate. */ + xReturn = errQUEUE_YIELD; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xReturn = errQUEUE_FULL; + } + } + portENABLE_INTERRUPTS(); + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + /* If the queue is already empty we may have to block. A critical section + is required to prevent an interrupt adding something to the queue + between the check to see if the queue is empty and blocking on the queue. */ + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + /* There are no messages in the queue, do we want to block or just + leave with nothing? */ + if( xTicksToWait > ( TickType_t ) 0 ) + { + /* As this is a co-routine we cannot block directly, but return + indicating that we need to block. */ + vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToReceive ) ); + portENABLE_INTERRUPTS(); + return errQUEUE_BLOCKED; + } + else + { + portENABLE_INTERRUPTS(); + return errQUEUE_FULL; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + portENABLE_INTERRUPTS(); + + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Data is available from the queue. */ + pxQueue->u.pcReadFrom += pxQueue->uxItemSize; + if( pxQueue->u.pcReadFrom >= pxQueue->pcTail ) + { + pxQueue->u.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --( pxQueue->uxMessagesWaiting ); + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); + + xReturn = pdPASS; + + /* Were any co-routines waiting for space to become available? */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + /* In this instance the co-routine could be placed directly + into the ready list as we are within a critical section. + Instead the same pending ready list mechanism is used as if + the event were caused from within an interrupt. */ + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + xReturn = errQUEUE_YIELD; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xReturn = pdFAIL; + } + } + portENABLE_INTERRUPTS(); + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ) + { + Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + /* Cannot block within an ISR so if there is no space on the queue then + exit without doing anything. */ + if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) + { + prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); + + /* We only want to wake one co-routine per ISR, so check that a + co-routine has not already been woken. */ + if( xCoRoutinePreviouslyWoken == pdFALSE ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + return pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xCoRoutinePreviouslyWoken; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxCoRoutineWoken ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + /* We cannot block from an ISR, so check there is data available. If + not then just leave without doing anything. */ + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Copy the data from the queue. */ + pxQueue->u.pcReadFrom += pxQueue->uxItemSize; + if( pxQueue->u.pcReadFrom >= pxQueue->pcTail ) + { + pxQueue->u.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --( pxQueue->uxMessagesWaiting ); + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); + + if( ( *pxCoRoutineWoken ) == pdFALSE ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + *pxCoRoutineWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t ux; + + /* See if there is an empty space in the registry. A NULL name denotes + a free slot. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].pcQueueName == NULL ) + { + /* Store the information on this queue. */ + xQueueRegistry[ ux ].pcQueueName = pcQueueName; + xQueueRegistry[ ux ].xHandle = xQueue; + + traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + const char *pcQueueGetName( QueueHandle_t xQueue ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t ux; + const char *pcReturn = NULL; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + + /* Note there is nothing here to protect against another task adding or + removing entries from the registry while it is being searched. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) + { + pcReturn = xQueueRegistry[ ux ].pcQueueName; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return pcReturn; + } + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + void vQueueUnregisterQueue( QueueHandle_t xQueue ) + { + UBaseType_t ux; + + /* See if the handle of the queue being unregistered in actually in the + registry. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) + { + /* Set the name to NULL to show that this slot if free again. */ + xQueueRegistry[ ux ].pcQueueName = NULL; + + /* Set the handle to NULL to ensure the same queue handle cannot + appear in the registry twice if it is added, removed, then + added again. */ + xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TIMERS == 1 ) + + void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { + Queue_t * const pxQueue = ( Queue_t * ) xQueue; + + /* This function should not be called by application code hence the + 'Restricted' in its name. It is not part of the public API. It is + designed for use by kernel code, and has special calling requirements. + It can result in vListInsert() being called on a list that can only + possibly ever have one item in it, so the list will be fast, but even + so it should be called with the scheduler locked and not from a critical + section. */ + + /* Only do anything if there are no messages in the queue. This function + will not actually cause the task to block, just place it on a blocked + list. It will not block until the scheduler is unlocked - at which + time a yield will be performed. If an item is added to the queue while + the queue is locked, and the calling task blocks on the queue, then the + calling task will be immediately unblocked when the queue is unlocked. */ + prvLockQueue( pxQueue ); + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) + { + /* There is nothing in the queue, block for the specified period. */ + vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvUnlockQueue( pxQueue ); + } + +#endif /* configUSE_TIMERS */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_QUEUE_SETS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) + { + QueueSetHandle_t pxQueue; + + pxQueue = xQueueGenericCreate( uxEventQueueLength, sizeof( Queue_t * ), queueQUEUE_TYPE_SET ); + + return pxQueue; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) + { + BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) + { + /* Cannot add a queue/semaphore to more than one queue set. */ + xReturn = pdFAIL; + } + else if( ( ( Queue_t * ) xQueueOrSemaphore )->uxMessagesWaiting != ( UBaseType_t ) 0 ) + { + /* Cannot add a queue/semaphore to a queue set if there are already + items in the queue/semaphore. */ + xReturn = pdFAIL; + } + else + { + ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; + xReturn = pdPASS; + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) + { + BaseType_t xReturn; + Queue_t * const pxQueueOrSemaphore = ( Queue_t * ) xQueueOrSemaphore; + + if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) + { + /* The queue was not a member of the set. */ + xReturn = pdFAIL; + } + else if( pxQueueOrSemaphore->uxMessagesWaiting != ( UBaseType_t ) 0 ) + { + /* It is dangerous to remove a queue from a set when the queue is + not empty because the queue set will still hold pending events for + the queue. */ + xReturn = pdFAIL; + } + else + { + taskENTER_CRITICAL(); + { + /* The queue is no longer contained in the set. */ + pxQueueOrSemaphore->pxQueueSetContainer = NULL; + } + taskEXIT_CRITICAL(); + xReturn = pdPASS; + } + + return xReturn; + } /*lint !e818 xQueueSet could not be declared as pointing to const as it is a typedef. */ + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, TickType_t const xTicksToWait ) + { + QueueSetMemberHandle_t xReturn = NULL; + + ( void ) xQueueGenericReceive( ( QueueHandle_t ) xQueueSet, &xReturn, xTicksToWait, pdFALSE ); /*lint !e961 Casting from one typedef to another is not redundant. */ + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) + { + QueueSetMemberHandle_t xReturn = NULL; + + ( void ) xQueueReceiveFromISR( ( QueueHandle_t ) xQueueSet, &xReturn, NULL ); /*lint !e961 Casting from one typedef to another is not redundant. */ + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue, const BaseType_t xCopyPosition ) + { + Queue_t *pxQueueSetContainer = pxQueue->pxQueueSetContainer; + BaseType_t xReturn = pdFALSE; + + /* This function must be called form a critical section. */ + + configASSERT( pxQueueSetContainer ); + configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); + + if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) + { + const int8_t cTxLock = pxQueueSetContainer->cTxLock; + + traceQUEUE_SEND( pxQueueSetContainer ); + + /* The data copied is the handle of the queue that contains data. */ + xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, xCopyPosition ); + + if( cTxLock == queueUNLOCKED ) + { + if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + pxQueueSetContainer->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ + + + + + + + + + + + + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/tasks.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/tasks.c new file mode 100644 index 0000000..6c261a6 --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/tasks.c @@ -0,0 +1,4807 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/* Standard includes. */ +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "timers.h" +#include "StackMacros.h" + +/* Lint e961 and e750 are suppressed as a MISRA exception justified because the +MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the +header files above, but not in this file, in order to generate the correct +privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */ + +/* Set configUSE_STATS_FORMATTING_FUNCTIONS to 2 to include the stats formatting +functions but without including stdio.h here. */ +#if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) + /* At the bottom of this file are two optional functions that can be used + to generate human readable text from the raw data generated by the + uxTaskGetSystemState() function. Note the formatting functions are provided + for convenience only, and are NOT considered part of the kernel. */ + #include +#endif /* configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) */ + +#if( configUSE_PREEMPTION == 0 ) + /* If the cooperative scheduler is being used then a yield should not be + performed just because a higher priority task has been woken. */ + #define taskYIELD_IF_USING_PREEMPTION() +#else + #define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() +#endif + +/* Values that can be assigned to the ucNotifyState member of the TCB. */ +#define taskNOT_WAITING_NOTIFICATION ( ( uint8_t ) 0 ) +#define taskWAITING_NOTIFICATION ( ( uint8_t ) 1 ) +#define taskNOTIFICATION_RECEIVED ( ( uint8_t ) 2 ) + +/* + * The value used to fill the stack of a task when the task is created. This + * is used purely for checking the high water mark for tasks. + */ +#define tskSTACK_FILL_BYTE ( 0xa5U ) + +/* Sometimes the FreeRTOSConfig.h settings only allow a task to be created using +dynamically allocated RAM, in which case when any task is deleted it is known +that both the task's stack and TCB need to be freed. Sometimes the +FreeRTOSConfig.h settings only allow a task to be created using statically +allocated RAM, in which case when any task is deleted it is known that neither +the task's stack or TCB should be freed. Sometimes the FreeRTOSConfig.h +settings allow a task to be created using either statically or dynamically +allocated RAM, in which case a member of the TCB is used to record whether the +stack and/or TCB were allocated statically or dynamically, so when a task is +deleted the RAM that was allocated dynamically is freed again and no attempt is +made to free the RAM that was allocated statically. +tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE is only true if it is possible for a +task to be created using either statically or dynamically allocated RAM. Note +that if portUSING_MPU_WRAPPERS is 1 then a protected task can be created with +a statically allocated stack and a dynamically allocated TCB. */ +#define tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE ( ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) || ( portUSING_MPU_WRAPPERS == 1 ) ) +#define tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 0 ) +#define tskSTATICALLY_ALLOCATED_STACK_ONLY ( ( uint8_t ) 1 ) +#define tskSTATICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 2 ) + +/* + * Macros used by vListTask to indicate which state a task is in. + */ +#define tskBLOCKED_CHAR ( 'B' ) +#define tskREADY_CHAR ( 'R' ) +#define tskDELETED_CHAR ( 'D' ) +#define tskSUSPENDED_CHAR ( 'S' ) + +/* + * Some kernel aware debuggers require the data the debugger needs access to be + * global, rather than file scope. + */ +#ifdef portREMOVE_STATIC_QUALIFIER + #define static +#endif + +#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 0 then task selection is + performed in a generic way that is not optimised to any particular + microcontroller architecture. */ + + /* uxTopReadyPriority holds the priority of the highest priority ready + state task. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) \ + { \ + if( ( uxPriority ) > uxTopReadyPriority ) \ + { \ + uxTopReadyPriority = ( uxPriority ); \ + } \ + } /* taskRECORD_READY_PRIORITY */ + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority = uxTopReadyPriority; \ + \ + /* Find the highest priority queue that contains ready tasks. */ \ + while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \ + { \ + configASSERT( uxTopPriority ); \ + --uxTopPriority; \ + } \ + \ + /* listGET_OWNER_OF_NEXT_ENTRY indexes through the list, so the tasks of \ + the same priority get an equal share of the processor time. */ \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + uxTopReadyPriority = uxTopPriority; \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK */ + + /*-----------------------------------------------------------*/ + + /* Define away taskRESET_READY_PRIORITY() and portRESET_READY_PRIORITY() as + they are only required when a port optimised method of task selection is + being used. */ + #define taskRESET_READY_PRIORITY( uxPriority ) + #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + +#else /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 1 then task selection is + performed in a way that is tailored to the particular microcontroller + architecture being used. */ + + /* A port optimised version is provided. Call the port defined macros. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority; \ + \ + /* Find the highest priority list that contains ready tasks. */ \ + portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \ + configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 ); \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK() */ + + /*-----------------------------------------------------------*/ + + /* A port optimised version is provided, call it only if the TCB being reset + is being referenced from a ready list. If it is referenced from a delayed + or suspended list then it won't be in a ready list. */ + #define taskRESET_READY_PRIORITY( uxPriority ) \ + { \ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \ + { \ + portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \ + } \ + } + +#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + +/*-----------------------------------------------------------*/ + +/* pxDelayedTaskList and pxOverflowDelayedTaskList are switched when the tick +count overflows. */ +#define taskSWITCH_DELAYED_LISTS() \ +{ \ + List_t *pxTemp; \ + \ + /* The delayed tasks list should be empty when the lists are switched. */ \ + configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \ + \ + pxTemp = pxDelayedTaskList; \ + pxDelayedTaskList = pxOverflowDelayedTaskList; \ + pxOverflowDelayedTaskList = pxTemp; \ + xNumOfOverflows++; \ + prvResetNextTaskUnblockTime(); \ +} + +/*-----------------------------------------------------------*/ + +/* + * Place the task represented by pxTCB into the appropriate ready list for + * the task. It is inserted at the end of the list. + */ +#define prvAddTaskToReadyList( pxTCB ) \ + traceMOVED_TASK_TO_READY_STATE( pxTCB ); \ + taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority ); \ + vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) ); \ + tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) +/*-----------------------------------------------------------*/ + +/* + * Several functions take an TaskHandle_t parameter that can optionally be NULL, + * where NULL is used to indicate that the handle of the currently executing + * task should be used in place of the parameter. This macro simply checks to + * see if the parameter is NULL and returns a pointer to the appropriate TCB. + */ +#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? ( TCB_t * ) pxCurrentTCB : ( TCB_t * ) ( pxHandle ) ) + +/* The item value of the event list item is normally used to hold the priority +of the task to which it belongs (coded to allow it to be held in reverse +priority order). However, it is occasionally borrowed for other purposes. It +is important its value is not updated due to a task priority change while it is +being used for another purpose. The following bit definition is used to inform +the scheduler that the value should not be changed - in which case it is the +responsibility of whichever module is using the value to ensure it gets set back +to its original value when it is released. */ +#if( configUSE_16_BIT_TICKS == 1 ) + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x8000U +#else + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x80000000UL +#endif + +/* + * Task control block. A task control block (TCB) is allocated for each task, + * and stores task state information, including a pointer to the task's context + * (the task's run time environment, including register values) + */ +typedef struct tskTaskControlBlock +{ + volatile StackType_t *pxTopOfStack; /*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + xMPU_SETTINGS xMPUSettings; /*< The MPU settings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */ + #endif + + ListItem_t xStateListItem; /*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */ + ListItem_t xEventListItem; /*< Used to reference a task from an event list. */ + UBaseType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */ + StackType_t *pxStack; /*< Points to the start of the stack. */ + char pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + + #if ( portSTACK_GROWTH > 0 ) + StackType_t *pxEndOfStack; /*< Points to the end of the stack on architectures where the stack grows up from low memory. */ + #endif + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + UBaseType_t uxCriticalNesting; /*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */ + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxTCBNumber; /*< Stores a number that increments each time a TCB is created. It allows debuggers to determine when a task has been deleted and then recreated. */ + UBaseType_t uxTaskNumber; /*< Stores a number specifically for use by third party trace code. */ + #endif + + #if ( configUSE_MUTEXES == 1 ) + UBaseType_t uxBasePriority; /*< The priority last assigned to the task - used by the priority inheritance mechanism. */ + UBaseType_t uxMutexesHeld; + #endif + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + TaskHookFunction_t pxTaskTag; + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + void *pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; + #endif + + #if( configGENERATE_RUN_TIME_STATS == 1 ) + uint32_t ulRunTimeCounter; /*< Stores the amount of time the task has spent in the Running state. */ + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + /* Allocate a Newlib reent structure that is specific to this task. + Note Newlib support has been included by popular demand, but is not + used by the FreeRTOS maintainers themselves. FreeRTOS is not + responsible for resulting newlib operation. User must be familiar with + newlib and must provide system-wide implementations of the necessary + stubs. Be warned that (at the time of writing) the current newlib design + implements a system-wide malloc() that must be provided with locks. */ + struct _reent xNewLib_reent; + #endif + + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + volatile uint32_t ulNotifiedValue; + volatile uint8_t ucNotifyState; + #endif + + /* See the comments above the definition of + tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE. */ + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */ + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + uint8_t ucDelayAborted; + #endif + +} tskTCB; + +/* The old tskTCB name is maintained above then typedefed to the new TCB_t name +below to enable the use of older kernel aware debuggers. */ +typedef tskTCB TCB_t; + +/*lint -e956 A manual analysis and inspection has been used to determine which +static variables must be declared volatile. */ + +PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL; + +/* Lists for ready and blocked tasks. --------------------*/ +PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ];/*< Prioritised ready tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList1; /*< Delayed tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList2; /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /*< Points to the delayed task list currently being used. */ +PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t xPendingReadyList; /*< Tasks that have been readied while the scheduler was suspended. They will be moved to the ready list when the scheduler is resumed. */ + +#if( INCLUDE_vTaskDelete == 1 ) + + PRIVILEGED_DATA static List_t xTasksWaitingTermination; /*< Tasks that have been deleted - but their memory not yet freed. */ + PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U; + +#endif + +#if ( INCLUDE_vTaskSuspend == 1 ) + + PRIVILEGED_DATA static List_t xSuspendedTaskList; /*< Tasks that are currently suspended. */ + +#endif + +/* Other file private variables. --------------------------------*/ +PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) 0U; +PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY; +PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE; +PRIVILEGED_DATA static volatile UBaseType_t uxPendedTicks = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile BaseType_t xYieldPending = pdFALSE; +PRIVILEGED_DATA static volatile BaseType_t xNumOfOverflows = ( BaseType_t ) 0; +PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime = ( TickType_t ) 0U; /* Initialised to portMAX_DELAY before the scheduler starts. */ +PRIVILEGED_DATA static TaskHandle_t xIdleTaskHandle = NULL; /*< Holds the handle of the idle task. The idle task is created automatically when the scheduler is started. */ + +/* Context switches are held pending while the scheduler is suspended. Also, +interrupts must not manipulate the xStateListItem of a TCB, or any of the +lists the xStateListItem can be referenced from, if the scheduler is suspended. +If an interrupt needs to unblock a task while the scheduler is suspended then it +moves the task's event list item into the xPendingReadyList, ready for the +kernel to move the task from the pending ready list into the real ready list +when the scheduler is unsuspended. The pending ready list itself can only be +accessed from a critical section. */ +PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) pdFALSE; + +#if ( configGENERATE_RUN_TIME_STATS == 1 ) + + PRIVILEGED_DATA static uint32_t ulTaskSwitchedInTime = 0UL; /*< Holds the value of a timer/counter the last time a task was switched in. */ + PRIVILEGED_DATA static uint32_t ulTotalRunTime = 0UL; /*< Holds the total amount of execution time as defined by the run time counter clock. */ + +#endif + +/*lint +e956 */ + +/*-----------------------------------------------------------*/ + +/* Callback function prototypes. --------------------------*/ +#if( configCHECK_FOR_STACK_OVERFLOW > 0 ) + extern void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ); +#endif + +#if( configUSE_TICK_HOOK > 0 ) + extern void vApplicationTickHook( void ); +#endif + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + extern void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ); +#endif + +/* File private functions. --------------------------------*/ + +/** + * Utility task that simply returns pdTRUE if the task referenced by xTask is + * currently in the Suspended state, or pdFALSE if the task referenced by xTask + * is in any other state. + */ +#if ( INCLUDE_vTaskSuspend == 1 ) + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; +#endif /* INCLUDE_vTaskSuspend */ + +/* + * Utility to ready all the lists used by the scheduler. This is called + * automatically upon the creation of the first task. + */ +static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION; + +/* + * The idle task, which as all tasks is implemented as a never ending loop. + * The idle task is automatically created and added to the ready lists upon + * creation of the first user task. + * + * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters ); + +/* + * Utility to free all memory allocated by the scheduler to hold a TCB, + * including the stack pointed to by the TCB. + * + * This does not free memory allocated by the task itself (i.e. memory + * allocated by calls to pvPortMalloc from within the tasks application code). + */ +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Used only by the idle task. This checks to see if anything has been placed + * in the list of tasks waiting to be deleted. If so the task is cleaned up + * and its TCB deleted. + */ +static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION; + +/* + * The currently executing task is entering the Blocked state. Add the task to + * either the current or the overflow delayed task list. + */ +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) PRIVILEGED_FUNCTION; + +/* + * Fills an TaskStatus_t structure with information on each task that is + * referenced from the pxList list (which may be a ready list, a delayed list, + * a suspended list, etc.). + * + * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM + * NORMAL APPLICATION CODE. + */ +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Searches pxList for a task with name pcNameToQuery - returning a handle to + * the task if it is found, or NULL if the task is not found. + */ +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) PRIVILEGED_FUNCTION; + +#endif + +/* + * When a task is created, the stack of the task is filled with a known value. + * This function determines the 'high water mark' of the task stack by + * determining how much of the stack remains at the original preset value. + */ +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) + + static uint16_t prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Return the amount of time, in ticks, that will pass before the kernel will + * next move a task from the Blocked state to the Running state. + * + * This conditional compilation should use inequality to 0, not equality to 1. + * This is to ensure portSUPPRESS_TICKS_AND_SLEEP() can be called when user + * defined low power mode implementations require configUSE_TICKLESS_IDLE to be + * set to a value other than 1. + */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Set xNextTaskUnblockTime to the time at which the next Blocked state task + * will exit the Blocked state. + */ +static void prvResetNextTaskUnblockTime( void ); + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + /* + * Helper function used to pad task names with spaces when printing out + * human readable tables of task information. + */ + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Called after a Task_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/* + * Called after a new task has been created and initialised to place the task + * under the control of the scheduler. + */ +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) PRIVILEGED_FUNCTION; + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + StackType_t * const puxStackBuffer, + StaticTask_t * const pxTaskBuffer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + TCB_t *pxNewTCB; + TaskHandle_t xReturn; + + configASSERT( puxStackBuffer != NULL ); + configASSERT( pxTaskBuffer != NULL ); + + if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) + { + /* The memory used for the task's TCB and stack are passed into this + function - use them. */ + pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note this + task was created statically in case the task is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + + prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + } + else + { + xReturn = NULL; + } + + return xReturn; + } + +#endif /* SUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( portUSING_MPU_WRAPPERS == 1 ) + + BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + + configASSERT( pxTaskDefinition->puxStackBuffer ); + + if( pxTaskDefinition->puxStackBuffer != NULL ) + { + /* Allocate space for the TCB. Where the memory comes from depends + on the implementation of the port malloc function and whether or + not static allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; + + /* Tasks can be created statically or dynamically, so note + this task had a statically allocated stack in case it is + later deleted. The TCB was allocated dynamically. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY; + + prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, + pxTaskDefinition->pcName, + ( uint32_t ) pxTaskDefinition->usStackDepth, + pxTaskDefinition->pvParameters, + pxTaskDefinition->uxPriority, + pxCreatedTask, pxNewTCB, + pxTaskDefinition->xRegions ); + + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + } + + return xReturn; + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint16_t usStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + TCB_t *pxNewTCB; + BaseType_t xReturn; + + /* If the stack grows down then allocate the stack then the TCB so the stack + does not grow into the TCB. Likewise if the stack grows up then allocate + the TCB then the stack. */ + #if( portSTACK_GROWTH > 0 ) + { + /* Allocate space for the TCB. Where the memory comes from depends on + the implementation of the port malloc function and whether or not static + allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Allocate space for the stack used by the task being created. + The base of the stack memory stored in the TCB so the task can + be deleted later if required. */ + pxNewTCB->pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + if( pxNewTCB->pxStack == NULL ) + { + /* Could not allocate the stack. Delete the allocated TCB. */ + vPortFree( pxNewTCB ); + pxNewTCB = NULL; + } + } + } + #else /* portSTACK_GROWTH */ + { + StackType_t *pxStack; + + /* Allocate space for the stack used by the task being created. */ + pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + if( pxStack != NULL ) + { + /* Allocate space for the TCB. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e961 MISRA exception as the casts are only redundant for some paths. */ + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxStack; + } + else + { + /* The stack cannot be used as the TCB was not created. Free + it again. */ + vPortFree( pxStack ); + } + } + else + { + pxNewTCB = NULL; + } + } + #endif /* portSTACK_GROWTH */ + + if( pxNewTCB != NULL ) + { + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note this + task was created dynamically in case it is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + else + { + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + } + + return xReturn; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +StackType_t *pxTopOfStack; +UBaseType_t x; + + #if( portUSING_MPU_WRAPPERS == 1 ) + /* Should the task be created in privileged mode? */ + BaseType_t xRunPrivileged; + if( ( uxPriority & portPRIVILEGE_BIT ) != 0U ) + { + xRunPrivileged = pdTRUE; + } + else + { + xRunPrivileged = pdFALSE; + } + uxPriority &= ~portPRIVILEGE_BIT; + #endif /* portUSING_MPU_WRAPPERS == 1 */ + + /* Avoid dependency on memset() if it is not required. */ + #if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) + { + /* Fill the stack with a known value to assist debugging. */ + ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); + } + #endif /* ( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) ) */ + + /* Calculate the top of stack address. This depends on whether the stack + grows from high memory to low (as per the 80x86) or vice versa. + portSTACK_GROWTH is used to make the result positive or negative as required + by the port. */ + #if( portSTACK_GROWTH < 0 ) + { + pxTopOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); + pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. */ + + /* Check the alignment of the calculated top of stack is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + } + #else /* portSTACK_GROWTH */ + { + pxTopOfStack = pxNewTCB->pxStack; + + /* Check the alignment of the stack buffer is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxNewTCB->pxStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + + /* The other extreme of the stack space is required if stack checking is + performed. */ + pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); + } + #endif /* portSTACK_GROWTH */ + + /* Store the task name in the TCB. */ + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + pxNewTCB->pcTaskName[ x ] = pcName[ x ]; + + /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than + configMAX_TASK_NAME_LEN characters just in case the memory after the + string is not accessible (extremely unlikely). */ + if( pcName[ x ] == 0x00 ) + { + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Ensure the name string is terminated in the case that the string length + was greater or equal to configMAX_TASK_NAME_LEN. */ + pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; + + /* This is used as an array index so must ensure it's not too large. First + remove the privilege bit if one is present. */ + if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxNewTCB->uxPriority = uxPriority; + #if ( configUSE_MUTEXES == 1 ) + { + pxNewTCB->uxBasePriority = uxPriority; + pxNewTCB->uxMutexesHeld = 0; + } + #endif /* configUSE_MUTEXES */ + + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); + vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); + + /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get + back to the containing TCB from a generic item in a list. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); + + /* Event lists are always in priority order. */ + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + { + pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; + } + #endif /* portCRITICAL_NESTING_IN_TCB */ + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + { + pxNewTCB->pxTaskTag = NULL; + } + #endif /* configUSE_APPLICATION_TASK_TAG */ + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxNewTCB->ulRunTimeCounter = 0UL; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + { + vPortStoreTaskMPUSettings( &( pxNewTCB->xMPUSettings ), xRegions, pxNewTCB->pxStack, ulStackDepth ); + } + #else + { + /* Avoid compiler warning about unreferenced parameter. */ + ( void ) xRegions; + } + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + { + for( x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++ ) + { + pxNewTCB->pvThreadLocalStoragePointers[ x ] = NULL; + } + } + #endif + + #if ( configUSE_TASK_NOTIFICATIONS == 1 ) + { + pxNewTCB->ulNotifiedValue = 0; + pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Initialise this task's Newlib reent structure. */ + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); + } + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + pxNewTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Initialize the TCB stack to look as if the task was already running, + but had been interrupted by the scheduler. The return address is set + to the start of the task function. Once the stack has been initialised + the top of stack variable is updated. */ + #if( portUSING_MPU_WRAPPERS == 1 ) + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #else /* portUSING_MPU_WRAPPERS */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); + } + #endif /* portUSING_MPU_WRAPPERS */ + + if( ( void * ) pxCreatedTask != NULL ) + { + /* Pass the handle out in an anonymous way. The handle can be used to + change the created task's priority, delete the created task, etc.*/ + *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) +{ + /* Ensure interrupts don't access the task lists while the lists are being + updated. */ + taskENTER_CRITICAL(); + { + uxCurrentNumberOfTasks++; + if( pxCurrentTCB == NULL ) + { + /* There are no other tasks, or all the other tasks are in + the suspended state - make this the current task. */ + pxCurrentTCB = pxNewTCB; + + if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) + { + /* This is the first task to be created so do the preliminary + initialisation required. We will not recover if this call + fails, but we will report the failure. */ + prvInitialiseTaskLists(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* If the scheduler is not already running, make this task the + current task if it is the highest priority task to be created + so far. */ + if( xSchedulerRunning == pdFALSE ) + { + if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) + { + pxCurrentTCB = pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + uxTaskNumber++; + + #if ( configUSE_TRACE_FACILITY == 1 ) + { + /* Add a counter into the TCB for tracing only. */ + pxNewTCB->uxTCBNumber = uxTaskNumber; + } + #endif /* configUSE_TRACE_FACILITY */ + traceTASK_CREATE( pxNewTCB ); + + prvAddTaskToReadyList( pxNewTCB ); + + portSETUP_TCB( pxNewTCB ); + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* If the created task is of a higher priority than the current task + then it should run now. */ + if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + void vTaskDelete( TaskHandle_t xTaskToDelete ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the calling task that is + being deleted. */ + pxTCB = prvGetTCBFromHandle( xTaskToDelete ); + + /* Remove task from the ready list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Increment the uxTaskNumber also so kernel aware debuggers can + detect that the task lists need re-generating. This is done before + portPRE_TASK_DELETE_HOOK() as in the Windows port that macro will + not return. */ + uxTaskNumber++; + + if( pxTCB == pxCurrentTCB ) + { + /* A task is deleting itself. This cannot complete within the + task itself, as a context switch to another task is required. + Place the task in the termination list. The idle task will + check the termination list and free up any memory allocated by + the scheduler for the TCB and stack of the deleted task. */ + vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) ); + + /* Increment the ucTasksDeleted variable so the idle task knows + there is a task that has been deleted and that it should therefore + check the xTasksWaitingTermination list. */ + ++uxDeletedTasksWaitingCleanUp; + + /* The pre-delete hook is primarily for the Windows simulator, + in which Windows specific clean up operations are performed, + after which it is not possible to yield away from this task - + hence xYieldPending is used to latch that a context switch is + required. */ + portPRE_TASK_DELETE_HOOK( pxTCB, &xYieldPending ); + } + else + { + --uxCurrentNumberOfTasks; + prvDeleteTCB( pxTCB ); + + /* Reset the next expected unblock time in case it referred to + the task that has just been deleted. */ + prvResetNextTaskUnblockTime(); + } + + traceTASK_DELETE( pxTCB ); + } + taskEXIT_CRITICAL(); + + /* Force a reschedule if it is the currently running task that has just + been deleted. */ + if( xSchedulerRunning != pdFALSE ) + { + if( pxTCB == pxCurrentTCB ) + { + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelayUntil == 1 ) + + void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) + { + TickType_t xTimeToWake; + BaseType_t xAlreadyYielded, xShouldDelay = pdFALSE; + + configASSERT( pxPreviousWakeTime ); + configASSERT( ( xTimeIncrement > 0U ) ); + configASSERT( uxSchedulerSuspended == 0 ); + + vTaskSuspendAll(); + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount; + + /* Generate the tick time at which the task wants to wake. */ + xTimeToWake = *pxPreviousWakeTime + xTimeIncrement; + + if( xConstTickCount < *pxPreviousWakeTime ) + { + /* The tick count has overflowed since this function was + lasted called. In this case the only time we should ever + actually delay is if the wake time has also overflowed, + and the wake time is greater than the tick time. When this + is the case it is as if neither time had overflowed. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The tick time has not overflowed. In this case we will + delay if either the wake time has overflowed, and/or the + tick time is less than the wake time. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Update the wake time ready for the next call. */ + *pxPreviousWakeTime = xTimeToWake; + + if( xShouldDelay != pdFALSE ) + { + traceTASK_DELAY_UNTIL( xTimeToWake ); + + /* prvAddCurrentTaskToDelayedList() needs the block time, not + the time to wake, so subtract the current tick count. */ + prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + xAlreadyYielded = xTaskResumeAll(); + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelayUntil */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelay == 1 ) + + void vTaskDelay( const TickType_t xTicksToDelay ) + { + BaseType_t xAlreadyYielded = pdFALSE; + + /* A delay time of zero just forces a reschedule. */ + if( xTicksToDelay > ( TickType_t ) 0U ) + { + configASSERT( uxSchedulerSuspended == 0 ); + vTaskSuspendAll(); + { + traceTASK_DELAY(); + + /* A task that is removed from the event list while the + scheduler is suspended will not get placed in the ready + list or removed from the blocked list until the scheduler + is resumed. + + This task cannot be in an event list as it is the currently + executing task. */ + prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); + } + xAlreadyYielded = xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelay */ +/*-----------------------------------------------------------*/ + +#if( ( INCLUDE_eTaskGetState == 1 ) || ( configUSE_TRACE_FACILITY == 1 ) ) + + eTaskState eTaskGetState( TaskHandle_t xTask ) + { + eTaskState eReturn; + List_t *pxStateList; + const TCB_t * const pxTCB = ( TCB_t * ) xTask; + + configASSERT( pxTCB ); + + if( pxTCB == pxCurrentTCB ) + { + /* The task calling this function is querying its own state. */ + eReturn = eRunning; + } + else + { + taskENTER_CRITICAL(); + { + pxStateList = ( List_t * ) listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) ); + } + taskEXIT_CRITICAL(); + + if( ( pxStateList == pxDelayedTaskList ) || ( pxStateList == pxOverflowDelayedTaskList ) ) + { + /* The task being queried is referenced from one of the Blocked + lists. */ + eReturn = eBlocked; + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + else if( pxStateList == &xSuspendedTaskList ) + { + /* The task being queried is referenced from the suspended + list. Is it genuinely suspended or is it block + indefinitely? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ) + { + eReturn = eSuspended; + } + else + { + eReturn = eBlocked; + } + } + #endif + + #if ( INCLUDE_vTaskDelete == 1 ) + else if( ( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL ) ) + { + /* The task being queried is referenced from the deleted + tasks list, or it is not referenced from any lists at + all. */ + eReturn = eDeleted; + } + #endif + + else /*lint !e525 Negative indentation is intended to make use of pre-processor clearer. */ + { + /* If the task is not in any other state, it must be in the + Ready (including pending ready) state. */ + eReturn = eReady; + } + } + + return eReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_eTaskGetState */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGet( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + UBaseType_t uxReturn; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the that + called uxTaskPriorityGet() that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + taskEXIT_CRITICAL(); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGetFromISR( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + UBaseType_t uxReturn, uxSavedInterruptState; + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptState = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* If null is passed in here then it is the priority of the calling + task that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptState ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskPrioritySet == 1 ) + + void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) + { + TCB_t *pxTCB; + UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry; + BaseType_t xYieldRequired = pdFALSE; + + configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) ); + + /* Ensure the new priority is valid. */ + if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the calling + task that is being changed. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + traceTASK_PRIORITY_SET( pxTCB, uxNewPriority ); + + #if ( configUSE_MUTEXES == 1 ) + { + uxCurrentBasePriority = pxTCB->uxBasePriority; + } + #else + { + uxCurrentBasePriority = pxTCB->uxPriority; + } + #endif + + if( uxCurrentBasePriority != uxNewPriority ) + { + /* The priority change may have readied a task of higher + priority than the calling task. */ + if( uxNewPriority > uxCurrentBasePriority ) + { + if( pxTCB != pxCurrentTCB ) + { + /* The priority of a task other than the currently + running task is being raised. Is the priority being + raised above that of the running task? */ + if( uxNewPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The priority of the running task is being raised, + but the running task must already be the highest + priority task able to run so no yield is required. */ + } + } + else if( pxTCB == pxCurrentTCB ) + { + /* Setting the priority of the running task down means + there may now be another task of higher priority that + is ready to execute. */ + xYieldRequired = pdTRUE; + } + else + { + /* Setting the priority of any other task down does not + require a yield as the running task must be above the + new priority of the task being modified. */ + } + + /* Remember the ready list the task might be referenced from + before its uxPriority member is changed so the + taskRESET_READY_PRIORITY() macro can function correctly. */ + uxPriorityUsedOnEntry = pxTCB->uxPriority; + + #if ( configUSE_MUTEXES == 1 ) + { + /* Only change the priority being used if the task is not + currently using an inherited priority. */ + if( pxTCB->uxBasePriority == pxTCB->uxPriority ) + { + pxTCB->uxPriority = uxNewPriority; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The base priority gets set whatever. */ + pxTCB->uxBasePriority = uxNewPriority; + } + #else + { + pxTCB->uxPriority = uxNewPriority; + } + #endif + + /* Only reset the event list item value if the value is not + being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxNewPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task is in the blocked or suspended list we need do + nothing more than change it's priority variable. However, if + the task is in a ready list it needs to be removed and placed + in the list appropriate to its new priority. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* The task is currently in its ready list - remove before adding + it to it's new ready list. As we are in a critical section we + can do this even if the scheduler is suspended. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvAddTaskToReadyList( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xYieldRequired != pdFALSE ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Remove compiler warning about unused variables when the port + optimised task selection is not being used. */ + ( void ) uxPriorityUsedOnEntry; + } + } + taskEXIT_CRITICAL(); + } + +#endif /* INCLUDE_vTaskPrioritySet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskSuspend( TaskHandle_t xTaskToSuspend ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the running task that is + being suspended. */ + pxTCB = prvGetTCBFromHandle( xTaskToSuspend ); + + traceTASK_SUSPEND( pxTCB ); + + /* Remove task from the ready/delayed list and place in the + suspended list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ); + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* Reset the next expected unblock time in case it referred to the + task that is now in the Suspended state. */ + taskENTER_CRITICAL(); + { + prvResetNextTaskUnblockTime(); + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( pxTCB == pxCurrentTCB ) + { + if( xSchedulerRunning != pdFALSE ) + { + /* The current task has just been suspended. */ + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + /* The scheduler is not running, but the task that was pointed + to by pxCurrentTCB has just been suspended and pxCurrentTCB + must be adjusted to point to a different task. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks ) + { + /* No other tasks are ready, so set pxCurrentTCB back to + NULL so when the next task is created pxCurrentTCB will + be set to point to it no matter what its relative priority + is. */ + pxCurrentTCB = NULL; + } + else + { + vTaskSwitchContext(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) + { + BaseType_t xReturn = pdFALSE; + const TCB_t * const pxTCB = ( TCB_t * ) xTask; + + /* Accesses xPendingReadyList so must be called from a critical + section. */ + + /* It does not make sense to check if the calling task is suspended. */ + configASSERT( xTask ); + + /* Is the task being resumed actually in the suspended list? */ + if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* Has the task already been resumed from within an ISR? */ + if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE ) + { + /* Is it in the suspended list because it is in the Suspended + state, or because is is blocked with no timeout? */ + if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE ) + { + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskResume( TaskHandle_t xTaskToResume ) + { + TCB_t * const pxTCB = ( TCB_t * ) xTaskToResume; + + /* It does not make sense to resume the calling task. */ + configASSERT( xTaskToResume ); + + /* The parameter cannot be NULL as it is impossible to resume the + currently executing task. */ + if( ( pxTCB != NULL ) && ( pxTCB != pxCurrentTCB ) ) + { + taskENTER_CRITICAL(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME( pxTCB ); + + /* As we are in a critical section we can access the ready + lists even if the scheduler is suspended. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* We may have just resumed a higher priority task. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + /* This yield may not cause the task just resumed to run, + but will leave the lists in the correct state for the + next yield. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ + +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) + + BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) + { + BaseType_t xYieldRequired = pdFALSE; + TCB_t * const pxTCB = ( TCB_t * ) xTaskToResume; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToResume ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME_FROM_ISR( pxTCB ); + + /* Check the ready lists can be accessed. */ + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Ready lists can be accessed so move the task from the + suspended list to the ready list directly. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed or ready lists cannot be accessed so the task + is held in the pending ready list until the scheduler is + unsuspended. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xYieldRequired; + } + +#endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ +/*-----------------------------------------------------------*/ + +void vTaskStartScheduler( void ) +{ +BaseType_t xReturn; + + /* Add the idle task at the lowest priority. */ + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + StaticTask_t *pxIdleTaskTCBBuffer = NULL; + StackType_t *pxIdleTaskStackBuffer = NULL; + uint32_t ulIdleTaskStackSize; + + /* The Idle task is created using user provided RAM - obtain the + address of the RAM then create the idle task. */ + vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); + xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, + "IDLE", + ulIdleTaskStackSize, + ( void * ) NULL, + ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), + pxIdleTaskStackBuffer, + pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + + if( xIdleTaskHandle != NULL ) + { + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + #else + { + /* The Idle task is being created using dynamically allocated RAM. */ + xReturn = xTaskCreate( prvIdleTask, + "IDLE", configMINIMAL_STACK_SIZE, + ( void * ) NULL, + ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), + &xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + #if ( configUSE_TIMERS == 1 ) + { + if( xReturn == pdPASS ) + { + xReturn = xTimerCreateTimerTask(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TIMERS */ + + if( xReturn == pdPASS ) + { + /* Interrupts are turned off here, to ensure a tick does not occur + before or during the call to xPortStartScheduler(). The stacks of + the created tasks contain a status word with interrupts switched on + so interrupts will automatically get re-enabled when the first task + starts to run. */ + portDISABLE_INTERRUPTS(); + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to the task that will run first. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + xNextTaskUnblockTime = portMAX_DELAY; + xSchedulerRunning = pdTRUE; + xTickCount = ( TickType_t ) 0U; + + /* If configGENERATE_RUN_TIME_STATS is defined then the following + macro must be defined to configure the timer/counter used to generate + the run time counter time base. */ + portCONFIGURE_TIMER_FOR_RUN_TIME_STATS(); + + /* Setting up the timer tick is hardware specific and thus in the + portable interface. */ + if( xPortStartScheduler() != pdFALSE ) + { + /* Should not reach here as if the scheduler is running the + function will not return. */ + } + else + { + /* Should only reach here if a task calls xTaskEndScheduler(). */ + } + } + else + { + /* This line will only be reached if the kernel could not be started, + because there was not enough FreeRTOS heap to create the idle task + or the timer task. */ + configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); + } + + /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, + meaning xIdleTaskHandle is not used anywhere else. */ + ( void ) xIdleTaskHandle; +} +/*-----------------------------------------------------------*/ + +void vTaskEndScheduler( void ) +{ + /* Stop the scheduler interrupts and call the portable scheduler end + routine so the original ISRs can be restored if necessary. The port + layer must ensure interrupts enable bit is left in the correct state. */ + portDISABLE_INTERRUPTS(); + xSchedulerRunning = pdFALSE; + vPortEndScheduler(); +} +/*----------------------------------------------------------*/ + +void vTaskSuspendAll( void ) +{ + /* A critical section is not required as the variable is of type + BaseType_t. Please read Richard Barry's reply in the following link to a + post in the FreeRTOS support forum before reporting this as a bug! - + http://goo.gl/wu4acr */ + ++uxSchedulerSuspended; +} +/*----------------------------------------------------------*/ + +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) + { + TickType_t xReturn; + UBaseType_t uxHigherPriorityReadyTasks = pdFALSE; + + /* uxHigherPriorityReadyTasks takes care of the case where + configUSE_PREEMPTION is 0, so there may be tasks above the idle priority + task that are in the Ready state, even though the idle task is + running. */ + #if( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + { + if( uxTopReadyPriority > tskIDLE_PRIORITY ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #else + { + const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01; + + /* When port optimised task selection is used the uxTopReadyPriority + variable is used as a bit map. If bits other than the least + significant bit are set then there are tasks that have a priority + above the idle priority that are in the Ready state. This takes + care of the case where the co-operative scheduler is in use. */ + if( uxTopReadyPriority > uxLeastSignificantBit ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #endif + + if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY ) + { + xReturn = 0; + } + else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 ) + { + /* There are other idle priority tasks in the ready state. If + time slicing is used then the very next tick interrupt must be + processed. */ + xReturn = 0; + } + else if( uxHigherPriorityReadyTasks != pdFALSE ) + { + /* There are tasks in the Ready state that have a priority above the + idle priority. This path can only be reached if + configUSE_PREEMPTION is 0. */ + xReturn = 0; + } + else + { + xReturn = xNextTaskUnblockTime - xTickCount; + } + + return xReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskResumeAll( void ) +{ +TCB_t *pxTCB = NULL; +BaseType_t xAlreadyYielded = pdFALSE; + + /* If uxSchedulerSuspended is zero then this function does not match a + previous call to vTaskSuspendAll(). */ + configASSERT( uxSchedulerSuspended ); + + /* It is possible that an ISR caused a task to be removed from an event + list while the scheduler was suspended. If this was the case then the + removed task will have been added to the xPendingReadyList. Once the + scheduler has been resumed it is safe to move all the pending ready + tasks from this list into their appropriate ready list. */ + taskENTER_CRITICAL(); + { + --uxSchedulerSuspended; + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) + { + /* Move any readied tasks from the pending list into the + appropriate ready list. */ + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) + { + pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* If the moved task has a priority higher than the current + task then a yield must be performed. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( pxTCB != NULL ) + { + /* A task was unblocked while the scheduler was suspended, + which may have prevented the next unblock time from being + re-calculated, in which case re-calculate it now. Mainly + important for low power tickless implementations, where + this can prevent an unnecessary exit from low power + state. */ + prvResetNextTaskUnblockTime(); + } + + /* If any ticks occurred while the scheduler was suspended then + they should be processed now. This ensures the tick count does + not slip, and that any delayed tasks are resumed at the correct + time. */ + { + UBaseType_t uxPendedCounts = uxPendedTicks; /* Non-volatile copy. */ + + if( uxPendedCounts > ( UBaseType_t ) 0U ) + { + do + { + if( xTaskIncrementTick() != pdFALSE ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --uxPendedCounts; + } while( uxPendedCounts > ( UBaseType_t ) 0U ); + + uxPendedTicks = 0; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( xYieldPending != pdFALSE ) + { + #if( configUSE_PREEMPTION != 0 ) + { + xAlreadyYielded = pdTRUE; + } + #endif + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xAlreadyYielded; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCount( void ) +{ +TickType_t xTicks; + + /* Critical section required if running on a 16 bit processor. */ + portTICK_TYPE_ENTER_CRITICAL(); + { + xTicks = xTickCount; + } + portTICK_TYPE_EXIT_CRITICAL(); + + return xTicks; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCountFromISR( void ) +{ +TickType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR(); + { + xReturn = xTickCount; + } + portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxTaskGetNumberOfTasks( void ) +{ + /* A critical section is not required because the variables are of type + BaseType_t. */ + return uxCurrentNumberOfTasks; +} +/*-----------------------------------------------------------*/ + +char *pcTaskGetName( TaskHandle_t xTaskToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +TCB_t *pxTCB; + + /* If null is passed in here then the name of the calling task is being + queried. */ + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + configASSERT( pxTCB ); + return &( pxTCB->pcTaskName[ 0 ] ); +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) + { + TCB_t *pxNextTCB, *pxFirstTCB, *pxReturn = NULL; + UBaseType_t x; + char cNextChar; + + /* This function is called with the scheduler suspended. */ + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); + + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); + + /* Check each character in the name looking for a match or + mismatch. */ + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + cNextChar = pxNextTCB->pcTaskName[ x ]; + + if( cNextChar != pcNameToQuery[ x ] ) + { + /* Characters didn't match. */ + break; + } + else if( cNextChar == 0x00 ) + { + /* Both strings terminated, a match must have been + found. */ + pxReturn = pxNextTCB; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( pxReturn != NULL ) + { + /* The handle has been found. */ + break; + } + + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return pxReturn; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t uxQueue = configMAX_PRIORITIES; + TCB_t* pxTCB; + + /* Task names will be truncated to configMAX_TASK_NAME_LEN - 1 bytes. */ + configASSERT( strlen( pcNameToQuery ) < configMAX_TASK_NAME_LEN ); + + vTaskSuspendAll(); + { + /* Search the ready lists. */ + do + { + uxQueue--; + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) &( pxReadyTasksLists[ uxQueue ] ), pcNameToQuery ); + + if( pxTCB != NULL ) + { + /* Found the handle. */ + break; + } + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Search the delayed lists. */ + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxDelayedTaskList, pcNameToQuery ); + } + + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxOverflowDelayedTaskList, pcNameToQuery ); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the suspended list. */ + pxTCB = prvSearchForNameWithinSingleList( &xSuspendedTaskList, pcNameToQuery ); + } + } + #endif + + #if( INCLUDE_vTaskDelete == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the deleted list. */ + pxTCB = prvSearchForNameWithinSingleList( &xTasksWaitingTermination, pcNameToQuery ); + } + } + #endif + } + ( void ) xTaskResumeAll(); + + return ( TaskHandle_t ) pxTCB; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) + { + UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES; + + vTaskSuspendAll(); + { + /* Is there a space in the array for each task in the system? */ + if( uxArraySize >= uxCurrentNumberOfTasks ) + { + /* Fill in an TaskStatus_t structure with information on each + task in the Ready state. */ + do + { + uxQueue--; + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady ); + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Fill in an TaskStatus_t structure with information on each + task in the Blocked state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxDelayedTaskList, eBlocked ); + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxOverflowDelayedTaskList, eBlocked ); + + #if( INCLUDE_vTaskDelete == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task that has been deleted but not yet cleaned up. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted ); + } + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task in the Suspended state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended ); + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1) + { + if( pulTotalRunTime != NULL ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) ); + #else + *pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + } + } + #else + { + if( pulTotalRunTime != NULL ) + { + *pulTotalRunTime = 0; + } + } + #endif + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) + + TaskHandle_t xTaskGetIdleTaskHandle( void ) + { + /* If xTaskGetIdleTaskHandle() is called before the scheduler has been + started, then xIdleTaskHandle will be NULL. */ + configASSERT( ( xIdleTaskHandle != NULL ) ); + return xIdleTaskHandle; + } + +#endif /* INCLUDE_xTaskGetIdleTaskHandle */ +/*----------------------------------------------------------*/ + +/* This conditional compilation should use inequality to 0, not equality to 1. +This is to ensure vTaskStepTick() is available when user defined low power mode +implementations require configUSE_TICKLESS_IDLE to be set to a value other than +1. */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + void vTaskStepTick( const TickType_t xTicksToJump ) + { + /* Correct the tick count value after a period during which the tick + was suppressed. Note this does *not* call the tick hook function for + each stepped tick. */ + configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); + xTickCount += xTicksToJump; + traceINCREASE_TICK_COUNT( xTicksToJump ); + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskAbortDelay == 1 ) + + BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) + { + TCB_t *pxTCB = ( TCB_t * ) xTask; + BaseType_t xReturn = pdFALSE; + + configASSERT( pxTCB ); + + vTaskSuspendAll(); + { + /* A task can only be prematurely removed from the Blocked state if + it is actually in the Blocked state. */ + if( eTaskGetState( xTask ) == eBlocked ) + { + /* Remove the reference to the task from the blocked list. An + interrupt won't touch the xStateListItem because the + scheduler is suspended. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove it from + the event list too. Interrupts can touch the event list item, + even though the scheduler is suspended, so a critical section + is used. */ + taskENTER_CRITICAL(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + pxTCB->ucDelayAborted = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + /* Place the unblocked task into the appropriate ready list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate context + switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should only be + performed if the unblocked task has a priority that is + equal to or higher than the currently executing task. */ + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Pend the yield to be performed when the scheduler + is unsuspended. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + xTaskResumeAll(); + + return xReturn; + } + +#endif /* INCLUDE_xTaskAbortDelay */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskIncrementTick( void ) +{ +TCB_t * pxTCB; +TickType_t xItemValue; +BaseType_t xSwitchRequired = pdFALSE; + + /* Called by the portable layer each time a tick interrupt occurs. + Increments the tick then checks to see if the new tick value will cause any + tasks to be unblocked. */ + traceTASK_INCREMENT_TICK( xTickCount ); + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount + 1; + + /* Increment the RTOS tick, switching the delayed and overflowed + delayed lists if it wraps to 0. */ + xTickCount = xConstTickCount; + + if( xConstTickCount == ( TickType_t ) 0U ) + { + taskSWITCH_DELAYED_LISTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* See if this tick has made a timeout expire. Tasks are stored in + the queue in the order of their wake time - meaning once one task + has been found whose block time has not expired there is no need to + look any further down the list. */ + if( xConstTickCount >= xNextTaskUnblockTime ) + { + for( ;; ) + { + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The delayed list is empty. Set xNextTaskUnblockTime + to the maximum possible value so it is extremely + unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass + next time through. */ + xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + break; + } + else + { + /* The delayed list is not empty, get the value of the + item at the head of the delayed list. This is the time + at which the task at the head of the delayed list must + be removed from the Blocked state. */ + pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); + xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); + + if( xConstTickCount < xItemValue ) + { + /* It is not time to unblock this item yet, but the + item value is the time at which the task at the head + of the blocked list must be removed from the Blocked + state - so record the item value in + xNextTaskUnblockTime. */ + xNextTaskUnblockTime = xItemValue; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* It is time to remove the item from the Blocked state. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove + it from the event list. */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Place the unblocked task into the appropriate ready + list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate + context switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should + only be performed if the unblocked task has a + priority that is equal to or higher than the + currently executing task. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + } + } + + /* Tasks of equal priority to the currently running task will share + processing time (time slice) if preemption is on, and the application + writer has not explicitly turned time slicing off. */ + #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) + { + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) */ + + #if ( configUSE_TICK_HOOK == 1 ) + { + /* Guard against the tick hook being called when the pended tick + count is being unwound (when the scheduler is being unlocked). */ + if( uxPendedTicks == ( UBaseType_t ) 0U ) + { + vApplicationTickHook(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICK_HOOK */ + } + else + { + ++uxPendedTicks; + + /* The tick hook gets called at regular intervals, even if the + scheduler is locked. */ + #if ( configUSE_TICK_HOOK == 1 ) + { + vApplicationTickHook(); + } + #endif + } + + #if ( configUSE_PREEMPTION == 1 ) + { + if( xYieldPending != pdFALSE ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + + return xSwitchRequired; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) + { + TCB_t *xTCB; + + /* If xTask is NULL then it is the task hook of the calling task that is + getting set. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = ( TCB_t * ) xTask; + } + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + xTCB->pxTaskTag = pxHookFunction; + taskEXIT_CRITICAL(); + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) + { + TCB_t *xTCB; + TaskHookFunction_t xReturn; + + /* If xTask is NULL then we are setting our own task hook. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = ( TCB_t * ) xTask; + } + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + { + xReturn = xTCB->pxTaskTag; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) + { + TCB_t *xTCB; + BaseType_t xReturn; + + /* If xTask is NULL then we are calling our own task hook. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = ( TCB_t * ) xTask; + } + + if( xTCB->pxTaskTag != NULL ) + { + xReturn = xTCB->pxTaskTag( pvParameter ); + } + else + { + xReturn = pdFAIL; + } + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +void vTaskSwitchContext( void ) +{ + if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) + { + /* The scheduler is currently suspended - do not allow a context + switch. */ + xYieldPending = pdTRUE; + } + else + { + xYieldPending = pdFALSE; + traceTASK_SWITCHED_OUT(); + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime ); + #else + ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + + /* Add the amount of time the task has been running to the + accumulated time so far. The time the task started running was + stored in ulTaskSwitchedInTime. Note that there is no overflow + protection here so count values are only valid until the timer + overflows. The guard against negative values is to protect + against suspect run time stat counter implementations - which + are provided by the application, not the kernel. */ + if( ulTotalRunTime > ulTaskSwitchedInTime ) + { + pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + ulTaskSwitchedInTime = ulTotalRunTime; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + /* Check for stack overflow, if configured. */ + taskCHECK_FOR_STACK_OVERFLOW(); + + /* Select a new task to run using either the generic C or port + optimised asm code. */ + taskSELECT_HIGHEST_PRIORITY_TASK(); + traceTASK_SWITCHED_IN(); + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to this task. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + } +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH EITHER INTERRUPTS DISABLED OR THE + SCHEDULER SUSPENDED AND THE QUEUE BEING ACCESSED LOCKED. */ + + /* Place the event list item of the TCB in the appropriate event list. + This is placed in the list in priority order so the highest priority task + is the first to be woken by the event. The queue that contains the event + list is locked, preventing simultaneous access from interrupts. */ + vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event groups implementation. */ + configASSERT( uxSchedulerSuspended != 0 ); + + /* Store the item value in the event list item. It is safe to access the + event list item here as interrupts won't access the event list item of a + task that is not in the Blocked state. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Place the event list item of the TCB at the end of the appropriate event + list. It is safe to access the event list here because it is part of an + event group implementation - and interrupts don't access event groups + directly (instead they access them indirectly by pending function calls to + the task level). */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TIMERS == 1 ) + + void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { + configASSERT( pxEventList ); + + /* This function should not be called by application code hence the + 'Restricted' in its name. It is not part of the public API. It is + designed for use by kernel code, and has special calling requirements - + it should be called with the scheduler suspended. */ + + + /* Place the event list item of the TCB in the appropriate event list. + In this case it is assume that this is the only task that is going to + be waiting on this event list, so the faster vListInsertEnd() function + can be used in place of vListInsert. */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + /* If the task should block indefinitely then set the block time to a + value that will be recognised as an indefinite delay inside the + prvAddCurrentTaskToDelayedList() function. */ + if( xWaitIndefinitely != pdFALSE ) + { + xTicksToWait = portMAX_DELAY; + } + + traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); + } + +#endif /* configUSE_TIMERS */ +/*-----------------------------------------------------------*/ + +BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) +{ +TCB_t *pxUnblockedTCB; +BaseType_t xReturn; + + /* THIS FUNCTION MUST BE CALLED FROM A CRITICAL SECTION. It can also be + called from a critical section within an ISR. */ + + /* The event list is sorted in priority order, so the first in the list can + be removed as it is known to be the highest priority. Remove the TCB from + the delayed list, and add it to the ready list. + + If an event is for a queue that is locked then this function will never + get called - the lock count on the queue will get modified instead. This + means exclusive access to the event list is guaranteed here. + + This function assumes that a check has already been made to ensure that + pxEventList is not empty. */ + pxUnblockedTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold this task + pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); + } + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Return true if the task removed from the event list has a higher + priority than the calling task. This allows the calling task to know if + it should force a context switch now. */ + xReturn = pdTRUE; + + /* Mark that a yield is pending in case the user is not using the + "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked on a kernel object then xNextTaskUnblockTime + might be set to the blocked task's time out time. If the task is + unblocked for a reason other than a timeout xNextTaskUnblockTime is + normally left unchanged, because it is automatically reset to a new + value when the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter sleep mode + at the earliest possible time - so reset xNextTaskUnblockTime here to + ensure it is updated at the earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) +{ +TCB_t *pxUnblockedTCB; +BaseType_t xReturn; + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event flags implementation. */ + configASSERT( uxSchedulerSuspended != pdFALSE ); + + /* Store the new item value in the event list. */ + listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Remove the event list form the event flag. Interrupts do not access + event flags. */ + pxUnblockedTCB = ( TCB_t * ) listGET_LIST_ITEM_OWNER( pxEventListItem ); + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( pxEventListItem ); + + /* Remove the task from the delayed list and add it to the ready list. The + scheduler is suspended so interrupts will not be accessing the ready + lists. */ + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Return true if the task removed from the event list has + a higher priority than the calling task. This allows + the calling task to know if it should force a context + switch now. */ + xReturn = pdTRUE; + + /* Mark that a yield is pending in case the user is not using the + "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) +{ + configASSERT( pxTimeOut ); + pxTimeOut->xOverflowCount = xNumOfOverflows; + pxTimeOut->xTimeOnEntering = xTickCount; +} +/*-----------------------------------------------------------*/ + +BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) +{ +BaseType_t xReturn; + + configASSERT( pxTimeOut ); + configASSERT( pxTicksToWait ); + + taskENTER_CRITICAL(); + { + /* Minor optimisation. The tick count cannot change in this block. */ + const TickType_t xConstTickCount = xTickCount; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + if( pxCurrentTCB->ucDelayAborted != pdFALSE ) + { + /* The delay was aborted, which is not the same as a time out, + but has the same result. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + xReturn = pdTRUE; + } + else + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + if( *pxTicksToWait == portMAX_DELAY ) + { + /* If INCLUDE_vTaskSuspend is set to 1 and the block time + specified is the maximum block time then the task should block + indefinitely, and therefore never time out. */ + xReturn = pdFALSE; + } + else + #endif + + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ + { + /* The tick count is greater than the time at which + vTaskSetTimeout() was called, but has also overflowed since + vTaskSetTimeOut() was called. It must have wrapped all the way + around and gone past again. This passed since vTaskSetTimeout() + was called. */ + xReturn = pdTRUE; + } + else if( ( ( TickType_t ) ( xConstTickCount - pxTimeOut->xTimeOnEntering ) ) < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ + { + /* Not a genuine timeout. Adjust parameters for time remaining. */ + *pxTicksToWait -= ( xConstTickCount - pxTimeOut->xTimeOnEntering ); + vTaskSetTimeOutState( pxTimeOut ); + xReturn = pdFALSE; + } + else + { + xReturn = pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskMissedYield( void ) +{ + xYieldPending = pdTRUE; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) + { + UBaseType_t uxReturn; + TCB_t *pxTCB; + + if( xTask != NULL ) + { + pxTCB = ( TCB_t * ) xTask; + uxReturn = pxTCB->uxTaskNumber; + } + else + { + uxReturn = 0U; + } + + return uxReturn; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) + { + TCB_t *pxTCB; + + if( xTask != NULL ) + { + pxTCB = ( TCB_t * ) xTask; + pxTCB->uxTaskNumber = uxHandle; + } + } + +#endif /* configUSE_TRACE_FACILITY */ + +/* + * ----------------------------------------------------------- + * The Idle task. + * ---------------------------------------------------------- + * + * The portTASK_FUNCTION() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION( prvIdleTask, pvParameters ) +{ + /* Stop warnings. */ + ( void ) pvParameters; + + /** THIS IS THE RTOS IDLE TASK - WHICH IS CREATED AUTOMATICALLY WHEN THE + SCHEDULER IS STARTED. **/ + + for( ;; ) + { + /* See if any tasks have deleted themselves - if so then the idle task + is responsible for freeing the deleted task's TCB and stack. */ + prvCheckTasksWaitingTermination(); + + #if ( configUSE_PREEMPTION == 0 ) + { + /* If we are not using preemption we keep forcing a task switch to + see if any other task has become available. If we are using + preemption we don't need to do this as any task becoming available + will automatically get the processor anyway. */ + taskYIELD(); + } + #endif /* configUSE_PREEMPTION */ + + #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) + { + /* When using preemption tasks of equal priority will be + timesliced. If a task that is sharing the idle priority is ready + to run then the idle task should yield before the end of the + timeslice. + + A critical region is not required here as we are just reading from + the list, and an occasional incorrect value will not matter. If + the ready list at the idle priority contains more than one task + then a task other than the idle task is ready to execute. */ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) + { + taskYIELD(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) */ + + #if ( configUSE_IDLE_HOOK == 1 ) + { + extern void vApplicationIdleHook( void ); + + /* Call the user defined function from within the idle task. This + allows the application designer to add background functionality + without the overhead of a separate task. + NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES, + CALL A FUNCTION THAT MIGHT BLOCK. */ + vApplicationIdleHook(); + } + #endif /* configUSE_IDLE_HOOK */ + + /* This conditional compilation should use inequality to 0, not equality + to 1. This is to ensure portSUPPRESS_TICKS_AND_SLEEP() is called when + user defined low power mode implementations require + configUSE_TICKLESS_IDLE to be set to a value other than 1. */ + #if ( configUSE_TICKLESS_IDLE != 0 ) + { + TickType_t xExpectedIdleTime; + + /* It is not desirable to suspend then resume the scheduler on + each iteration of the idle task. Therefore, a preliminary + test of the expected idle time is performed without the + scheduler suspended. The result here is not necessarily + valid. */ + xExpectedIdleTime = prvGetExpectedIdleTime(); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + vTaskSuspendAll(); + { + /* Now the scheduler is suspended, the expected idle + time can be sampled again, and this time its value can + be used. */ + configASSERT( xNextTaskUnblockTime >= xTickCount ); + xExpectedIdleTime = prvGetExpectedIdleTime(); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + traceLOW_POWER_IDLE_BEGIN(); + portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ); + traceLOW_POWER_IDLE_END(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICKLESS_IDLE */ + } +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TICKLESS_IDLE != 0 ) + + eSleepModeStatus eTaskConfirmSleepModeStatus( void ) + { + /* The idle task exists in addition to the application tasks. */ + const UBaseType_t uxNonApplicationTasks = 1; + eSleepModeStatus eReturn = eStandardSleep; + + if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 ) + { + /* A task was made ready while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else if( xYieldPending != pdFALSE ) + { + /* A yield was pended while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else + { + /* If all the tasks are in the suspended list (which might mean they + have an infinite block time rather than actually being suspended) + then it is safe to turn all clocks off and just wait for external + interrupts. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) ) + { + eReturn = eNoTasksWaitingTimeout; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return eReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) + { + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToSet ); + pxTCB->pvThreadLocalStoragePointers[ xIndex ] = pvValue; + } + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) + { + void *pvReturn = NULL; + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + pvReturn = pxTCB->pvThreadLocalStoragePointers[ xIndex ]; + } + else + { + pvReturn = NULL; + } + + return pvReturn; + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( portUSING_MPU_WRAPPERS == 1 ) + + void vTaskAllocateMPURegions( TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions ) + { + TCB_t *pxTCB; + + /* If null is passed in here then we are modifying the MPU settings of + the calling task. */ + pxTCB = prvGetTCBFromHandle( xTaskToModify ); + + vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 ); + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseTaskLists( void ) +{ +UBaseType_t uxPriority; + + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) + { + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); + } + + vListInitialise( &xDelayedTaskList1 ); + vListInitialise( &xDelayedTaskList2 ); + vListInitialise( &xPendingReadyList ); + + #if ( INCLUDE_vTaskDelete == 1 ) + { + vListInitialise( &xTasksWaitingTermination ); + } + #endif /* INCLUDE_vTaskDelete */ + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + vListInitialise( &xSuspendedTaskList ); + } + #endif /* INCLUDE_vTaskSuspend */ + + /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList + using list2. */ + pxDelayedTaskList = &xDelayedTaskList1; + pxOverflowDelayedTaskList = &xDelayedTaskList2; +} +/*-----------------------------------------------------------*/ + +static void prvCheckTasksWaitingTermination( void ) +{ + + /** THIS FUNCTION IS CALLED FROM THE RTOS IDLE TASK **/ + + #if ( INCLUDE_vTaskDelete == 1 ) + { + BaseType_t xListIsEmpty; + + /* ucTasksDeleted is used to prevent vTaskSuspendAll() being called + too often in the idle task. */ + while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) + { + vTaskSuspendAll(); + { + xListIsEmpty = listLIST_IS_EMPTY( &xTasksWaitingTermination ); + } + ( void ) xTaskResumeAll(); + + if( xListIsEmpty == pdFALSE ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + --uxCurrentNumberOfTasks; + --uxDeletedTasksWaitingCleanUp; + } + taskEXIT_CRITICAL(); + + prvDeleteTCB( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #endif /* INCLUDE_vTaskDelete */ +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TRACE_FACILITY == 1 ) + + void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) + { + TCB_t *pxTCB; + + /* xTask is NULL then get the state of the calling task. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; + pxTaskStatus->pcTaskName = ( const char * ) &( pxTCB->pcTaskName [ 0 ] ); + pxTaskStatus->uxCurrentPriority = pxTCB->uxPriority; + pxTaskStatus->pxStackBase = pxTCB->pxStack; + pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber; + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* If the task is in the suspended list then there is a chance it is + actually just blocked indefinitely - so really it should be reported as + being in the Blocked state. */ + if( pxTaskStatus->eCurrentState == eSuspended ) + { + vTaskSuspendAll(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + pxTaskStatus->eCurrentState = eBlocked; + } + } + xTaskResumeAll(); + } + } + #endif /* INCLUDE_vTaskSuspend */ + + #if ( configUSE_MUTEXES == 1 ) + { + pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority; + } + #else + { + pxTaskStatus->uxBasePriority = 0; + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxTaskStatus->ulRunTimeCounter = pxTCB->ulRunTimeCounter; + } + #else + { + pxTaskStatus->ulRunTimeCounter = 0; + } + #endif + + /* Obtaining the task state is a little fiddly, so is only done if the value + of eState passed into this function is eInvalid - otherwise the state is + just set to whatever is passed in. */ + if( eState != eInvalid ) + { + pxTaskStatus->eCurrentState = eState; + } + else + { + pxTaskStatus->eCurrentState = eTaskGetState( xTask ); + } + + /* Obtaining the stack space takes some time, so the xGetFreeStackSpace + parameter is provided to allow it to be skipped. */ + if( xGetFreeStackSpace != pdFALSE ) + { + #if ( portSTACK_GROWTH > 0 ) + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxEndOfStack ); + } + #else + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxStack ); + } + #endif + } + else + { + pxTaskStatus->usStackHighWaterMark = 0; + } + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) + { + volatile TCB_t *pxNextTCB, *pxFirstTCB; + UBaseType_t uxTask = 0; + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); + + /* Populate an TaskStatus_t structure within the + pxTaskStatusArray array for each task that is referenced from + pxList. See the definition of TaskStatus_t in task.h for the + meaning of each TaskStatus_t structure member. */ + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); + vTaskGetInfo( ( TaskHandle_t ) pxNextTCB, &( pxTaskStatusArray[ uxTask ] ), pdTRUE, eState ); + uxTask++; + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) + + static uint16_t prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) + { + uint32_t ulCount = 0U; + + while( *pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE ) + { + pucStackByte -= portSTACK_GROWTH; + ulCount++; + } + + ulCount /= ( uint32_t ) sizeof( StackType_t ); /*lint !e961 Casting is not redundant on smaller architectures. */ + + return ( uint16_t ) ulCount; + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) + + UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + uint8_t *pucEndOfStack; + UBaseType_t uxReturn; + + pxTCB = prvGetTCBFromHandle( xTask ); + + #if portSTACK_GROWTH < 0 + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; + } + #else + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; + } + #endif + + uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskGetStackHighWaterMark */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) + { + /* This call is required specifically for the TriCore port. It must be + above the vPortFree() calls. The call is also used by ports/demos that + want to allocate and clean RAM statically. */ + portCLEAN_UP_TCB( pxTCB ); + + /* Free up the memory allocated by the scheduler for the task. It is up + to the task to free any memory allocated at the application level. */ + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + _reclaim_reent( &( pxTCB->xNewLib_reent ) ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( portUSING_MPU_WRAPPERS == 0 ) ) + { + /* The task can only have been allocated dynamically - free both + the stack and TCB. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE == 1 ) + { + /* The task could have been allocated statically or dynamically, so + check what was statically allocated before trying to free the + memory. */ + if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) + { + /* Both the stack and TCB were allocated dynamically, so both + must be freed. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) + { + /* Only the stack was statically allocated, so the TCB is the + only memory that must be freed. */ + vPortFree( pxTCB ); + } + else + { + /* Neither the stack nor the TCB were allocated dynamically, so + nothing needs to be freed. */ + configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ) + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +static void prvResetNextTaskUnblockTime( void ) +{ +TCB_t *pxTCB; + + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The new current delayed list is empty. Set xNextTaskUnblockTime to + the maximum possible value so it is extremely unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass until + there is an item in the delayed list. */ + xNextTaskUnblockTime = portMAX_DELAY; + } + else + { + /* The new current delayed list is not empty, get the value of + the item at the head of the delayed list. This is the time at + which the task at the head of the delayed list should be removed + from the Blocked state. */ + ( pxTCB ) = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); + } +} +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) + + TaskHandle_t xTaskGetCurrentTaskHandle( void ) + { + TaskHandle_t xReturn; + + /* A critical section is not required as this is not called from + an interrupt and the current TCB will always be the same for any + individual execution thread. */ + xReturn = pxCurrentTCB; + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + + BaseType_t xTaskGetSchedulerState( void ) + { + BaseType_t xReturn; + + if( xSchedulerRunning == pdFALSE ) + { + xReturn = taskSCHEDULER_NOT_STARTED; + } + else + { + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + xReturn = taskSCHEDULER_RUNNING; + } + else + { + xReturn = taskSCHEDULER_SUSPENDED; + } + } + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + void vTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxTCB = ( TCB_t * ) pxMutexHolder; + + /* If the mutex was given back by an interrupt while the queue was + locked then the mutex holder might now be NULL. */ + if( pxMutexHolder != NULL ) + { + /* If the holder of the mutex has a priority below the priority of + the task attempting to obtain the mutex then it will temporarily + inherit the priority of the task attempting to obtain the mutex. */ + if( pxTCB->uxPriority < pxCurrentTCB->uxPriority ) + { + /* Adjust the mutex holder state to account for its new + priority. Only reset the event list item value if the value is + not being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task being modified is in the ready state it will need + to be moved into a new list. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Inherit the priority before being moved into the new list. */ + pxTCB->uxPriority = pxCurrentTCB->uxPriority; + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* Just inherit the priority. */ + pxTCB->uxPriority = pxCurrentTCB->uxPriority; + } + + traceTASK_PRIORITY_INHERIT( pxTCB, pxCurrentTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxTCB = ( TCB_t * ) pxMutexHolder; + BaseType_t xReturn = pdFALSE; + + if( pxMutexHolder != NULL ) + { + /* A task can only have an inherited priority if it holds the mutex. + If the mutex is held by a task then it cannot be given from an + interrupt, and if a mutex is given by the holding task then it must + be the running state task. */ + configASSERT( pxTCB == pxCurrentTCB ); + + configASSERT( pxTCB->uxMutexesHeld ); + ( pxTCB->uxMutexesHeld )--; + + /* Has the holder of the mutex inherited the priority of another + task? */ + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) + { + /* Only disinherit if no other mutexes are held. */ + if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) + { + /* A task can only have an inherited priority if it holds + the mutex. If the mutex is held by a task then it cannot be + given from an interrupt, and if a mutex is given by the + holding task then it must be the running state task. Remove + the holding task from the ready list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Disinherit the priority before adding the task into the + new ready list. */ + traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); + pxTCB->uxPriority = pxTCB->uxBasePriority; + + /* Reset the event list item value. It cannot be in use for + any other purpose if this task is running, and it must be + running to give back the mutex. */ + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + prvAddTaskToReadyList( pxTCB ); + + /* Return true to indicate that a context switch is required. + This is only actually required in the corner case whereby + multiple mutexes were held and the mutexes were given back + in an order different to that in which they were taken. + If a context switch did not occur when the first mutex was + returned, even if a task was waiting on it, then a context + switch should occur when the last mutex is returned whether + a task is waiting on it or not. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskEnterCritical( void ) + { + portDISABLE_INTERRUPTS(); + + if( xSchedulerRunning != pdFALSE ) + { + ( pxCurrentTCB->uxCriticalNesting )++; + + /* This is not the interrupt safe version of the enter critical + function so assert() if it is being called from an interrupt + context. Only API functions that end in "FromISR" can be used in an + interrupt. Only assert if the critical nesting count is 1 to + protect against recursive calls if the assert function also uses a + critical section. */ + if( pxCurrentTCB->uxCriticalNesting == 1 ) + { + portASSERT_IF_IN_ISR(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskExitCritical( void ) + { + if( xSchedulerRunning != pdFALSE ) + { + if( pxCurrentTCB->uxCriticalNesting > 0U ) + { + ( pxCurrentTCB->uxCriticalNesting )--; + + if( pxCurrentTCB->uxCriticalNesting == 0U ) + { + portENABLE_INTERRUPTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) + { + size_t x; + + /* Start by copying the entire string. */ + strcpy( pcBuffer, pcTaskName ); + + /* Pad the end of the string with spaces to ensure columns line up when + printed out. */ + for( x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++ ) + { + pcBuffer[ x ] = ' '; + } + + /* Terminate. */ + pcBuffer[ x ] = 0x00; + + /* Return the new end of string. */ + return &( pcBuffer[ x ] ); + } + +#endif /* ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + void vTaskList( char * pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + volatile UBaseType_t uxArraySize, x; + char cStatus; + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskList() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that + * displays task names, states and stack usage. + * + * vTaskList() has a dependency on the sprintf() C library function that + * might bloat the code size, use a lot of stack, and provide different + * results on different platforms. An alternative, tiny, third party, + * and limited functionality implementation of sprintf() is provided in + * many of the FreeRTOS/Demo sub-directories in a file called + * printf-stdarg.c (note printf-stdarg.c does not provide a full + * snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskList(). + */ + + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! if + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL ); + + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + switch( pxTaskStatusArray[ x ].eCurrentState ) + { + case eReady: cStatus = tskREADY_CHAR; + break; + + case eBlocked: cStatus = tskBLOCKED_CHAR; + break; + + case eSuspended: cStatus = tskSUSPENDED_CHAR; + break; + + case eDeleted: cStatus = tskDELETED_CHAR; + break; + + default: /* Should not get here, but it is included + to prevent static checking errors. */ + cStatus = 0x00; + break; + } + + /* Write the task name to the string, padding with spaces so it + can be printed in tabular form more easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + /* Write the rest of the string. */ + sprintf( pcWriteBuffer, "\t%c\t%u\t%u\t%u\r\n", cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber ); + pcWriteBuffer += strlen( pcWriteBuffer ); + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) */ +/*----------------------------------------------------------*/ + +#if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + void vTaskGetRunTimeStats( char *pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + volatile UBaseType_t uxArraySize, x; + uint32_t ulTotalTime, ulStatsAsPercentage; + + #if( configUSE_TRACE_FACILITY != 1 ) + { + #error configUSE_TRACE_FACILITY must also be set to 1 in FreeRTOSConfig.h to use vTaskGetRunTimeStats(). + } + #endif + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part + * of the uxTaskGetSystemState() output into a human readable table that + * displays the amount of time each task has spent in the Running state + * in both absolute and percentage terms. + * + * vTaskGetRunTimeStats() has a dependency on the sprintf() C library + * function that might bloat the code size, use a lot of stack, and + * provide different results on different platforms. An alternative, + * tiny, third party, and limited functionality implementation of + * sprintf() is provided in many of the FreeRTOS/Demo sub-directories in + * a file called printf-stdarg.c (note printf-stdarg.c does not provide + * a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskGetRunTimeStats(). + */ + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! If + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime ); + + /* For percentage calculations. */ + ulTotalTime /= 100UL; + + /* Avoid divide by zero errors. */ + if( ulTotalTime > 0 ) + { + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + /* What percentage of the total run time has the task used? + This will always be rounded down to the nearest integer. + ulTotalRunTimeDiv100 has already been divided by 100. */ + ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime; + + /* Write the task name to the string, padding with + spaces so it can be printed in tabular form more + easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + if( ulStatsAsPercentage > 0UL ) + { + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t%u%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage ); + } + #endif + } + else + { + /* If the percentage is zero here then the task has + consumed less than 1% of the total run time. */ + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t<1%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter ); + } + #endif + } + + pcWriteBuffer += strlen( pcWriteBuffer ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) */ +/*-----------------------------------------------------------*/ + +TickType_t uxTaskResetEventItemValue( void ) +{ +TickType_t uxReturn; + + uxReturn = listGET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ) ); + + /* Reset the event list item to its normal value - so it can be used with + queues and semaphores. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + void *pvTaskIncrementMutexHeldCount( void ) + { + /* If xSemaphoreCreateMutex() is called before any tasks have been created + then pxCurrentTCB will be NULL. */ + if( pxCurrentTCB != NULL ) + { + ( pxCurrentTCB->uxMutexesHeld )++; + } + + return pxCurrentTCB; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) + { + uint32_t ulReturn; + + taskENTER_CRITICAL(); + { + /* Only block if the notification count is not already non-zero. */ + if( pxCurrentTCB->ulNotifiedValue == 0UL ) + { + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_TAKE_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_TAKE(); + ulReturn = pxCurrentTCB->ulNotifiedValue; + + if( ulReturn != 0UL ) + { + if( xClearCountOnExit != pdFALSE ) + { + pxCurrentTCB->ulNotifiedValue = 0UL; + } + else + { + pxCurrentTCB->ulNotifiedValue = ulReturn - 1; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return ulReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + /* Only block if a notification is not already pending. */ + if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) + { + /* Clear bits in the task's notification value as bits may get + set by the notifying task or interrupt. This can be used to + clear the value to zero. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnEntry; + + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_WAIT_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_WAIT(); + + if( pulNotificationValue != NULL ) + { + /* Output the current notification value, which may or may not + have changed. */ + *pulNotificationValue = pxCurrentTCB->ulNotifiedValue; + } + + /* If ucNotifyValue is set then either the task never entered the + blocked state (because a notification was already pending) or the + task unblocked because of a notification. Otherwise the task + unblocked because of a timeout. */ + if( pxCurrentTCB->ucNotifyState == taskWAITING_NOTIFICATION ) + { + /* A notification was not received. */ + xReturn = pdFALSE; + } + else + { + /* A notification was already pending or a notification was + received while the task was waiting. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnExit; + xReturn = pdTRUE; + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) + { + TCB_t * pxTCB; + BaseType_t xReturn = pdPASS; + uint8_t ucOriginalNotifyState; + + configASSERT( xTaskToNotify ); + pxTCB = ( TCB_t * ) xTaskToNotify; + + taskENTER_CRITICAL(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction: + /* The task is being notified without its notify value being + updated. */ + break; + } + + traceTASK_NOTIFY(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked waiting for a notification then + xNextTaskUnblockTime might be set to the blocked task's time + out time. If the task is unblocked for a reason other than + a timeout xNextTaskUnblockTime is normally left unchanged, + because it will automatically get reset to a new value when + the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter + sleep mode at the earliest possible time - so reset + xNextTaskUnblockTime here to ensure it is updated at the + earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + BaseType_t xReturn = pdPASS; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = ( TCB_t * ) xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction : + /* The task is being notified without its notify value being + updated. */ + break; + } + + traceTASK_NOTIFY_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter to an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = ( TCB_t * ) xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + /* 'Giving' is equivalent to incrementing a count in a counting + semaphore. */ + ( pxTCB->ulNotifiedValue )++; + + traceTASK_NOTIFY_GIVE_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter in an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ + +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + BaseType_t xReturn; + + /* If null is passed in here then it is the calling task that is having + its notification state cleared. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + taskENTER_CRITICAL(); + { + if( pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED ) + { + pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + + +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) +{ +TickType_t xTimeToWake; +const TickType_t xConstTickCount = xTickCount; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + /* About to enter a delayed list, so ensure the ucDelayAborted flag is + reset to pdFALSE so it can be detected as having been set to pdTRUE + when the task leaves the Blocked state. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Remove the task from the ready list before adding it to the blocked list + as the same list item is used for both lists. */ + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* The current task must be in a ready list, so there is no need to + check, and the port reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) + { + /* Add the task to the suspended task list instead of a delayed task + list to ensure it is not woken by a timing event. It will block + indefinitely. */ + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the + kernel will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow + list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list + is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the + head of the list of blocked tasks then xNextTaskUnblockTime + needs to be updated too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + } + #else /* INCLUDE_vTaskSuspend */ + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the kernel + will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the head of the + list of blocked tasks then xNextTaskUnblockTime needs to be updated + too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ + ( void ) xCanBlockIndefinitely; + } + #endif /* INCLUDE_vTaskSuspend */ +} + + +#ifdef FREERTOS_MODULE_TEST + #include "tasks_test_access_functions.h" +#endif + diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/timers.c b/Testing/Middlewares/Third_Party/FreeRTOS/Source/timers.c new file mode 100644 index 0000000..d4a821a --- /dev/null +++ b/Testing/Middlewares/Third_Party/FreeRTOS/Source/timers.c @@ -0,0 +1,1092 @@ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/* Standard includes. */ +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" +#include "queue.h" +#include "timers.h" + +#if ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 0 ) + #error configUSE_TIMERS must be set to 1 to make the xTimerPendFunctionCall() function available. +#endif + +/* Lint e961 and e750 are suppressed as a MISRA exception justified because the +MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the +header files above, but not in this file, in order to generate the correct +privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */ + + +/* This entire source file will be skipped if the application is not configured +to include software timer functionality. This #if is closed at the very bottom +of this file. If you want to include software timer functionality then ensure +configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ +#if ( configUSE_TIMERS == 1 ) + +/* Misc definitions. */ +#define tmrNO_DELAY ( TickType_t ) 0U + +/* The definition of the timers themselves. */ +typedef struct tmrTimerControl +{ + const char *pcTimerName; /*<< Text name. This is not used by the kernel, it is included simply to make debugging easier. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + ListItem_t xTimerListItem; /*<< Standard linked list item as used by all kernel features for event management. */ + TickType_t xTimerPeriodInTicks;/*<< How quickly and often the timer expires. */ + UBaseType_t uxAutoReload; /*<< Set to pdTRUE if the timer should be automatically restarted once expired. Set to pdFALSE if the timer is, in effect, a one-shot timer. */ + void *pvTimerID; /*<< An ID to identify the timer. This allows the timer to be identified when the same callback is used for multiple timers. */ + TimerCallbackFunction_t pxCallbackFunction; /*<< The function that will be called when the timer expires. */ + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxTimerNumber; /*<< An ID assigned by trace tools such as FreeRTOS+Trace */ + #endif + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucStaticallyAllocated; /*<< Set to pdTRUE if the timer was created statically so no attempt is made to free the memory again if the timer is later deleted. */ + #endif +} xTIMER; + +/* The old xTIMER name is maintained above then typedefed to the new Timer_t +name below to enable the use of older kernel aware debuggers. */ +typedef xTIMER Timer_t; + +/* The definition of messages that can be sent and received on the timer queue. +Two types of message can be queued - messages that manipulate a software timer, +and messages that request the execution of a non-timer related callback. The +two message types are defined in two separate structures, xTimerParametersType +and xCallbackParametersType respectively. */ +typedef struct tmrTimerParameters +{ + TickType_t xMessageValue; /*<< An optional value used by a subset of commands, for example, when changing the period of a timer. */ + Timer_t * pxTimer; /*<< The timer to which the command will be applied. */ +} TimerParameter_t; + + +typedef struct tmrCallbackParameters +{ + PendedFunction_t pxCallbackFunction; /* << The callback function to execute. */ + void *pvParameter1; /* << The value that will be used as the callback functions first parameter. */ + uint32_t ulParameter2; /* << The value that will be used as the callback functions second parameter. */ +} CallbackParameters_t; + +/* The structure that contains the two message types, along with an identifier +that is used to determine which message type is valid. */ +typedef struct tmrTimerQueueMessage +{ + BaseType_t xMessageID; /*<< The command being sent to the timer service task. */ + union + { + TimerParameter_t xTimerParameters; + + /* Don't include xCallbackParameters if it is not going to be used as + it makes the structure (and therefore the timer queue) larger. */ + #if ( INCLUDE_xTimerPendFunctionCall == 1 ) + CallbackParameters_t xCallbackParameters; + #endif /* INCLUDE_xTimerPendFunctionCall */ + } u; +} DaemonTaskMessage_t; + +/*lint -e956 A manual analysis and inspection has been used to determine which +static variables must be declared volatile. */ + +/* The list in which active timers are stored. Timers are referenced in expire +time order, with the nearest expiry time at the front of the list. Only the +timer service task is allowed to access these lists. */ +PRIVILEGED_DATA static List_t xActiveTimerList1; +PRIVILEGED_DATA static List_t xActiveTimerList2; +PRIVILEGED_DATA static List_t *pxCurrentTimerList; +PRIVILEGED_DATA static List_t *pxOverflowTimerList; + +/* A queue that is used to send commands to the timer service task. */ +PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL; +PRIVILEGED_DATA static TaskHandle_t xTimerTaskHandle = NULL; + +/*lint +e956 */ + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + /* If static allocation is supported then the application must provide the + following callback function - which enables the application to optionally + provide the memory that will be used by the timer task as the task's stack + and TCB. */ + extern void vApplicationGetTimerTaskMemory( StaticTask_t **ppxTimerTaskTCBBuffer, StackType_t **ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize ); + +#endif + +/* + * Initialise the infrastructure used by the timer service task if it has not + * been initialised already. + */ +static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION; + +/* + * The timer service task (daemon). Timer functionality is controlled by this + * task. Other tasks communicate with the timer service task using the + * xTimerQueue queue. + */ +static void prvTimerTask( void *pvParameters ) PRIVILEGED_FUNCTION; + +/* + * Called by the timer service task to interpret and process a command it + * received on the timer queue. + */ +static void prvProcessReceivedCommands( void ) PRIVILEGED_FUNCTION; + +/* + * Insert the timer into either xActiveTimerList1, or xActiveTimerList2, + * depending on if the expire time causes a timer counter overflow. + */ +static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) PRIVILEGED_FUNCTION; + +/* + * An active timer has reached its expire time. Reload the timer if it is an + * auto reload timer, then call its callback. + */ +static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) PRIVILEGED_FUNCTION; + +/* + * The tick count has overflowed. Switch the timer lists after ensuring the + * current timer list does not still reference some timers. + */ +static void prvSwitchTimerLists( void ) PRIVILEGED_FUNCTION; + +/* + * Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE + * if a tick count overflow occurred since prvSampleTimeNow() was last called. + */ +static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) PRIVILEGED_FUNCTION; + +/* + * If the timer list contains any active timers then return the expire time of + * the timer that will expire first and set *pxListWasEmpty to false. If the + * timer list does not contain any timers then return 0 and set *pxListWasEmpty + * to pdTRUE. + */ +static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) PRIVILEGED_FUNCTION; + +/* + * If a timer has expired, process it. Otherwise, block the timer service task + * until either a timer does expire or a command is received. + */ +static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) PRIVILEGED_FUNCTION; + +/* + * Called after a Timer_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewTimer( const char * const pcTimerName, + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + Timer_t *pxNewTimer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +/*-----------------------------------------------------------*/ + +BaseType_t xTimerCreateTimerTask( void ) +{ +BaseType_t xReturn = pdFAIL; + + /* This function is called when the scheduler is started if + configUSE_TIMERS is set to 1. Check that the infrastructure used by the + timer service task has been created/initialised. If timers have already + been created then the initialisation will already have been performed. */ + prvCheckForValidListAndQueue(); + + if( xTimerQueue != NULL ) + { + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + StaticTask_t *pxTimerTaskTCBBuffer = NULL; + StackType_t *pxTimerTaskStackBuffer = NULL; + uint32_t ulTimerTaskStackSize; + + vApplicationGetTimerTaskMemory( &pxTimerTaskTCBBuffer, &pxTimerTaskStackBuffer, &ulTimerTaskStackSize ); + xTimerTaskHandle = xTaskCreateStatic( prvTimerTask, + "Tmr Svc", + ulTimerTaskStackSize, + NULL, + ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, + pxTimerTaskStackBuffer, + pxTimerTaskTCBBuffer ); + + if( xTimerTaskHandle != NULL ) + { + xReturn = pdPASS; + } + } + #else + { + xReturn = xTaskCreate( prvTimerTask, + "Tmr Svc", + configTIMER_TASK_STACK_DEPTH, + NULL, + ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, + &xTimerTaskHandle ); + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + configASSERT( xReturn ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + TimerHandle_t xTimerCreate( const char * const pcTimerName, + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + Timer_t *pxNewTimer; + + pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) ); + + if( pxNewTimer != NULL ) + { + prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* Timers can be created statically or dynamically, so note this + timer was created dynamically in case the timer is later + deleted. */ + pxNewTimer->ucStaticallyAllocated = pdFALSE; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + } + + return pxNewTimer; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + StaticTimer_t *pxTimerBuffer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + Timer_t *pxNewTimer; + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticTimer_t equals the size of the real timer + structures. */ + volatile size_t xSize = sizeof( StaticTimer_t ); + configASSERT( xSize == sizeof( Timer_t ) ); + } + #endif /* configASSERT_DEFINED */ + + /* A pointer to a StaticTimer_t structure MUST be provided, use it. */ + configASSERT( pxTimerBuffer ); + pxNewTimer = ( Timer_t * ) pxTimerBuffer; /*lint !e740 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + + if( pxNewTimer != NULL ) + { + prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); + + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Timers can be created statically or dynamically so note this + timer was created statically in case it is later deleted. */ + pxNewTimer->ucStaticallyAllocated = pdTRUE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + } + + return pxNewTimer; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewTimer( const char * const pcTimerName, + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + Timer_t *pxNewTimer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ + /* 0 is not a valid value for xTimerPeriodInTicks. */ + configASSERT( ( xTimerPeriodInTicks > 0 ) ); + + if( pxNewTimer != NULL ) + { + /* Ensure the infrastructure used by the timer service task has been + created/initialised. */ + prvCheckForValidListAndQueue(); + + /* Initialise the timer structure members using the function + parameters. */ + pxNewTimer->pcTimerName = pcTimerName; + pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks; + pxNewTimer->uxAutoReload = uxAutoReload; + pxNewTimer->pvTimerID = pvTimerID; + pxNewTimer->pxCallbackFunction = pxCallbackFunction; + vListInitialiseItem( &( pxNewTimer->xTimerListItem ) ); + traceTIMER_CREATE( pxNewTimer ); + } +} +/*-----------------------------------------------------------*/ + +BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) +{ +BaseType_t xReturn = pdFAIL; +DaemonTaskMessage_t xMessage; + + configASSERT( xTimer ); + + /* Send a message to the timer service task to perform a particular action + on a particular timer definition. */ + if( xTimerQueue != NULL ) + { + /* Send a command to the timer service task to start the xTimer timer. */ + xMessage.xMessageID = xCommandID; + xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; + xMessage.u.xTimerParameters.pxTimer = ( Timer_t * ) xTimer; + + if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) + { + if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) + { + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); + } + else + { + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); + } + } + else + { + xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); + } + + traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) +{ + /* If xTimerGetTimerDaemonTaskHandle() is called before the scheduler has been + started, then xTimerTaskHandle will be NULL. */ + configASSERT( ( xTimerTaskHandle != NULL ) ); + return xTimerTaskHandle; +} +/*-----------------------------------------------------------*/ + +TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) +{ +Timer_t *pxTimer = ( Timer_t * ) xTimer; + + configASSERT( xTimer ); + return pxTimer->xTimerPeriodInTicks; +} +/*-----------------------------------------------------------*/ + +TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) +{ +Timer_t * pxTimer = ( Timer_t * ) xTimer; +TickType_t xReturn; + + configASSERT( xTimer ); + xReturn = listGET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ) ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +const char * pcTimerGetName( TimerHandle_t xTimer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +Timer_t *pxTimer = ( Timer_t * ) xTimer; + + configASSERT( xTimer ); + return pxTimer->pcTimerName; +} +/*-----------------------------------------------------------*/ + +static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) +{ +BaseType_t xResult; +Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); + + /* Remove the timer from the list of active timers. A check has already + been performed to ensure the list is not empty. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + traceTIMER_EXPIRED( pxTimer ); + + /* If the timer is an auto reload timer then calculate the next + expiry time and re-insert the timer in the list of active timers. */ + if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE ) + { + /* The timer is inserted into a list using a time relative to anything + other than the current time. It will therefore be inserted into the + correct list relative to the time this task thinks it is now. */ + if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) + { + /* The timer expired before it was added to the active timer + list. Reload it now. */ + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Call the timer callback. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +} +/*-----------------------------------------------------------*/ + +static void prvTimerTask( void *pvParameters ) +{ +TickType_t xNextExpireTime; +BaseType_t xListWasEmpty; + + /* Just to avoid compiler warnings. */ + ( void ) pvParameters; + + #if( configUSE_DAEMON_TASK_STARTUP_HOOK == 1 ) + { + extern void vApplicationDaemonTaskStartupHook( void ); + + /* Allow the application writer to execute some code in the context of + this task at the point the task starts executing. This is useful if the + application includes initialisation code that would benefit from + executing after the scheduler has been started. */ + vApplicationDaemonTaskStartupHook(); + } + #endif /* configUSE_DAEMON_TASK_STARTUP_HOOK */ + + for( ;; ) + { + /* Query the timers list to see if it contains any timers, and if so, + obtain the time at which the next timer will expire. */ + xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); + + /* If a timer has expired, process it. Otherwise, block this task + until either a timer does expire, or a command is received. */ + prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty ); + + /* Empty the command queue. */ + prvProcessReceivedCommands(); + } +} +/*-----------------------------------------------------------*/ + +static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) +{ +TickType_t xTimeNow; +BaseType_t xTimerListsWereSwitched; + + vTaskSuspendAll(); + { + /* Obtain the time now to make an assessment as to whether the timer + has expired or not. If obtaining the time causes the lists to switch + then don't process this timer as any timers that remained in the list + when the lists were switched will have been processed within the + prvSampleTimeNow() function. */ + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); + if( xTimerListsWereSwitched == pdFALSE ) + { + /* The tick count has not overflowed, has the timer expired? */ + if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) + { + ( void ) xTaskResumeAll(); + prvProcessExpiredTimer( xNextExpireTime, xTimeNow ); + } + else + { + /* The tick count has not overflowed, and the next expire + time has not been reached yet. This task should therefore + block to wait for the next expire time or a command to be + received - whichever comes first. The following line cannot + be reached unless xNextExpireTime > xTimeNow, except in the + case when the current timer list is empty. */ + if( xListWasEmpty != pdFALSE ) + { + /* The current timer list is empty - is the overflow list + also empty? */ + xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); + } + + vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); + + if( xTaskResumeAll() == pdFALSE ) + { + /* Yield to wait for either a command to arrive, or the + block time to expire. If a command arrived between the + critical section being exited and this yield then the yield + will not cause the task to block. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + ( void ) xTaskResumeAll(); + } + } +} +/*-----------------------------------------------------------*/ + +static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) +{ +TickType_t xNextExpireTime; + + /* Timers are listed in expiry time order, with the head of the list + referencing the task that will expire first. Obtain the time at which + the timer with the nearest expiry time will expire. If there are no + active timers then just set the next expire time to 0. That will cause + this task to unblock when the tick count overflows, at which point the + timer lists will be switched and the next expiry time can be + re-assessed. */ + *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); + if( *pxListWasEmpty == pdFALSE ) + { + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); + } + else + { + /* Ensure the task unblocks when the tick count rolls over. */ + xNextExpireTime = ( TickType_t ) 0U; + } + + return xNextExpireTime; +} +/*-----------------------------------------------------------*/ + +static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) +{ +TickType_t xTimeNow; +PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */ + + xTimeNow = xTaskGetTickCount(); + + if( xTimeNow < xLastTime ) + { + prvSwitchTimerLists(); + *pxTimerListsWereSwitched = pdTRUE; + } + else + { + *pxTimerListsWereSwitched = pdFALSE; + } + + xLastTime = xTimeNow; + + return xTimeNow; +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) +{ +BaseType_t xProcessTimerNow = pdFALSE; + + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); + + if( xNextExpiryTime <= xTimeNow ) + { + /* Has the expiry time elapsed between the command to start/reset a + timer was issued, and the time the command was processed? */ + if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + { + /* The time between a command being issued and the command being + processed actually exceeds the timers period. */ + xProcessTimerNow = pdTRUE; + } + else + { + vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); + } + } + else + { + if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) + { + /* If, since the command was issued, the tick count has overflowed + but the expiry time has not, then the timer must have already passed + its expiry time and should be processed immediately. */ + xProcessTimerNow = pdTRUE; + } + else + { + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); + } + } + + return xProcessTimerNow; +} +/*-----------------------------------------------------------*/ + +static void prvProcessReceivedCommands( void ) +{ +DaemonTaskMessage_t xMessage; +Timer_t *pxTimer; +BaseType_t xTimerListsWereSwitched, xResult; +TickType_t xTimeNow; + + while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ + { + #if ( INCLUDE_xTimerPendFunctionCall == 1 ) + { + /* Negative commands are pended function calls rather than timer + commands. */ + if( xMessage.xMessageID < ( BaseType_t ) 0 ) + { + const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters ); + + /* The timer uses the xCallbackParameters member to request a + callback be executed. Check the callback is not NULL. */ + configASSERT( pxCallback ); + + /* Call the function. */ + pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* INCLUDE_xTimerPendFunctionCall */ + + /* Commands that are positive are timer commands rather than pended + function calls. */ + if( xMessage.xMessageID >= ( BaseType_t ) 0 ) + { + /* The messages uses the xTimerParameters member to work on a + software timer. */ + pxTimer = xMessage.u.xTimerParameters.pxTimer; + + if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) + { + /* The timer is in a list, remove it. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceTIMER_COMMAND_RECEIVED( pxTimer, xMessage.xMessageID, xMessage.u.xTimerParameters.xMessageValue ); + + /* In this case the xTimerListsWereSwitched parameter is not used, but + it must be present in the function call. prvSampleTimeNow() must be + called after the message is received from xTimerQueue so there is no + possibility of a higher priority task adding a message to the message + queue with a time that is ahead of the timer daemon task (because it + pre-empted the timer daemon task after the xTimeNow value was set). */ + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); + + switch( xMessage.xMessageID ) + { + case tmrCOMMAND_START : + case tmrCOMMAND_START_FROM_ISR : + case tmrCOMMAND_RESET : + case tmrCOMMAND_RESET_FROM_ISR : + case tmrCOMMAND_START_DONT_TRACE : + /* Start or restart a timer. */ + if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) + { + /* The timer expired before it was added to the active + timer list. Process it now. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); + traceTIMER_EXPIRED( pxTimer ); + + if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE ) + { + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + break; + + case tmrCOMMAND_STOP : + case tmrCOMMAND_STOP_FROM_ISR : + /* The timer has already been removed from the active list. + There is nothing to do here. */ + break; + + case tmrCOMMAND_CHANGE_PERIOD : + case tmrCOMMAND_CHANGE_PERIOD_FROM_ISR : + pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; + configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); + + /* The new period does not really have a reference, and can + be longer or shorter than the old one. The command time is + therefore set to the current time, and as the period cannot + be zero the next expiry time can only be in the future, + meaning (unlike for the xTimerStart() case above) there is + no fail case that needs to be handled here. */ + ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); + break; + + case tmrCOMMAND_DELETE : + /* The timer has already been removed from the active list, + just free up the memory if the memory was dynamically + allocated. */ + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) + { + /* The timer can only have been allocated dynamically - + free it again. */ + vPortFree( pxTimer ); + } + #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + { + /* The timer could have been allocated statically or + dynamically, so check before attempting to free the + memory. */ + if( pxTimer->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) + { + vPortFree( pxTimer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + break; + + default : + /* Don't expect to get here. */ + break; + } + } + } +} +/*-----------------------------------------------------------*/ + +static void prvSwitchTimerLists( void ) +{ +TickType_t xNextExpireTime, xReloadTime; +List_t *pxTemp; +Timer_t *pxTimer; +BaseType_t xResult; + + /* The tick count has overflowed. The timer lists must be switched. + If there are any timers still referenced from the current timer list + then they must have expired and should be processed before the lists + are switched. */ + while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) + { + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); + + /* Remove the timer from the list. */ + pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + traceTIMER_EXPIRED( pxTimer ); + + /* Execute its callback, then send a command to restart the timer if + it is an auto-reload timer. It cannot be restarted here as the lists + have not yet been switched. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); + + if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE ) + { + /* Calculate the reload value, and if the reload value results in + the timer going into the same timer list then it has already expired + and the timer should be re-inserted into the current list so it is + processed again within this loop. Otherwise a command should be sent + to restart the timer to ensure it is only inserted into a list after + the lists have been swapped. */ + xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); + if( xReloadTime > xNextExpireTime ) + { + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); + } + else + { + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + pxTemp = pxCurrentTimerList; + pxCurrentTimerList = pxOverflowTimerList; + pxOverflowTimerList = pxTemp; +} +/*-----------------------------------------------------------*/ + +static void prvCheckForValidListAndQueue( void ) +{ + /* Check that the list from which active timers are referenced, and the + queue used to communicate with the timer service, have been + initialised. */ + taskENTER_CRITICAL(); + { + if( xTimerQueue == NULL ) + { + vListInitialise( &xActiveTimerList1 ); + vListInitialise( &xActiveTimerList2 ); + pxCurrentTimerList = &xActiveTimerList1; + pxOverflowTimerList = &xActiveTimerList2; + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* The timer queue is allocated statically in case + configSUPPORT_DYNAMIC_ALLOCATION is 0. */ + static StaticQueue_t xStaticTimerQueue; + static uint8_t ucStaticTimerQueueStorage[ configTIMER_QUEUE_LENGTH * sizeof( DaemonTaskMessage_t ) ]; + + xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); + } + #else + { + xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); + } + #endif + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + if( xTimerQueue != NULL ) + { + vQueueAddToRegistry( xTimerQueue, "TmrQ" ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configQUEUE_REGISTRY_SIZE */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) +{ +BaseType_t xTimerIsInActiveList; +Timer_t *pxTimer = ( Timer_t * ) xTimer; + + configASSERT( xTimer ); + + /* Is the timer in the list of active timers? */ + taskENTER_CRITICAL(); + { + /* Checking to see if it is in the NULL list in effect checks to see if + it is referenced from either the current or the overflow timer lists in + one go, but the logic has to be reversed, hence the '!'. */ + xTimerIsInActiveList = ( BaseType_t ) !( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) ); + } + taskEXIT_CRITICAL(); + + return xTimerIsInActiveList; +} /*lint !e818 Can't be pointer to const due to the typedef. */ +/*-----------------------------------------------------------*/ + +void *pvTimerGetTimerID( const TimerHandle_t xTimer ) +{ +Timer_t * const pxTimer = ( Timer_t * ) xTimer; +void *pvReturn; + + configASSERT( xTimer ); + + taskENTER_CRITICAL(); + { + pvReturn = pxTimer->pvTimerID; + } + taskEXIT_CRITICAL(); + + return pvReturn; +} +/*-----------------------------------------------------------*/ + +void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) +{ +Timer_t * const pxTimer = ( Timer_t * ) xTimer; + + configASSERT( xTimer ); + + taskENTER_CRITICAL(); + { + pxTimer->pvTimerID = pvNewID; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +#if( INCLUDE_xTimerPendFunctionCall == 1 ) + + BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) + { + DaemonTaskMessage_t xMessage; + BaseType_t xReturn; + + /* Complete the message with the function parameters and post it to the + daemon task. */ + xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR; + xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; + xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; + xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; + + xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); + + tracePEND_FUNC_CALL_FROM_ISR( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); + + return xReturn; + } + +#endif /* INCLUDE_xTimerPendFunctionCall */ +/*-----------------------------------------------------------*/ + +#if( INCLUDE_xTimerPendFunctionCall == 1 ) + + BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) + { + DaemonTaskMessage_t xMessage; + BaseType_t xReturn; + + /* This function can only be called after a timer has been created or + after the scheduler has been started because, until then, the timer + queue does not exist. */ + configASSERT( xTimerQueue ); + + /* Complete the message with the function parameters and post it to the + daemon task. */ + xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK; + xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; + xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; + xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; + + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); + + tracePEND_FUNC_CALL( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); + + return xReturn; + } + +#endif /* INCLUDE_xTimerPendFunctionCall */ +/*-----------------------------------------------------------*/ + +/* This entire source file will be skipped if the application is not configured +to include software timer functionality. If you want to include software timer +functionality then ensure configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ +#endif /* configUSE_TIMERS == 1 */ + + + diff --git a/Testing/NUCLEO-L053R8.xml b/Testing/NUCLEO-L053R8.xml new file mode 100644 index 0000000..043b48e --- /dev/null +++ b/Testing/NUCLEO-L053R8.xml @@ -0,0 +1,19 @@ + + + + + + + + +]> + + + + NUCLEO-L053R8 + SWD + ST-Link + stm32l053r8tx + + diff --git a/Testing/RTOS_IOT.ioc b/Testing/RTOS_IOT.ioc new file mode 100644 index 0000000..93247c0 --- /dev/null +++ b/Testing/RTOS_IOT.ioc @@ -0,0 +1,170 @@ +#MicroXplorer Configuration settings - do not modify +FREERTOS.IPParameters=Tasks01 +FREERTOS.Tasks01=defaultTask,0,128,StartDefaultTask,Default,NULL +File.Version=6 +KeepUserPlacement=true +Mcu.Family=STM32L0 +Mcu.IP0=FREERTOS +Mcu.IP1=I2C1 +Mcu.IP2=NVIC +Mcu.IP3=RCC +Mcu.IP4=RTC +Mcu.IP5=SYS +Mcu.IP6=USART1 +Mcu.IP7=USART2 +Mcu.IPNb=8 +Mcu.Name=STM32L053R(6-8)Tx +Mcu.Package=LQFP64 +Mcu.Pin0=PC13 +Mcu.Pin1=PC14-OSC32_IN +Mcu.Pin10=PA13 +Mcu.Pin11=PA14 +Mcu.Pin12=PB8 +Mcu.Pin13=PB9 +Mcu.Pin14=VP_FREERTOS_VS_ENABLE +Mcu.Pin15=VP_RTC_VS_RTC_Activate +Mcu.Pin16=VP_RTC_VS_RTC_Calendar +Mcu.Pin17=VP_SYS_VS_Systick +Mcu.Pin2=PC15-OSC32_OUT +Mcu.Pin3=PH0-OSC_IN +Mcu.Pin4=PH1-OSC_OUT +Mcu.Pin5=PA2 +Mcu.Pin6=PA3 +Mcu.Pin7=PA5 +Mcu.Pin8=PA9 +Mcu.Pin9=PA10 +Mcu.PinsNb=18 +Mcu.UserConstants= +Mcu.UserName=STM32L053R8Tx +MxCube.Version=4.20.1 +MxDb.Version=DB.4.0.200 +NVIC.HardFault_IRQn=true\:0\:0\:false\:false\:false\:false +NVIC.NonMaskableInt_IRQn=true\:0\:0\:false\:false\:false\:false +NVIC.PendSV_IRQn=true\:3\:0\:false\:false\:false\:true +NVIC.SVC_IRQn=true\:0\:0\:false\:false\:false\:false +NVIC.SysTick_IRQn=true\:3\:0\:true\:false\:true\:true +PA10.Mode=IrDA +PA10.Signal=USART1_RX +PA13.GPIOParameters=GPIO_Label +PA13.GPIO_Label=TMS +PA13.Locked=true +PA13.Signal=SYS_SWDIO +PA14.GPIOParameters=GPIO_Label +PA14.GPIO_Label=TCK +PA14.Locked=true +PA14.Signal=SYS_SWCLK +PA2.GPIOParameters=GPIO_Label +PA2.GPIO_Label=USART_TX +PA2.Locked=true +PA2.Mode=Asynchronous +PA2.Signal=USART2_TX +PA3.GPIOParameters=GPIO_Label +PA3.GPIO_Label=USART_RX +PA3.Locked=true +PA3.Mode=Asynchronous +PA3.Signal=USART2_RX +PA5.GPIOParameters=GPIO_Label +PA5.GPIO_Label=LD2 [Green Led] +PA5.Locked=true +PA5.Signal=GPIO_Output +PA9.Mode=IrDA +PA9.Signal=USART1_TX +PB8.Locked=true +PB8.Mode=I2C +PB8.Signal=I2C1_SCL +PB9.Locked=true +PB9.Mode=I2C +PB9.Signal=I2C1_SDA +PC13.GPIOParameters=GPIO_Label,GPIO_ModeDefaultEXTI +PC13.GPIO_Label=B1 [Blue PushButton] +PC13.GPIO_ModeDefaultEXTI=GPIO_MODE_IT_FALLING +PC13.Locked=true +PC13.Signal=GPXTI13 +PC14-OSC32_IN.Locked=true +PC14-OSC32_IN.Signal=RCC_OSC32_IN +PC15-OSC32_OUT.Locked=true +PC15-OSC32_OUT.Signal=RCC_OSC32_OUT +PCC.Checker=true +PCC.Line=STM32L0x3 +PCC.MCU=STM32L053R(6-8)Tx +PCC.MXVersion=4.20.1 +PCC.PartNumber=STM32L053R8Tx +PCC.Seq0=0 +PCC.Series=STM32L0 +PCC.Temperature=25 +PCC.Vdd=null +PH0-OSC_IN.Locked=true +PH0-OSC_IN.Signal=RCC_OSC_IN +PH1-OSC_OUT.Locked=true +PH1-OSC_OUT.Signal=RCC_OSC_OUT +ProjectManager.AskForMigrate=true +ProjectManager.BackupPrevious=false +ProjectManager.CompilerOptimize=2 +ProjectManager.ComputerToolchain=false +ProjectManager.CoupleFile=false +ProjectManager.CustomerFirmwarePackage=C\:/Users/pt/STM32Cube/Repository/STM32Cube_FW_L0_V1.9.0 +ProjectManager.DefaultFWLocation=true +ProjectManager.DeletePrevious=true +ProjectManager.DeviceId=STM32L053R8Tx +ProjectManager.FirmwarePackage=STM32Cube FW_L0 V1.9.0 +ProjectManager.FreePins=false +ProjectManager.HalAssertFull=false +ProjectManager.HeapSize=0x200 +ProjectManager.KeepUserCode=true +ProjectManager.LastFirmware=true +ProjectManager.LibraryCopy=1 +ProjectManager.PreviousToolchain=SW4STM32 +ProjectManager.ProjectBuild=false +ProjectManager.ProjectFileName=Testing.ioc +ProjectManager.ProjectName=Testing +ProjectManager.StackSize=0x400 +ProjectManager.TargetToolchain=SW4STM32 +ProjectManager.ToolChainLocation= +ProjectManager.UnderRoot=true +ProjectManager.functionlistsort=1-MX_GPIO_Init-GPIO-false-HAL,2-SystemClock_Config-RCC-false-HAL,3-MX_RTC_Init-RTC-false-HAL,4-MX_USART2_UART_Init-USART2-false-HAL,5-MX_USART1_IRDA_Init-USART1-false-HAL,6-MX_I2C1_Init-I2C1-false-HAL +RCC.48CLKFreq_Value=24000000 +RCC.AHBFreq_Value=2097000 +RCC.APB1Freq_Value=2097000 +RCC.APB1TimFreq_Value=2097000 +RCC.APB2Freq_Value=2097000 +RCC.APB2TimFreq_Value=2097000 +RCC.FamilyName=M +RCC.HSE_VALUE=8000000 +RCC.HSI16_VALUE=16000000 +RCC.HSI48_VALUE=48000000 +RCC.HSI_VALUE=16000000 +RCC.I2C1Freq_Value=2097000 +RCC.IPParameters=48CLKFreq_Value,AHBFreq_Value,APB1Freq_Value,APB1TimFreq_Value,APB2Freq_Value,APB2TimFreq_Value,FamilyName,HSE_VALUE,HSI16_VALUE,HSI48_VALUE,HSI_VALUE,I2C1Freq_Value,LCDFreq_Value,LPTIMFreq_Value,LPUARTFreq_Value,LSEState,LSE_VALUE,LSI_VALUE,MSI_VALUE,PLLCLKFreq_Value,PWRFreq_Value,RTCFreq_Value,RTCHSEDivFreq_Value,SYSCLKFreq_VALUE,TIMFreq_Value,USART1Freq_Value,USART2Freq_Value,VCOOutputFreq_Value,WatchDogFreq_Value +RCC.LCDFreq_Value=37000 +RCC.LPTIMFreq_Value=2097000 +RCC.LPUARTFreq_Value=2097000 +RCC.LSEState=RCC_LSE_ON +RCC.LSE_VALUE=32768 +RCC.LSI_VALUE=37000 +RCC.MSI_VALUE=2097000 +RCC.PLLCLKFreq_Value=24000000 +RCC.PWRFreq_Value=2097000 +RCC.RTCFreq_Value=37000 +RCC.RTCHSEDivFreq_Value=4000000 +RCC.SYSCLKFreq_VALUE=2097000 +RCC.TIMFreq_Value=2097000 +RCC.USART1Freq_Value=2097000 +RCC.USART2Freq_Value=2097000 +RCC.VCOOutputFreq_Value=48000000 +RCC.WatchDogFreq_Value=37000 +SH.GPXTI13.0=GPIO_EXTI13 +SH.GPXTI13.ConfNb=1 +USART1.IPParameters=VirtualMode-IrDA +USART1.VirtualMode-IrDA=VM_IRDA +USART2.IPParameters=VirtualMode-Asynchronous +USART2.VirtualMode-Asynchronous=VM_ASYNC +VP_FREERTOS_VS_ENABLE.Mode=Enabled +VP_FREERTOS_VS_ENABLE.Signal=FREERTOS_VS_ENABLE +VP_RTC_VS_RTC_Activate.Mode=RTC_Enabled +VP_RTC_VS_RTC_Activate.Signal=RTC_VS_RTC_Activate +VP_RTC_VS_RTC_Calendar.Mode=RTC_Calendar +VP_RTC_VS_RTC_Calendar.Signal=RTC_VS_RTC_Calendar +VP_SYS_VS_Systick.Mode=SysTick +VP_SYS_VS_Systick.Signal=SYS_VS_Systick +board=NUCLEO-L053R8 +boardIOC=true diff --git a/Testing/STM32L053R8Tx_FLASH.ld b/Testing/STM32L053R8Tx_FLASH.ld new file mode 100644 index 0000000..c4cd5b2 --- /dev/null +++ b/Testing/STM32L053R8Tx_FLASH.ld @@ -0,0 +1,188 @@ +/* +***************************************************************************** +** + +** File : LinkerScript.ld +** +** Abstract : Linker script for STM32L053R8Tx Device with +** 64KByte FLASH, 8KByte RAM +** +** Set heap size, stack size and stack location according +** to application requirements. +** +** Set memory bank area and size if external memory is used. +** +** Target : STMicroelectronics STM32 +** +** +** Distribution: The file is distributed as is, without any warranty +** of any kind. +** +***************************************************************************** +** @attention +** +**

© COPYRIGHT(c) 2014 Ac6

+** +** Redistribution and use in source and binary forms, with or without modification, +** are permitted provided that the following conditions are met: +** 1. Redistributions of source code must retain the above copyright notice, +** this list of conditions and the following disclaimer. +** 2. Redistributions in binary form must reproduce the above copyright notice, +** this list of conditions and the following disclaimer in the documentation +** and/or other materials provided with the distribution. +** 3. Neither the name of Ac6 nor the names of its contributors +** may be used to endorse or promote products derived from this software +** without specific prior written permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +** +***************************************************************************** +*/ + +/* Entry Point */ +ENTRY(Reset_Handler) + +/* Highest address of the user mode stack */ +_estack = 0x20002000; /* end of RAM */ +/* Generate a link error if heap and stack don't fit into RAM */ +_Min_Heap_Size = 0x200; /* required amount of heap */ +_Min_Stack_Size = 0x400; /* required amount of stack */ + +/* Specify the memory areas */ +MEMORY +{ +RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 8K +FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 64K +} + +/* Define output sections */ +SECTIONS +{ + /* The startup code goes first into FLASH */ + .isr_vector : + { + . = ALIGN(4); + KEEP(*(.isr_vector)) /* Startup code */ + . = ALIGN(4); + } >FLASH + + /* The program code and other data goes into FLASH */ + .text : + { + . = ALIGN(4); + *(.text) /* .text sections (code) */ + *(.text*) /* .text* sections (code) */ + *(.glue_7) /* glue arm to thumb code */ + *(.glue_7t) /* glue thumb to arm code */ + *(.eh_frame) + + KEEP (*(.init)) + KEEP (*(.fini)) + + . = ALIGN(4); + _etext = .; /* define a global symbols at end of code */ + } >FLASH + + /* Constant data goes into FLASH */ + .rodata : + { + . = ALIGN(4); + *(.rodata) /* .rodata sections (constants, strings, etc.) */ + *(.rodata*) /* .rodata* sections (constants, strings, etc.) */ + . = ALIGN(4); + } >FLASH + + .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH + .ARM : { + __exidx_start = .; + *(.ARM.exidx*) + __exidx_end = .; + } >FLASH + + .preinit_array : + { + PROVIDE_HIDDEN (__preinit_array_start = .); + KEEP (*(.preinit_array*)) + PROVIDE_HIDDEN (__preinit_array_end = .); + } >FLASH + .init_array : + { + PROVIDE_HIDDEN (__init_array_start = .); + KEEP (*(SORT(.init_array.*))) + KEEP (*(.init_array*)) + PROVIDE_HIDDEN (__init_array_end = .); + } >FLASH + .fini_array : + { + PROVIDE_HIDDEN (__fini_array_start = .); + KEEP (*(SORT(.fini_array.*))) + KEEP (*(.fini_array*)) + PROVIDE_HIDDEN (__fini_array_end = .); + } >FLASH + + /* used by the startup to initialize data */ + _sidata = LOADADDR(.data); + + /* Initialized data sections goes into RAM, load LMA copy after code */ + .data : + { + . = ALIGN(4); + _sdata = .; /* create a global symbol at data start */ + *(.data) /* .data sections */ + *(.data*) /* .data* sections */ + + . = ALIGN(4); + _edata = .; /* define a global symbol at data end */ + } >RAM AT> FLASH + + + /* Uninitialized data section */ + . = ALIGN(4); + .bss : + { + /* This is used by the startup in order to initialize the .bss secion */ + _sbss = .; /* define a global symbol at bss start */ + __bss_start__ = _sbss; + *(.bss) + *(.bss*) + *(COMMON) + + . = ALIGN(4); + _ebss = .; /* define a global symbol at bss end */ + __bss_end__ = _ebss; + } >RAM + + /* User_heap_stack section, used to check that there is enough RAM left */ + ._user_heap_stack : + { + . = ALIGN(8); + PROVIDE ( end = . ); + PROVIDE ( _end = . ); + . = . + _Min_Heap_Size; + . = . + _Min_Stack_Size; + . = ALIGN(8); + } >RAM + + + + /* Remove information from the standard libraries */ + /DISCARD/ : + { + libc.a ( * ) + libm.a ( * ) + libgcc.a ( * ) + } + + .ARM.attributes 0 : { *(.ARM.attributes) } +} + + diff --git a/Testing/Src/freertos.c b/Testing/Src/freertos.c new file mode 100644 index 0000000..866bcbe --- /dev/null +++ b/Testing/Src/freertos.c @@ -0,0 +1,70 @@ +/** + ****************************************************************************** + * File Name : freertos.c + * Description : Code for freertos applications + ****************************************************************************** + * + * Copyright (c) 2017 STMicroelectronics International N.V. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "FreeRTOS.h" +#include "task.h" + +/* USER CODE BEGIN Includes */ + +/* USER CODE END Includes */ + +/* Variables -----------------------------------------------------------------*/ + +/* USER CODE BEGIN Variables */ + +/* USER CODE END Variables */ + +/* Function prototypes -------------------------------------------------------*/ + +/* USER CODE BEGIN FunctionPrototypes */ + +/* USER CODE END FunctionPrototypes */ + +/* Hook prototypes */ + +/* USER CODE BEGIN Application */ + +/* USER CODE END Application */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Src/main.c b/Testing/Src/main.c new file mode 100644 index 0000000..81f4116 --- /dev/null +++ b/Testing/Src/main.c @@ -0,0 +1,621 @@ +/** + ****************************************************************************** + * File Name : main.c + * Description : Main program body + ****************************************************************************** + * + * Copyright (c) 2017 STMicroelectronics International N.V. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ +/* Includes ------------------------------------------------------------------*/ +#include "main.h" +#include "stm32l0xx_hal.h" +#include "cmsis_os.h" + +/* USER CODE BEGIN Includes */ + +/* USER CODE END Includes */ + +/* Private variables ---------------------------------------------------------*/ +I2C_HandleTypeDef hi2c1; + +RTC_HandleTypeDef hrtc; + +IRDA_HandleTypeDef hirda1; +UART_HandleTypeDef huart2; + + + +//osThreadId defaultTaskHandle; + +/* USER CODE BEGIN PV */ +/* Private variables ---------------------------------------------------------*/ +uint32_t thread1_counter; +uint32_t Queue_number; + +osThreadId Task_NVM_ReadWrite; +osThreadId Task_UartSend; +osThreadId Task_SensorRead; +osThreadId Task_HearBeatLED; +osThreadId Task_ErrorCheck; + + +osMessageQId Queue_SendTo_TaskNVM; +osMessageQId Queue_SendTo_Uart; + +QueueSetHandle_t NVM_QueueSet; + +typedef enum{ + EV_ReadsFromTempSensor, + EV_ReturnFromUartSend, + EV_ReturnFromBlinkLED, +}EventId_NVM_Check; + + +typedef struct{ + uint16_t temperature; + uint16_t humidity; +// uint8_t * ptr_sent_Success; +}QMessageData_USART; + +typedef struct{ + EventId_NVM_Check EventId; + uint8_t dataArray[4]; + uint8_t* ptr_sent_Success; +}QMessageData_ForNVM; + +/* USER CODE END PV */ + +/* Private function prototypes -----------------------------------------------*/ +void SystemClock_Config(void); +void Error_Handler(void); +static void MX_GPIO_Init(void); +static void MX_RTC_Init(void); +static void MX_USART2_UART_Init(void); +static void MX_USART1_IRDA_Init(void); +static void MX_I2C1_Init(void); +//void StartDefaultTask(void const * argument); + +/* USER CODE BEGIN PFP */ +/* Private function prototypes -----------------------------------------------*/ + +void func_NVM_Manager(void const* argument); +void func_LEDBlink (void const* argument); +void func_UartPrint (void const* argument); +void func_SensorRead (void const* argument); +void vApplicationTickHook(void); + +/* USER CODE END PFP */ + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +int main(void) +{ + + /* USER CODE BEGIN 1 */ + + /* USER CODE END 1 */ + + /* MCU Configuration----------------------------------------------------------*/ + + /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ + HAL_Init(); + + /* Configure the system clock */ + SystemClock_Config(); + + /* Initialize all configured peripherals */ + MX_GPIO_Init(); + MX_RTC_Init(); + MX_USART2_UART_Init(); + MX_USART1_IRDA_Init(); + MX_I2C1_Init(); + + /* USER CODE BEGIN 2 */ +// __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); +// HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON,PWR_STOPENTRY_WFE); + /* USER CODE END 2 */ + + /* USER CODE BEGIN RTOS_MUTEX */ + /* add mutexes, ... */ + /* USER CODE END RTOS_MUTEX */ + + /* USER CODE BEGIN RTOS_SEMAPHORES */ + /* add semaphores, ... */ + /* USER CODE END RTOS_SEMAPHORES */ + + /* USER CODE BEGIN RTOS_TIMERS */ + /* start timers, add new ones, ... */ + /* USER CODE END RTOS_TIMERS */ + + /* Create the thread(s) */ + /* definition and creation of defaultTask */ +// osThreadDef(defaultTask, StartDefaultTask, osPriorityNormal, 0, 128); +// defaultTaskHandle = osThreadCreate(osThread(defaultTask), NULL); + + /* USER CODE BEGIN RTOS_THREADS */ + /* add threads, ... */ + + osThreadDef(HeartBeat, func_LEDBlink, osPriorityNormal, 0 , 64); + Task_HearBeatLED = osThreadCreate(osThread(HeartBeat),NULL); + + osThreadDef(HTS221_sensor, func_SensorRead, osPriorityNormal, 0, 64); + Task_SensorRead = osThreadCreate(osThread(HTS221_sensor),NULL); + + osThreadDef(NVM, func_NVM_Manager, osPriorityAboveNormal, 0 ,128); + Task_NVM_ReadWrite = osThreadCreate(osThread(NVM),NULL); + + osThreadDef(UartPrint, func_UartPrint, osPriorityAboveNormal, 0 , 128); + Task_UartSend = osThreadCreate(osThread(UartPrint),NULL); + + /* USER CODE END RTOS_THREADS */ + + /* USER CODE BEGIN RTOS_QUEUES */ + /* add queues, ... */ + + + +// osMessageQDef(NVM_Manager,1,QMessageData_ForNVM); +// osMessageQDef(NVM_Manager,1,uint8_t); +// Queue_SendTo_TaskNVM = osMessageCreate(osMessageQ(NVM_Manager),Task_NVM_ReadWrite); + +// osMessageQDef(QSensor, 1, QMessageData_Sensor); +// osMessageQDef(QSensor, 1, uint8_t); +// Queue_SendTo_Uart = osMessageCreate(osMessageQ(QSensor), Task_UartSend); + + Queue_SendTo_TaskNVM = xQueueCreate(1,sizeof(QMessageData_ForNVM)); + Queue_SendTo_Uart = xQueueCreate(1,sizeof(QMessageData_USART)); +// +// xQueueCreateSet(1*sizeof(QMessageData_ForNVM)+1*sizeof(QMessageData_Sensor)); +// xQueueAddToSet(Queue_SendTo_TaskNVM,NVM_QueueSet); + + /* USER CODE END RTOS_QUEUES */ + + + /* Start scheduler */ + osKernelStart(); + + /* We should never get here as control is now taken by the scheduler */ + + /* Infinite loop */ + /* USER CODE BEGIN WHILE */ + while (1) + { + /* USER CODE END WHILE */ + + /* USER CODE BEGIN 3 */ + + } + /* USER CODE END 3 */ + +} + +/** System Clock Configuration +*/ +void SystemClock_Config(void) +{ + + RCC_OscInitTypeDef RCC_OscInitStruct; + RCC_ClkInitTypeDef RCC_ClkInitStruct; + RCC_PeriphCLKInitTypeDef PeriphClkInit; + + /**Configure the main internal regulator output voltage + */ + __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); + + /**Initializes the CPU, AHB and APB busses clocks + */ + RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_MSI; + RCC_OscInitStruct.LSIState = RCC_LSI_ON; + 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) + { + Error_Handler(); + } + + /**Initializes the CPU, AHB and APB busses clocks + */ + RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK + |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; + RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_MSI; + RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; + RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1; + RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; + + if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK) + { + Error_Handler(); + } + + PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART1|RCC_PERIPHCLK_USART2 + |RCC_PERIPHCLK_I2C1|RCC_PERIPHCLK_RTC; + PeriphClkInit.Usart1ClockSelection = RCC_USART1CLKSOURCE_PCLK2; + PeriphClkInit.Usart2ClockSelection = RCC_USART2CLKSOURCE_PCLK1; + PeriphClkInit.I2c1ClockSelection = RCC_I2C1CLKSOURCE_PCLK1; + PeriphClkInit.RTCClockSelection = RCC_RTCCLKSOURCE_LSI; + if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK) + { + Error_Handler(); + } + + /**Configure the Systick interrupt time + */ + HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000); + + /**Configure the Systick + */ + HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK); + + /* SysTick_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(SysTick_IRQn, 3, 0); +} + +/* I2C1 init function */ +static void MX_I2C1_Init(void) +{ + + hi2c1.Instance = I2C1; + hi2c1.Init.Timing = 0x00000708; + hi2c1.Init.OwnAddress1 = 0; + hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; + hi2c1.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; + hi2c1.Init.OwnAddress2 = 0; + hi2c1.Init.OwnAddress2Masks = I2C_OA2_NOMASK; + hi2c1.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; + hi2c1.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; + if (HAL_I2C_Init(&hi2c1) != HAL_OK) + { + Error_Handler(); + } + + /**Configure Analogue filter + */ + if (HAL_I2CEx_ConfigAnalogFilter(&hi2c1, I2C_ANALOGFILTER_ENABLE) != HAL_OK) + { + Error_Handler(); + } + + /**Configure Digital filter + */ + if (HAL_I2CEx_ConfigDigitalFilter(&hi2c1, 0) != HAL_OK) + { + Error_Handler(); + } + +} + +/* RTC init function */ +static void MX_RTC_Init(void) +{ + + RTC_TimeTypeDef sTime; + RTC_DateTypeDef sDate; + + /**Initialize RTC Only + */ + hrtc.Instance = RTC; + hrtc.Init.HourFormat = RTC_HOURFORMAT_24; + hrtc.Init.AsynchPrediv = 127; + hrtc.Init.SynchPrediv = 255; + hrtc.Init.OutPut = RTC_OUTPUT_DISABLE; + hrtc.Init.OutPutRemap = RTC_OUTPUT_REMAP_NONE; + hrtc.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH; + hrtc.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN; + if (HAL_RTC_Init(&hrtc) != HAL_OK) + { + Error_Handler(); + } + + /**Initialize RTC and set the Time and Date + */ + if(HAL_RTCEx_BKUPRead(&hrtc, RTC_BKP_DR0) != 0x32F2){ + sTime.Hours = 0x0; + sTime.Minutes = 0x0; + sTime.Seconds = 0x0; + sTime.DayLightSaving = RTC_DAYLIGHTSAVING_NONE; + sTime.StoreOperation = RTC_STOREOPERATION_RESET; + if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BCD) != HAL_OK) + { + Error_Handler(); + } + + sDate.WeekDay = RTC_WEEKDAY_MONDAY; + sDate.Month = RTC_MONTH_JANUARY; + sDate.Date = 0x1; + sDate.Year = 0x0; + + if (HAL_RTC_SetDate(&hrtc, &sDate, RTC_FORMAT_BCD) != HAL_OK) + { + Error_Handler(); + } + + HAL_RTCEx_BKUPWrite(&hrtc,RTC_BKP_DR0,0x32F2); + } + +} + +/* USART1 init function */ +static void MX_USART1_IRDA_Init(void) +{ + + hirda1.Instance = USART1; + hirda1.Init.BaudRate = 115200; + hirda1.Init.WordLength = IRDA_WORDLENGTH_7B; + hirda1.Init.Parity = IRDA_PARITY_NONE; + hirda1.Init.Mode = IRDA_MODE_TX_RX; + hirda1.Init.Prescaler = 10; + hirda1.Init.PowerMode = IRDA_POWERMODE_NORMAL; + if (HAL_IRDA_Init(&hirda1) != HAL_OK) + { + Error_Handler(); + } + +} + +/* USART2 init function */ +static void MX_USART2_UART_Init(void) +{ + + huart2.Instance = USART2; + huart2.Init.BaudRate = 115200; + huart2.Init.WordLength = UART_WORDLENGTH_8B; + huart2.Init.StopBits = UART_STOPBITS_1; + huart2.Init.Parity = UART_PARITY_NONE; + huart2.Init.Mode = UART_MODE_TX_RX; + huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; + huart2.Init.OverSampling = UART_OVERSAMPLING_16; + huart2.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE; + huart2.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT; + if (HAL_UART_Init(&huart2) != HAL_OK) + { + Error_Handler(); + } + +} + +/** Configure pins as + * Analog + * Input + * Output + * EVENT_OUT + * EXTI +*/ +static void MX_GPIO_Init(void) +{ + + GPIO_InitTypeDef GPIO_InitStruct; + + /* GPIO Ports Clock Enable */ + __HAL_RCC_GPIOC_CLK_ENABLE(); + __HAL_RCC_GPIOH_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); + __HAL_RCC_GPIOB_CLK_ENABLE(); + + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, GPIO_PIN_RESET); + + /*Configure GPIO pin : B1_Pin */ + GPIO_InitStruct.Pin = B1_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; + GPIO_InitStruct.Pull = GPIO_NOPULL; + HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); + + /*Configure GPIO pin : LD2_Pin */ + GPIO_InitStruct.Pin = LD2_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + HAL_GPIO_Init(LD2_GPIO_Port, &GPIO_InitStruct); + +} + +/* USER CODE BEGIN 4 */ +void func_NVM_Manager(void const* argument){ + QMessageData_ForNVM Rawdata; + QMessageData_USART Uartdata; + uint8_t Uart_Updatecounter=0; + for(;;){ +// TODO: Copy data from Queue then write into the EEPROM. + xQueueReceive(Queue_SendTo_TaskNVM,&Rawdata,portMAX_DELAY); + switch (Rawdata.EventId) { + case EV_ReturnFromBlinkLED: + break; + + case EV_ReadsFromTempSensor: +// TODO: Receive the data from Temperature Sensor, then Save it into the NVM +// write to EEPROM; start Counter + if (Uart_Updatecounter>5){ + xQueueSend(Queue_SendTo_Uart,&Uartdata,100); + Uart_Updatecounter = 0; + } + else { +// Need to write into EEPROM then increment Uart_Updatecounter + Uart_Updatecounter++; + } + break; + + case EV_ReturnFromUartSend: +// TODO: After confirm receive successful (0x01), +// delete data in NVM. +// else resend the data in NVM to UART. + if (Rawdata.dataArray[0]==0x00){ + + } + else { + + } + break; + + default: + break; + } + } +} + + +void func_LEDBlink (void const* argument){ + uint32_t xLastTickWakeup = osKernelSysTick(); + thread1_counter = 0; +// uint8_t TestSentPtr = 0; +// QMessageData_ForNVM toNVM; +// toNVM.ptr_sent_Success = &TestSentPtr; + for(;;) + { + thread1_counter++; + HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); + osDelayUntil(&xLastTickWakeup,1000); +// toNVM.EventId = EV_ReturnFromBlinkLED; +// toNVM.dataArray[0]=0xBC; +// *toNVM.ptr_sent_Success = 0x04; +// xQueueSend(Queue_SendTo_TaskNVM,&toNVM,100); + } +} + + +void func_UartPrint (void const* argument){ + QMessageData_ForNVM sendReturn; + QMessageData_USART receiveData; + for(;;) + { + xQueueReceive(Queue_SendTo_Uart,&receiveData,portMAX_DELAY); + HAL_UART_Transmit(&huart2,(uint8_t *)"Next Game",10,200); + sendReturn.EventId = EV_ReturnFromUartSend; + sendReturn.dataArray[0]=0x00; + xQueueSend(Queue_SendTo_TaskNVM,&sendReturn,100); + } +} + + +void func_SensorRead (void const* argument){ + QMessageData_ForNVM data; + uint8_t I2C_Buffer[5]; +// = {0b10000111,0b00000000,0b00000000,} + + HAL_I2C_Mem_Write(&hi2c1,0xBE,0x20,I2C_MEMADD_SIZE_8BIT,I2C_Buffer,3,100); + for(;;) + { + HAL_I2C_Mem_Read(&hi2c1,0xBE,0x0F,I2C_MEMADD_SIZE_8BIT,&I2C_Buffer[0],1,100); + HAL_I2C_Mem_Read(&hi2c1,0xBE,0x27,I2C_MEMADD_SIZE_8BIT,&I2C_Buffer[1],1,100); + HAL_I2C_Mem_Read(&hi2c1,0xBE,0x28,I2C_MEMADD_SIZE_8BIT,&I2C_Buffer[3],4,100); + + data.EventId = EV_ReadsFromTempSensor; + data.dataArray[0] = I2C_Buffer[0]; + data.dataArray[1] = I2C_Buffer[1]; + data.dataArray[2] = I2C_Buffer[2]; + data.dataArray[4] = I2C_Buffer[3]; + + xQueueSend(Queue_SendTo_TaskNVM,&data,100); + + osDelay(1000); + } +} + +void vApplicationTickHook (void){ + for(;;){ + + } +} + + +/* USER CODE END 4 */ + +/* StartDefaultTask function */ +//void StartDefaultTask(void const * argument) +//{ +// +// /* USER CODE BEGIN 5 */ +//// Infinite loop +// for(;;) +// { +// thread1_counter++; +// HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); +//// HAL_UART_Transmit(&huart2,(uint8_t *)"Next Game",10,200); +// osDelay(1000); +//// xQueueReceive(queue2,&receivebuffer,portMAX_DELAY); +//// osMessageGet(queue1,2000); +// } +// /* USER CODE END 5 */ +//} + +/** + * @brief This function is executed in case of error occurrence. + * @param None + * @retval None + */ +void Error_Handler(void) +{ + /* USER CODE BEGIN Error_Handler */ + /* User can add his own implementation to report the HAL error return state */ + while(1) + { + } + /* USER CODE END Error_Handler */ +} + +#ifdef USE_FULL_ASSERT + +/** + * @brief Reports the name of the source file and the source line number + * where the assert_param error has occurred. + * @param file: pointer to the source file name + * @param line: assert_param error line source number + * @retval None + */ +void assert_failed(uint8_t* file, uint32_t line) +{ + /* USER CODE BEGIN 6 */ + /* User can add his own implementation to report the file name and line number, + ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */ + /* USER CODE END 6 */ + +} + +#endif + +/** + * @} + */ + +/** + * @} +*/ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Src/stm32l0xx_hal_msp.c b/Testing/Src/stm32l0xx_hal_msp.c new file mode 100644 index 0000000..11a157f --- /dev/null +++ b/Testing/Src/stm32l0xx_hal_msp.c @@ -0,0 +1,284 @@ +/** + ****************************************************************************** + * File Name : stm32l0xx_hal_msp.c + * Description : This file provides code for the MSP Initialization + * and de-Initialization codes. + ****************************************************************************** + * + * Copyright (c) 2017 STMicroelectronics International N.V. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" + +extern void Error_Handler(void); +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ +/** + * Initializes the Global MSP. + */ +void HAL_MspInit(void) +{ + /* USER CODE BEGIN MspInit 0 */ + + /* USER CODE END MspInit 0 */ + + __HAL_RCC_SYSCFG_CLK_ENABLE(); + __HAL_RCC_PWR_CLK_ENABLE(); + + /* System interrupt init*/ + /* SVC_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(SVC_IRQn, 0, 0); + /* PendSV_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(PendSV_IRQn, 3, 0); + /* SysTick_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(SysTick_IRQn, 3, 0); + + /* USER CODE BEGIN MspInit 1 */ + + /* USER CODE END MspInit 1 */ +} + +void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c) +{ + + GPIO_InitTypeDef GPIO_InitStruct; + if(hi2c->Instance==I2C1) + { + /* USER CODE BEGIN I2C1_MspInit 0 */ + + /* USER CODE END I2C1_MspInit 0 */ + + /**I2C1 GPIO Configuration + PB8 ------> I2C1_SCL + PB9 ------> I2C1_SDA + */ + GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9; + GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF4_I2C1; + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + + /* Peripheral clock enable */ + __HAL_RCC_I2C1_CLK_ENABLE(); + /* USER CODE BEGIN I2C1_MspInit 1 */ + + /* USER CODE END I2C1_MspInit 1 */ + } + +} + +void HAL_I2C_MspDeInit(I2C_HandleTypeDef* hi2c) +{ + + if(hi2c->Instance==I2C1) + { + /* USER CODE BEGIN I2C1_MspDeInit 0 */ + + /* USER CODE END I2C1_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_I2C1_CLK_DISABLE(); + + /**I2C1 GPIO Configuration + PB8 ------> I2C1_SCL + PB9 ------> I2C1_SDA + */ + HAL_GPIO_DeInit(GPIOB, GPIO_PIN_8|GPIO_PIN_9); + + } + /* USER CODE BEGIN I2C1_MspDeInit 1 */ + + /* USER CODE END I2C1_MspDeInit 1 */ + +} + +void HAL_RTC_MspInit(RTC_HandleTypeDef* hrtc) +{ + + if(hrtc->Instance==RTC) + { + /* USER CODE BEGIN RTC_MspInit 0 */ + + /* USER CODE END RTC_MspInit 0 */ + /* Peripheral clock enable */ + __HAL_RCC_RTC_ENABLE(); + /* USER CODE BEGIN RTC_MspInit 1 */ + + /* USER CODE END RTC_MspInit 1 */ + } + +} + +void HAL_RTC_MspDeInit(RTC_HandleTypeDef* hrtc) +{ + + if(hrtc->Instance==RTC) + { + /* USER CODE BEGIN RTC_MspDeInit 0 */ + + /* USER CODE END RTC_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_RTC_DISABLE(); + } + /* USER CODE BEGIN RTC_MspDeInit 1 */ + + /* USER CODE END RTC_MspDeInit 1 */ + +} + +void HAL_IRDA_MspInit(IRDA_HandleTypeDef* hirda) +{ + + GPIO_InitTypeDef GPIO_InitStruct; + if(hirda->Instance==USART1) + { + /* USER CODE BEGIN USART1_MspInit 0 */ + + /* USER CODE END USART1_MspInit 0 */ + /* Peripheral clock enable */ + __HAL_RCC_USART1_CLK_ENABLE(); + + /**USART1 GPIO Configuration + PA9 ------> USART1_TX + PA10 ------> USART1_RX + */ + GPIO_InitStruct.Pin = GPIO_PIN_9|GPIO_PIN_10; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF4_USART1; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + + /* USER CODE BEGIN USART1_MspInit 1 */ + + /* USER CODE END USART1_MspInit 1 */ + } + +} + +void HAL_UART_MspInit(UART_HandleTypeDef* huart) +{ + + GPIO_InitTypeDef GPIO_InitStruct; + if(huart->Instance==USART2) + { + /* USER CODE BEGIN USART2_MspInit 0 */ + + /* USER CODE END USART2_MspInit 0 */ + /* Peripheral clock enable */ + __HAL_RCC_USART2_CLK_ENABLE(); + + /**USART2 GPIO Configuration + PA2 ------> USART2_TX + PA3 ------> USART2_RX + */ + GPIO_InitStruct.Pin = USART_TX_Pin|USART_RX_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF4_USART2; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + + /* USER CODE BEGIN USART2_MspInit 1 */ + + /* USER CODE END USART2_MspInit 1 */ + } + +} + +void HAL_IRDA_MspDeInit(IRDA_HandleTypeDef* hirda) +{ + + if(hirda->Instance==USART1) + { + /* USER CODE BEGIN USART1_MspDeInit 0 */ + + /* USER CODE END USART1_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_USART1_CLK_DISABLE(); + + /**USART1 GPIO Configuration + PA9 ------> USART1_TX + PA10 ------> USART1_RX + */ + HAL_GPIO_DeInit(GPIOA, GPIO_PIN_9|GPIO_PIN_10); + + } + /* USER CODE BEGIN USART1_MspDeInit 1 */ + + /* USER CODE END USART1_MspDeInit 1 */ + +} + +void HAL_UART_MspDeInit(UART_HandleTypeDef* huart) +{ + + if(huart->Instance==USART2) + { + /* USER CODE BEGIN USART2_MspDeInit 0 */ + + /* USER CODE END USART2_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_USART2_CLK_DISABLE(); + + /**USART2 GPIO Configuration + PA2 ------> USART2_TX + PA3 ------> USART2_RX + */ + HAL_GPIO_DeInit(GPIOA, USART_TX_Pin|USART_RX_Pin); + + } + /* USER CODE BEGIN USART2_MspDeInit 1 */ + + /* USER CODE END USART2_MspDeInit 1 */ + +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Src/stm32l0xx_it.c b/Testing/Src/stm32l0xx_it.c new file mode 100644 index 0000000..2ac9343 --- /dev/null +++ b/Testing/Src/stm32l0xx_it.c @@ -0,0 +1,76 @@ +/** + ****************************************************************************** + * @file stm32l0xx_it.c + * @brief Interrupt Service Routines. + ****************************************************************************** + * + * COPYRIGHT(c) 2017 STMicroelectronics + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" +#include "stm32l0xx.h" +#include "stm32l0xx_it.h" +#include "cmsis_os.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/* External variables --------------------------------------------------------*/ + +/******************************************************************************/ +/* Cortex-M0+ Processor Interruption and Exception Handlers */ +/******************************************************************************/ + +/** +* @brief This function handles System tick timer. +*/ +void SysTick_Handler(void) +{ + /* USER CODE BEGIN SysTick_IRQn 0 */ + + /* USER CODE END SysTick_IRQn 0 */ + HAL_IncTick(); + osSystickHandler(); + /* USER CODE BEGIN SysTick_IRQn 1 */ + + /* USER CODE END SysTick_IRQn 1 */ +} + +/******************************************************************************/ +/* STM32L0xx Peripheral Interrupt Handlers */ +/* Add here the Interrupt Handlers for the used peripherals. */ +/* For the available peripheral interrupt handler names, */ +/* please refer to the startup file (startup_stm32l0xx.s). */ +/******************************************************************************/ + +/* USER CODE BEGIN 1 */ +void RTC_IRQHandler (void){ + +} +/* USER CODE END 1 */ +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Src/system_stm32l0xx.c b/Testing/Src/system_stm32l0xx.c new file mode 100644 index 0000000..36ffb73 --- /dev/null +++ b/Testing/Src/system_stm32l0xx.c @@ -0,0 +1,287 @@ +/** + ****************************************************************************** + * @file system_stm32l0xx.c + * @author MCD Application Team + * @version V1.7.1 + * @date 25-November-2016 + * @brief CMSIS Cortex-M0+ Device Peripheral Access Layer System Source File. + * + * This file provides two functions and one global variable to be called from + * user application: + * - SystemInit(): This function is called at startup just after reset and + * before branch to main program. This call is made inside + * the "startup_stm32l0xx.s" file. + * + * - SystemCoreClock variable: Contains the core clock (HCLK), it can be used + * by the user application to setup the SysTick + * timer or configure other parameters. + * + * - SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must + * be called whenever the core clock is changed + * during program execution. + * + * + ****************************************************************************** + * @attention + * + *

© COPYRIGHT(c) 2016 STMicroelectronics

+ * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + +/** @addtogroup CMSIS + * @{ + */ + +/** @addtogroup stm32l0xx_system + * @{ + */ + +/** @addtogroup STM32L0xx_System_Private_Includes + * @{ + */ + +#include "stm32l0xx.h" + +#if !defined (HSE_VALUE) + #define HSE_VALUE ((uint32_t)8000000U) /*!< Value of the External oscillator in Hz */ +#endif /* HSE_VALUE */ + +#if !defined (MSI_VALUE) + #define MSI_VALUE ((uint32_t)2000000U) /*!< Value of the Internal oscillator in Hz*/ +#endif /* MSI_VALUE */ + +#if !defined (HSI_VALUE) + #define HSI_VALUE ((uint32_t)16000000U) /*!< Value of the Internal oscillator in Hz*/ +#endif /* HSI_VALUE */ + + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Private_TypesDefinitions + * @{ + */ + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Private_Defines + * @{ + */ +/************************* Miscellaneous Configuration ************************/ + +/*!< Uncomment the following line if you need to relocate your vector Table in + Internal SRAM. */ +/* #define VECT_TAB_SRAM */ +#define VECT_TAB_OFFSET 0x00U /*!< Vector Table base offset field. + This value must be a multiple of 0x200. */ +/******************************************************************************/ +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Private_Macros + * @{ + */ + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Private_Variables + * @{ + */ + /* This variable is updated in three ways: + 1) by calling CMSIS function SystemCoreClockUpdate() + 2) by calling HAL API function HAL_RCC_GetHCLKFreq() + 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency + Note: If you use this function to configure the system clock; then there + is no need to call the 2 first functions listed above, since SystemCoreClock + variable is updated automatically. + */ + uint32_t SystemCoreClock = 2000000U; + const uint8_t AHBPrescTable[16] = {0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U, 1U, 2U, 3U, 4U, 6U, 7U, 8U, 9U}; + const uint8_t APBPrescTable[8] = {0U, 0U, 0U, 0U, 1U, 2U, 3U, 4U}; + const uint8_t PLLMulTable[9] = {3U, 4U, 6U, 8U, 12U, 16U, 24U, 32U, 48U}; + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Private_FunctionPrototypes + * @{ + */ + +/** + * @} + */ + +/** @addtogroup STM32L0xx_System_Private_Functions + * @{ + */ + +/** + * @brief Setup the microcontroller system. + * @param None + * @retval None + */ +void SystemInit (void) +{ +/*!< Set MSION bit */ + RCC->CR |= (uint32_t)0x00000100U; + + /*!< Reset SW[1:0], HPRE[3:0], PPRE1[2:0], PPRE2[2:0], MCOSEL[2:0] and MCOPRE[2:0] bits */ + RCC->CFGR &= (uint32_t) 0x88FF400CU; + + /*!< Reset HSION, HSIDIVEN, HSEON, CSSON and PLLON bits */ + RCC->CR &= (uint32_t)0xFEF6FFF6U; + + /*!< Reset HSI48ON bit */ + RCC->CRRCR &= (uint32_t)0xFFFFFFFEU; + + /*!< Reset HSEBYP bit */ + RCC->CR &= (uint32_t)0xFFFBFFFFU; + + /*!< Reset PLLSRC, PLLMUL[3:0] and PLLDIV[1:0] bits */ + RCC->CFGR &= (uint32_t)0xFF02FFFFU; + + /*!< Disable all interrupts */ + RCC->CIER = 0x00000000U; + + /* Configure the Vector Table location add offset address ------------------*/ +#ifdef VECT_TAB_SRAM + SCB->VTOR = SRAM_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM */ +#else + SCB->VTOR = FLASH_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal FLASH */ +#endif +} + +/** + * @brief Update SystemCoreClock according to Clock Register Values + * The SystemCoreClock variable contains the core clock (HCLK), it can + * be used by the user application to setup the SysTick timer or configure + * other parameters. + * + * @note Each time the core clock (HCLK) changes, this function must be called + * to update SystemCoreClock variable value. Otherwise, any configuration + * based on this variable will be incorrect. + * + * @note - The system frequency computed by this function is not the real + * frequency in the chip. It is calculated based on the predefined + * constant and the selected clock source: + * + * - If SYSCLK source is MSI, SystemCoreClock will contain the MSI + * value as defined by the MSI range. + * + * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*) + * + * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**) + * + * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**) + * or HSI_VALUE(*) multiplied/divided by the PLL factors. + * + * (*) HSI_VALUE is a constant defined in stm32l0xx_hal.h file (default value + * 16 MHz) but the real value may vary depending on the variations + * in voltage and temperature. + * + * (**) HSE_VALUE is a constant defined in stm32l0xx_hal.h file (default value + * 8 MHz), user has to ensure that HSE_VALUE is same as the real + * frequency of the crystal used. Otherwise, this function may + * have wrong result. + * + * - The result of this function could be not correct when using fractional + * value for HSE crystal. + * @param None + * @retval None + */ +void SystemCoreClockUpdate (void) +{ + uint32_t tmp = 0U, pllmul = 0U, plldiv = 0U, pllsource = 0U, msirange = 0U; + + /* Get SYSCLK source -------------------------------------------------------*/ + tmp = RCC->CFGR & RCC_CFGR_SWS; + + switch (tmp) + { + case 0x00U: /* MSI used as system clock */ + msirange = (RCC->ICSCR & RCC_ICSCR_MSIRANGE) >> 13U; + SystemCoreClock = (32768U * (1U << (msirange + 1U))); + break; + case 0x04U: /* HSI used as system clock */ + SystemCoreClock = HSI_VALUE; + break; + case 0x08U: /* HSE used as system clock */ + SystemCoreClock = HSE_VALUE; + break; + case 0x0CU: /* PLL used as system clock */ + /* Get PLL clock source and multiplication factor ----------------------*/ + pllmul = RCC->CFGR & RCC_CFGR_PLLMUL; + plldiv = RCC->CFGR & RCC_CFGR_PLLDIV; + pllmul = PLLMulTable[(pllmul >> 18U)]; + plldiv = (plldiv >> 22U) + 1U; + + pllsource = RCC->CFGR & RCC_CFGR_PLLSRC; + + if (pllsource == 0x00U) + { + /* HSI oscillator clock selected as PLL clock entry */ + SystemCoreClock = (((HSI_VALUE) * pllmul) / plldiv); + } + else + { + /* HSE selected as PLL clock entry */ + SystemCoreClock = (((HSE_VALUE) * pllmul) / plldiv); + } + break; + default: /* MSI used as system clock */ + msirange = (RCC->ICSCR & RCC_ICSCR_MSIRANGE) >> 13U; + SystemCoreClock = (32768U * (1U << (msirange + 1U))); + break; + } + /* Compute HCLK clock frequency --------------------------------------------*/ + /* Get HCLK prescaler */ + tmp = AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> 4U)]; + /* HCLK clock frequency */ + SystemCoreClock >>= tmp; +} + + + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Testing/Testing Debug.cfg b/Testing/Testing Debug.cfg new file mode 100644 index 0000000..d1e9791 --- /dev/null +++ b/Testing/Testing Debug.cfg @@ -0,0 +1,28 @@ +# This is an NUCLEO-L053R8 board with a single STM32L053R8Tx chip +# +# Generated by System Workbench for STM32 +# Take care that such file, as generated, may be overridden without any early notice. Please have a look to debug launch configuration setup(s) + +source [find interface/stlink.cfg] + +set WORKAREASIZE 0x2000 + +transport select "hla_swd" + +set CHIPNAME STM32L053R8Tx + +# Enable debug when in low power modes +set ENABLE_LOW_POWER 1 + +# Stop Watchdog counters when halt +set STOP_WATCHDOG 1 + +# STlink Debug clock frequency +set CLOCK_FREQ 4000 + +# use hardware reset, connect under reset +# connect_assert_srst needed if low power mode application running (WFI...) +reset_config srst_only srst_nogate connect_assert_srst +set CONNECT_UNDER_RESET 1 + +source [find target/stm32l0x.cfg] diff --git a/Testing/startup/startup_stm32l053xx.s b/Testing/startup/startup_stm32l053xx.s new file mode 100644 index 0000000..ba54e3e --- /dev/null +++ b/Testing/startup/startup_stm32l053xx.s @@ -0,0 +1,295 @@ +/** + ****************************************************************************** + * @file startup_stm32l053xx.s + * @author MCD Application Team + * @version V1.7.1 + * @date 25-November-2016 + * @brief STM32L053xx Devices vector table for Atollic TrueSTUDIO toolchain. + * This module performs: + * - Set the initial SP + * - Set the initial PC == Reset_Handler, + * - Set the vector table entries with the exceptions ISR address + * - Branches to main in the C library (which eventually + * calls main()). + * After Reset the Cortex-M0+ processor is in Thread mode, + * priority is Privileged, and the Stack is set to Main. + ****************************************************************************** + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ + + .syntax unified + .cpu cortex-m0plus + .fpu softvfp + .thumb + +.global g_pfnVectors +.global Default_Handler + +/* start address for the initialization values of the .data section. +defined in linker script */ +.word _sidata +/* start address for the .data section. defined in linker script */ +.word _sdata +/* end address for the .data section. defined in linker script */ +.word _edata +/* start address for the .bss section. defined in linker script */ +.word _sbss +/* end address for the .bss section. defined in linker script */ +.word _ebss + + .section .text.Reset_Handler + .weak Reset_Handler + .type Reset_Handler, %function +Reset_Handler: + ldr r0, =_estack + mov sp, r0 /* set stack pointer */ + +/* Copy the data segment initializers from flash to SRAM */ + movs r1, #0 + b LoopCopyDataInit + +CopyDataInit: + ldr r3, =_sidata + ldr r3, [r3, r1] + str r3, [r0, r1] + adds r1, r1, #4 + +LoopCopyDataInit: + ldr r0, =_sdata + ldr r3, =_edata + adds r2, r0, r1 + cmp r2, r3 + bcc CopyDataInit + ldr r2, =_sbss + b LoopFillZerobss +/* Zero fill the bss segment. */ +FillZerobss: + movs r3, #0 + str r3, [r2] + adds r2, r2, #4 + + +LoopFillZerobss: + ldr r3, = _ebss + cmp r2, r3 + bcc FillZerobss + +/* Call the clock system intitialization function.*/ + bl SystemInit +/* Call static constructors */ + bl __libc_init_array +/* Call the application's entry point.*/ + bl main + +LoopForever: + b LoopForever + + +.size Reset_Handler, .-Reset_Handler + +/** + * @brief This is the code that gets called when the processor receives an + * unexpected interrupt. This simply enters an infinite loop, preserving + * the system state for examination by a debugger. + * + * @param None + * @retval : None +*/ + .section .text.Default_Handler,"ax",%progbits +Default_Handler: +Infinite_Loop: + b Infinite_Loop + .size Default_Handler, .-Default_Handler +/****************************************************************************** +* +* The minimal vector table for a Cortex M0. Note that the proper constructs +* must be placed on this to ensure that it ends up at physical address +* 0x0000.0000. +* +******************************************************************************/ + .section .isr_vector,"a",%progbits + .type g_pfnVectors, %object + .size g_pfnVectors, .-g_pfnVectors + + +g_pfnVectors: + .word _estack + .word Reset_Handler + .word NMI_Handler + .word HardFault_Handler + .word 0 + .word 0 + .word 0 + .word 0 + .word 0 + .word 0 + .word 0 + .word SVC_Handler + .word 0 + .word 0 + .word PendSV_Handler + .word SysTick_Handler + .word WWDG_IRQHandler /* Window WatchDog */ + .word PVD_IRQHandler /* PVD through EXTI Line detection */ + .word RTC_IRQHandler /* RTC through the EXTI line */ + .word FLASH_IRQHandler /* FLASH */ + .word RCC_CRS_IRQHandler /* RCC and CRS */ + .word EXTI0_1_IRQHandler /* EXTI Line 0 and 1 */ + .word EXTI2_3_IRQHandler /* EXTI Line 2 and 3 */ + .word EXTI4_15_IRQHandler /* EXTI Line 4 to 15 */ + .word TSC_IRQHandler /* TSC */ + .word DMA1_Channel1_IRQHandler /* DMA1 Channel 1 */ + .word DMA1_Channel2_3_IRQHandler /* DMA1 Channel 2 and Channel 3 */ + .word DMA1_Channel4_5_6_7_IRQHandler /* DMA1 Channel 4, Channel 5, Channel 6 and Channel 7*/ + .word ADC1_COMP_IRQHandler /* ADC1, COMP1 and COMP2 */ + .word LPTIM1_IRQHandler /* LPTIM1 */ + .word 0 /* Reserved */ + .word TIM2_IRQHandler /* TIM2 */ + .word 0 /* Reserved */ + .word TIM6_DAC_IRQHandler /* TIM6 and DAC */ + .word 0 /* Reserved */ + .word 0 /* Reserved */ + .word TIM21_IRQHandler /* TIM21 */ + .word 0 /* Reserved */ + .word TIM22_IRQHandler /* TIM22 */ + .word I2C1_IRQHandler /* I2C1 */ + .word I2C2_IRQHandler /* I2C2 */ + .word SPI1_IRQHandler /* SPI1 */ + .word SPI2_IRQHandler /* SPI2 */ + .word USART1_IRQHandler /* USART1 */ + .word USART2_IRQHandler /* USART2 */ + .word RNG_LPUART1_IRQHandler /* RNG and LPUART1 */ + .word LCD_IRQHandler /* LCD */ + .word USB_IRQHandler /* USB */ + +/******************************************************************************* +* +* Provide weak aliases for each Exception handler to the Default_Handler. +* As they are weak aliases, any function with the same name will override +* this definition. +* +*******************************************************************************/ + + .weak NMI_Handler + .thumb_set NMI_Handler,Default_Handler + + .weak HardFault_Handler + .thumb_set HardFault_Handler,Default_Handler + + .weak SVC_Handler + .thumb_set SVC_Handler,Default_Handler + + .weak PendSV_Handler + .thumb_set PendSV_Handler,Default_Handler + + .weak SysTick_Handler + .thumb_set SysTick_Handler,Default_Handler + + .weak WWDG_IRQHandler + .thumb_set WWDG_IRQHandler,Default_Handler + + .weak PVD_IRQHandler + .thumb_set PVD_IRQHandler,Default_Handler + + .weak RTC_IRQHandler + .thumb_set RTC_IRQHandler,Default_Handler + + .weak FLASH_IRQHandler + .thumb_set FLASH_IRQHandler,Default_Handler + + .weak RCC_CRS_IRQHandler + .thumb_set RCC_CRS_IRQHandler,Default_Handler + + .weak EXTI0_1_IRQHandler + .thumb_set EXTI0_1_IRQHandler,Default_Handler + + .weak EXTI2_3_IRQHandler + .thumb_set EXTI2_3_IRQHandler,Default_Handler + + .weak EXTI4_15_IRQHandler + .thumb_set EXTI4_15_IRQHandler,Default_Handler + + .weak TSC_IRQHandler + .thumb_set TSC_IRQHandler,Default_Handler + + .weak DMA1_Channel1_IRQHandler + .thumb_set DMA1_Channel1_IRQHandler,Default_Handler + + .weak DMA1_Channel2_3_IRQHandler + .thumb_set DMA1_Channel2_3_IRQHandler,Default_Handler + + .weak DMA1_Channel4_5_6_7_IRQHandler + .thumb_set DMA1_Channel4_5_6_7_IRQHandler,Default_Handler + + .weak ADC1_COMP_IRQHandler + .thumb_set ADC1_COMP_IRQHandler,Default_Handler + + .weak LPTIM1_IRQHandler + .thumb_set LPTIM1_IRQHandler,Default_Handler + + .weak TIM2_IRQHandler + .thumb_set TIM2_IRQHandler,Default_Handler + + .weak TIM6_DAC_IRQHandler + .thumb_set TIM6_DAC_IRQHandler,Default_Handler + + .weak TIM21_IRQHandler + .thumb_set TIM21_IRQHandler,Default_Handler + + .weak TIM22_IRQHandler + .thumb_set TIM22_IRQHandler,Default_Handler + + .weak I2C1_IRQHandler + .thumb_set I2C1_IRQHandler,Default_Handler + + .weak I2C2_IRQHandler + .thumb_set I2C2_IRQHandler,Default_Handler + + .weak SPI1_IRQHandler + .thumb_set SPI1_IRQHandler,Default_Handler + + .weak SPI2_IRQHandler + .thumb_set SPI2_IRQHandler,Default_Handler + + .weak USART1_IRQHandler + .thumb_set USART1_IRQHandler,Default_Handler + + .weak USART2_IRQHandler + .thumb_set USART2_IRQHandler,Default_Handler + + .weak RNG_LPUART1_IRQHandler + .thumb_set RNG_LPUART1_IRQHandler,Default_Handler + + .weak LCD_IRQHandler + .thumb_set LCD_IRQHandler,Default_Handler + + .weak USB_IRQHandler + .thumb_set USB_IRQHandler,Default_Handler + + + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + From 03618c60076e943b191000dc012bd795c5a69d61 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Fri, 13 Oct 2017 18:19:04 +0800 Subject: [PATCH 02/18] rename --- {Testing => RTOS_IOT}/.cproject | 0 {Testing => RTOS_IOT}/.mxproject | 0 {Testing => RTOS_IOT}/.project | 0 .../.settings/language.settings.xml | 0 {Testing => RTOS_IOT}/Debug/.gitignore | 0 {Testing => RTOS_IOT}/Debug/RTOS_IOT.bin | Bin {Testing => RTOS_IOT}/Debug/RTOS_IOT.elf | Bin {Testing => RTOS_IOT}/Debug/makefile | 0 {Testing => RTOS_IOT}/Debug/objects.list | 0 {Testing => RTOS_IOT}/Debug/objects.mk | 0 {Testing => RTOS_IOT}/Debug/output.map | 0 {Testing => RTOS_IOT}/Debug/sources.mk | 0 .../CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h | 0 .../CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h | 0 .../Device/ST/STM32L0xx/Include/system_stm32l0xx.h | 0 .../Drivers/CMSIS/Include/arm_common_tables.h | 0 .../Drivers/CMSIS/Include/arm_const_structs.h | 0 .../Drivers/CMSIS/Include/arm_math.h | 0 .../Drivers/CMSIS/Include/cmsis_armcc.h | 0 .../Drivers/CMSIS/Include/cmsis_armcc_V6.h | 0 .../Drivers/CMSIS/Include/cmsis_gcc.h | 0 .../Drivers/CMSIS/Include/core_cm0.h | 0 .../Drivers/CMSIS/Include/core_cm0plus.h | 0 .../Drivers/CMSIS/Include/core_cm3.h | 0 .../Drivers/CMSIS/Include/core_cm4.h | 0 .../Drivers/CMSIS/Include/core_cm7.h | 0 .../Drivers/CMSIS/Include/core_cmFunc.h | 0 .../Drivers/CMSIS/Include/core_cmInstr.h | 0 .../Drivers/CMSIS/Include/core_cmSimd.h | 0 .../Drivers/CMSIS/Include/core_sc000.h | 0 .../Drivers/CMSIS/Include/core_sc300.h | 0 .../Inc/Legacy/stm32_hal_legacy.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h | 0 .../Inc/stm32l0xx_hal_flash_ex.h | 0 .../Inc/stm32l0xx_hal_flash_ramfunc.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h | 0 .../Inc/stm32l0xx_hal_gpio_ex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h | 0 .../Inc/stm32l0xx_hal_irda_ex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h | 0 .../STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h | 0 .../Inc/stm32l0xx_hal_uart_ex.h | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c | 0 .../Src/stm32l0xx_hal_flash_ex.c | 0 .../Src/stm32l0xx_hal_flash_ramfunc.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c | 0 .../STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c | 0 .../Src/stm32l0xx_hal_uart_ex.c | 0 {Testing => RTOS_IOT}/Inc/FreeRTOSConfig.h | 0 {Testing => RTOS_IOT}/Inc/main.h | 0 {Testing => RTOS_IOT}/Inc/stm32l0xx_hal_conf.h | 0 {Testing => RTOS_IOT}/Inc/stm32l0xx_it.h | 0 .../FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c | 0 .../FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h | 0 .../Third_Party/FreeRTOS/Source/croutine.c | 0 .../Third_Party/FreeRTOS/Source/event_groups.c | 0 .../Third_Party/FreeRTOS/Source/include/FreeRTOS.h | 0 .../Source/include/FreeRTOSConfig_template.h | 0 .../FreeRTOS/Source/include/StackMacros.h | 0 .../Third_Party/FreeRTOS/Source/include/croutine.h | 0 .../Source/include/deprecated_definitions.h | 0 .../FreeRTOS/Source/include/event_groups.h | 0 .../Third_Party/FreeRTOS/Source/include/list.h | 0 .../FreeRTOS/Source/include/mpu_prototypes.h | 0 .../FreeRTOS/Source/include/mpu_wrappers.h | 0 .../Third_Party/FreeRTOS/Source/include/portable.h | 0 .../Third_Party/FreeRTOS/Source/include/projdefs.h | 0 .../Third_Party/FreeRTOS/Source/include/queue.h | 0 .../Third_Party/FreeRTOS/Source/include/semphr.h | 0 .../Third_Party/FreeRTOS/Source/include/task.h | 0 .../Third_Party/FreeRTOS/Source/include/timers.h | 0 .../Middlewares/Third_Party/FreeRTOS/Source/list.c | 0 .../FreeRTOS/Source/portable/GCC/ARM_CM0/port.c | 0 .../Source/portable/GCC/ARM_CM0/portmacro.h | 0 .../FreeRTOS/Source/portable/MemMang/heap_4.c | 0 .../Middlewares/Third_Party/FreeRTOS/Source/queue.c | 0 .../Middlewares/Third_Party/FreeRTOS/Source/tasks.c | 0 .../Third_Party/FreeRTOS/Source/timers.c | 0 {Testing => RTOS_IOT}/NUCLEO-L053R8.xml | 0 {Testing => RTOS_IOT}/RTOS_IOT.ioc | 0 {Testing => RTOS_IOT}/STM32L053R8Tx_FLASH.ld | 0 {Testing => RTOS_IOT}/Src/freertos.c | 0 {Testing => RTOS_IOT}/Src/main.c | 0 {Testing => RTOS_IOT}/Src/stm32l0xx_hal_msp.c | 0 {Testing => RTOS_IOT}/Src/stm32l0xx_it.c | 0 {Testing => RTOS_IOT}/Src/system_stm32l0xx.c | 0 {Testing => RTOS_IOT}/Testing Debug.cfg | 0 {Testing => RTOS_IOT}/startup/startup_stm32l053xx.s | 0 115 files changed, 0 insertions(+), 0 deletions(-) rename {Testing => RTOS_IOT}/.cproject (100%) rename {Testing => RTOS_IOT}/.mxproject (100%) rename {Testing => RTOS_IOT}/.project (100%) rename {Testing => RTOS_IOT}/.settings/language.settings.xml (100%) rename {Testing => RTOS_IOT}/Debug/.gitignore (100%) rename {Testing => RTOS_IOT}/Debug/RTOS_IOT.bin (100%) rename {Testing => RTOS_IOT}/Debug/RTOS_IOT.elf (100%) rename {Testing => RTOS_IOT}/Debug/makefile (100%) rename {Testing => RTOS_IOT}/Debug/objects.list (100%) rename {Testing => RTOS_IOT}/Debug/objects.mk (100%) rename {Testing => RTOS_IOT}/Debug/output.map (100%) rename {Testing => RTOS_IOT}/Debug/sources.mk (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/arm_common_tables.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/arm_const_structs.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/arm_math.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/cmsis_armcc.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/cmsis_armcc_V6.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/cmsis_gcc.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cm0.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cm0plus.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cm3.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cm4.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cm7.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cmFunc.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cmInstr.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_cmSimd.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_sc000.h (100%) rename {Testing => RTOS_IOT}/Drivers/CMSIS/Include/core_sc300.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c (100%) rename {Testing => RTOS_IOT}/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c (100%) rename {Testing => RTOS_IOT}/Inc/FreeRTOSConfig.h (100%) rename {Testing => RTOS_IOT}/Inc/main.h (100%) rename {Testing => RTOS_IOT}/Inc/stm32l0xx_hal_conf.h (100%) rename {Testing => RTOS_IOT}/Inc/stm32l0xx_it.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/croutine.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/list.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/task.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/list.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/queue.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/tasks.c (100%) rename {Testing => RTOS_IOT}/Middlewares/Third_Party/FreeRTOS/Source/timers.c (100%) rename {Testing => RTOS_IOT}/NUCLEO-L053R8.xml (100%) rename {Testing => RTOS_IOT}/RTOS_IOT.ioc (100%) rename {Testing => RTOS_IOT}/STM32L053R8Tx_FLASH.ld (100%) rename {Testing => RTOS_IOT}/Src/freertos.c (100%) rename {Testing => RTOS_IOT}/Src/main.c (100%) rename {Testing => RTOS_IOT}/Src/stm32l0xx_hal_msp.c (100%) rename {Testing => RTOS_IOT}/Src/stm32l0xx_it.c (100%) rename {Testing => RTOS_IOT}/Src/system_stm32l0xx.c (100%) rename {Testing => RTOS_IOT}/Testing Debug.cfg (100%) rename {Testing => RTOS_IOT}/startup/startup_stm32l053xx.s (100%) diff --git a/Testing/.cproject b/RTOS_IOT/.cproject similarity index 100% rename from Testing/.cproject rename to RTOS_IOT/.cproject diff --git a/Testing/.mxproject b/RTOS_IOT/.mxproject similarity index 100% rename from Testing/.mxproject rename to RTOS_IOT/.mxproject diff --git a/Testing/.project b/RTOS_IOT/.project similarity index 100% rename from Testing/.project rename to RTOS_IOT/.project diff --git a/Testing/.settings/language.settings.xml b/RTOS_IOT/.settings/language.settings.xml similarity index 100% rename from Testing/.settings/language.settings.xml rename to RTOS_IOT/.settings/language.settings.xml diff --git a/Testing/Debug/.gitignore b/RTOS_IOT/Debug/.gitignore similarity index 100% rename from Testing/Debug/.gitignore rename to RTOS_IOT/Debug/.gitignore diff --git a/Testing/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin similarity index 100% rename from Testing/Debug/RTOS_IOT.bin rename to RTOS_IOT/Debug/RTOS_IOT.bin diff --git a/Testing/Debug/RTOS_IOT.elf b/RTOS_IOT/Debug/RTOS_IOT.elf similarity index 100% rename from Testing/Debug/RTOS_IOT.elf rename to RTOS_IOT/Debug/RTOS_IOT.elf diff --git a/Testing/Debug/makefile b/RTOS_IOT/Debug/makefile similarity index 100% rename from Testing/Debug/makefile rename to RTOS_IOT/Debug/makefile diff --git a/Testing/Debug/objects.list b/RTOS_IOT/Debug/objects.list similarity index 100% rename from Testing/Debug/objects.list rename to RTOS_IOT/Debug/objects.list diff --git a/Testing/Debug/objects.mk b/RTOS_IOT/Debug/objects.mk similarity index 100% rename from Testing/Debug/objects.mk rename to RTOS_IOT/Debug/objects.mk diff --git a/Testing/Debug/output.map b/RTOS_IOT/Debug/output.map similarity index 100% rename from Testing/Debug/output.map rename to RTOS_IOT/Debug/output.map diff --git a/Testing/Debug/sources.mk b/RTOS_IOT/Debug/sources.mk similarity index 100% rename from Testing/Debug/sources.mk rename to RTOS_IOT/Debug/sources.mk diff --git a/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h b/RTOS_IOT/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h similarity index 100% rename from Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h rename to RTOS_IOT/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h diff --git a/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h b/RTOS_IOT/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h similarity index 100% rename from Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h rename to RTOS_IOT/Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h diff --git a/Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h b/RTOS_IOT/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h similarity index 100% rename from Testing/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h rename to RTOS_IOT/Drivers/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h diff --git a/Testing/Drivers/CMSIS/Include/arm_common_tables.h b/RTOS_IOT/Drivers/CMSIS/Include/arm_common_tables.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/arm_common_tables.h rename to RTOS_IOT/Drivers/CMSIS/Include/arm_common_tables.h diff --git a/Testing/Drivers/CMSIS/Include/arm_const_structs.h b/RTOS_IOT/Drivers/CMSIS/Include/arm_const_structs.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/arm_const_structs.h rename to RTOS_IOT/Drivers/CMSIS/Include/arm_const_structs.h diff --git a/Testing/Drivers/CMSIS/Include/arm_math.h b/RTOS_IOT/Drivers/CMSIS/Include/arm_math.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/arm_math.h rename to RTOS_IOT/Drivers/CMSIS/Include/arm_math.h diff --git a/Testing/Drivers/CMSIS/Include/cmsis_armcc.h b/RTOS_IOT/Drivers/CMSIS/Include/cmsis_armcc.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/cmsis_armcc.h rename to RTOS_IOT/Drivers/CMSIS/Include/cmsis_armcc.h diff --git a/Testing/Drivers/CMSIS/Include/cmsis_armcc_V6.h b/RTOS_IOT/Drivers/CMSIS/Include/cmsis_armcc_V6.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/cmsis_armcc_V6.h rename to RTOS_IOT/Drivers/CMSIS/Include/cmsis_armcc_V6.h diff --git a/Testing/Drivers/CMSIS/Include/cmsis_gcc.h b/RTOS_IOT/Drivers/CMSIS/Include/cmsis_gcc.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/cmsis_gcc.h rename to RTOS_IOT/Drivers/CMSIS/Include/cmsis_gcc.h diff --git a/Testing/Drivers/CMSIS/Include/core_cm0.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cm0.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cm0.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cm0.h diff --git a/Testing/Drivers/CMSIS/Include/core_cm0plus.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cm0plus.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cm0plus.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cm0plus.h diff --git a/Testing/Drivers/CMSIS/Include/core_cm3.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cm3.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cm3.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cm3.h diff --git a/Testing/Drivers/CMSIS/Include/core_cm4.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cm4.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cm4.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cm4.h diff --git a/Testing/Drivers/CMSIS/Include/core_cm7.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cm7.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cm7.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cm7.h diff --git a/Testing/Drivers/CMSIS/Include/core_cmFunc.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cmFunc.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cmFunc.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cmFunc.h diff --git a/Testing/Drivers/CMSIS/Include/core_cmInstr.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cmInstr.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cmInstr.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cmInstr.h diff --git a/Testing/Drivers/CMSIS/Include/core_cmSimd.h b/RTOS_IOT/Drivers/CMSIS/Include/core_cmSimd.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_cmSimd.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_cmSimd.h diff --git a/Testing/Drivers/CMSIS/Include/core_sc000.h b/RTOS_IOT/Drivers/CMSIS/Include/core_sc000.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_sc000.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_sc000.h diff --git a/Testing/Drivers/CMSIS/Include/core_sc300.h b/RTOS_IOT/Drivers/CMSIS/Include/core_sc300.h similarity index 100% rename from Testing/Drivers/CMSIS/Include/core_sc300.h rename to RTOS_IOT/Drivers/CMSIS/Include/core_sc300.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_cortex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_def.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_dma.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_flash_ramfunc.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_gpio_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_i2c_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_irda_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_pwr_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rcc_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_rtc_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_tim_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Inc/stm32l0xx_hal_uart_ex.h diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.c diff --git a/Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c similarity index 100% rename from Testing/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c rename to RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.c diff --git a/Testing/Inc/FreeRTOSConfig.h b/RTOS_IOT/Inc/FreeRTOSConfig.h similarity index 100% rename from Testing/Inc/FreeRTOSConfig.h rename to RTOS_IOT/Inc/FreeRTOSConfig.h diff --git a/Testing/Inc/main.h b/RTOS_IOT/Inc/main.h similarity index 100% rename from Testing/Inc/main.h rename to RTOS_IOT/Inc/main.h diff --git a/Testing/Inc/stm32l0xx_hal_conf.h b/RTOS_IOT/Inc/stm32l0xx_hal_conf.h similarity index 100% rename from Testing/Inc/stm32l0xx_hal_conf.h rename to RTOS_IOT/Inc/stm32l0xx_hal_conf.h diff --git a/Testing/Inc/stm32l0xx_it.h b/RTOS_IOT/Inc/stm32l0xx_it.h similarity index 100% rename from Testing/Inc/stm32l0xx_it.h rename to RTOS_IOT/Inc/stm32l0xx_it.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/croutine.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/croutine.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/croutine.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/croutine.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/list.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/list.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/list.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/list.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/task.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/task.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/task.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/task.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/list.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/list.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/list.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/list.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/queue.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/queue.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/queue.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/queue.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/tasks.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/tasks.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c diff --git a/Testing/Middlewares/Third_Party/FreeRTOS/Source/timers.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/timers.c similarity index 100% rename from Testing/Middlewares/Third_Party/FreeRTOS/Source/timers.c rename to RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/timers.c diff --git a/Testing/NUCLEO-L053R8.xml b/RTOS_IOT/NUCLEO-L053R8.xml similarity index 100% rename from Testing/NUCLEO-L053R8.xml rename to RTOS_IOT/NUCLEO-L053R8.xml diff --git a/Testing/RTOS_IOT.ioc b/RTOS_IOT/RTOS_IOT.ioc similarity index 100% rename from Testing/RTOS_IOT.ioc rename to RTOS_IOT/RTOS_IOT.ioc diff --git a/Testing/STM32L053R8Tx_FLASH.ld b/RTOS_IOT/STM32L053R8Tx_FLASH.ld similarity index 100% rename from Testing/STM32L053R8Tx_FLASH.ld rename to RTOS_IOT/STM32L053R8Tx_FLASH.ld diff --git a/Testing/Src/freertos.c b/RTOS_IOT/Src/freertos.c similarity index 100% rename from Testing/Src/freertos.c rename to RTOS_IOT/Src/freertos.c diff --git a/Testing/Src/main.c b/RTOS_IOT/Src/main.c similarity index 100% rename from Testing/Src/main.c rename to RTOS_IOT/Src/main.c diff --git a/Testing/Src/stm32l0xx_hal_msp.c b/RTOS_IOT/Src/stm32l0xx_hal_msp.c similarity index 100% rename from Testing/Src/stm32l0xx_hal_msp.c rename to RTOS_IOT/Src/stm32l0xx_hal_msp.c diff --git a/Testing/Src/stm32l0xx_it.c b/RTOS_IOT/Src/stm32l0xx_it.c similarity index 100% rename from Testing/Src/stm32l0xx_it.c rename to RTOS_IOT/Src/stm32l0xx_it.c diff --git a/Testing/Src/system_stm32l0xx.c b/RTOS_IOT/Src/system_stm32l0xx.c similarity index 100% rename from Testing/Src/system_stm32l0xx.c rename to RTOS_IOT/Src/system_stm32l0xx.c diff --git a/Testing/Testing Debug.cfg b/RTOS_IOT/Testing Debug.cfg similarity index 100% rename from Testing/Testing Debug.cfg rename to RTOS_IOT/Testing Debug.cfg diff --git a/Testing/startup/startup_stm32l053xx.s b/RTOS_IOT/startup/startup_stm32l053xx.s similarity index 100% rename from Testing/startup/startup_stm32l053xx.s rename to RTOS_IOT/startup/startup_stm32l053xx.s From 0113d848f9a830c88f89f58d9e4230b1978692d2 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Fri, 13 Oct 2017 18:26:52 +0800 Subject: [PATCH 03/18] update rename files --- RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1019280 -> 1019380 bytes RTOS_IOT/Debug/output.map | 184 ++++++++++++++++++------------------ 2 files changed, 92 insertions(+), 92 deletions(-) diff --git a/RTOS_IOT/Debug/RTOS_IOT.elf b/RTOS_IOT/Debug/RTOS_IOT.elf index e5d1da6d628664d7f7ae4d0cd2a1461d838b832b..14e7464eb9167873a6acdb8668eacf4d282b01ca 100644 GIT binary patch delta 134485 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

llchu+j7dcG5l(Kds} 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ⅅ#Xbs1J`@9J3q^&v+Xq;s=qZO@l{k}z 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 diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index ec7fe1e..a3c1411 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -465,8 +465,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_line 0x00000000 0xc6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_str 0x00000000 0x7a400 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_line 0x00000000 0xc6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_str 0x00000000 0x7a401 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_frame 0x00000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .ARM.attributes @@ -629,8 +629,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_line 0x00000000 0x9a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_str 0x00000000 0x7a317 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_line 0x00000000 0x9ae Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_str 0x00000000 0x7a318 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_frame 0x00000000 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .ARM.attributes @@ -818,8 +818,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_line 0x00000000 0xab7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_str 0x00000000 0x7a5f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_line 0x00000000 0xabc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_str 0x00000000 0x7a5f8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_frame 0x00000000 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .ARM.attributes @@ -957,8 +957,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_line 0x00000000 0x88b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_str 0x00000000 0x7a285 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_line 0x00000000 0x890 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_str 0x00000000 0x7a286 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_frame 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .ARM.attributes @@ -1859,8 +1859,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_line 0x00000000 0x96c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_str 0x00000000 0x7a3df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_line 0x00000000 0x971 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_str 0x00000000 0x7a3e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_frame 0x00000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .ARM.attributes @@ -2011,8 +2011,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_line 0x00000000 0x884 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_str 0x00000000 0x7a1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_line 0x00000000 0x889 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_str 0x00000000 0x7a1ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_frame 0x00000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .ARM.attributes @@ -2785,8 +2785,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_line 0x00000000 0x7f3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_str 0x00000000 0x7a03d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_line 0x00000000 0x7f8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_str 0x00000000 0x7a03e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .ARM.attributes 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o @@ -2920,8 +2920,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_line 0x00000000 0x7f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_str 0x00000000 0x7a040 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_line 0x00000000 0x7fb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_str 0x00000000 0x7a041 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .ARM.attributes 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o @@ -3304,8 +3304,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_line 0x00000000 0x97b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_str 0x00000000 0x7a707 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_line 0x00000000 0x980 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_str 0x00000000 0x7a708 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_frame 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .ARM.attributes @@ -3501,8 +3501,8 @@ Discarded input sections .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_line 0x00000000 0x472 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_str 0x00000000 0x6f9f Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_line 0x00000000 0x475 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_str 0x00000000 0x6fa0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/croutine.o .ARM.attributes 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3600,8 +3600,8 @@ Discarded input sections .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_line 0x00000000 0x6e9 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_str 0x00000000 0x9ecb Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_line 0x00000000 0x6ec Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_str 0x00000000 0x9ecc Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_frame 0x00000000 0x12c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .ARM.attributes @@ -3979,8 +3979,8 @@ Discarded input sections .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_line 0x00000000 0x504 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_str 0x00000000 0xa114 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_line 0x00000000 0x507 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_str 0x00000000 0xa115 Middlewares/Third_Party/FreeRTOS/Source/timers.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/timers.o .ARM.attributes 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/timers.o @@ -4132,8 +4132,8 @@ Discarded input sections .debug_macro 0x00000000 0x416 Src/freertos.o .debug_macro 0x00000000 0xc0 Src/freertos.o .debug_macro 0x00000000 0x8c Src/freertos.o - .debug_line 0x00000000 0x440 Src/freertos.o - .debug_str 0x00000000 0x6996 Src/freertos.o + .debug_line 0x00000000 0x443 Src/freertos.o + .debug_str 0x00000000 0x6997 Src/freertos.o .comment 0x00000000 0x6f Src/freertos.o .ARM.attributes 0x00000000 0x32 Src/freertos.o @@ -5730,73 +5730,73 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_macro 0x00016835 0x3dc Src/stm32l0xx_it.o .debug_macro 0x00016c11 0x322 Src/system_stm32l0xx.o -.debug_line 0x00000000 0xed85 - .debug_line 0x00000000 0x9c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_line 0x000009c1 0x976 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_line 0x00001337 0x93b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_line 0x00001c72 0x1874 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_line 0x000034e6 0x93c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_line 0x00003e22 0x1015 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_line 0x00004e37 0xaf4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_line 0x0000592b 0xaf3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_line 0x0000641e 0xb87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_line 0x00006fa5 0xe6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_line 0x00007e11 0x1297 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_line 0x000090a8 0xb77 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_line 0x00009c1f 0x561 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x0000a180 0xab1 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x0000ac31 0xf1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x0000bb50 0x59d Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_line 0x0000c0ed 0x610 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_line 0x0000c6fd 0xb6a Src/main.o - .debug_line 0x0000d267 0x89a Src/stm32l0xx_hal_msp.o - .debug_line 0x0000db01 0x9ed Src/stm32l0xx_it.o - .debug_line 0x0000e4ee 0x814 Src/system_stm32l0xx.o - .debug_line 0x0000ed02 0x83 startup/startup_stm32l053xx.o +.debug_line 0x00000000 0xede9 + .debug_line 0x00000000 0x9c6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_line 0x000009c6 0x97b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_line 0x00001341 0x940 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_line 0x00001c81 0x1879 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_line 0x000034fa 0x941 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_line 0x00003e3b 0x101a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_line 0x00004e55 0xaf9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_line 0x0000594e 0xaf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_line 0x00006446 0xb8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_line 0x00006fd2 0xe71 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_line 0x00007e43 0x129c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_line 0x000090df 0xb7b Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_line 0x00009c5a 0x564 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x0000a1be 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000ac72 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000bb94 0x5a0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_line 0x0000c134 0x613 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_line 0x0000c747 0xb72 Src/main.o + .debug_line 0x0000d2b9 0x89f Src/stm32l0xx_hal_msp.o + .debug_line 0x0000db58 0x9f5 Src/stm32l0xx_it.o + .debug_line 0x0000e54d 0x819 Src/system_stm32l0xx.o + .debug_line 0x0000ed66 0x83 startup/startup_stm32l053xx.o -.debug_str 0x00000000 0x85c9b - .debug_str 0x00000000 0x7a349 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x7a762 (size before relaxing) - .debug_str 0x0007a349 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x7a574 (size before relaxing) - .debug_str 0x0007a5d8 0x2c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x7a407 (size before relaxing) - .debug_str 0x0007a899 0x11a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x7b2cd (size before relaxing) - .debug_str 0x0007ba3b 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x7a6d4 (size before relaxing) - .debug_str 0x0007baf3 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x7ab15 (size before relaxing) - .debug_str 0x0007c268 0x4ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x7a77f (size before relaxing) - .debug_str 0x0007c757 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x7a6c8 (size before relaxing) - .debug_str 0x0007cc00 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x7a55d (size before relaxing) - .debug_str 0x0007d039 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x7a882 (size before relaxing) - .debug_str 0x0007d553 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x7ae3c (size before relaxing) - .debug_str 0x0007de77 0x5993 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0xb8b0 (size before relaxing) - .debug_str 0x0008380a 0x22a Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x8cbe (size before relaxing) - .debug_str 0x00083a34 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0xa3fe (size before relaxing) - .debug_str 0x000841f4 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0xaef6 (size before relaxing) - .debug_str 0x0008528c 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x6ed4 (size before relaxing) - .debug_str 0x0008566d 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x93cb (size before relaxing) - .debug_str 0x000858b0 0x325 Src/main.o - 0x80462 (size before relaxing) - .debug_str 0x00085bd5 0x1b Src/stm32l0xx_hal_msp.o - 0x7ad4f (size before relaxing) - .debug_str 0x00085bf0 0x47 Src/stm32l0xx_it.o - 0x7ef0d (size before relaxing) - .debug_str 0x00085c37 0x64 Src/system_stm32l0xx.o - 0x7a19c (size before relaxing) +.debug_str 0x00000000 0x85c9c + .debug_str 0x00000000 0x7a34a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x7a763 (size before relaxing) + .debug_str 0x0007a34a 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x7a575 (size before relaxing) + .debug_str 0x0007a5d9 0x2c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x7a408 (size before relaxing) + .debug_str 0x0007a89a 0x11a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x7b2ce (size before relaxing) + .debug_str 0x0007ba3c 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x7a6d5 (size before relaxing) + .debug_str 0x0007baf4 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x7ab16 (size before relaxing) + .debug_str 0x0007c269 0x4ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x7a780 (size before relaxing) + .debug_str 0x0007c758 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x7a6c9 (size before relaxing) + .debug_str 0x0007cc01 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x7a55e (size before relaxing) + .debug_str 0x0007d03a 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x7a883 (size before relaxing) + .debug_str 0x0007d554 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x7ae3d (size before relaxing) + .debug_str 0x0007de78 0x5993 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0xb8b1 (size before relaxing) + .debug_str 0x0008380b 0x22a Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x8cbf (size before relaxing) + .debug_str 0x00083a35 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0xa3ff (size before relaxing) + .debug_str 0x000841f5 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0xaef7 (size before relaxing) + .debug_str 0x0008528d 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x6ed5 (size before relaxing) + .debug_str 0x0008566e 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x93cc (size before relaxing) + .debug_str 0x000858b1 0x325 Src/main.o + 0x80463 (size before relaxing) + .debug_str 0x00085bd6 0x1b Src/stm32l0xx_hal_msp.o + 0x7ad50 (size before relaxing) + .debug_str 0x00085bf1 0x47 Src/stm32l0xx_it.o + 0x7ef0e (size before relaxing) + .debug_str 0x00085c38 0x64 Src/system_stm32l0xx.o + 0x7a19d (size before relaxing) .comment 0x00000000 0x6e .comment 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o From 77395ddf24862d561894eb4f411ce8e2140114aa Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 05:20:56 +0800 Subject: [PATCH 04/18] Imported HTS221 sensor, able to get Temperature and humidity value --- RTOS_IOT/Debug/RTOS_IOT.bin | Bin 17340 -> 24452 bytes RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1019380 -> 1037548 bytes RTOS_IOT/Debug/objects.list | 1 + RTOS_IOT/Debug/output.map | 1387 ++++++++++------- RTOS_IOT/Inc/HTS221.h | 141 ++ .../{Testing Debug.cfg => RTOS_IOT Debug.cfg} | 0 RTOS_IOT/Src/HTS221.c | 143 ++ RTOS_IOT/Src/main.c | 28 +- 8 files changed, 1102 insertions(+), 598 deletions(-) create mode 100644 RTOS_IOT/Inc/HTS221.h rename RTOS_IOT/{Testing Debug.cfg => RTOS_IOT Debug.cfg} (100%) create mode 100644 RTOS_IOT/Src/HTS221.c diff --git a/RTOS_IOT/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin index 46fe30f89f35753c38d85fb8ddc44e747c9f2761..5d436247a9d195d1203885d774ff3461651b681f 100644 GIT binary patch delta 10207 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 S@FxJ>e_?qU|9Lj1!2bY*=nEYH delta 3063 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

?^&eJ}VJPgq@(D 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

tbcLK>K!VXghph zH7MqcV1Q(03r;F5fD=)W!%G#6L5Phg$i+(qp)8_MW!r(Y-T<*ihj!*~l0Qr(t=`ts8N)h3dU~37dLsE?QQ2Yh$>Asdw z4wAJ%E+`d*#)yL4ETISzb_=$aa0b-6zYc`=BOvCKcoc-%BZOpT>Ih$gXhJ*-f(gOj zmTcX0K%-!Tgtb!o5MZ;E5_U@IycC?$LGVC$Qm}Q;0d`3#0iRonTk}tWr=*x*v=hm- z0i*~vNGOof2EZCAC2SV#n8Z}v`+|@hp+K->iU7q@N~o36WdOX>KwCm+qu}dy0`N&1 z#e{=W`Z?f?loDhM)e#CseFq6_BD5Qu2k#Hi1A*-WDPcB<^-9D$0}$6O04ybosfjhf zO;SvFQm|tP+okk5fNbA7!agCbRh_FCbubjf6o?gqFKH%@49khK{B_YJ#3Apl9Bg%P z5C74OaVMX_)Z3)Ln?pihB89I(bVS*=8X%`LB5ja{*OXC~OR=g628|B13-3H|aIv#I#f{+cXrJOz zxGEE#$Mgr3OIBrpZcl>fR-lMfodM`C*qRE!RZ^;4(O5ayfXGjV9S{q*ia<#-aa&kH zd`|eNqYs&fy6ALZh~-V}B(hFO0?Fc&Ya@;=Y$3-;ct^%PXgy|6l zxkjlV%!(+;&6Wy6Q$#^-u2c}_MHJ-bgK*Le5*I`?+%l;k zERQJ2t&|GFs)&NzYM}@PiEAPna%+VqNLUw9kh@zd2=_%4d_CQR-3u3UXp^HUfTcUJP z^Y2{n+(5TPo(>!>ekmHenLJ$~ti=q_n#oTE(U!;)0s0kTr4)yn$?#~0oUlpCn~6Nu zAtvk&i-|m-Att;P787|mLrgdu787~MLQH5AE+H`m1aXL17M2tHNjYImSWFxz#e{~i zm^fXE3971zY&tmiw%fDeS|=U@g)2Rj6V58JSY)+^)iYbN3jj+&tU#hXSJp(&jy0^D zEg<;g8Sq&UjfwJXSi^df=f4`(&3hmie+>A%6Z#*m!GzCuHLNFjhO1%KWQvm16aadG zXiSu6v>MhD&t34xn(=nR1yal&gq}f*RRA8vVDAI)D8xle%@!b!B8YbYco2Xks2cTF zBdds+AeMrBnEx6zC@;OaKLS%gh|Bu>skpr$7X<(g1o^b_Ek5P2v}dTN;k0he*mHD z5E#J?4aS4J?Khi=A;v8MK}!e;r-~g7j8Ls0Go2 zDBX!m{yuC5`n(o|ScGo{TTA#}N(qv!C0JR!%`b9;pP40afkI&y`VgJ{!1Yz-n^ zVa{54q?n#}NwIQAv8qq{oB%>?6BcHNMBOX|zeI`&SaggvMu-(`kPt7WgcMNg3ZvsP z;h~D~h+yjo^g`RJ=BU3a`V&q60odjxM-?= zX^;k@S7HVTXCMNN5l>k%SSUn6LJv^u8l^$LFsLHXpu4O`uZuj0nHaGEgv1Cva$5A$ zW>Rv9(aME9Na)dpCUu0_pw=lC!(bqY{)nSM$ngX~K`z-~DWDca3*tB_Cd>+piF2eF z5b`ew%Zc|(`4+&llFdLS3PheFgClcsABYpV#EpV4Z6-b>__Ai=A;Fh76Wj^cqyf-h|*rU<^QnV2v5@@C>l5PE(PFh;U0+f>O;2h5f%OV}jYd4Tzn zWuXp8c77iES02g_Z>qgmvPQ^Rd&DLX+KWJQ)GwhB)jj#P6GBvA=MeFoY7HIg3(Xpk%$ za;9Y2kaH!=hGb3=kGXt9vaIKiBzq2E$s)5l(?v7RTZLr9RmJuft-3;rHv%4% z><+*l$-V_RD%no~pGnq0(Hv3Ypeiw(scuo3kC`M8M1*aEts^`KQU`WOnn#VRqQ+yr z#?gT*YFkZPY!GP7#HvHhWM!VK2`U@W>SWXdB5DmmIM&TJCP-z4e>sZJ9;G%x@sSR!B!B{AnpSp9^qxd))1tN$Ri`V$rWCMgeJk(66S(Z5T8gwx`YJ< zk!MD8IOE*j4er6*^SV^)GIx8xDslIAw^G~*zc4Ryi+?nyT(tmkmWb#IajN!Yp!$J^{gcA*!AX;5M?J zcQR`cTp~n~(>E z*i$iU5!@j}bvp_%{_O;BvSJu*uT-eAansWiLKGx$-%{o~7->fuyeAB*2;B7)eUzYV zqvr@pz7hsOLKAl58?EwtJqz);Dmd<{czvJ_1P2v^bTXl_HgLTH18 zV}h+Ea0k#<>4e0drP8=6YFy_vj+S5{qW_1EH70cqgqkOO2QsvI{fSPGNG??S)B0-= zjxhqQOl{s?&1)Xb2d$|=Kl2(y51FVzjn^Q0p}>tvvp^wakC+F-0Z7OfY>+TiN(sY2 zt!fU>h%MG*HF-hu?_tyX#Sbl)6k^Q0lOSRh#f zJzHAS*63NL0+M^B0palrSjbuew{2u`LeZ`qHLi*pkMSBu%M-P&rtJiH!=+O_agyM# z(}+xka@B1aZK}vm4PjOfasO8b^v{-Jg3M-}H|1!<)xuyWh{riGA4%Y9k5C{|D`_T5 zACb$?H(>cL2=#aZ@VR7v=%MxS+rmL)V59$kS7q|Eki%b@+3xXg%(iav1y(ONE8qGh z-=uHbl9^{E+aZ?u1L>2H*;CXxAs^Jb3q@_KqPAnaw$Un&+E&wcN0F%7T4IafuhWPj zrh+<;oJAS$pvX@R;jm!G6W)?iLIz^$+IT{aU~33NrIavCN(r(=NdOJ^FOW9?hfK+iuiQ|W*%pEy_w9F zQcm|7s3y)8XSq$k#f5Qs7i+O>#fQ3EW=v=l)IpHvQjGf(T`5FC0(T+8!9wze>+BJ>k%9YNVfE0`XFCE~Oc$=DA_3o@h?c^!fg=Lk`dum|LAQ>w2M z>MBB59jW@Lx>~7QH{Ik=#6b-$b_-u)3G_wd=pnZRl9j?BNLVA-y0riqEpq?JZF!yr z8Cps6E+Acb29|jUE|8)Hoq*EO7y_NaQu%bR`_$~_CiS)2y5}yj+TFLwOmLSzj2q=_iJ9ew23j#PCf;F;lc&+F^=4cPyq(pPxns*$GO@1#Ka}u( zF-w|NTx=zTmiNMJ0SKr3?EtN}U{x2|0ntlB8@at2h#({Jd_-I+)V1`nIxHrp2}iYr zJP@sky`-4Hy-9Gn78xiiBeBNNGGACmI!FVwH-d0ftIQ3C#cU9L6Q30^Y6;JU#l+X8 z_*=jaVR6(0E?2({3yCyhYZA3m>6++(aOe=YC5fkz>HQoCT6(9k=MbcEUm1bGJwq@V zPT&?H=yq73D01l=HLi*p*LsXS=dHnrev|MPX&CNIvO=oSpo|guK5-y- z`k2=`3iI`_6cM%ywwAC%N(tPR1f?YG1+_jqtb>I6moQPHbP-f8D5j6+L40LQwZ-cQ zzX$Sb^R(h_{vXpL^>PeSZbgEcQ^wqFqzwoSLEs)DturwglFh;(Qa{{3grYb+upOFd z;%t0>;#EMJ392v1*PT^O1S)lDE2oA8ui zYYAIHG8J;$q=K+Lq9C_JDhN9x3Ubd%1%W$Sw9c?fb`lOgrn_4h*AbL)^n}mNGnfaq zGu=t!T4n4xbe2H-1PERk;n_Yeo*-p$=B%H4`a3M;j?X3w<*7;plRh*rY&kc``oait z2ZYj#L`4v;6l^VFx|9+mTT9@M2Cd6<_J89+-el0}W)O-*I4sy&!dp^GI3lHlqf$zE zS4s)*Nhv|HwFK^c&^p8OAW^A>!2e%Jj+-{H8Hr4ey_5J}LRcYlD!c05hxrP9k`>4K zL(5%v2Ax*)TromL2dCmwcp8tF>0?^Thg&&zsJ0AGzCfr&!Z;AV2Vc}o=1L*2AxxF> z1k~Nc)EWf67nAg)%HTyp6eMur$JUvqq){3)4hM3*#nu*-?3We;09n4aEs+WRcCE8 zwp;FmF;=FLV!I2+Soub!?LIQb>XS3uMh>vL82{qKhy}{91U_%EAoIE3!frwe!q{{~ z{D~D0!4bI-K%Nw%XUV@g0Delp0LZV|dGo^0#YY19ZT4~?zlmN3ToB`~9*g`OjB$62 zwdTk26WD{u$GG^GUgNAQ_1J<$oY-KvG|}BS-Wt<|pQrQ0m%2@cOt>E zbXg-qfmx6@q`MR9ttm=(oGmmdQ8R|>CuMA!sAzQEl#+3Mdvv`v+R z576kJf9wl<#K!PCAQqq!e{Jx)31Q}QXMx*qidAIbaoDUW)-mH;fje?4+SK2T;dFP+ zRBL2t?W@Xt8Xg8PS}~Bz2A2WTfI(m}a49eksQ$3E2^z5X>nc7UDX}Z^u}=n&k1yDj z8Zb*e7079D#^)6GN+4&TXSV~xiC8RLBPL4+0xNpBv#vrupS-}m`zi|?kbLBpH&|)C z3NTf`jHpeZIeD>(@o?|WuBi48RvZ0JE^${kSOY_QahJ%x&Oi1bwQpx0?!8!l#bKmg z)h`R)A94$YR69=cW`_NT_Y>?dyiW)MdF4)fwe25RZ5=4Q`CfO1HFhXoM$-ZRnn1jc zW<*|$;yBRu_i^V=!@++T;VguCNw^f)glm&|K>pGG+O$0M)v=V37_^BRFjn z)xxc6Vbi36cy*3);5eXK08}lK2@(H>X!ZCtv@HcH1M%g!ZHKH9$OQRU4BCKj76bUp z0_{Y2DDYgl8{25*&B*MhJg7yh)S^@{5`U~WLpvL>Q!7bP`MR)>Kho~nfy&>L7(`fw z=YWQL!5k|$lcNYn5E4fa(v~n`1Sz`Oy4%f~W%>PFZi(v&xtklUG{IFebiC2Za>&iL z-90m{oO}*197@o;H7`-d)oVytwuZKoImBQe?|-r75X0fb8=pL799~EqUPxT1ghLF6 z7ZTUn;361Y59LV(i7hDLNIj85&eAX)Npy>@#jVu#*;ZOU#~zM5 zB#t{IeuJxW#<6F6vh*^Y-{|rCJN5CMYy>&}aLiGW$aAbwVTF`&>>+XNA#v;>HH2w- zy2xEIzb4{`Lh36al@>=Nej}uOlIJMI!Y_4;=U8O}8RS5uOvrOU5-%WUMdcin(m@=Q z_~s`mCC6RTWPO;(0f}!wlJGL)oa?MZdLNEM9D_(4gGd~MNPMwICCG7zZf;?q@*NF0nv4xaJ&L3|9yM^b!5A~Q=azo$EAzV%4iFbok(L7X*I^Mah^ zQ<>|BAz~D$8Z-ek6|@k_x@ zkvMFTIBbzPT&YZw9|q#k#bJxYVT;6Ji^O4z#9@oX(Me^BJVz-KMyGBO#~i9SJgJ1p z^QMHv!O2aUWu;}3;}As}2~uu3EIm2M{b8Y%p2(qx!w%`&K`r?=TYpYS=VFM?#UGu< zt}Xp%&Y7n<1GF;i<1p}ShTG|O>u2qS{(vqFUeSfcLH%q-%kOTtK6}@AtE^@BRJ&d` zb`EMuZ?L~L!MNFn>>RhO(SCx`4;t<7Mzkb7YsZ^4KiiKj-lqR-AAV<;65 zat`5l@Id?u?XZTH2Y1`)rt#LbEzkd!%#bB5Z|{SB!>d^2%U*OVb}O+Ln^@>r*#Bi6 zZotZM5pQa`c~ye#|FJ7pn~Y7g6At&aG&2ye{h41Gnwgm7djVIHmhY|+7}fC#xoy02 zG4`;t+SvW4yyHM*xApyLgd03yXLV{ENt-~bolC>_#PVto$rd#NM(hd>$@6^W%*VU%;`S6 zqIV*SIV#V$xrTO=Ybl@Mw=3@Y8$1PlmhY4hHOBZB*A-DYGu9ry3tPUKm&aJXS7PSp(p+LE&DTjU^}Gkn>VKA53ksjMz~XKAfi8HgeFh@Cu)Am?LO=iIJG4MzgP9e zT5ER0+do1+ZEI)n(>MMX_!*N?Ub}H3w&Am9cGvMc>tq&wukMGHK<(K(V)1*;LCnG1 zbG|q6d)?wx{LWpA%}(t387cU^@d#rr_ytqEDGj-{7lt1D7=fF!&f#~_4;Dm=*P_Pl z<@){fbh~~HBi^O=M^)PQ=-Y}Bx=&w$;@J=ANwnOoU&Z`Btk)qM=slV}{MsKNuNm+? ze#hK`8nwr6O~UW^Zz!4YN^kI29QrHx`c9!w0F!?G9eyYOl8Pxeehz-x1E=tN^*NTQ z>DZUxultOt%#ESs`tlC=owuGfaYH)V)}CLVhTj|aCgXR(Vl2gtqvSKhTDX{{xOog~ zVo~n|{4RD`pe1pvl~7wd1X!wPGlg69-6aSu)2B1bx9Y#4o8|g~c)$w%@(*CLQlG^3 zxJ}#UGeN(7s-^&Kv zp+8JN&+7YGeY^CV;LhHo_eEtO&OPi02lOS!5jv!A#~SYT8~Q~o`dj)2oW1P#^iSDb zAM2f{JE_mYa^`mEl>RVI`}P_ADfX0e`T&N$*JB7vjX%)aa$^;`w!Ox17;=s2wA^WI zWMw>O+`-K3HXdg#4jFf{)!sBdVa2~=Y~wNZXXCejLFgl60K3;oqnu^@%;?1ue-$z| zvqio){&51Z+^l6ET4U}~42e{w-J1g@c^W%#Udc+)m2BF8z|6&qPnHHmOGjCx< z?=Y9Kdp>J!q?cXhaUKqP%tAWbXU^&kIAC7H=!eWRbp3`ITE=wWGAA?NN6lBe1Ku-x zusClrls>igF~gr*r&(WLT7O`ber;`It9@&A<6-iHwVGL5 zX5Y>VUTG(@)>hk3!~oXX@Ad%PZMPApN_!cruy8|sx*%hqy zGxk=tAv*$wc$eM>LEQl~pB=xJvXyX;oyW{f8x`xnl;?4H}4Yk64gbow#= zbIyF8fS-3pvkiAS8+pR`jia%IyPa$4<^^X8)7|4-&JpCdPAV&JuhW)&=0)d?3lZAq z%;4GMCFkeV?RWmj!}n$9S9Es3dEXCV=oRNFo^uX5*RyD^I&X7KIphrHSoemL%2Ukm z9Un`7*m;lD_NEg-aGySw9$bB%4Y*(b zn$__${TBA&jrz2YSpN@Thf)ML>C@Q3AJkKMfc#lcpP zMR6W9sy~Fu-9~TW%~+cN-J=F>snFm?clN$L#`QdXzi+%mXMZ!kWp_PoywBnMYvUDE zaY&S4+^5X?_}(<0a4$=F#oySPFY2dQov-O#*bINv{XA#9r~i|olX?zo?tZKB5&QS{geQ2$dnVx+%XvrQJsfUAYZ3?Yz+4eHjQSFp znViMb+>{$x%To`s0k3+LZPV~eHqEqi{GI+A_JkSMSKw!+v2JE{qVubZd9=(v!2{x& zS9#KY*xJY5{hBqBxqZOiB~J8qOFBX?IK4u&yvLWrW9BX20S<2u_=j_R`NID(PHiGb z6+R9zGjC&epLG|+{+_kZ)SS1N6Gf*q7&SXR)vMGw-|f{XE5dWUOan z{o4GRedTt`WJ>Q_?}T_HZE(g=dbh71hv!fH6Irb7F?)DC-WEH=0lXPo!LIXU{3~c) zk*TU%m{j$vteTq6tjkq;ya}7v^=Ejry=J8IK>oz+$g0|CU%-yE+g`!m^|k$L9zyH< zzX-9PpY_jRi{2V@KS#8?Vln|D4P>4t))(~WSxtNO<>GMCyEA_W^fI>ND>`=^wh!u! ztesc&RCd2ZdS@2sHN8KN^w;$V81Hxb=p4WaeHz>MSLP5_Wav3_7?U_+9^`>?%7B|MQ#YJ);9#1t#1fM z*z!I=+!5`0*pv5RvCKQ~h~m_JPF%e0j(f*WQ)LOLvc#b*Ni55%cVt=q@Qz(RI9!(Y zt;#Yy&G+^M-T)cu2B<^y1}NRK?8?}3-dA)KMXq}{Qsk`GMb1`5j!{L9-UHdKi+tWa z(CElLkkjfODCoxx4{mOp2`4T=lU{jYfBa5LzT^tP?4L7m&Ef(0owIome&yzf(*ZoOHIKF7vZ%qK{U__!>vLr~hP6 z2;Zg$T6a-Pbs_7pVc5=HC6nr9ax9oy7smBy?V@Q z!r0F!8W-a4_|Et?a&Ic1oP+f^{k4u;a#(k0U1#a4&N`|( z!(>Q!YNJ!@!}`24*%(`O!Oq?~bH<5YHfauvH}&Fi;eri+rNC3N9;q@H<^}ESZZEur z(^GMKyUV;h%<^`p-oY-scM7;3>1IqvJGOiQ=8EDC z+v#3{*GT*scIv{55I>`no3-6e(KFqWpWAu)o$bO0Uqhq;S-!MnoE0o{i=J&47F=%Q zY(J0^bGe@5uHS37>)j68l3d^IJ1FgyXLr@V;wW&d9<|eF zb+fxw22h9#3VjVHVd49Zzh+*c&wmPx-F5Gen42o-?z2B*u;*7tk>>U*RO{%z?vyQdy8HZZ>^L`Y!j1{`^NGilmia3^#`hX#OD(fSPw@?nBlidW zVqfnB6y;f?zi(oqP#Od5g6?aP70Y}_kM*@phI*yd*4M5r)V?PEnt#^^`m_`(%u9T? zw}Z$sztZD;&0x)~b{pT*X*AxHp}X!0JF#84@1-1Jw8lvA`Ep_Ol|9HUdCYF-{{Dn* zhX$(?1uACh5Z|B%CNgcP>f)EGEe1@!_pc3)2Iti&uENxH)5lI?D#sS++6B zw>ZSn%$zw=&E6$NX74Ujvv(uBvv(|t7`=vb*3tf7&)S9lchh$NX4Y<*UW<+N{*zg| zw&zdV8PC7fGXErJhR6M>A(&lEb6UA-tWIdGL8`F^tHv6l8f$2zu`X@h zSi{b1tl|GtV-2@_L&9^dBju%sITI}-r&>ow8mscZYb@jPzqZUdjX7@P^7@wBzO*m$ z58(4rN4Mz%ict1xZl9T z=9u=*g+{5*EpP8!V~q2;zijUm8;5=F2ko6gBhT+9q&c}pli%%?<`fub{cb%G?0E2zMJ1!Nb4!wVQOW#5)4N>muD`))=Z1bV zZ24VJr#!~M!{k6;XRXnghjaZB*vFx2$%$`1sh@++e#^{hZ$J@zu_sj7?qL7w&*Xd_l|cJDfF+!Kc4>JNccL zWJ+-_%JEv5|<0D}6q^74tBzzcbp4IfWW?WWw z@1D6ik@SPz+*=-Gqjqa~;z8#^yNC~e&4&YeNpWSb+!Di(9gdHJ&2JMS9q5rB@8-rn z>J%9bg>Jt`osu*@7&gx&=sgDx7+6}VvU94?z4cM2)R@=Zeg09WYezmNHn*Glpwix5 zva?5(_Ev`e9`1LKI{7htZfyR+)~|LKKkj6@36D8}ma$u$k$McDA+ulHM@_m5VQR~J zk2!7pMnO;a^ItgW9r#Sx{AWkqY*RGA?9^Ymp54>U-sW6l_>0}C+t67i7rSe=Iem?@ z#qKNHoUX>?l9n^uoY!?@Z;88SyVF0PPle6<1A6<&5zFVp=I@jAwBD+h7UK)WXPl8n z|6cCwXPj9^d2jdKXPnVSN~zmzhf`&&DRmd^K;7;wbsyQ`a>IvT-jUsS2O zcEN@2pLaMn8e1=P$NUO;#CHVlubgW;@p-WM+xB`}&9HQ*$muztr-27(Jj+b(wj;*U(c& z^^6>`e1vR1iZfjHWe|q5$>+)DRtQB2Mxq48IjZvbjM;2~u3EJbpEjHOAyLu!*x7vD z&{NwPIWlW}2yGU84^i$VmtQ_W8S;6w`3oFbaarpJ7})2Hb=1_irSl6;JKNaO*X^?p zZG5(`J82)9V`x8j#Xe`Ufp@F^w$G{e&%pyfL)#Y9lKH7que*D1cJ6c!|IE499sRr$ zbl*SjT+@=++nJ%aJa^a`qPtzca1z~hy8}LV?;)oxzDz(z47~4jZVA2RTyMCY%bX(j zOqFA~$4@$rySWTKxa4hTb2;u$4LuxcBbp_dZ#3Ay>1n|ajf=q^ z{`749Q_Nta5hGLN+=uzNrK>jJ!*=tPXqXS(%>#z6Ux>^yui2HoZx}#qEO8GWbpj3_ z$D6C&KOc44m-CUldCt&t1`H79l_jc=^C7*tMQEfO_-X9jSYkLbAAERko^VUwak}L3 z0lxX8rkgQEB_&9;r`fUS)(PU@OdfZG88gpl(-L~e`M}qn&-TqedYAF_jg42U-cVWY z-uM^i0t0U%KmHdduOpx9tCGY*c3kFH%s-rp1o8(R19i~ z{nYuyXH*Vy|M3NeXFTe^;Y$px=LX&O#Fq}p2l9hrK(U}WP<+c1Unb1k*YZkB;xa2P zIJSCH?M+S7hEAK_Qn5SnH|zb4H(WEbVdlJ>+}COY*T;_NHDuD@8>Ua6Hn(L!UEp3l zZr-$Onx@U2GVg}D(^}pf6X;{OL+=QrxEbRE{RgWTq6a1Vmm6z!@j@mWkJlSnKqbcw zllbEmM-n&{#`VU=@qv-L%~#zT-1V~qZQbuD1WI|`(d&x9D850x?25pZws?cuy=5}= z=dK70ZNtkCIw9@FD};E1dQ^R20=wAsObWE;#mB&jfpi;_ zcm9!X$)rF>y9w-a_nF1;x^7~?k2y-bOiWSGAmGe-<<&~RDs)IzEpQgr^jf8 zF-7Y5w*bV*4D*FM+Ph={)h?)n=8opYY!yW;p$(Y;|N`&=8h=$b%! ziC0cHD%=2GwVt$x0DqP2{%vDuCf=+U$7lx?3$tUQPz;L~?S-|ULB87PZl4rL5pn72 zOf+uf<$H)lTwE2$yB{nIv=`QV?eUa5XkwtPfqYMxg98b;5Ex0B#r5WMTr{6dt3t$% zB)#9AGBwctzH0+XF}qo6{MEW84M)2uds<< zZm!_bEVH9@?AwD9qdF#v_-|YrNFAwcR8#$TVHppR@wWlwZ6f$9Y6_%BiV$up<*rgz zfeIeyDKA>y6j|F!yGFE4jtcVaaULZq%&dls@IzA|)srMo+1+TSzL!wZ_?jwt9&pOd zS~of5$;0l}SsEvrAmV$dTXics0Bh~KKx(@3F$ez6tA!t~^VCAQ>}ATFIcGmn;Y#;| zHG$6V=K6p&K7$JUu`h|NhQnFsg=e1^Rt=}(t29)&zsz|?ntN<+AhnAUAAuWhpI~ZA z_oVFYh*ETYATvjac~p9HR*x{-0d}8HM5QRZMUbgV3F{xaK9E|d^tB$n*Pm)vW)=1Z z@QubmY8w^Lqc57_@fVfDG5&^vRQj@5?v?Wb>Hp48$-nv+Zo~%&t^G)Ox%L~MMCtMu^p^sF@`PuiL{KEE2{yY1hsBVrGBUQ0j#opHKC-M_L8~o2Y zHxpL``CfnCX0zar#})NGa@;Fnn@V1Njg%GEVOjuJ7MU^Bi7%7fk_Cabj*RNQ0aYDU zo4VqqSwx9+&OwQ3vKr9)Fat1K=%QD6jKjYLpr2~3&GKBV%N#nV>d~{flw;zeXaO#U z>N~j)U4hO{L>z@7m9{soN)s-$JdaN$KZ&$B(yP3vJky@7^nVbJ6A@Uo$XNPKGNXNN z3S_3MjCl(kwwn{STMdlZrNf8HP`GmT+!U@HsI=KaAMTE5>##5SU}YpO#2H?tIY+jo z3Qm`839Bo;R-=SCTUoL7R0gDTCaY-;ZuU($j1l|5!a$~IEQ+UtJbf?A)1ZBnOK;`3 zaw+19zKN2^!vg+C-HdAnAUlPqmviSeR5%UQ0mRu4_A1PHqC<#vAfsvgj}7Y0+qj=B z7lim@r&Lv>Iuqr*q6*91UtWO+?8p>P$$eEt{3pGtl|ylTShpz$rzA|5v2(LiGRzq{ zejld7oR4GvN!0Tr4PGBd+Qwtc4>$7M>AU&JB`n*uNQc=X`hO$f2Onh}14T^6M%6`B(EpvQiW-w z!s^3O%BWW#kgDX_B$SH}O5OGI1MS@OTLQ5$l!=c^MN?!msJ<~(QJHhf#W$z2V+ykp zcgZcd#3awZRkFvaV3R0gUlq)Pg>tC!$XH&vN{I6P!kaNU-_2a+No2X~G4!fFc^#A( ztudJMQfLhI>JwO1L!1*Pufpn+SQTcfUOmIi5sy*&!_4t9l@)$hbR=3{@zty-Zze6( z$Fr)us$7^`9(5~DTD0N(GUduf)rtDRR>@Udm}=|fc*5x6?`|W}y=MKR8RKV5Vxp&Q zq?wxJodBJvZ*x^-@r|xf_oABLG@V}|=ZAS>&H|z07cLLvu)Q8y9>|ZRww+zA{RRK7 zjyV<1=qd;NU}|YJ`{JWuc@M@6@sF0u8$Y9B>&V!mqc8(YR$!E4M#8u!jK{+G!-_zD z=x}#L#GJJ{h8X7TdMU(|G0e&JEbyu=m@eh>Am_!h3WJU0i+c41veK(BkyRK|?IGb< z2{^y5ZZ7G7v+Is00Zy(DMObA_eBXtz%9xU?Pnge_t52GhJYI7X?+CQ%d%OpRC(OqO z&+|pO`np-gVI@;8zIK*P#2~*G8z-BHLH@;u>0iU{p4$THAvW2n3(#i}bq#pWjKZMA zGFg?>tM8>F1MQ$haS=qF`i9zj@Kdh7sSeB2R9fmA>p_Vrq2=}pYo&P`rY8m^mNT=A z$UoJl46Bc@S+xwSkFmp!BNNh~21wG5lF#obZ%rC<`p=THK zmXC6NVE3weiXYTBYvm>VE>09NCJmnRG+<|xCp7#{^O4!sx&NNT;bZ6ZW z$dAjzrBt?#?yqa^=rw_Mu|pxiw55NE?#@|*`QIa$R_FYuvlNQ&2f49#2J#cOg0C2i zHC*6nu=~aAKu6~YL=y(PSKb-u*K0Xc&}evhhM;X3qQaI4Z;ga)5#Bz;J#=TFNZ;;$ zb7$c9A$}q#eofX7l~5ysfX8KvnNak{P^Fi-)gz<-GdIX|L#CaHJ^-lmGS)8U;N1`kUs3TpD3wVNI)3Nn)%p?#-%Slby2<;##5JF@DY3w4g`NwD=?kfImaS3wqjkgcpdA5faV#y2pSK4tv6% zBEp*p*UAW@RrnkTK_Q9339$>pBSlD7EFTUDH4@B&{yK!0d-Qx*B=sRfyBG%lfMA)& zfKQKTw$u}*ufvJ%F8B)F_7lGNFiZK`1pV6xZ$J&RX+=T8CnX->3|A&a z?U@!=c2M!3M*Nuw&xSz7KOEJ|1BgpNs0gnxL4@aoBhVoqmMJ|G+=^!`E;9e8pU6B{ zCQ`Pip??P9RS>Ae3))2W^j+o&(|2RL)_U%it^84cuze&P68((N*SrQzY0)qf;Bz*w zJ_Ap_R9Ixd6J`SCp0FsqCro{PB%CHYG9SVzhcsA}?jB<81mut*RH~csv76U+C?2h; zFcagWHWj9?y_v1UUIP~TJgnvFm3dfhV!>2~dArs(ZBNb)>T2?enJ)ayYJ;NEE zFzvIlTkH8KN!e4Ml%v8pYAHC#kyZSqX#IX7$9%3K^|ChkTtkH!|8;x9$3`ib~l zp+o9rdQT1xheP3`qqs}dfFbb;+3Nr&cJz?rO(W~?fb9PsSY40zP z;Sl>g4LHT?HJEo^xCbwY#b1gx{U=Ju`CF;SJ`&L1gfK6P)R~_1w@SYf`V~?iiWqQ0 zR~d*LpBLVFUYL`vUVF~%dBdEuQ(=}EJB5b-QnU?`0-*e=*K=Y_MPLRvG3E_(V$2)n z#F#hC$uJdWf?IQBh)2N#kp!dZaiR=g#qrP39)-bU5O@bi&X`FThPDIxml5V=vZ_+f zoGJZ2=s!SsnMcnxQI!5|=%*n()uZS1noJ)q&%oeS2-N7y8sI#ea$w_9@-u{2dK_@# zP3dXRnKuwJDBxQ!y z3;J#dZP9-UO zToGz92=i`7*^l$+Y0tSPWq%v&r*Osd4W0-mJqC=xNhlQoSB%;}5cZCewOBhw=|uwP zg*j`a^r8Tm6;ffmh_8i`!xJ;A1~`qR3>YEH6J`ROR`Tk5c*4|kn#rp#^MtAAQZ*iZ zNGrt+q7u-6b4@DD3}A{P5~iM$PhR~hPndenMtSwSJz?s(7LL-tW`#8EMF`XtnMe>d zq6`>;Q&%cXeV!*wJ*Tj|`YoO?^_;u%>R&t z^H^T}UQd{MPHcJguY1BF8gN?5YjDaFrk>MOUVS4bqEwiA&ReN4Gx)wIOubnDM;OSX z==-SNCl0HIA@1sjaWV3D^vFE)IgX|}eExuNnJ1it``1c@Ar|@^gwb@7Fg~^6#sXPu z!uk;iA4gdEy8_{}p71pYYjPq+o)0#Eo=gnM|x_=H9)_Jlt{ zxYQFqi!i>fiTF>(v{(N~7$?Jg2+AV@zt#ugp`P$CgeyGZT7V0nmJsCazRo`S|tfkIc{F$$Ex6IFnpR(Q52 zmjOPjyaJ1^d}N@@YNsE{AlSbM z+Ggchx4IPjbp_T4?T$7skBJ2Dmi`+Azo_{RN6R_*YPQ zdjr)T%Ya&sW#ErImR!;0xYBrk+UK$4iZ1)|s}X0F6}wnrW?y0AwA=aexLB$lyw=l$ z?hYvY?8>XbYL8{`QNqu0DmKSm`LOP}V9-E`Hz(99?+d&3@@DW&uUMBWhQ9OL%|y8` zbq_@Bhs|ZSRm|qEUvwu|UNP)AGuA)s>GLNfA_qlsSKyn80(>iwO~vNF|EGawPhWmn zbqU^*;GHVp zJ&k)mVt$oSIF{hkupbY%BGyzH+|0gO5pf@L z54?vnVg~Nd46cDoO5^)`aXnl`%*e@?!LJgrZnXM8gquA1bMSSh5`i}!IB?mq_x22P z7~X9+b|Q1;bV7a+)@UiES<~0x$yCUBB{DG8mlFz+UdMOBUW29-K486_HrZ>pK2JtD z7PZj-_SHDrj zHmeE(GWL50422KCwG@y6rSLK?40PQm{Yh{Qt4Dz|@nkrk07TmI{qW1&>5R0zQ2LY~ z4KwCuEqoV@JR4Q;6dArtUx3SVcy~t?@L9iC;e3WfXBIX1TR7KV85QwN;uKtxik_@R z`sd*>CA>mz^)JEY7&zGSzhP1)y6j6+!N+9y2K4Pm6bl2^rD6jH!^1Mn5itgghJF1C zcr2@;l1Pf=UxmlhAQw3iFMxM)=4-RO9R7|xu5C{)UQ5OR#zf~@Rj>(mkF+$Yw!F}hA`T8Rp4@>z)kqm^kASZ zP*8{gpY53gBjCHZpO+_9{%*L27|%lMp_yU~)H;`Z9_%(rP0D)sp#ow+XKaBbWbC1U zJfKPPI9$m()n2BJX(RkR9&iSQ@G@>DSK0<%f&Cu80k7w|#9S-?GrWq8DP#E(TsJBk zhg4)?D&P?jvv!SD_zdhN=8)^a zv+yN-PmbbxQaC_H5f*Ce)vW&=+`#R3qm_5UzCrK9=h>LtBui;>$loOGjA_`{9|P<8 zt5md4l*8Fv&*HCe~aaXAX_D z^54MBqizqq$^L6L4359}K^}Mqg=_Tq`?kPkcnm}Gq~%+%-=j1S8+;y-;0f^EEaT{8 zgGVdjGzQ2Zt-7ir=KmqW+qo4`(J>!!tzjb{@+K2Z}DLjpn+;z;c567 zbHcgoFA4oC@E*NER4A+Prl+7xoQmO7Q9gx58h?K-WN<KpXLj}BL_zAq*Gce8fjQ9qY>U&3Q%J6#c)0no#>ErHEj2n?(f-rdgVt1dW*wik zUT~-|ul?S`L49uf;3L7*yuM9q7B{Y0uwrGy@|EEe$Ah}C>v-^=@NXxA`tZFog#*KH zpA5Rfx<3YQh9#$hk?oDAf{m##=k4Gt>A5v^6Bg7wFsHiV(Z=ScWw z#y9fJj{30wIo_-^L&8btf>C)bLjoRxgp0`Qeb0{r^KsbG$@|zl&ILsUwSg)7oH2vw X*zdzb=Yk=FpIH%@7rk**zm@(68Zidv diff --git a/RTOS_IOT/Debug/objects.list b/RTOS_IOT/Debug/objects.list index 4073bb9..4dda395 100644 --- a/RTOS_IOT/Debug/objects.list +++ b/RTOS_IOT/Debug/objects.list @@ -27,6 +27,7 @@ "Middlewares/Third_Party/FreeRTOS/Source/timers.o" "Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o" "Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o" +"Src/HTS221.o" "Src/freertos.o" "Src/main.o" "Src/stm32l0xx_hal_msp.o" diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index a3c1411..f4be7aa 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -8,10 +8,20 @@ c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o (__aeabi_uldivmod) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + Src/HTS221.o (__aeabi_dadd) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + Src/HTS221.o (__aeabi_ddiv) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + Src/HTS221.o (__aeabi_dmul) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + Src/HTS221.o (__aeabi_dsub) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + Src/HTS221.o (__aeabi_i2d) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) (__clzsi2) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) (__clzdi2) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) (__clzsi2) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (exit) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) @@ -36,11 +46,13 @@ hi2c1 0x4c Src/main.o uwTick 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o xQueueRegistry 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o pFlash 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o +HTS221_CoefStruc 0xe Src/HTS221.o Queue_SendTo_Uart 0x4 Src/main.o Queue_SendTo_TaskNVM 0x4 Src/main.o thread1_counter 0x4 Src/main.o NVM_QueueSet 0x4 Src/main.o +HTS221_I2CHander 0x4 Src/HTS221.o hrtc 0x24 Src/main.o huart2 0x70 Src/main.o Task_SensorRead 0x4 Src/main.o @@ -1773,8 +1785,6 @@ Discarded input sections 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .text.HAL_PWR_DisableWakeUpPin 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnterSLEEPMode - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .text.HAL_PWR_EnterSTOPMode 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .text.HAL_PWR_EnterSTANDBYMode @@ -1791,13 +1801,6 @@ Discarded input sections 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .text.HAL_PWR_PVD_IRQHandler 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_info 0x00000000 0x5ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_abbrev 0x00000000 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_loc 0x00000000 0xf6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_aranges - 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_ranges 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x334 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o @@ -1859,12 +1862,6 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_line 0x00000000 0x971 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_str 0x00000000 0x7a3e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_frame 0x00000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o @@ -4090,6 +4087,132 @@ Discarded input sections .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .text 0x00000000 0x0 Src/HTS221.o + .data 0x00000000 0x0 Src/HTS221.o + .bss 0x00000000 0x0 Src/HTS221.o + .debug_macro 0x00000000 0x832 Src/HTS221.o + .debug_macro 0x00000000 0x52 Src/HTS221.o + .debug_macro 0x00000000 0x22 Src/HTS221.o + .debug_macro 0x00000000 0x87 Src/HTS221.o + .debug_macro 0x00000000 0x44 Src/HTS221.o + .debug_macro 0x00000000 0xfd Src/HTS221.o + .debug_macro 0x00000000 0x5e Src/HTS221.o + .debug_macro 0x00000000 0x1df Src/HTS221.o + .debug_macro 0x00000000 0xa3 Src/HTS221.o + .debug_macro 0x00000000 0x2e Src/HTS221.o + .debug_macro 0x00000000 0x28 Src/HTS221.o + .debug_macro 0x00000000 0x26 Src/HTS221.o + .debug_macro 0x00000000 0x44f Src/HTS221.o + .debug_macro 0x00000000 0x9cc0 Src/HTS221.o + .debug_macro 0x00000000 0x3c Src/HTS221.o + .debug_macro 0x00000000 0x34a2 Src/HTS221.o + .debug_macro 0x00000000 0x52 Src/HTS221.o + .debug_macro 0x00000000 0x35 Src/HTS221.o + .debug_macro 0x00000000 0x9c Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x97 Src/HTS221.o + .debug_macro 0x00000000 0x30d Src/HTS221.o + .debug_macro 0x00000000 0xfd Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x52 Src/HTS221.o + .debug_macro 0x00000000 0x1f Src/HTS221.o + .debug_macro 0x00000000 0x43 Src/HTS221.o + .debug_macro 0x00000000 0x20 Src/HTS221.o + .debug_macro 0x00000000 0x187 Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x1c Src/HTS221.o + .debug_macro 0x00000000 0x52 Src/HTS221.o + .debug_macro 0x00000000 0x40 Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x40 Src/HTS221.o + .debug_macro 0x00000000 0xd7 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x18b Src/HTS221.o + .debug_macro 0x00000000 0x50 Src/HTS221.o + .debug_macro 0x00000000 0x8e0 Src/HTS221.o + .debug_macro 0x00000000 0x9d4 Src/HTS221.o + .debug_macro 0x00000000 0x14d Src/HTS221.o + .debug_macro 0x00000000 0x184 Src/HTS221.o + .debug_macro 0x00000000 0x279 Src/HTS221.o + .debug_macro 0x00000000 0x1ef Src/HTS221.o + .debug_macro 0x00000000 0x12a Src/HTS221.o + .debug_macro 0x00000000 0x2b6 Src/HTS221.o + .debug_macro 0x00000000 0x202 Src/HTS221.o + .debug_macro 0x00000000 0x5b Src/HTS221.o + .debug_macro 0x00000000 0x90 Src/HTS221.o + .debug_macro 0x00000000 0x189 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x30c Src/HTS221.o + .debug_macro 0x00000000 0x3f1 Src/HTS221.o + .debug_macro 0x00000000 0xdd Src/HTS221.o + .debug_macro 0x00000000 0x54a Src/HTS221.o + .debug_macro 0x00000000 0x44 Src/HTS221.o + .debug_macro 0x00000000 0x280 Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x165 Src/HTS221.o .group 0x00000000 0x8 Src/freertos.o .group 0x00000000 0x8 Src/freertos.o .group 0x00000000 0x8 Src/freertos.o @@ -4210,6 +4333,8 @@ Discarded input sections .group 0x00000000 0x8 Src/main.o .group 0x00000000 0x8 Src/main.o .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o .text 0x00000000 0x0 Src/main.o .data 0x00000000 0x0 Src/main.o .bss 0x00000000 0x0 Src/main.o @@ -4287,6 +4412,8 @@ Discarded input sections .debug_macro 0x00000000 0x94 Src/main.o .debug_macro 0x00000000 0x63 Src/main.o .debug_macro 0x00000000 0xcf Src/main.o + .debug_macro 0x00000000 0x22 Src/main.o + .debug_macro 0x00000000 0x154 Src/main.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o @@ -4707,10 +4834,20 @@ Discarded input sections .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) @@ -4797,6 +4934,7 @@ LOAD Middlewares/Third_Party/FreeRTOS/Source/tasks.o LOAD Middlewares/Third_Party/FreeRTOS/Source/timers.o LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o +LOAD Src/HTS221.o LOAD Src/freertos.o LOAD Src/main.o LOAD Src/stm32l0xx_hal_msp.o @@ -4831,7 +4969,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000000 g_pfnVectors 0x080000c0 . = ALIGN (0x4) -.text 0x080000c0 0x41c4 +.text 0x080000c0 0x5d0c 0x080000c0 . = ALIGN (0x4) *(.text) .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o @@ -4846,508 +4984,547 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000238 __aeabi_uldivmod .text 0x08000278 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) 0x08000278 __udivmoddi4 - .text 0x080003f8 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - 0x080003f8 __clzdi2 - .text 0x08000410 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - 0x08000410 __clzsi2 + .text 0x080003f8 0x658 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + 0x080003f8 __aeabi_dadd + .text 0x08000a50 0x62c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + 0x08000a50 __aeabi_ddiv + .text 0x0800107c 0x4f4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + 0x0800107c __aeabi_dmul + .text 0x08001570 0x6a8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + 0x08001570 __aeabi_dsub + .text 0x08001c18 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x08001c18 __aeabi_i2d + .text 0x08001c9c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x08001c9c __clzsi2 + .text 0x08001cd8 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x08001cd8 __clzdi2 *(.text*) .text.HAL_InitTick - 0x0800044c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x0800044c HAL_InitTick + 0x08001cf0 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001cf0 HAL_InitTick .text.HAL_Init - 0x08000474 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08000474 HAL_Init + 0x08001d18 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001d18 HAL_Init .text.HAL_IncTick - 0x08000494 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08000494 HAL_IncTick + 0x08001d38 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001d38 HAL_IncTick .text.HAL_GetTick - 0x080004a4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x080004a4 HAL_GetTick + 0x08001d48 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001d48 HAL_GetTick .text.HAL_NVIC_SetPriority - 0x080004b0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x080004b0 HAL_NVIC_SetPriority + 0x08001d54 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001d54 HAL_NVIC_SetPriority .text.HAL_SYSTICK_Config - 0x08000514 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08000514 HAL_SYSTICK_Config + 0x08001db8 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001db8 HAL_SYSTICK_Config .text.HAL_SYSTICK_CLKSourceConfig - 0x0800054c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x0800054c HAL_SYSTICK_CLKSourceConfig + 0x08001df0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001df0 HAL_SYSTICK_CLKSourceConfig .text.HAL_GPIO_Init - 0x0800056c 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x0800056c HAL_GPIO_Init + 0x08001e10 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08001e10 HAL_GPIO_Init .text.HAL_GPIO_WritePin - 0x08000700 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08000700 HAL_GPIO_WritePin + 0x08001fa4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08001fa4 HAL_GPIO_WritePin .text.HAL_GPIO_TogglePin - 0x0800070c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x0800070c HAL_GPIO_TogglePin + 0x08001fb0 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08001fb0 HAL_GPIO_TogglePin .text.I2C_Flush_TXDR - 0x08000714 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08001fb8 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_TransferConfig - 0x08000734 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08001fd8 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x08000758 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08001ffc 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnTXISFlagUntilTimeout - 0x080007d0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002074 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x08000824 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080020c8 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryWrite - 0x08000870 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002114 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x080008f4 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002198 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x08000978 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x0800221c 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.HAL_I2C_Init - 0x080009c8 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080009c8 HAL_I2C_Init + 0x0800226c 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x0800226c HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x08000a90 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08000a90 HAL_I2C_Mem_Write + 0x08002334 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002334 HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x08000c58 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08000c58 HAL_I2C_Mem_Read + 0x080024fc 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080024fc HAL_I2C_Mem_Read .text.HAL_I2CEx_ConfigAnalogFilter - 0x08000e28 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08000e28 HAL_I2CEx_ConfigAnalogFilter + 0x080026cc 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x080026cc HAL_I2CEx_ConfigAnalogFilter .text.HAL_I2CEx_ConfigDigitalFilter - 0x08000e80 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08000e80 HAL_I2CEx_ConfigDigitalFilter + 0x08002724 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002724 HAL_I2CEx_ConfigDigitalFilter .text.IRDA_SetConfig - 0x08000ed4 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002778 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_WaitOnFlagUntilTimeout - 0x08001068 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x0800290c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_CheckIdleState - 0x080010d4 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002978 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.HAL_IRDA_Init - 0x08001144 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x08001144 HAL_IRDA_Init + 0x080029e8 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x080029e8 HAL_IRDA_Init + .text.HAL_PWR_EnterSLEEPMode + 0x08002a54 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x08002a54 HAL_PWR_EnterSLEEPMode .text.RCC_SetFlashLatencyFromMSIRange - 0x080011b0 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002a84 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .text.HAL_RCC_OscConfig - 0x08001238 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08001238 HAL_RCC_OscConfig + 0x08002b0c 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002b0c HAL_RCC_OscConfig .text.HAL_RCC_GetSysClockFreq - 0x080017f0 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080017f0 HAL_RCC_GetSysClockFreq + 0x080030c4 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080030c4 HAL_RCC_GetSysClockFreq .text.HAL_RCC_ClockConfig - 0x08001884 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08001884 HAL_RCC_ClockConfig + 0x08003158 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003158 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x08001a38 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08001a38 HAL_RCC_GetHCLKFreq + 0x0800330c 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x0800330c HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x08001a44 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08001a44 HAL_RCC_GetPCLK1Freq + 0x08003318 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003318 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x08001a64 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08001a64 HAL_RCC_GetPCLK2Freq + 0x08003338 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003338 HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x08001a84 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x08001a84 HAL_RCCEx_PeriphCLKConfig + 0x08003358 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x08003358 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCCEx_GetPeriphCLKFreq - 0x08001c70 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x08001c70 HAL_RCCEx_GetPeriphCLKFreq + 0x08003544 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x08003544 HAL_RCCEx_GetPeriphCLKFreq .text.HAL_RTC_WaitForSynchro - 0x08001ee8 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08001ee8 HAL_RTC_WaitForSynchro + 0x080037bc 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080037bc HAL_RTC_WaitForSynchro .text.RTC_EnterInitMode - 0x08001f1c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08001f1c RTC_EnterInitMode + 0x080037f0 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080037f0 RTC_EnterInitMode .text.HAL_RTC_Init - 0x08001f58 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08001f58 HAL_RTC_Init + 0x0800382c 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x0800382c HAL_RTC_Init .text.RTC_ByteToBcd2 - 0x08002004 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08002004 RTC_ByteToBcd2 + 0x080038d8 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080038d8 RTC_ByteToBcd2 .text.HAL_RTC_SetTime - 0x0800201c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x0800201c HAL_RTC_SetTime + 0x080038f0 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080038f0 HAL_RTC_SetTime .text.HAL_RTC_SetDate - 0x08002128 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08002128 HAL_RTC_SetDate + 0x080039fc 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080039fc HAL_RTC_SetDate .text.HAL_RTCEx_BKUPWrite - 0x08002214 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08002214 HAL_RTCEx_BKUPWrite + 0x08003ae8 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003ae8 HAL_RTCEx_BKUPWrite .text.HAL_RTCEx_BKUPRead - 0x08002220 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08002220 HAL_RTCEx_BKUPRead + 0x08003af4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003af4 HAL_RTCEx_BKUPRead .text.UART_SetConfig - 0x0800222c 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800222c UART_SetConfig + 0x08003b00 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08003b00 UART_SetConfig .text.UART_AdvFeatureConfig - 0x0800256c 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800256c UART_AdvFeatureConfig + 0x08003e40 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08003e40 UART_AdvFeatureConfig .text.UART_WaitOnFlagUntilTimeout - 0x0800264c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800264c UART_WaitOnFlagUntilTimeout + 0x08003f20 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08003f20 UART_WaitOnFlagUntilTimeout .text.HAL_UART_Transmit - 0x080026b8 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080026b8 HAL_UART_Transmit + 0x08003f8c 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08003f8c HAL_UART_Transmit .text.UART_CheckIdleState - 0x0800279c 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800279c UART_CheckIdleState + 0x08004070 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004070 UART_CheckIdleState .text.HAL_UART_Init - 0x0800280c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800280c HAL_UART_Init + 0x080040e0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080040e0 HAL_UART_Init .text.makeFreeRtosPriority - 0x08002878 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800414c 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.inHandlerMode - 0x08002884 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004158 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osKernelStart - 0x08002890 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08002890 osKernelStart + 0x08004164 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004164 osKernelStart .text.osKernelSysTick - 0x0800289c 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800289c osKernelSysTick + 0x08004170 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004170 osKernelSysTick .text.osThreadCreate - 0x080028b4 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080028b4 osThreadCreate - .text.osDelay 0x080028e8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080028e8 osDelay + 0x08004188 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004188 osThreadCreate + .text.osDelay 0x080041bc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080041bc osDelay .text.osSystickHandler - 0x080028f8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080028f8 osSystickHandler + 0x080041cc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080041cc osSystickHandler .text.osDelayUntil - 0x08002908 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08002908 osDelayUntil + 0x080041dc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080041dc osDelayUntil .text.vListInitialise - 0x08002918 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08002918 vListInitialise + 0x080041ec 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080041ec vListInitialise .text.vListInitialiseItem - 0x08002930 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08002930 vListInitialiseItem + 0x08004204 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004204 vListInitialiseItem .text.vListInsertEnd - 0x08002938 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08002938 vListInsertEnd + 0x0800420c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0800420c vListInsertEnd .text.vListInsert - 0x08002950 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08002950 vListInsert + 0x08004224 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004224 vListInsert .text.uxListRemove - 0x08002980 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08002980 uxListRemove + 0x08004254 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004254 uxListRemove .text.prvIsQueueFull - 0x080029a4 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004278 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x080029c4 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004298 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataToQueue - 0x080029e0 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080042b4 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvNotifyQueueSetContainer - 0x08002a64 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004338 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x08002ac8 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800439c 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x08002aec 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080043c0 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericReset - 0x08002b74 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08002b74 xQueueGenericReset + 0x08004448 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004448 xQueueGenericReset .text.prvInitialiseNewQueue - 0x08002be0 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080044b4 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericCreate - 0x08002c08 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08002c08 xQueueGenericCreate + 0x080044dc 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080044dc xQueueGenericCreate .text.xQueueGenericSend - 0x08002c48 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08002c48 xQueueGenericSend + 0x0800451c 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800451c xQueueGenericSend .text.xQueueGenericReceive - 0x08002da8 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08002da8 xQueueGenericReceive + 0x0800467c 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800467c xQueueGenericReceive .text.prvResetNextTaskUnblockTime - 0x08002f28 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080047fc 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x08002f58 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800482c 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseNewTask - 0x08002f6c 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004840 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x08003008 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080048dc 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x08003060 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004934 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddCurrentTaskToDelayedList - 0x080030f4 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080049c8 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskCreate - 0x08003160 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003160 xTaskCreate + 0x08004a34 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004a34 xTaskCreate .text.vTaskStartScheduler - 0x080031c0 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080031c0 vTaskStartScheduler + 0x08004a94 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004a94 vTaskStartScheduler .text.vTaskSuspendAll - 0x08003214 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003214 vTaskSuspendAll + 0x08004ae8 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004ae8 vTaskSuspendAll .text.xTaskGetTickCount - 0x08003224 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003224 xTaskGetTickCount + 0x08004af8 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004af8 xTaskGetTickCount .text.xTaskGetTickCountFromISR - 0x08003230 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003230 xTaskGetTickCountFromISR + 0x08004b04 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004b04 xTaskGetTickCountFromISR .text.xTaskIncrementTick - 0x0800323c 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0800323c xTaskIncrementTick + 0x08004b10 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004b10 xTaskIncrementTick .text.xTaskResumeAll - 0x08003340 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003340 xTaskResumeAll + 0x08004c14 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004c14 xTaskResumeAll .text.vTaskDelayUntil - 0x08003414 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003414 vTaskDelayUntil + 0x08004ce8 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004ce8 vTaskDelayUntil .text.vTaskDelay - 0x0800348c 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0800348c vTaskDelay + 0x08004d60 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d60 vTaskDelay .text.prvCheckTasksWaitingTermination - 0x080034c0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d94 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvIdleTask - 0x08003510 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004de4 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskSwitchContext - 0x08003528 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003528 vTaskSwitchContext + 0x08004dfc 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004dfc vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x080035ac 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080035ac vTaskPlaceOnEventList + 0x08004e80 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004e80 vTaskPlaceOnEventList .text.xTaskRemoveFromEventList - 0x080035d0 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080035d0 xTaskRemoveFromEventList + 0x08004ea4 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004ea4 xTaskRemoveFromEventList .text.vTaskSetTimeOutState - 0x08003648 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003648 vTaskSetTimeOutState + 0x08004f1c 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004f1c vTaskSetTimeOutState .text.xTaskCheckForTimeOut - 0x08003660 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003660 xTaskCheckForTimeOut + 0x08004f34 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004f34 xTaskCheckForTimeOut .text.vTaskMissedYield - 0x080036c4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080036c4 vTaskMissedYield + 0x08004f98 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004f98 vTaskMissedYield .text.xTaskGetSchedulerState - 0x080036d0 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080036d0 xTaskGetSchedulerState + 0x08004fa4 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004fa4 xTaskGetSchedulerState .text.vTaskPriorityInherit - 0x080036f0 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080036f0 vTaskPriorityInherit + 0x08004fc4 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004fc4 vTaskPriorityInherit .text.xTaskPriorityDisinherit - 0x08003770 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08003770 xTaskPriorityDisinherit + 0x08005044 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005044 xTaskPriorityDisinherit .text.pvTaskIncrementMutexHeldCount - 0x080037e4 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080037e4 pvTaskIncrementMutexHeldCount + 0x080050b8 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080050b8 pvTaskIncrementMutexHeldCount .text.prvTaskExitError - 0x08003800 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - *fill* 0x08003814 0xc + 0x080050d4 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x080050e8 0x8 .text.vPortStartFirstTask - 0x08003820 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080050f0 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text.pxPortInitialiseStack - 0x08003854 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08003854 pxPortInitialiseStack + 0x08005124 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005124 pxPortInitialiseStack .text.SVC_Handler - 0x08003874 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08003874 SVC_Handler + 0x08005144 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005144 SVC_Handler .text.vPortYield - 0x08003878 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08003878 vPortYield + 0x08005148 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005148 vPortYield .text.vPortEnterCritical - 0x08003890 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08003890 vPortEnterCritical + 0x08005160 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005160 vPortEnterCritical .text.vPortExitCritical - 0x080038a8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080038a8 vPortExitCritical + 0x08005178 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005178 vPortExitCritical .text.ulSetInterruptMaskFromISR - 0x080038c8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080038c8 ulSetInterruptMaskFromISR + 0x08005198 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005198 ulSetInterruptMaskFromISR .text.vClearInterruptMaskFromISR - 0x080038d4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080038d4 vClearInterruptMaskFromISR - *fill* 0x080038dc 0x4 + 0x080051a4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080051a4 vClearInterruptMaskFromISR + *fill* 0x080051ac 0x4 .text.PendSV_Handler - 0x080038e0 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080038e0 PendSV_Handler + 0x080051b0 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080051b0 PendSV_Handler .text.xPortSysTickHandler - 0x08003924 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08003924 xPortSysTickHandler + 0x080051f4 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080051f4 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x08003948 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08003948 vPortSetupTimerInterrupt + 0x08005218 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005218 vPortSetupTimerInterrupt .text.xPortStartScheduler - 0x08003970 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08003970 xPortStartScheduler + 0x08005240 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005240 xPortStartScheduler .text.prvHeapInit - 0x080039a4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005274 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x080039f4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x080052c4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.pvPortMalloc - 0x08003a44 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08003a44 pvPortMalloc + 0x08005314 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005314 pvPortMalloc .text.vPortFree - 0x08003b08 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08003b08 vPortFree + 0x080053d8 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x080053d8 vPortFree + .text.HTS221_I2C_Read + 0x08005430 0x24 Src/HTS221.o + .text.HTS221_I2C_Read_return + 0x08005454 0x1c Src/HTS221.o + .text.HTS221_CheckAvailable + 0x08005470 0x14 Src/HTS221.o + .text.HTS221_GetCoefficient + 0x08005484 0xa4 Src/HTS221.o + .text.HTS221_EnableDevice + 0x08005528 0x2c Src/HTS221.o + .text.HTS221_I2C_Write + 0x08005554 0x24 Src/HTS221.o + .text.HTS221_ConfigDevice + 0x08005578 0x18 Src/HTS221.o + 0x08005578 HTS221_ConfigDevice + .text.HTS221_Init + 0x08005590 0x24 Src/HTS221.o + 0x08005590 HTS221_Init + .text.HTS221_GetHumidity + 0x080055b4 0x9c Src/HTS221.o + 0x080055b4 HTS221_GetHumidity + .text.HTS221_GetTemperature + 0x08005650 0x9c Src/HTS221.o + 0x08005650 HTS221_GetTemperature .text.MX_GPIO_Init - 0x08003b60 0x8c Src/main.o + 0x080056ec 0x8c Src/main.o .text.func_NVM_Manager - 0x08003bec 0x44 Src/main.o - 0x08003bec func_NVM_Manager + 0x08005778 0x44 Src/main.o + 0x08005778 func_NVM_Manager .text.func_LEDBlink - 0x08003c30 0x34 Src/main.o - 0x08003c30 func_LEDBlink + 0x080057bc 0x34 Src/main.o + 0x080057bc func_LEDBlink .text.func_UartPrint - 0x08003c64 0x48 Src/main.o - 0x08003c64 func_UartPrint + 0x080057f0 0x48 Src/main.o + 0x080057f0 func_UartPrint .text.func_SensorRead - 0x08003cac 0x98 Src/main.o - 0x08003cac func_SensorRead + 0x08005838 0x40 Src/main.o + 0x08005838 func_SensorRead .text.Error_Handler - 0x08003d44 0x4 Src/main.o - 0x08003d44 Error_Handler + 0x08005878 0x4 Src/main.o + 0x08005878 Error_Handler .text.MX_RTC_Init - 0x08003d48 0x90 Src/main.o + 0x0800587c 0x90 Src/main.o .text.MX_USART2_UART_Init - 0x08003dd8 0x38 Src/main.o + 0x0800590c 0x38 Src/main.o .text.MX_USART1_IRDA_Init - 0x08003e10 0x38 Src/main.o + 0x08005944 0x38 Src/main.o .text.MX_I2C1_Init - 0x08003e48 0x58 Src/main.o + 0x0800597c 0x58 Src/main.o .text.SystemClock_Config - 0x08003ea0 0xa4 Src/main.o - 0x08003ea0 SystemClock_Config - .text.main 0x08003f44 0xc8 Src/main.o - 0x08003f44 main + 0x080059d4 0xa4 Src/main.o + 0x080059d4 SystemClock_Config + .text.main 0x08005a78 0xdc Src/main.o + 0x08005a78 main .text.HAL_MspInit - 0x0800400c 0x40 Src/stm32l0xx_hal_msp.o - 0x0800400c HAL_MspInit + 0x08005b54 0x40 Src/stm32l0xx_hal_msp.o + 0x08005b54 HAL_MspInit .text.HAL_I2C_MspInit - 0x0800404c 0x48 Src/stm32l0xx_hal_msp.o - 0x0800404c HAL_I2C_MspInit + 0x08005b94 0x48 Src/stm32l0xx_hal_msp.o + 0x08005b94 HAL_I2C_MspInit .text.HAL_RTC_MspInit - 0x08004094 0x20 Src/stm32l0xx_hal_msp.o - 0x08004094 HAL_RTC_MspInit + 0x08005bdc 0x20 Src/stm32l0xx_hal_msp.o + 0x08005bdc HAL_RTC_MspInit .text.HAL_IRDA_MspInit - 0x080040b4 0x44 Src/stm32l0xx_hal_msp.o - 0x080040b4 HAL_IRDA_MspInit + 0x08005bfc 0x44 Src/stm32l0xx_hal_msp.o + 0x08005bfc HAL_IRDA_MspInit .text.HAL_UART_MspInit - 0x080040f8 0x44 Src/stm32l0xx_hal_msp.o - 0x080040f8 HAL_UART_MspInit + 0x08005c40 0x44 Src/stm32l0xx_hal_msp.o + 0x08005c40 HAL_UART_MspInit .text.SysTick_Handler - 0x0800413c 0xc Src/stm32l0xx_it.o - 0x0800413c SysTick_Handler + 0x08005c84 0xc Src/stm32l0xx_it.o + 0x08005c84 SysTick_Handler .text.RTC_IRQHandler - 0x08004148 0x4 Src/stm32l0xx_it.o - 0x08004148 RTC_IRQHandler + 0x08005c90 0x4 Src/stm32l0xx_it.o + 0x08005c90 RTC_IRQHandler .text.SystemInit - 0x0800414c 0x5c Src/system_stm32l0xx.o - 0x0800414c SystemInit + 0x08005c94 0x5c Src/system_stm32l0xx.o + 0x08005c94 SystemInit .text.Reset_Handler - 0x080041a8 0x50 startup/startup_stm32l053xx.o - 0x080041a8 Reset_Handler + 0x08005cf0 0x50 startup/startup_stm32l053xx.o + 0x08005cf0 Reset_Handler .text.Default_Handler - 0x080041f8 0x2 startup/startup_stm32l053xx.o - 0x080041f8 TSC_IRQHandler - 0x080041f8 HardFault_Handler - 0x080041f8 ADC1_COMP_IRQHandler - 0x080041f8 PVD_IRQHandler - 0x080041f8 NMI_Handler - 0x080041f8 I2C1_IRQHandler - 0x080041f8 RCC_CRS_IRQHandler - 0x080041f8 SPI1_IRQHandler - 0x080041f8 TIM6_DAC_IRQHandler - 0x080041f8 EXTI2_3_IRQHandler - 0x080041f8 I2C2_IRQHandler - 0x080041f8 LCD_IRQHandler - 0x080041f8 DMA1_Channel4_5_6_7_IRQHandler - 0x080041f8 EXTI4_15_IRQHandler - 0x080041f8 DMA1_Channel1_IRQHandler - 0x080041f8 Default_Handler - 0x080041f8 TIM22_IRQHandler - 0x080041f8 EXTI0_1_IRQHandler - 0x080041f8 USB_IRQHandler - 0x080041f8 SPI2_IRQHandler - 0x080041f8 TIM21_IRQHandler - 0x080041f8 WWDG_IRQHandler - 0x080041f8 TIM2_IRQHandler - 0x080041f8 DMA1_Channel2_3_IRQHandler - 0x080041f8 USART2_IRQHandler - 0x080041f8 FLASH_IRQHandler - 0x080041f8 USART1_IRQHandler - 0x080041f8 RNG_LPUART1_IRQHandler - 0x080041f8 LPTIM1_IRQHandler - *fill* 0x080041fa 0x2 + 0x08005d40 0x2 startup/startup_stm32l053xx.o + 0x08005d40 TSC_IRQHandler + 0x08005d40 HardFault_Handler + 0x08005d40 ADC1_COMP_IRQHandler + 0x08005d40 PVD_IRQHandler + 0x08005d40 NMI_Handler + 0x08005d40 I2C1_IRQHandler + 0x08005d40 RCC_CRS_IRQHandler + 0x08005d40 SPI1_IRQHandler + 0x08005d40 TIM6_DAC_IRQHandler + 0x08005d40 EXTI2_3_IRQHandler + 0x08005d40 I2C2_IRQHandler + 0x08005d40 LCD_IRQHandler + 0x08005d40 DMA1_Channel4_5_6_7_IRQHandler + 0x08005d40 EXTI4_15_IRQHandler + 0x08005d40 DMA1_Channel1_IRQHandler + 0x08005d40 Default_Handler + 0x08005d40 TIM22_IRQHandler + 0x08005d40 EXTI0_1_IRQHandler + 0x08005d40 USB_IRQHandler + 0x08005d40 SPI2_IRQHandler + 0x08005d40 TIM21_IRQHandler + 0x08005d40 WWDG_IRQHandler + 0x08005d40 TIM2_IRQHandler + 0x08005d40 DMA1_Channel2_3_IRQHandler + 0x08005d40 USART2_IRQHandler + 0x08005d40 FLASH_IRQHandler + 0x08005d40 USART1_IRQHandler + 0x08005d40 RNG_LPUART1_IRQHandler + 0x08005d40 LPTIM1_IRQHandler + *fill* 0x08005d42 0x2 .text.__libc_init_array - 0x080041fc 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - 0x080041fc __libc_init_array - .text.memcpy 0x08004248 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - 0x08004248 memcpy - .text.memset 0x0800425a 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - 0x0800425a memset + 0x08005d44 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x08005d44 __libc_init_array + .text.memcpy 0x08005d90 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x08005d90 memcpy + .text.memset 0x08005da2 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x08005da2 memset *(.glue_7) - .glue_7 0x0800426a 0x0 linker stubs + .glue_7 0x08005db2 0x0 linker stubs *(.glue_7t) - .glue_7t 0x0800426a 0x0 linker stubs + .glue_7t 0x08005db2 0x0 linker stubs *(.eh_frame) - *fill* 0x0800426a 0x2 - .eh_frame 0x0800426c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + *fill* 0x08005db2 0x2 + .eh_frame 0x08005db4 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o *(.init) - .init 0x0800426c 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x0800426c _init - .init 0x08004270 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .init 0x08005db4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08005db4 _init + .init 0x08005db8 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o *(.fini) - .fini 0x08004278 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08004278 _fini - .fini 0x0800427c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x08004284 . = ALIGN (0x4) - 0x08004284 _etext = . + .fini 0x08005dc0 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08005dc0 _fini + .fini 0x08005dc4 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x08005dcc . = ALIGN (0x4) + 0x08005dcc _etext = . -.vfp11_veneer 0x08004284 0x0 - .vfp11_veneer 0x08004284 0x0 linker stubs +.vfp11_veneer 0x08005dcc 0x0 + .vfp11_veneer 0x08005dcc 0x0 linker stubs -.v4_bx 0x08004284 0x0 - .v4_bx 0x08004284 0x0 linker stubs +.v4_bx 0x08005dcc 0x0 + .v4_bx 0x08005dcc 0x0 linker stubs -.iplt 0x08004284 0x0 - .iplt 0x08004284 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.iplt 0x08005dcc 0x0 + .iplt 0x08005dcc 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.rodata 0x08004284 0x120 - 0x08004284 . = ALIGN (0x4) +.rodata 0x08005dcc 0x1a0 + 0x08005dcc . = ALIGN (0x4) *(.rodata) - .rodata 0x08004284 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .rodata 0x080042a8 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .rodata 0x080042f0 0x50 Src/main.o - .rodata 0x08004340 0x24 Src/system_stm32l0xx.o - 0x08004340 PLLMulTable - 0x0800434c AHBPrescTable - 0x0800435c APBPrescTable + .rodata 0x08005dcc 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x08005df0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x08005e38 0x50 Src/main.o + .rodata 0x08005e88 0x24 Src/system_stm32l0xx.o + 0x08005e88 PLLMulTable + 0x08005e94 AHBPrescTable + 0x08005ea4 APBPrescTable + .rodata 0x08005eac 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .rodata 0x08005eec 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) *(.rodata*) .rodata.str1.4 - 0x08004364 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x08004369 0x3 + 0x08005f2c 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x08005f31 0x3 .rodata.str1.4 - 0x0800436c 0x38 Src/main.o + 0x08005f34 0x38 Src/main.o 0x36 (size before relaxing) - 0x080043a4 . = ALIGN (0x4) + 0x08005f6c . = ALIGN (0x4) .ARM.extab *(.ARM.extab* .gnu.linkonce.armextab.*) -.ARM 0x080043a4 0x8 - 0x080043a4 __exidx_start = . +.ARM 0x08005f6c 0x8 + 0x08005f6c __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x080043a4 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x080043ac __exidx_end = . + .ARM.exidx 0x08005f6c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x08005f74 __exidx_end = . -.rel.dyn 0x080043ac 0x0 - .rel.iplt 0x080043ac 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.rel.dyn 0x08005f74 0x0 + .rel.iplt 0x08005f74 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.preinit_array 0x080043ac 0x0 - 0x080043ac PROVIDE (__preinit_array_start, .) +.preinit_array 0x08005f74 0x0 + 0x08005f74 PROVIDE (__preinit_array_start, .) *(.preinit_array*) - 0x080043ac PROVIDE (__preinit_array_end, .) + 0x08005f74 PROVIDE (__preinit_array_end, .) -.init_array 0x080043ac 0x4 - 0x080043ac PROVIDE (__init_array_start, .) +.init_array 0x08005f74 0x4 + 0x08005f74 PROVIDE (__init_array_start, .) *(SORT(.init_array.*)) *(.init_array*) - .init_array 0x080043ac 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x080043b0 PROVIDE (__init_array_end, .) + .init_array 0x08005f74 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x08005f78 PROVIDE (__init_array_end, .) -.fini_array 0x080043b0 0x4 +.fini_array 0x08005f78 0x4 [!provide] PROVIDE (__fini_array_start, .) *(SORT(.fini_array.*)) *(.fini_array*) - .fini_array 0x080043b0 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .fini_array 0x08005f78 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o [!provide] PROVIDE (__fini_array_end, .) - 0x080043b4 _sidata = LOADADDR (.data) + 0x08005f7c _sidata = LOADADDR (.data) -.data 0x20000000 0x8 load address 0x080043b4 +.data 0x20000000 0x8 load address 0x08005f7c 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -5358,14 +5535,14 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000008 . = ALIGN (0x4) 0x20000008 _edata = . -.jcr 0x20000008 0x0 load address 0x080043bc +.jcr 0x20000008 0x0 load address 0x08005f84 .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.igot.plt 0x20000008 0x0 load address 0x080043bc +.igot.plt 0x20000008 0x0 load address 0x08005f84 .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o 0x20000008 . = ALIGN (0x4) -.bss 0x20000008 0xea8 load address 0x080043bc +.bss 0x20000008 0xebc load address 0x08005f84 0x20000008 _sbss = . 0x20000008 __bss_start__ = _sbss *(.bss) @@ -5377,35 +5554,39 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 *(COMMON) COMMON 0x20000d68 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x20000d68 uwTick - COMMON 0x20000d6c 0x144 Src/main.o - 0x20000d6c hirda1 - 0x20000da8 Task_ErrorCheck - 0x20000dac Task_UartSend - 0x20000db0 Queue_number - 0x20000db4 hi2c1 - 0x20000e00 Queue_SendTo_Uart - 0x20000e04 Queue_SendTo_TaskNVM - 0x20000e08 thread1_counter - 0x20000e0c NVM_QueueSet - 0x20000e10 hrtc - 0x20000e34 huart2 - 0x20000ea4 Task_SensorRead - 0x20000ea8 Task_NVM_ReadWrite - 0x20000eac Task_HearBeatLED - 0x20000eb0 . = ALIGN (0x4) - 0x20000eb0 _ebss = . - 0x20000eb0 __bss_end__ = _ebss + COMMON 0x20000d6c 0x14 Src/HTS221.o + 0x20000d6c HTS221_CoefStruc + 0x20000d7c HTS221_I2CHander + COMMON 0x20000d80 0x144 Src/main.o + 0x20000d80 hirda1 + 0x20000dbc Task_ErrorCheck + 0x20000dc0 Task_UartSend + 0x20000dc4 Queue_number + 0x20000dc8 hi2c1 + 0x20000e14 Queue_SendTo_Uart + 0x20000e18 Queue_SendTo_TaskNVM + 0x20000e1c thread1_counter + 0x20000e20 NVM_QueueSet + 0x20000e24 hrtc + 0x20000e48 huart2 + 0x20000eb8 Task_SensorRead + 0x20000ebc Task_NVM_ReadWrite + 0x20000ec0 Task_HearBeatLED + 0x20000ec4 . = ALIGN (0x4) + 0x20000ec4 _ebss = . + 0x20000ec4 __bss_end__ = _ebss ._user_heap_stack - 0x20000eb0 0x600 load address 0x080043bc - 0x20000eb0 . = ALIGN (0x8) + 0x20000ec4 0x604 load address 0x08005f84 + 0x20000ec8 . = ALIGN (0x8) + *fill* 0x20000ec4 0x4 [!provide] PROVIDE (end, .) [!provide] PROVIDE (_end, .) - 0x200010b0 . = (. + _Min_Heap_Size) - *fill* 0x20000eb0 0x200 - 0x200014b0 . = (. + _Min_Stack_Size) - *fill* 0x200010b0 0x400 - 0x200014b0 . = ALIGN (0x8) + 0x200010c8 . = (. + _Min_Heap_Size) + *fill* 0x20000ec8 0x200 + 0x200014c8 . = (. + _Min_Stack_Size) + *fill* 0x200010c8 0x400 + 0x200014c8 . = ALIGN (0x8) /DISCARD/ libc.a(*) @@ -5432,130 +5613,150 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .ARM.attributes 0x00000144 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .ARM.attributes - 0x00000176 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x00000176 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .ARM.attributes + 0x000001a8 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .ARM.attributes + 0x000001da 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .ARM.attributes + 0x0000020c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .ARM.attributes + 0x0000023e 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .ARM.attributes - 0x000001a8 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x00000270 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .ARM.attributes - 0x000001da 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x000002a2 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .ARM.attributes - 0x0000020c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x000002d4 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o .ARM.attributes - 0x0000023e 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x00000306 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o .ARM.attributes - 0x00000270 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .ARM.attributes - 0x000002a2 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .ARM.attributes - 0x000002d4 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000039c 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .ARM.attributes - 0x00000306 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000003ce 0x32 Src/HTS221.o .ARM.attributes - 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x00000400 0x32 Src/main.o .ARM.attributes - 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x00000432 0x32 Src/stm32l0xx_hal_msp.o .ARM.attributes - 0x0000039c 0x32 Src/main.o + 0x00000464 0x32 Src/stm32l0xx_it.o .ARM.attributes - 0x000003ce 0x32 Src/stm32l0xx_hal_msp.o + 0x00000496 0x32 Src/system_stm32l0xx.o .ARM.attributes - 0x00000400 0x32 Src/stm32l0xx_it.o + 0x000004c8 0x22 startup/startup_stm32l053xx.o .ARM.attributes - 0x00000432 0x32 Src/system_stm32l0xx.o + 0x000004ea 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) .ARM.attributes - 0x00000464 0x22 startup/startup_stm32l053xx.o + 0x00000508 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) .ARM.attributes - 0x00000486 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + 0x00000526 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) .ARM.attributes - 0x000004a4 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + 0x00000544 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .ARM.attributes - 0x000004c2 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + 0x00000570 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) .ARM.attributes - 0x000004e0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x0000059c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) .ARM.attributes - 0x0000050c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x000005c8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) .ARM.attributes - 0x0000052a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x000005f4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) .ARM.attributes - 0x00000548 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x00000620 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .ARM.attributes - 0x00000574 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x0000064c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .ARM.attributes - 0x000005a0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x0000066a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) .ARM.attributes - 0x000005cc 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x00000688 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .ARM.attributes + 0x000006b4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .ARM.attributes + 0x000006e0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .ARM.attributes + 0x0000070c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o OUTPUT(RTOS_IOT.elf elf32-littlearm) -.debug_info 0x00000000 0x13ee1 +.debug_info 0x00000000 0x14f18 .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_info 0x00000fea 0x647 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_info 0x00001631 0x310e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_info 0x0000473f 0x83e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_info 0x00004f7d 0x150c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_info 0x00006489 0xb74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_info 0x00006ffd 0x8cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_info 0x000078c8 0xd08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_info 0x000085d0 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_info 0x000094ef 0x1990 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_info 0x0000ae7f 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_info 0x0000c98e 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_info 0x0000cc33 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_info 0x0000e300 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_info 0x00010497 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_info 0x00010747 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_info 0x00010aac 0x1df8 Src/main.o - .debug_info 0x000128a4 0x117a Src/stm32l0xx_hal_msp.o - .debug_info 0x00013a1e 0xd6 Src/stm32l0xx_it.o - .debug_info 0x00013af4 0x37b Src/system_stm32l0xx.o - .debug_info 0x00013e6f 0x72 startup/startup_stm32l053xx.o + .debug_info 0x00006489 0x5ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_info 0x00006a75 0xb74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_info 0x000075e9 0x8cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_info 0x00007eb4 0xd08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_info 0x00008bbc 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_info 0x00009adb 0x1990 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_info 0x0000b46b 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_info 0x0000cf7a 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_info 0x0000d21f 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_info 0x0000e8ec 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_info 0x00010a83 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_info 0x00010d33 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_info 0x00011098 0xade Src/HTS221.o + .debug_info 0x00011b76 0x1d64 Src/main.o + .debug_info 0x000138da 0x117a Src/stm32l0xx_hal_msp.o + .debug_info 0x00014a54 0xd6 Src/stm32l0xx_it.o + .debug_info 0x00014b2a 0x37b Src/system_stm32l0xx.o + .debug_info 0x00014ea5 0x73 startup/startup_stm32l053xx.o -.debug_abbrev 0x00000000 0x26e1 +.debug_abbrev 0x00000000 0x2a87 .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_abbrev 0x0000046d 0x1cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_abbrev 0x00000638 0x213 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_abbrev 0x0000084b 0x192 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_abbrev 0x000009dd 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_abbrev 0x00000c05 0x242 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_abbrev 0x00000e47 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_abbrev 0x00001033 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_abbrev 0x000011cf 0x1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_abbrev 0x0000137a 0x24a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_abbrev 0x000015c4 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_abbrev 0x00001899 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_abbrev 0x00001978 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_abbrev 0x00001b7a 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_abbrev 0x00001dea 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_abbrev 0x00001fb9 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_abbrev 0x00002176 0x25e Src/main.o - .debug_abbrev 0x000023d4 0x18d Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x00002561 0x7b Src/stm32l0xx_it.o - .debug_abbrev 0x000025dc 0xf3 Src/system_stm32l0xx.o - .debug_abbrev 0x000026cf 0x12 startup/startup_stm32l053xx.o + .debug_abbrev 0x00000c05 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_abbrev 0x00000d95 0x242 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_abbrev 0x00000fd7 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_abbrev 0x000011c3 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_abbrev 0x0000135f 0x1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_abbrev 0x0000150a 0x24a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_abbrev 0x00001754 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_abbrev 0x00001a29 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_abbrev 0x00001b08 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_abbrev 0x00001d0a 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_abbrev 0x00001f7a 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_abbrev 0x00002149 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_abbrev 0x00002306 0x216 Src/HTS221.o + .debug_abbrev 0x0000251c 0x25e Src/main.o + .debug_abbrev 0x0000277a 0x18d Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x00002907 0x7b Src/stm32l0xx_it.o + .debug_abbrev 0x00002982 0xf3 Src/system_stm32l0xx.o + .debug_abbrev 0x00002a75 0x12 startup/startup_stm32l053xx.o -.debug_loc 0x00000000 0xd777 +.debug_loc 0x00000000 0xdb99 .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_loc 0x00000447 0x284 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_loc 0x000006cb 0x331a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_loc 0x000039e5 0x245 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_loc 0x00003c2a 0x10fc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_loc 0x00004d26 0x6a7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_loc 0x000053cd 0x9a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_loc 0x00005d6f 0xc10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_loc 0x0000697f 0xf1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_loc 0x0000789b 0x176e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_loc 0x00009009 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_loc 0x0000a01b 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_loc 0x0000a080 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_loc 0x0000b8a8 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_loc 0x0000d19d 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_loc 0x0000d243 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_loc 0x0000d487 0xc5 Src/main.o - .debug_loc 0x0000d54c 0xc6 Src/stm32l0xx_hal_msp.o - .debug_loc 0x0000d612 0x165 Src/system_stm32l0xx.o + .debug_loc 0x00004d26 0xf6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_loc 0x00004e1c 0x6a7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_loc 0x000054c3 0x9a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_loc 0x00005e65 0xc10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_loc 0x00006a75 0xf1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_loc 0x00007991 0x176e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_loc 0x000090ff 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_loc 0x0000a111 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_loc 0x0000a176 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_loc 0x0000b99e 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_loc 0x0000d293 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_loc 0x0000d339 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_loc 0x0000d57d 0x32c Src/HTS221.o + .debug_loc 0x0000d8a9 0xc5 Src/main.o + .debug_loc 0x0000d96e 0xc6 Src/stm32l0xx_hal_msp.o + .debug_loc 0x0000da34 0x165 Src/system_stm32l0xx.o -.debug_aranges 0x00000000 0x1230 +.debug_aranges 0x00000000 0x1338 .debug_aranges 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_aranges @@ -5569,63 +5770,69 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_aranges 0x00000460 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_aranges - 0x000005f8 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x000005f8 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_aranges + 0x00000698 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_aranges + 0x00000720 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_aranges - 0x00000680 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x000007d0 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_aranges - 0x00000730 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x00000888 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_aranges - 0x000007e8 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x000009a8 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_aranges - 0x00000908 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x00000b90 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_aranges - 0x00000af0 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x00000d68 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_aranges - 0x00000cc8 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x00000da8 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_aranges - 0x00000d08 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000ed0 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .debug_aranges - 0x00000e30 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000010a0 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_aranges - 0x00001000 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x00001128 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_aranges - 0x00001088 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x00001178 0x68 Src/HTS221.o .debug_aranges - 0x000010d8 0x80 Src/main.o + 0x000011e0 0x80 Src/main.o .debug_aranges - 0x00001158 0x60 Src/stm32l0xx_hal_msp.o + 0x00001260 0x60 Src/stm32l0xx_hal_msp.o .debug_aranges - 0x000011b8 0x28 Src/stm32l0xx_it.o + 0x000012c0 0x28 Src/stm32l0xx_it.o .debug_aranges - 0x000011e0 0x28 Src/system_stm32l0xx.o + 0x000012e8 0x28 Src/system_stm32l0xx.o .debug_aranges - 0x00001208 0x28 startup/startup_stm32l053xx.o + 0x00001310 0x28 startup/startup_stm32l053xx.o -.debug_ranges 0x00000000 0x11a8 +.debug_ranges 0x00000000 0x1290 .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_ranges 0x000000d0 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_ranges 0x00000140 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_ranges 0x00000188 0x250 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_ranges 0x000003d8 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_ranges 0x00000410 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_ranges 0x00000598 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_ranges 0x00000628 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_ranges 0x000006e0 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_ranges 0x00000788 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_ranges 0x00000898 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_ranges 0x00000a70 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_ranges 0x00000c38 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_ranges 0x00000c68 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_ranges 0x00000de0 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_ranges 0x00000fe0 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_ranges 0x00001058 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_ranges 0x00001098 0x70 Src/main.o - .debug_ranges 0x00001108 0x50 Src/stm32l0xx_hal_msp.o - .debug_ranges 0x00001158 0x18 Src/stm32l0xx_it.o - .debug_ranges 0x00001170 0x18 Src/system_stm32l0xx.o - .debug_ranges 0x00001188 0x20 startup/startup_stm32l053xx.o + .debug_ranges 0x00000598 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_ranges 0x00000628 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_ranges 0x000006b8 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_ranges 0x00000770 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_ranges 0x00000818 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_ranges 0x00000928 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_ranges 0x00000b00 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_ranges 0x00000cc8 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_ranges 0x00000cf8 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_ranges 0x00000e70 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_ranges 0x00001070 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_ranges 0x000010e8 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_ranges 0x00001128 0x58 Src/HTS221.o + .debug_ranges 0x00001180 0x70 Src/main.o + .debug_ranges 0x000011f0 0x50 Src/stm32l0xx_hal_msp.o + .debug_ranges 0x00001240 0x18 Src/stm32l0xx_it.o + .debug_ranges 0x00001258 0x18 Src/system_stm32l0xx.o + .debug_ranges 0x00001270 0x20 startup/startup_stm32l053xx.o -.debug_macro 0x00000000 0x16f33 +.debug_macro 0x00000000 0x1775b .debug_macro 0x00000000 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000340 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000b72 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o @@ -5693,68 +5900,75 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_macro 0x00012d6d 0x3e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00013155 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00013471 0x32b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x0001379c 0x36a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00013b06 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00013e34 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00014150 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x0001446c 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x0001479a 0x1f5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001498f 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000149db 0x8d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014a68 0x174 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014bdc 0x4a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014c26 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014c36 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014c6b 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014d3d 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014ea5 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014f5b 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014f6b 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014f8a 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000153a0 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015460 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000154ec 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001557d 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015611 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015674 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015743 0x18b Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x000158ce 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00015ad5 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00015aeb 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00015d5c 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00015d6d 0x14c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00015eb9 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x0001606b 0x3d6 Src/main.o - .debug_macro 0x00016441 0xd8 Src/main.o - .debug_macro 0x00016519 0x31c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00016835 0x3dc Src/stm32l0xx_it.o - .debug_macro 0x00016c11 0x322 Src/system_stm32l0xx.o + .debug_macro 0x0001379c 0x334 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00013ad0 0x36a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00013e3a 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00014168 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00014484 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x000147a0 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00014ace 0x1f5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014cc3 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014d0f 0x8d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014d9c 0x174 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014f10 0x4a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014f5a 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014f6a 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00014f9f 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015071 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000151d9 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001528f 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001529f 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000152be 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000156d4 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015794 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015820 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000158b1 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015945 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000159a8 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015a77 0x18b Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00015c02 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00015e09 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00015e1f 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00016090 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x000160a1 0x14c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x000161ed 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x0001639f 0x332 Src/HTS221.o + .debug_macro 0x000166d1 0x22 Src/HTS221.o + .debug_macro 0x000166f3 0x3a Src/HTS221.o + .debug_macro 0x0001672d 0x154 Src/HTS221.o + .debug_macro 0x00016881 0x3e8 Src/main.o + .debug_macro 0x00016c69 0xd8 Src/main.o + .debug_macro 0x00016d41 0x31c Src/stm32l0xx_hal_msp.o + .debug_macro 0x0001705d 0x3dc Src/stm32l0xx_it.o + .debug_macro 0x00017439 0x322 Src/system_stm32l0xx.o -.debug_line 0x00000000 0xede9 +.debug_line 0x00000000 0x10027 .debug_line 0x00000000 0x9c6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_line 0x000009c6 0x97b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_line 0x00001341 0x940 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_line 0x00001c81 0x1879 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_line 0x000034fa 0x941 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_line 0x00003e3b 0x101a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_line 0x00004e55 0xaf9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_line 0x0000594e 0xaf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_line 0x00006446 0xb8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_line 0x00006fd2 0xe71 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_line 0x00007e43 0x129c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_line 0x000090df 0xb7b Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_line 0x00009c5a 0x564 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x0000a1be 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x0000ac72 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x0000bb94 0x5a0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_line 0x0000c134 0x613 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_line 0x0000c747 0xb72 Src/main.o - .debug_line 0x0000d2b9 0x89f Src/stm32l0xx_hal_msp.o - .debug_line 0x0000db58 0x9f5 Src/stm32l0xx_it.o - .debug_line 0x0000e54d 0x819 Src/system_stm32l0xx.o - .debug_line 0x0000ed66 0x83 startup/startup_stm32l053xx.o + .debug_line 0x00004e55 0x971 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_line 0x000057c6 0xaf9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_line 0x000062bf 0xaf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_line 0x00006db7 0xb8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_line 0x00007943 0xe71 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_line 0x000087b4 0x129c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_line 0x00009a50 0xb7b Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_line 0x0000a5cb 0x564 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x0000ab2f 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000b5e3 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000c505 0x5a0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_line 0x0000caa5 0x613 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_line 0x0000d0b8 0x8cb Src/HTS221.o + .debug_line 0x0000d983 0xb74 Src/main.o + .debug_line 0x0000e4f7 0x89f Src/stm32l0xx_hal_msp.o + .debug_line 0x0000ed96 0x9f5 Src/stm32l0xx_it.o + .debug_line 0x0000f78b 0x819 Src/system_stm32l0xx.o + .debug_line 0x0000ffa4 0x83 startup/startup_stm32l053xx.o -.debug_str 0x00000000 0x85c9c +.debug_str 0x00000000 0x865e5 .debug_str 0x00000000 0x7a34a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x7a763 (size before relaxing) .debug_str 0x0007a34a 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o @@ -5767,35 +5981,39 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) 0x7a6d5 (size before relaxing) .debug_str 0x0007baf4 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o 0x7ab16 (size before relaxing) - .debug_str 0x0007c269 0x4ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_str 0x0007c269 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x7a3e0 (size before relaxing) + .debug_str 0x0007c515 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o 0x7a780 (size before relaxing) - .debug_str 0x0007c758 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_str 0x0007c9f8 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o 0x7a6c9 (size before relaxing) - .debug_str 0x0007cc01 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_str 0x0007cea1 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o 0x7a55e (size before relaxing) - .debug_str 0x0007d03a 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_str 0x0007d2da 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o 0x7a883 (size before relaxing) - .debug_str 0x0007d554 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_str 0x0007d7f4 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o 0x7ae3d (size before relaxing) - .debug_str 0x0007de78 0x5993 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_str 0x0007e118 0x5993 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o 0xb8b1 (size before relaxing) - .debug_str 0x0008380b 0x22a Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_str 0x00083aab 0x22a Middlewares/Third_Party/FreeRTOS/Source/list.o 0x8cbf (size before relaxing) - .debug_str 0x00083a35 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_str 0x00083cd5 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o 0xa3ff (size before relaxing) - .debug_str 0x000841f5 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_str 0x00084495 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o 0xaef7 (size before relaxing) - .debug_str 0x0008528d 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_str 0x0008552d 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o 0x6ed5 (size before relaxing) - .debug_str 0x0008566e 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_str 0x0008590e 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o 0x93cc (size before relaxing) - .debug_str 0x000858b1 0x325 Src/main.o - 0x80463 (size before relaxing) - .debug_str 0x00085bd6 0x1b Src/stm32l0xx_hal_msp.o + .debug_str 0x00085b51 0x6c9 Src/HTS221.o + 0x7ac2e (size before relaxing) + .debug_str 0x0008621a 0x305 Src/main.o + 0x809b7 (size before relaxing) + .debug_str 0x0008651f 0x1b Src/stm32l0xx_hal_msp.o 0x7ad50 (size before relaxing) - .debug_str 0x00085bf1 0x47 Src/stm32l0xx_it.o + .debug_str 0x0008653a 0x47 Src/stm32l0xx_it.o 0x7ef0e (size before relaxing) - .debug_str 0x00085c38 0x64 Src/system_stm32l0xx.o + .debug_str 0x00086581 0x64 Src/system_stm32l0xx.o 0x7a19d (size before relaxing) .comment 0x00000000 0x6e @@ -5806,6 +6024,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o @@ -5817,35 +6036,43 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/tasks.o .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .comment 0x0000006e 0x6f Src/HTS221.o .comment 0x0000006e 0x6f Src/main.o .comment 0x0000006e 0x6f Src/stm32l0xx_hal_msp.o .comment 0x0000006e 0x6f Src/stm32l0xx_it.o .comment 0x0000006e 0x6f Src/system_stm32l0xx.o -.debug_frame 0x00000000 0x30f4 +.debug_frame 0x00000000 0x345c .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_frame 0x000002c0 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_frame 0x00000388 0x784 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_frame 0x00000b0c 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_frame 0x00000bb4 0x444 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_frame 0x00000ff8 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_frame 0x00001148 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_frame 0x000012b8 0x204 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_frame 0x000014bc 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_frame 0x0000181c 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_frame 0x00001d5c 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_frame 0x0000229c 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_frame 0x00002308 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_frame 0x00002660 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_frame 0x00002bd0 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_frame 0x00002ce0 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_frame 0x00002d88 0x154 Src/main.o - .debug_frame 0x00002edc 0xd8 Src/stm32l0xx_hal_msp.o - .debug_frame 0x00002fb4 0x38 Src/stm32l0xx_it.o - .debug_frame 0x00002fec 0x38 Src/system_stm32l0xx.o - .debug_frame 0x00003024 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .debug_frame 0x00003044 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .debug_frame 0x00003080 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .debug_frame 0x000030ac 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x000030d4 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x00000ff8 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_frame 0x00001130 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_frame 0x00001280 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_frame 0x000013f0 0x204 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_frame 0x000015f4 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_frame 0x00001954 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_frame 0x00001e94 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_frame 0x000023d4 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_frame 0x00002440 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_frame 0x00002798 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_frame 0x00002d08 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_frame 0x00002e18 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_frame 0x00002ec0 0x120 Src/HTS221.o + .debug_frame 0x00002fe0 0x14c Src/main.o + .debug_frame 0x0000312c 0xd8 Src/stm32l0xx_hal_msp.o + .debug_frame 0x00003204 0x38 Src/stm32l0xx_it.o + .debug_frame 0x0000323c 0x38 Src/system_stm32l0xx.o + .debug_frame 0x00003274 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .debug_frame 0x00003294 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x000032d0 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .debug_frame 0x0000330c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .debug_frame 0x00003348 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .debug_frame 0x00003384 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .debug_frame 0x000033bc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .debug_frame 0x000033e8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x00003414 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x0000343c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) diff --git a/RTOS_IOT/Inc/HTS221.h b/RTOS_IOT/Inc/HTS221.h new file mode 100644 index 0000000..9c6cd68 --- /dev/null +++ b/RTOS_IOT/Inc/HTS221.h @@ -0,0 +1,141 @@ +/* + * HTS221.h + * + * Created on: Oct 14, 2017 + * Author: pt + */ + +#include +#include +#include "stm32l0xx_hal.h" + + +#ifndef HTS221_H_ +#define HTS221_H_ + + + +#define HTS221_DevAddr 0xBE + +#define HTS221_SLAVE_ADDRESS 0x5F ///< I2C Slave Address +#define HTS221_DEVICE_ID 0xBC ///< Who am i device identifier +#define HTS221_DEFAULTSETTING (HTS221_AVGH_32|HTS221_AVGT_16) + + +// +/// @name AV_CONF:AVGH +/// Averaged humidity samples configuration +/// @{ +#define HTS221_AVGH_4 0b000 +#define HTS221_AVGH_8 0b001 +#define HTS221_AVGH_16 0b010 +#define HTS221_AVGH_32 0b011 // default +#define HTS221_AVGH_64 0b100 +#define HTS221_AVGH_128 0b101 +#define HTS221_AVGH_256 0b110 +#define HTS221_AVGH_512 0b111 +/// @} + +/// @name AV_CONF:AVGT +// Averaged temperature samples configuration +/// @{ +#define HTS221_AVGT_2 0b000000 +#define HTS221_AVGT_4 0b001000 +#define HTS221_AVGT_8 0b010000 +#define HTS221_AVGT_16 0b011000 // default +#define HTS221_AVGT_32 0b100000 +#define HTS221_AVGT_64 0b101000 +#define HTS221_AVGT_128 0b110000 +#define HTS221_AVGT_256 0b111000 +/// @} + +/// @name CTRL_REG1 +/// @{ +#define HTS221_PD 0b10000000 //< Power Down control +#define HTS221_BDU 0b100 //< Block Data Update control +#define HTS221_ODR_ONE 0b00 //< Output Data Rate : One Shot +#define HTS221_ODR_1HZ 0b01 //< Output Data Rate : 1Hz +#define HTS221_ODR_7HZ 0b10 //< Output Data Rate : 7Hz +#define HTS221_ODR_125HZ 0b11 //< Output Data Rate : 12.5Hz +/// @} + +/// @name CTRL_REG2 +/// @{ +#define HTS221_BOOT 0b10000000 //< Reboot memory content +#define HTS221_HEATER 0b10 //< Heater +#define HTS221_ONE_SHOT 0b1 //< One shot enable +/// @} + +/// @name CTRL_REG3 +/// @{ +#define HTS221_CTRL_REG3_DEFAULT 0x00 //< DRDY pin is no connect in FaBo Brick +/// @} + +/// @name STATUS_REG +/// @{ +#define HTS221_H_DA 0x2 //< Humidity Data Available +#define HTS221_T_DA 0x1 //< Temperature Data Available +/// @} + +/// @name Register Addresses +/// @{ +#define HTS221_WHO_AM_I 0x0F +#define HTS221_AV_CONF 0x10 +#define HTS221_CTRL_REG1 0x20 +#define HTS221_CTRL_REG2 0x21 +#define HTS221_CTRL_REG3 0x22 +#define HTS221_STATUS_REG 0x27 +#define HTS221_HUMIDITY_OUT_L 0x28 +#define HTS221_HUMIDITY_OUT_H 0x29 +#define HTS221_TEMP_OUT_L 0x2A +#define HTS221_TEMP_OUT_H 0x2B +#define HTS221_H0_RH_X2 0x30 +#define HTS221_H1_RH_X2 0x31 +#define HTS221_T0_DEGC_X8 0x32 +#define HTS221_T1_DEGC_X8 0x33 +#define HTS221_T1_T0_MSB 0x35 +#define HTS221_H0_T0_OUT_L 0x36 +#define HTS221_H0_T0_OUT_H 0x37 +#define HTS221_H1_T0_OUT_L 0x3A +#define HTS221_H1_T0_OUT_H 0x3B +#define HTS221_T0_OUT_L 0x3C +#define HTS221_T0_OUT_H 0x3D +#define HTS221_T1_OUT_L 0x3E +#define HTS221_T1_OUT_H 0x3F +/// @} + +bool HTS221_Init (I2C_HandleTypeDef * hi2c); +void HTS221_ConfigDevice (uint8_t Config); +double HTS221_GetTemperature (void); +double HTS221_GetHumidity (void); + +#endif /* HTS221_H_ */ + + + +// +///** +// @class FaBoHumidity_HTS221 +// @brief FaBo Humidity I2C Controll class +//*/ +//class FaBoHumidity_HTS221 { +// public: +// FaBoHumidity_HTS221(uint8_t addr = HTS221_SLAVE_ADDRESS); +// bool begin(void); +// bool checkDevice(void); +// void powerOn(void); +// void configDevice(void); +// void readCoef(void); +// double getHumidity(void); +// double getTemperature(void); +// private: +// uint8_t _i2caddr; +// uint8_t _H0_rH_x2, _H1_rH_x2; +// uint16_t _T0_degC_x8, _T1_degC_x8; +// int16_t _H0_T0_OUT, _H1_T0_OUT; +// int16_t _T0_OUT, _T1_OUT; +// uint8_t readI2c(uint8_t registerAddr); +// void writeI2c(uint8_t registerAddr, uint8_t data); +//}; +// +//#endif // FABOHUMIDITY_HTS221_H diff --git a/RTOS_IOT/Testing Debug.cfg b/RTOS_IOT/RTOS_IOT Debug.cfg similarity index 100% rename from RTOS_IOT/Testing Debug.cfg rename to RTOS_IOT/RTOS_IOT Debug.cfg diff --git a/RTOS_IOT/Src/HTS221.c b/RTOS_IOT/Src/HTS221.c new file mode 100644 index 0000000..479a09e --- /dev/null +++ b/RTOS_IOT/Src/HTS221.c @@ -0,0 +1,143 @@ +/* + * HTS221.c + * + * Created on: Oct 14, 2017 + * Author: pt + */ + +#include "main.h" +#include "HTS221.h" + +#define readI2c HTS221_I2C_Read_return + +struct { + uint8_t _H0_rH_x2; + uint8_t _H1_rH_x2; + uint16_t _T0_degC_x8; + uint16_t _T1_degC_x8; + int16_t _H0_T0_OUT; + int16_t _H1_T0_OUT; + int16_t _T0_OUT; + int16_t _T1_OUT; +}HTS221_CoefStruc; + +I2C_HandleTypeDef * HTS221_I2CHander; + +static uint8_t HTS221_I2C_Read_return (uint8_t MemAddress); +static void HTS221_I2C_Read (uint8_t MemAddress, uint8_t* dat, uint8_t items); +static void HTS221_I2C_Write(uint8_t MemAddress, uint8_t* dat, uint8_t items); + +static bool HTS221_CheckAvailable (void); +static void HTS221_EnableDevice (void); +static void HTS221_GetCoefficient (void); + + +static uint8_t HTS221_I2C_Read_return (uint8_t MemAddress){ + uint8_t dat = 0; + HTS221_I2C_Read(MemAddress,&dat,1); + return dat; +} + +static void HTS221_I2C_Read (uint8_t MemAddress, uint8_t* dat, uint8_t items){ + HAL_I2C_Mem_Read(HTS221_I2CHander,HTS221_DevAddr, MemAddress, I2C_MEMADD_SIZE_8BIT,dat,items,items*2); +} + +static void HTS221_I2C_Write(uint8_t MemAddress, uint8_t* dat, uint8_t items){ + HAL_I2C_Mem_Write(HTS221_I2CHander,HTS221_DevAddr, MemAddress, I2C_MEMADD_SIZE_8BIT,dat,items,items*2); +} + +bool HTS221_Init (I2C_HandleTypeDef * hi2c) +{ + HTS221_I2CHander = hi2c; + if (HTS221_CheckAvailable()){ + HTS221_EnableDevice(); + HTS221_GetCoefficient(); + HTS221_ConfigDevice(HTS221_DEFAULTSETTING); + return (true); + } + else{ + return (false); + } +} + +static bool HTS221_CheckAvailable (void){ + if (HTS221_I2C_Read_return(HTS221_WHO_AM_I)==HTS221_DEVICE_ID) + return (true); + else + return (false); +} + +static void HTS221_GetCoefficient (void){ + uint8_t data = 0; + HTS221_CoefStruc._H0_rH_x2 = HTS221_I2C_Read_return(HTS221_H0_RH_X2); + HTS221_CoefStruc._H1_rH_x2 = HTS221_I2C_Read_return(HTS221_H1_RH_X2); + data = HTS221_I2C_Read_return(HTS221_T1_T0_MSB); + HTS221_CoefStruc._T0_degC_x8 = ( data & 0x3 ) << 8; + HTS221_CoefStruc._T0_degC_x8 |= HTS221_I2C_Read_return(HTS221_T0_DEGC_X8); + HTS221_CoefStruc._T1_degC_x8 = ( data & 0xC ) << 6; + HTS221_CoefStruc._T1_degC_x8 |= HTS221_I2C_Read_return(HTS221_T1_DEGC_X8); + HTS221_CoefStruc._H0_T0_OUT = HTS221_I2C_Read_return(HTS221_H0_T0_OUT_H) << 8; + HTS221_CoefStruc._H0_T0_OUT |= HTS221_I2C_Read_return(HTS221_H0_T0_OUT_L); + HTS221_CoefStruc._H1_T0_OUT = HTS221_I2C_Read_return(HTS221_H1_T0_OUT_H) << 8; + HTS221_CoefStruc._H1_T0_OUT |= HTS221_I2C_Read_return(HTS221_H1_T0_OUT_L); + HTS221_CoefStruc._T0_OUT = HTS221_I2C_Read_return(HTS221_T0_OUT_H) << 8; + HTS221_CoefStruc._T0_OUT |= HTS221_I2C_Read_return(HTS221_T0_OUT_L); + HTS221_CoefStruc._T1_OUT = HTS221_I2C_Read_return(HTS221_T1_OUT_H) << 8; + HTS221_CoefStruc._T1_OUT |= HTS221_I2C_Read_return(HTS221_T1_OUT_L); +} + +static void HTS221_EnableDevice (void){ + uint8_t dat = 0; + dat |= HTS221_PD; + dat |= HTS221_ODR_1HZ; + HAL_I2C_Mem_Write(HTS221_I2CHander,HTS221_DevAddr,HTS221_CTRL_REG1,I2C_MEMADD_SIZE_8BIT,&dat,1,10); +} + +void HTS221_ConfigDevice (uint8_t Config){ + uint8_t data = 0; +// data |= HTS221_AVGH_32; +// data |= HTS221_AVGT_16; + HTS221_I2C_Write(HTS221_AV_CONF,&data,sizeof(data)); +} + + + +double HTS221_GetHumidity (void){ + uint8_t data; + int16_t H_OUT = 0; + double t_H0_rH, t_H1_rH; + double humidity = 0.0; + + data = readI2c(HTS221_STATUS_REG); + if ( data & HTS221_H_DA ) { + H_OUT = HTS221_I2C_Read_return(HTS221_HUMIDITY_OUT_H) << 8; + H_OUT |= HTS221_I2C_Read_return(HTS221_HUMIDITY_OUT_L); + t_H0_rH = HTS221_CoefStruc._H0_rH_x2 / 2.0; + t_H1_rH = HTS221_CoefStruc._H1_rH_x2 / 2.0; + humidity = t_H0_rH + ( t_H1_rH - t_H0_rH ) * ( H_OUT - HTS221_CoefStruc._H0_T0_OUT ) / ( HTS221_CoefStruc._H1_T0_OUT - HTS221_CoefStruc._H0_T0_OUT ); + } + return humidity; +} + +double HTS221_GetTemperature (void){ + uint8_t data = 0; + uint16_t T_OUT = 0; + double t_T0_degC, t_T1_degC; + double temperature = 0.0; + + data = readI2c(HTS221_STATUS_REG); + if ( data & HTS221_T_DA ) { + T_OUT = readI2c(HTS221_TEMP_OUT_H) << 8; + T_OUT |= readI2c(HTS221_TEMP_OUT_L); + t_T0_degC = HTS221_CoefStruc._T0_degC_x8 / 8.0; + t_T1_degC = HTS221_CoefStruc._T1_degC_x8 / 8.0; + temperature = t_T0_degC + ( t_T1_degC - t_T0_degC ) * ( T_OUT - HTS221_CoefStruc._T0_OUT ) / ( HTS221_CoefStruc._T1_OUT - HTS221_CoefStruc._T0_OUT ); + } + return temperature; +} + + + + + + diff --git a/RTOS_IOT/Src/main.c b/RTOS_IOT/Src/main.c index 81f4116..0b373f0 100644 --- a/RTOS_IOT/Src/main.c +++ b/RTOS_IOT/Src/main.c @@ -44,6 +44,7 @@ #include "main.h" #include "stm32l0xx_hal.h" #include "cmsis_os.h" +#include "HTS221.h" /* USER CODE BEGIN Includes */ @@ -86,13 +87,15 @@ typedef enum{ typedef struct{ - uint16_t temperature; - uint16_t humidity; + double temperature; + double humidity; // uint8_t * ptr_sent_Success; }QMessageData_USART; typedef struct{ EventId_NVM_Check EventId; + double temperature; + double humidity; uint8_t dataArray[4]; uint8_t* ptr_sent_Success; }QMessageData_ForNVM; @@ -147,8 +150,8 @@ int main(void) MX_I2C1_Init(); /* USER CODE BEGIN 2 */ -// __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); -// HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON,PWR_STOPENTRY_WFE); + __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); + HAL_PWR_EnterSLEEPMode(PWR_LOWPOWERREGULATOR_ON,PWR_STOPENTRY_WFE); /* USER CODE END 2 */ /* USER CODE BEGIN RTOS_MUTEX */ @@ -526,24 +529,13 @@ void func_UartPrint (void const* argument){ void func_SensorRead (void const* argument){ QMessageData_ForNVM data; - uint8_t I2C_Buffer[5]; -// = {0b10000111,0b00000000,0b00000000,} - - HAL_I2C_Mem_Write(&hi2c1,0xBE,0x20,I2C_MEMADD_SIZE_8BIT,I2C_Buffer,3,100); + HTS221_Init(&hi2c1); for(;;) { - HAL_I2C_Mem_Read(&hi2c1,0xBE,0x0F,I2C_MEMADD_SIZE_8BIT,&I2C_Buffer[0],1,100); - HAL_I2C_Mem_Read(&hi2c1,0xBE,0x27,I2C_MEMADD_SIZE_8BIT,&I2C_Buffer[1],1,100); - HAL_I2C_Mem_Read(&hi2c1,0xBE,0x28,I2C_MEMADD_SIZE_8BIT,&I2C_Buffer[3],4,100); - data.EventId = EV_ReadsFromTempSensor; - data.dataArray[0] = I2C_Buffer[0]; - data.dataArray[1] = I2C_Buffer[1]; - data.dataArray[2] = I2C_Buffer[2]; - data.dataArray[4] = I2C_Buffer[3]; - + data.temperature = HTS221_GetTemperature(); + data.humidity = HTS221_GetHumidity(); xQueueSend(Queue_SendTo_TaskNVM,&data,100); - osDelay(1000); } } From 69b5aea899bde1417ee1a3e701d6868a89c01d75 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 05:57:15 +0800 Subject: [PATCH 05/18] ProgramFlowDiagram.xml --- Untitled Diagram.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 Untitled Diagram.xml diff --git a/Untitled Diagram.xml b/Untitled Diagram.xml new file mode 100644 index 0000000..9462b52 --- /dev/null +++ b/Untitled Diagram.xml @@ -0,0 +1 @@ +7V1Lc6M4EP41Pk4VIJ7HdSaZOWSqpipbu2cFZMOOjFwgj+P99SuMBBjZGBIbRFa+xGo1D/f3datbEmQBHjZv3zK4jX+QCOGFZURvC/B1YVmmDWz2p5AcSokdBKVgnSURV6oFL8m/iAsNLt0lEcpPFCkhmCbbU2FI0hSF9EQGs4zsT9VWBJ9edQvXSBK8hBDL0r+TiMZcahpG3fEdJeuYX9p3eMcrDH+tM7JL+fUWFlgdP2X3Bopzcf08hhHZN0TgcQEeMkJo+W3z9oBwYVthtvK4pwu91X1nKKV9DvA85IaBtzIDN4K+D77wM/yGeMdt8ZMZnt8sPQgD5ftkg2HKWsuYbjATmuxrGCc4eoYHsisunlNmDNFaslZGOdLspsDyaCVU3EfRqgxRNDB8RXhZmfKBYJKxrpQcL5jTjPxCQsgsbBw/VY9ArLijVYJxQ5NjweQkpU9wk+CCoH+hLIIp5GJ+jz5vnrsOxMk6ZbKQWRmxzqVsdmFHlFH01hBxGL4hskE0OzAV3utxRgiP4c19Tb/A5bK4wTxPMA9yyq+rM9ewsy8c+Z4ssCQWPBdgW4bZkwkS2rKFLlLvusm4jSzZRuZZG4F72MiXbCTZpqZ4YZN9nFD0soVh0btngbNlsk/mARdJ1dslrFOXcB0ZbuMM3O490A402uOibTpTwi0SEY333fAGp3g77ploPhrelivBiyKWEvImyWhM1iSF+LGWLk8J0AD7Gr5sbPyjyFJbsqekuOEyHWqMnw5rozQSR4QY5nkS/hknadnBDzPLVuOgfxClB96GO0qYqP4hz4Rsq8F6AOE+RKz+WUBOdlmIuodeZqM1ungefqICxk46ZghDmvw+zfxvSy5Pk2s+5BLE6WRXcGtyHQ9lKMBDQ2FLkpTmjTP/LASNIdM+P2Y+XdD3OtXZl/IGapZXv+SdxPc18edD/KBPVLWUiaoif9DkmgO5TDBFVH0/ueSJDk0udcnlzotcci2pyaUsucS8xBzywdaEWdCa/O9WB163utepfvvsEQDtJvNxk14DvOmoE4QDza75sKtXELaAMuyydXEyJ3b1iV2WPRW7TMN7hZ6LbASAswqCL7o4mRG5TK/PwOgrQy5dnMyIXGJZsptcN49c76pOXLdVnpjd9UZb33G69W2jU//DBYrkKbo++XSeMtkkkUQuW5Prs5HL+F+EYX/kKOxoR5mPo5h96vjbR+F3OUqLyO619CP4oL55Z0fRW5zm5Ci20umKPJ1anlPeMS6Xk1PsGBe9rbFs2h3kYqeR3mTad5MpGAo4aMdkGe/R9pjal1xEriMndBFgKeUilnaRYS5iDwZcqX338jgi4x2Tzesuv471537C7OPIt3aPnnvmzB8NeDk6ake/q6NP/MCFXn5XpBoRE42d1Uiv+S11lt+dS6mWPKs6Yapl+0qlWrLRdATuBNwZCji4PuCOmGq5OtUaDflWqgXOuPp4qZanHX1cR69WpqdxdP3s+sh4T5xa93l2XQf2uwR2d8oaGug9A4rUVGJNurOm4krdNRVP0hSoqYBeaJ8Tu/o8EicyQRXYpVen58SuPs+KizxEAXbJpS6fD5Jj2oTzQW57Qn7a+SD9grOByaM7FHClykRL70YYG29/Urwtjfe4eE88LdBnaV3jfUO8z00GjIc30G8dUySjFqVNZ0bd5512YohWIKMG+tVeM2JX9RL1TnZZyrBLXqHi9Zo8SzBhveYbKtVrlt5BNXB894YCPuL4zpr1fwEon/6o/9UCePwP \ No newline at end of file From 0205abf9e806b72f2383ba271c2191fe777bd514 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 05:59:06 +0800 Subject: [PATCH 06/18] RTOS_IOT.xml --- Untitled Diagram.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Untitled Diagram.xml b/Untitled Diagram.xml index 9462b52..1aef78b 100644 --- a/Untitled Diagram.xml +++ b/Untitled Diagram.xml @@ -1 +1 @@ -7V1Lc6M4EP41Pk4VIJ7HdSaZOWSqpipbu2cFZMOOjFwgj+P99SuMBBjZGBIbRFa+xGo1D/f3datbEmQBHjZv3zK4jX+QCOGFZURvC/B1YVmmDWz2p5AcSokdBKVgnSURV6oFL8m/iAsNLt0lEcpPFCkhmCbbU2FI0hSF9EQGs4zsT9VWBJ9edQvXSBK8hBDL0r+TiMZcahpG3fEdJeuYX9p3eMcrDH+tM7JL+fUWFlgdP2X3Bopzcf08hhHZN0TgcQEeMkJo+W3z9oBwYVthtvK4pwu91X1nKKV9DvA85IaBtzIDN4K+D77wM/yGeMdt8ZMZnt8sPQgD5ftkg2HKWsuYbjATmuxrGCc4eoYHsisunlNmDNFaslZGOdLspsDyaCVU3EfRqgxRNDB8RXhZmfKBYJKxrpQcL5jTjPxCQsgsbBw/VY9ArLijVYJxQ5NjweQkpU9wk+CCoH+hLIIp5GJ+jz5vnrsOxMk6ZbKQWRmxzqVsdmFHlFH01hBxGL4hskE0OzAV3utxRgiP4c19Tb/A5bK4wTxPMA9yyq+rM9ewsy8c+Z4ssCQWPBdgW4bZkwkS2rKFLlLvusm4jSzZRuZZG4F72MiXbCTZpqZ4YZN9nFD0soVh0btngbNlsk/mARdJ1dslrFOXcB0ZbuMM3O490A402uOibTpTwi0SEY333fAGp3g77ploPhrelivBiyKWEvImyWhM1iSF+LGWLk8J0AD7Gr5sbPyjyFJbsqekuOEyHWqMnw5rozQSR4QY5nkS/hknadnBDzPLVuOgfxClB96GO0qYqP4hz4Rsq8F6AOE+RKz+WUBOdlmIuodeZqM1ungefqICxk46ZghDmvw+zfxvSy5Pk2s+5BLE6WRXcGtyHQ9lKMBDQ2FLkpTmjTP/LASNIdM+P2Y+XdD3OtXZl/IGapZXv+SdxPc18edD/KBPVLWUiaoif9DkmgO5TDBFVH0/ueSJDk0udcnlzotcci2pyaUsucS8xBzywdaEWdCa/O9WB163utepfvvsEQDtJvNxk14DvOmoE4QDza75sKtXELaAMuyydXEyJ3b1iV2WPRW7TMN7hZ6LbASAswqCL7o4mRG5TK/PwOgrQy5dnMyIXGJZsptcN49c76pOXLdVnpjd9UZb33G69W2jU//DBYrkKbo++XSeMtkkkUQuW5Prs5HL+F+EYX/kKOxoR5mPo5h96vjbR+F3OUqLyO619CP4oL55Z0fRW5zm5Ci20umKPJ1anlPeMS6Xk1PsGBe9rbFs2h3kYqeR3mTad5MpGAo4aMdkGe/R9pjal1xEriMndBFgKeUilnaRYS5iDwZcqX338jgi4x2Tzesuv471537C7OPIt3aPnnvmzB8NeDk6ake/q6NP/MCFXn5XpBoRE42d1Uiv+S11lt+dS6mWPKs6Yapl+0qlWrLRdATuBNwZCji4PuCOmGq5OtUaDflWqgXOuPp4qZanHX1cR69WpqdxdP3s+sh4T5xa93l2XQf2uwR2d8oaGug9A4rUVGJNurOm4krdNRVP0hSoqYBeaJ8Tu/o8EicyQRXYpVen58SuPs+KizxEAXbJpS6fD5Jj2oTzQW57Qn7a+SD9grOByaM7FHClykRL70YYG29/Urwtjfe4eE88LdBnaV3jfUO8z00GjIc30G8dUySjFqVNZ0bd5512YohWIKMG+tVeM2JX9RL1TnZZyrBLXqHi9Zo8SzBhveYbKtVrlt5BNXB894YCPuL4zpr1fwEon/6o/9UCePwP \ No newline at end of file +7V1tc5s4EP41/pgZQLx+POeStjPptFNn7j4rIBuuMvKAXMf99SeMZDCyMU5sEKk8kwxaCZD3eXa1Kwk8AffL108ZXMVfSYTwxDKi1wn4e2JZvmex/4VgWwpsxysFiyyJSpFZCWbJb8SFBpeukwjlBw0pIZgmq0NhSNIUhfRABrOMbA6bzQk+vOsKLpAkmIUQy9J/k4jGXGoaRlXxGSWLmN/ad3jFCwx/LjKyTvn9JhaY7z5l9RKKa/H2eQwjsqmJwMME3GeE0PJo+XqPcKFaobbyvMcTtft+ZyilXU7wPOSGgTc3AzeCvg/u+BV+Qbzmuvjx/G3GJHfs78u3Z95tuhWqyjfJEsOUlaYxXWImNNlhGCc4eoJbsi66kVOmFlGaslJGOease2C60xcqelSU9iopChi+IDzdK/WeYJKxqpTsbpjTjPxEQsh0bew++xqBXdGjeYJxrSVHhclJSh/hMsEFVf9BWQRTyMW8jz4vHrsPxMkiZbKQ6RuxyqkMgNAoyih6rYk4IJ8QWSKabVkTXutxbgjb4cVNRcTA5bK4xkFPcBBy8i/2V64IwA44BzrywZL4MNvmFC0LNqQJTZgCfkOakLQjMSTwZYWd5OR5DXKVWbLKzKMqA7dQmS+pTNJNxfhCJ5s4oWi2gmFRu2EOtaGyD2YQJznW2UKsQwtxHRlu4wjc7i3QDjTa/aJtOkPCLSIUjffN8AaHeDvuEW/eG96WK8GLIhYr8iLJaEwWJIX4oZJODwlQA/scvmxs/KsIXxuyx6TocBkd1cZPh5VRGokzQgzzPAmf4yQtK/hpZlmqnfQfonTLy3BNCRNVX+SJkNV+sL6AcO8iVvcoICfrLETtQy/T0QKdvA6/UAFjKx0zhFlk8+swJbguuTxNrvGQSxCnlV3Btcm1O5WhALe1BiuSpDSvXfl7IagNmfbxMfPxRHuvtTk7KDtQsXz/Td5IfF8TfzzED7p4VUsZryriB02uMZDLBEN41beTy9TkGhG53HGRS84lNbmUJZeYlxhDPNiYMAsaqwLtzYHX3txrbX796BEAbSbjMZNOA7zpqOOEA82u8bCrkxO2gDLssnVyMiZ2dfFdlj0Uu0zDe4Gei2wEgDMPgjudnIyIXKbXZWD0lSGXTk5GRC6xLNlOrqt7rjdlJ67bSE/M9nyj2d5x2tvbRmv7dycokqXo/OTDWcpgk0QSuWxNro9GLuOPcMN+z17Y0YYyHkMxu+Tx1/fCbzKUBpHdc+FH8M725o0NRW9xGpOh2EqHK/J0annN2n7Jp2JTuGXI6eQQO8ZFbWMsG3YHudhppDeZdt1kCi4FHDR9sox3b3tM7VMmIueRA5oIsJQyEUubyGUmYl8MuFL77uVxRMY7JsuXdX4e64/9wNn7kW/sHj32CJrfG/Cyd9SGflNDH/iBC738rkg2IiYaW7ORTvNb6iy/O6dCLXlWdcBQy/aVCrVkpWkP3Aq4cyng4PyA22Oo5epQqzfkG6EWOGLq/YVanjb0fg19vzI9jKHrZ9d7xnvg0LrLs+vasd/EsbtD5tBA7xlQJKcSa9KtORVv1J5T8SBNgZwK6IX2MbGryyNxIhJUgV16dXpM7OryrLiIQxRgl5zq8vkg2acNOB/kNifkh50P0i84uzB4dC8FXKk00dK7EfrG2x8Ub0vj3S/eA08LdFla13hfEe9jkwH94Q30W8cUiahFatMaUXd5p50YohWIqIF+tdeI2LV/u3oruyxl2CWvUPF8TZ4lGDBf8w2V8jVL76C6cHz3LgW8x/GdFaufByif/qh+ggE8/A8= \ No newline at end of file From 942559f9c9cec84e798dd502749fb2b11f81f806 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 06:05:31 +0800 Subject: [PATCH 07/18] Added RTOS_IOT FlowChart.xml --- RTOS_IOT FlowChart.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 RTOS_IOT FlowChart.xml diff --git a/RTOS_IOT FlowChart.xml b/RTOS_IOT FlowChart.xml new file mode 100644 index 0000000..9462b52 --- /dev/null +++ b/RTOS_IOT FlowChart.xml @@ -0,0 +1 @@ +7V1Lc6M4EP41Pk4VIJ7HdSaZOWSqpipbu2cFZMOOjFwgj+P99SuMBBjZGBIbRFa+xGo1D/f3datbEmQBHjZv3zK4jX+QCOGFZURvC/B1YVmmDWz2p5AcSokdBKVgnSURV6oFL8m/iAsNLt0lEcpPFCkhmCbbU2FI0hSF9EQGs4zsT9VWBJ9edQvXSBK8hBDL0r+TiMZcahpG3fEdJeuYX9p3eMcrDH+tM7JL+fUWFlgdP2X3Bopzcf08hhHZN0TgcQEeMkJo+W3z9oBwYVthtvK4pwu91X1nKKV9DvA85IaBtzIDN4K+D77wM/yGeMdt8ZMZnt8sPQgD5ftkg2HKWsuYbjATmuxrGCc4eoYHsisunlNmDNFaslZGOdLspsDyaCVU3EfRqgxRNDB8RXhZmfKBYJKxrpQcL5jTjPxCQsgsbBw/VY9ArLijVYJxQ5NjweQkpU9wk+CCoH+hLIIp5GJ+jz5vnrsOxMk6ZbKQWRmxzqVsdmFHlFH01hBxGL4hskE0OzAV3utxRgiP4c19Tb/A5bK4wTxPMA9yyq+rM9ewsy8c+Z4ssCQWPBdgW4bZkwkS2rKFLlLvusm4jSzZRuZZG4F72MiXbCTZpqZ4YZN9nFD0soVh0btngbNlsk/mARdJ1dslrFOXcB0ZbuMM3O490A402uOibTpTwi0SEY333fAGp3g77ploPhrelivBiyKWEvImyWhM1iSF+LGWLk8J0AD7Gr5sbPyjyFJbsqekuOEyHWqMnw5rozQSR4QY5nkS/hknadnBDzPLVuOgfxClB96GO0qYqP4hz4Rsq8F6AOE+RKz+WUBOdlmIuodeZqM1ungefqICxk46ZghDmvw+zfxvSy5Pk2s+5BLE6WRXcGtyHQ9lKMBDQ2FLkpTmjTP/LASNIdM+P2Y+XdD3OtXZl/IGapZXv+SdxPc18edD/KBPVLWUiaoif9DkmgO5TDBFVH0/ueSJDk0udcnlzotcci2pyaUsucS8xBzywdaEWdCa/O9WB163utepfvvsEQDtJvNxk14DvOmoE4QDza75sKtXELaAMuyydXEyJ3b1iV2WPRW7TMN7hZ6LbASAswqCL7o4mRG5TK/PwOgrQy5dnMyIXGJZsptcN49c76pOXLdVnpjd9UZb33G69W2jU//DBYrkKbo++XSeMtkkkUQuW5Prs5HL+F+EYX/kKOxoR5mPo5h96vjbR+F3OUqLyO619CP4oL55Z0fRW5zm5Ci20umKPJ1anlPeMS6Xk1PsGBe9rbFs2h3kYqeR3mTad5MpGAo4aMdkGe/R9pjal1xEriMndBFgKeUilnaRYS5iDwZcqX338jgi4x2Tzesuv471537C7OPIt3aPnnvmzB8NeDk6ake/q6NP/MCFXn5XpBoRE42d1Uiv+S11lt+dS6mWPKs6Yapl+0qlWrLRdATuBNwZCji4PuCOmGq5OtUaDflWqgXOuPp4qZanHX1cR69WpqdxdP3s+sh4T5xa93l2XQf2uwR2d8oaGug9A4rUVGJNurOm4krdNRVP0hSoqYBeaJ8Tu/o8EicyQRXYpVen58SuPs+KizxEAXbJpS6fD5Jj2oTzQW57Qn7a+SD9grOByaM7FHClykRL70YYG29/Urwtjfe4eE88LdBnaV3jfUO8z00GjIc30G8dUySjFqVNZ0bd5512YohWIKMG+tVeM2JX9RL1TnZZyrBLXqHi9Zo8SzBhveYbKtVrlt5BNXB894YCPuL4zpr1fwEon/6o/9UCePwP \ No newline at end of file From deb00ddaca79b15170f4bb3f368a154cb8ed62f6 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 10:02:12 +0800 Subject: [PATCH 08/18] Extended output print function. modified queue send data struct. increase the sensor update frequency --- RTOS_IOT/Debug/RTOS_IOT.bin | Bin 24452 -> 25508 bytes RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1037548 -> 1043172 bytes RTOS_IOT/Debug/output.map | 2329 ++++++++++++++++++++--------------- RTOS_IOT/Inc/HTS221.h | 81 +- RTOS_IOT/Inc/main.h | 2 + RTOS_IOT/Output data.png | Bin 0 -> 12862 bytes RTOS_IOT/Src/HTS221.c | 10 +- RTOS_IOT/Src/main.c | 89 +- 8 files changed, 1461 insertions(+), 1050 deletions(-) create mode 100644 RTOS_IOT/Output data.png diff --git a/RTOS_IOT/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin index 5d436247a9d195d1203885d774ff3461651b681f..3e83ae483169fbe112e3c2495bbf32629eb993f7 100644 GIT binary patch delta 3462 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 delta 2377 zcmaJ>4Nz3q6+ZX!_DB9)gy8b)@|GCDpI|_X6OjeUimawcQm_SC22c(iM^Zj20i1J)+HaI*>_Z1Y4v0RG&+kOA96qebG|g$;Dnj$s&qef zh>|zi8);7w54)MRm)>_v9ZN*IG)b|Qj$%yF$}-r#)a> z6NH(j=uWT8JZ_EhCs8&&O+jHm8c`Z3=5GE;L`& z_qp&JU=5CJcB1$?RYOv5NrONSxurj@_S0oio*c>!rn+*xH;uwXN?pUIC{GBb1$9f| zDm%8OnC^2+m)CqiFoyl4Y_&Mz2D2rg@hMGk-Spl}G>PdBTK`$=b%*5~Sg2#fEqz*c zi;^Eo@2z{DU^Ejej?k-NX}n^DO4bdTgq&cHRz70wmZ5NQuqRe~(F7Fs)R}`C-xOiH zD=SElovd8jw?5MEhr%kP9kK(uye+sXonD2nit%N^##nITM3;Amxyhw}y6(-7c?*L& z+c?jr$Ji{)6$~%TWs31BvDN+dme>aBS>$j(YuUKU{@XC5E36;Vj0XxgW0u?V z{HN^K8<(xQFz;Ov?8L*!k5yLq2lMvG=61ACH>h!&g1?`R2QaLy9I*7az-OB3>q*ED`n)A;jR4*DlG8_dSe1on@zG*wNkz|tWV=zzZjt*=#K)35w_+r0Y}{-+3tntj+Hb4Af*j3W2@dG24ztPXEX zM`Bz@ATq1twxa7uj_WwRK*xAEuET&r4ydejM@QddO22)W7+9jq$e_@4$Z*PBr|>q} zW;Zb7&rOHS$drP@pOzEHe6foIP+-9}XebT*bPOIA&Lrcj0d^ub))e5&@uFt$h817` z*|5rdLw`@e{;b&PRQZQ0JUl%`*8anPcWT^eO$A#90{ZYoRsOj`4uWWQWqVBZ>0VNn z?y(gdw~ZSVeoxjPBr>Yjf`^VNL*J=Eu3icm3(|sDJu^rX;m?|7J49frpon0%-P54pA*^fL31*(_eH zs2|e-b$0H-xqx%O%FeVpaQ#4t&9vsyVVR}2<=4Fx4_m55dAp)-XoT;Q75qsS zvUm{+RQ{~Y&a_!`o8>ILh=x%Lb|@?6%l4F$BKB=ho@EdA#2mWOW`2*@ z2M`L3J3}9tKRW94ZC+^miom=NaUAh?#M$_$+d8fxj&A_-`-rQE(n`E72z{J`740U( zZp7;d1#vz;>b9~4|2{`}P|vw$Oc4J$aBM(s{f__Uwj%d3t|Rev{Wv<1`>L6hbbPqz a$z9!hY@2sJw~MWP=24pbOLpLy%>Mw@{iB2c diff --git a/RTOS_IOT/Debug/RTOS_IOT.elf b/RTOS_IOT/Debug/RTOS_IOT.elf index a6f6bc71789fbebb1dbd4f7e0807d456c90d4dac..be6e8fd765c9767f165898edd2e63b168d230e53 100644 GIT binary patch delta 230122 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 mNZuu4B8My}S=ojsErtWe|+%*;r>`7Oo4 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 delta 223258 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%0D;IL(+BS1Nxd!? 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 Ee}|-M3IG5A diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index f4be7aa..86ec614 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -16,6 +16,8 @@ c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.20 Src/HTS221.o (__aeabi_dmul) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) Src/HTS221.o (__aeabi_dsub) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + Src/main.o (__aeabi_d2iz) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) Src/HTS221.o (__aeabi_i2d) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) @@ -28,10 +30,18 @@ c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) (_global_impure_ptr) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (__libc_init_array) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + Src/main.o (itoa) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) Middlewares/Third_Party/FreeRTOS/Source/queue.o (memcpy) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (memset) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + Src/main.o (strcat) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + Src/main.o (strlen) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) (__utoa) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) (_exit) @@ -133,6 +143,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o @@ -239,6 +253,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o @@ -263,13 +281,28 @@ Discarded input sections .text.HAL_MPU_ConfigRegion 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o @@ -279,19 +312,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o @@ -384,6 +406,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o @@ -415,15 +441,30 @@ Discarded input sections .debug_aranges 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_ranges 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x322 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x377 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o @@ -433,19 +474,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o @@ -477,8 +507,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_line 0x00000000 0xc6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_str 0x00000000 0x7a401 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_line 0x00000000 0xcb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_str 0x00000000 0x7a4ff Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_frame 0x00000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .ARM.attributes @@ -544,6 +574,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -579,15 +613,30 @@ Discarded input sections .debug_aranges 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_ranges 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x31d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x372 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -597,19 +646,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -641,8 +679,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_line 0x00000000 0x9ae Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_str 0x00000000 0x7a318 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_line 0x00000000 0x9f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_str 0x00000000 0x7a416 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_frame 0x00000000 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .ARM.attributes @@ -709,6 +747,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o @@ -768,15 +810,30 @@ Discarded input sections .debug_aranges 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o @@ -786,19 +843,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o @@ -830,8 +876,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_line 0x00000000 0xabc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_str 0x00000000 0x7a5f8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_line 0x00000000 0xb05 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_str 0x00000000 0x7a6f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_frame 0x00000000 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .ARM.attributes @@ -897,6 +943,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o @@ -907,15 +957,30 @@ Discarded input sections .debug_aranges 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_ranges 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o @@ -925,19 +990,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o @@ -969,8 +1023,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_line 0x00000000 0x890 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_str 0x00000000 0x7a286 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_line 0x00000000 0x8d9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_str 0x00000000 0x7a384 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_frame 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .ARM.attributes @@ -1036,6 +1090,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -1050,13 +1108,28 @@ Discarded input sections .text.HAL_GPIO_EXTI_IRQHandler 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -1066,19 +1139,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -1171,6 +1233,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o @@ -1299,13 +1365,28 @@ Discarded input sections .text.HAL_I2C_GetError 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o @@ -1315,19 +1396,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o @@ -1420,6 +1490,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o @@ -1432,13 +1506,28 @@ Discarded input sections .text.HAL_I2CEx_DisableFastModePlus 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o @@ -1448,19 +1537,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o @@ -1553,6 +1631,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o @@ -1645,35 +1727,39 @@ Discarded input sections .text.HAL_IRDA_GetError 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o @@ -1766,6 +1852,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o @@ -1802,13 +1892,28 @@ Discarded input sections .text.HAL_PWR_PVD_IRQHandler 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o @@ -1818,19 +1923,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o @@ -1923,6 +2017,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o @@ -1946,15 +2044,30 @@ Discarded input sections .debug_aranges 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_ranges 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x322 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x377 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o @@ -1964,19 +2077,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o @@ -2008,8 +2110,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_line 0x00000000 0x889 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_str 0x00000000 0x7a1ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_line 0x00000000 0x8d2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_str 0x00000000 0x7a2aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_frame 0x00000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .ARM.attributes @@ -2075,6 +2177,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o @@ -2093,13 +2199,28 @@ Discarded input sections .text.HAL_RCC_NMI_IRQHandler 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o @@ -2109,19 +2230,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o @@ -2214,6 +2324,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o @@ -2252,13 +2366,28 @@ Discarded input sections .text.HAL_RCCEx_CRS_IRQHandler 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o @@ -2268,19 +2397,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o @@ -2373,6 +2491,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o @@ -2396,22 +2518,31 @@ Discarded input sections 0x00000000 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .text.HAL_RTC_SetAlarm_IT 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.RTC_Bcd2ToByte - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_GetTime - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_GetDate - 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .text.HAL_RTC_GetAlarm 0x00000000 0xc4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o @@ -2421,19 +2552,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o @@ -2526,6 +2646,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o @@ -2592,13 +2716,28 @@ Discarded input sections .text.HAL_RTCEx_PollForAlarmBEvent 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o @@ -2608,19 +2747,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o @@ -2713,6 +2841,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o @@ -2720,15 +2852,30 @@ Discarded input sections .debug_abbrev 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_aranges 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x31d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x372 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o @@ -2738,19 +2885,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o @@ -2782,8 +2918,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_line 0x00000000 0x7f8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_str 0x00000000 0x7a03e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_line 0x00000000 0x841 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_str 0x00000000 0x7a13c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .ARM.attributes 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o @@ -2848,6 +2984,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o @@ -2855,15 +2995,30 @@ Discarded input sections .debug_abbrev 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_aranges 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o @@ -2873,19 +3028,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o @@ -2917,8 +3061,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_line 0x00000000 0x7fb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_str 0x00000000 0x7a041 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_line 0x00000000 0x844 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_str 0x00000000 0x7a13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .ARM.attributes 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o @@ -2983,6 +3127,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o @@ -3091,13 +3239,28 @@ Discarded input sections .text.HAL_MultiProcessor_DisableMuteMode 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o @@ -3107,19 +3270,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o @@ -3212,6 +3364,10 @@ Discarded input sections .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o @@ -3239,15 +3395,30 @@ Discarded input sections .debug_aranges 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_ranges 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o @@ -3257,19 +3428,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o @@ -3301,8 +3461,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_line 0x00000000 0x980 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_str 0x00000000 0x7a708 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_line 0x00000000 0x9c9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_str 0x00000000 0x7a806 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_frame 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .ARM.attributes @@ -3340,6 +3500,9 @@ Discarded input sections .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o @@ -3441,18 +3604,27 @@ Discarded input sections 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x26 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3472,6 +3644,20 @@ Discarded input sections .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3479,7 +3665,7 @@ Discarded input sections .debug_abbrev 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_aranges 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0xf3 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1e0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3489,6 +3675,20 @@ Discarded input sections .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3498,8 +3698,8 @@ Discarded input sections .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_line 0x00000000 0x475 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_str 0x00000000 0x6fa0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_line 0x00000000 0x525 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_str 0x00000000 0x971d Middlewares/Third_Party/FreeRTOS/Source/croutine.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/croutine.o .ARM.attributes 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3534,6 +3734,8 @@ Discarded input sections .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o @@ -3561,11 +3763,11 @@ Discarded input sections 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_info 0x00000000 0x920 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_abbrev 0x00000000 0x18f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_loc 0x00000000 0x8c6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_loc 0x00000000 0x8e0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_aranges 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_ranges 0x00000000 0x78 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x1e6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x20d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o @@ -3587,7 +3789,9 @@ Discarded input sections .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o @@ -3597,8 +3801,8 @@ Discarded input sections .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_line 0x00000000 0x6ec Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_str 0x00000000 0x9ecc Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_line 0x00000000 0x711 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_str 0x00000000 0x9ee8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_frame 0x00000000 0x12c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .ARM.attributes @@ -3632,6 +3836,8 @@ Discarded input sections .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o @@ -3656,7 +3862,9 @@ Discarded input sections .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/list.o @@ -3764,11 +3972,11 @@ Discarded input sections .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/queue.o @@ -3936,6 +4144,8 @@ Discarded input sections .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o @@ -3943,7 +4153,7 @@ Discarded input sections .debug_abbrev 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_aranges 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x1c2 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1e9 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/timers.o @@ -3965,7 +4175,9 @@ Discarded input sections .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/timers.o @@ -3976,8 +4188,8 @@ Discarded input sections .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_line 0x00000000 0x507 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_str 0x00000000 0xa115 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_line 0x00000000 0x52c Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_str 0x00000000 0xa131 Middlewares/Third_Party/FreeRTOS/Source/timers.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/timers.o .ARM.attributes 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/timers.o @@ -3998,6 +4210,20 @@ Discarded input sections .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text.vPortEndScheduler @@ -4011,6 +4237,20 @@ Discarded input sections .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o @@ -4049,6 +4289,8 @@ Discarded input sections .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.xPortGetFreeHeapSize @@ -4078,7 +4320,9 @@ Discarded input sections .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o @@ -4150,14 +4394,33 @@ Discarded input sections .group 0x00000000 0x8 Src/HTS221.o .group 0x00000000 0x8 Src/HTS221.o .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o .text 0x00000000 0x0 Src/HTS221.o .data 0x00000000 0x0 Src/HTS221.o .bss 0x00000000 0x0 Src/HTS221.o .debug_macro 0x00000000 0x832 Src/HTS221.o - .debug_macro 0x00000000 0x52 Src/HTS221.o .debug_macro 0x00000000 0x22 Src/HTS221.o - .debug_macro 0x00000000 0x87 Src/HTS221.o - .debug_macro 0x00000000 0x44 Src/HTS221.o + .debug_macro 0x00000000 0x4c Src/HTS221.o + .debug_macro 0x00000000 0x8d Src/HTS221.o + .debug_macro 0x00000000 0x35 Src/HTS221.o + .debug_macro 0x00000000 0x9c Src/HTS221.o + .debug_macro 0x00000000 0x174 Src/HTS221.o + .debug_macro 0x00000000 0x4a Src/HTS221.o + .debug_macro 0x00000000 0x52 Src/HTS221.o + .debug_macro 0x00000000 0x1f Src/HTS221.o + .debug_macro 0x00000000 0x43 Src/HTS221.o + .debug_macro 0x00000000 0x20 Src/HTS221.o + .debug_macro 0x00000000 0x187 Src/HTS221.o + .debug_macro 0x00000000 0x30d Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x35 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x29 Src/HTS221.o + .debug_macro 0x00000000 0x4c Src/HTS221.o .debug_macro 0x00000000 0xfd Src/HTS221.o .debug_macro 0x00000000 0x5e Src/HTS221.o .debug_macro 0x00000000 0x1df Src/HTS221.o @@ -4169,19 +4432,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Src/HTS221.o .debug_macro 0x00000000 0x3c Src/HTS221.o .debug_macro 0x00000000 0x34a2 Src/HTS221.o - .debug_macro 0x00000000 0x52 Src/HTS221.o - .debug_macro 0x00000000 0x35 Src/HTS221.o - .debug_macro 0x00000000 0x9c Src/HTS221.o - .debug_macro 0x00000000 0x16 Src/HTS221.o - .debug_macro 0x00000000 0x97 Src/HTS221.o - .debug_macro 0x00000000 0x30d Src/HTS221.o - .debug_macro 0x00000000 0xfd Src/HTS221.o + .debug_macro 0x00000000 0x1c Src/HTS221.o .debug_macro 0x00000000 0x10 Src/HTS221.o - .debug_macro 0x00000000 0x52 Src/HTS221.o - .debug_macro 0x00000000 0x1f Src/HTS221.o - .debug_macro 0x00000000 0x43 Src/HTS221.o - .debug_macro 0x00000000 0x20 Src/HTS221.o - .debug_macro 0x00000000 0x187 Src/HTS221.o .debug_macro 0x00000000 0x10 Src/HTS221.o .debug_macro 0x00000000 0x1c Src/HTS221.o .debug_macro 0x00000000 0x52 Src/HTS221.o @@ -4230,6 +4482,20 @@ Discarded input sections .group 0x00000000 0x8 Src/freertos.o .group 0x00000000 0x8 Src/freertos.o .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o .text 0x00000000 0x0 Src/freertos.o .data 0x00000000 0x0 Src/freertos.o .bss 0x00000000 0x0 Src/freertos.o @@ -4237,7 +4503,7 @@ Discarded input sections .debug_abbrev 0x00000000 0x29 Src/freertos.o .debug_aranges 0x00000000 0x18 Src/freertos.o - .debug_macro 0x00000000 0xe0 Src/freertos.o + .debug_macro 0x00000000 0x1cd Src/freertos.o .debug_macro 0x00000000 0x832 Src/freertos.o .debug_macro 0x00000000 0x174 Src/freertos.o .debug_macro 0x00000000 0x22 Src/freertos.o @@ -4247,6 +4513,20 @@ Discarded input sections .debug_macro 0x00000000 0x5e Src/freertos.o .debug_macro 0x00000000 0x1df Src/freertos.o .debug_macro 0x00000000 0x52 Src/freertos.o + .debug_macro 0x00000000 0x35 Src/freertos.o + .debug_macro 0x00000000 0x9c Src/freertos.o + .debug_macro 0x00000000 0x52 Src/freertos.o + .debug_macro 0x00000000 0x1f Src/freertos.o + .debug_macro 0x00000000 0x43 Src/freertos.o + .debug_macro 0x00000000 0x20 Src/freertos.o + .debug_macro 0x00000000 0x187 Src/freertos.o + .debug_macro 0x00000000 0x30d Src/freertos.o + .debug_macro 0x00000000 0x10 Src/freertos.o + .debug_macro 0x00000000 0x35 Src/freertos.o + .debug_macro 0x00000000 0x16 Src/freertos.o + .debug_macro 0x00000000 0x16 Src/freertos.o + .debug_macro 0x00000000 0x29 Src/freertos.o + .debug_macro 0x00000000 0x4c Src/freertos.o .debug_macro 0x00000000 0xd2 Src/freertos.o .debug_macro 0x00000000 0x168 Src/freertos.o .debug_macro 0x00000000 0xb6 Src/freertos.o @@ -4255,8 +4535,8 @@ Discarded input sections .debug_macro 0x00000000 0x416 Src/freertos.o .debug_macro 0x00000000 0xc0 Src/freertos.o .debug_macro 0x00000000 0x8c Src/freertos.o - .debug_line 0x00000000 0x443 Src/freertos.o - .debug_str 0x00000000 0x6997 Src/freertos.o + .debug_line 0x00000000 0x4f3 Src/freertos.o + .debug_str 0x00000000 0x9114 Src/freertos.o .comment 0x00000000 0x6f Src/freertos.o .ARM.attributes 0x00000000 0x32 Src/freertos.o @@ -4335,19 +4615,38 @@ Discarded input sections .group 0x00000000 0x8 Src/main.o .group 0x00000000 0x8 Src/main.o .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o .text 0x00000000 0x0 Src/main.o .data 0x00000000 0x0 Src/main.o .bss 0x00000000 0x0 Src/main.o .text.vApplicationTickHook 0x00000000 0x4 Src/main.o .debug_macro 0x00000000 0x832 Src/main.o + .debug_macro 0x00000000 0x22 Src/main.o + .debug_macro 0x00000000 0x4c Src/main.o + .debug_macro 0x00000000 0x8d Src/main.o + .debug_macro 0x00000000 0x35 Src/main.o + .debug_macro 0x00000000 0x9c Src/main.o + .debug_macro 0x00000000 0x174 Src/main.o + .debug_macro 0x00000000 0x4a Src/main.o .debug_macro 0x00000000 0x52 Src/main.o + .debug_macro 0x00000000 0x1f Src/main.o + .debug_macro 0x00000000 0x43 Src/main.o + .debug_macro 0x00000000 0x20 Src/main.o + .debug_macro 0x00000000 0x187 Src/main.o + .debug_macro 0x00000000 0x30d Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x35 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x29 Src/main.o + .debug_macro 0x00000000 0x4c Src/main.o .debug_macro 0x00000000 0xa3 Src/main.o .debug_macro 0x00000000 0x2e Src/main.o .debug_macro 0x00000000 0x28 Src/main.o - .debug_macro 0x00000000 0x22 Src/main.o - .debug_macro 0x00000000 0x87 Src/main.o - .debug_macro 0x00000000 0x44 Src/main.o .debug_macro 0x00000000 0xfd Src/main.o .debug_macro 0x00000000 0x5e Src/main.o .debug_macro 0x00000000 0x1df Src/main.o @@ -4357,19 +4656,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Src/main.o .debug_macro 0x00000000 0x3c Src/main.o .debug_macro 0x00000000 0x34a2 Src/main.o - .debug_macro 0x00000000 0x52 Src/main.o - .debug_macro 0x00000000 0x35 Src/main.o - .debug_macro 0x00000000 0x9c Src/main.o - .debug_macro 0x00000000 0x16 Src/main.o - .debug_macro 0x00000000 0x97 Src/main.o - .debug_macro 0x00000000 0x30d Src/main.o - .debug_macro 0x00000000 0xfd Src/main.o + .debug_macro 0x00000000 0x1c Src/main.o .debug_macro 0x00000000 0x10 Src/main.o - .debug_macro 0x00000000 0x52 Src/main.o - .debug_macro 0x00000000 0x1f Src/main.o - .debug_macro 0x00000000 0x43 Src/main.o - .debug_macro 0x00000000 0x20 Src/main.o - .debug_macro 0x00000000 0x187 Src/main.o .debug_macro 0x00000000 0x10 Src/main.o .debug_macro 0x00000000 0x1c Src/main.o .debug_macro 0x00000000 0x52 Src/main.o @@ -4413,7 +4701,11 @@ Discarded input sections .debug_macro 0x00000000 0x63 Src/main.o .debug_macro 0x00000000 0xcf Src/main.o .debug_macro 0x00000000 0x22 Src/main.o - .debug_macro 0x00000000 0x154 Src/main.o + .debug_macro 0x00000000 0x160 Src/main.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o @@ -4487,13 +4779,28 @@ Discarded input sections .text.HAL_UART_MspDeInit 0x00000000 0x2c Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x832 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x22 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x4c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x8d Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x9c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x174 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x4a Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x43 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x20 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x187 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x30d Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x29 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x4c Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0xa3 Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x2e Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x28 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x22 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x87 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x44 Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0xfd Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x5e Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x1df Src/stm32l0xx_hal_msp.o @@ -4503,19 +4810,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x3c Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x9c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x97 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x30d Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0xfd Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x1f Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x43 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x20 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x187 Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x1c Src/stm32l0xx_hal_msp.o .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o @@ -4620,17 +4916,36 @@ Discarded input sections .group 0x00000000 0x8 Src/stm32l0xx_it.o .group 0x00000000 0x8 Src/stm32l0xx_it.o .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o .text 0x00000000 0x0 Src/stm32l0xx_it.o .data 0x00000000 0x0 Src/stm32l0xx_it.o .bss 0x00000000 0x0 Src/stm32l0xx_it.o .debug_macro 0x00000000 0x832 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x22 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x4c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x8d Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x9c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x174 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x4a Src/stm32l0xx_it.o .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x43 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x20 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x187 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x30d Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x29 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x4c Src/stm32l0xx_it.o .debug_macro 0x00000000 0xa3 Src/stm32l0xx_it.o .debug_macro 0x00000000 0x2e Src/stm32l0xx_it.o .debug_macro 0x00000000 0x28 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x22 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x87 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x44 Src/stm32l0xx_it.o .debug_macro 0x00000000 0xfd Src/stm32l0xx_it.o .debug_macro 0x00000000 0x5e Src/stm32l0xx_it.o .debug_macro 0x00000000 0x1df Src/stm32l0xx_it.o @@ -4640,19 +4955,8 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_it.o .debug_macro 0x00000000 0x3c Src/stm32l0xx_it.o .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x9c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x97 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x30d Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xfd Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_it.o .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x43 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x20 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x187 Src/stm32l0xx_it.o .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o .debug_macro 0x00000000 0x1c Src/stm32l0xx_it.o .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o @@ -4757,6 +5061,10 @@ Discarded input sections .group 0x00000000 0x8 Src/system_stm32l0xx.o .group 0x00000000 0x8 Src/system_stm32l0xx.o .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o .text 0x00000000 0x0 Src/system_stm32l0xx.o .bss 0x00000000 0x0 Src/system_stm32l0xx.o .text.SystemCoreClockUpdate @@ -4776,21 +5084,25 @@ Discarded input sections .debug_macro 0x00000000 0x9cc0 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x3c Src/system_stm32l0xx.o .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0xa3 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x34a2 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x35 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x9c Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x97 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x30d Src/system_stm32l0xx.o - .debug_macro 0x00000000 0xfd Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x174 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x1f Src/system_stm32l0xx.o .debug_macro 0x00000000 0x43 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x20 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x187 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x30d Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x35 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x29 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x4c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xa3 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x34a2 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o .debug_macro 0x00000000 0x1c Src/system_stm32l0xx.o .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o @@ -4842,6 +5154,8 @@ Discarded input sections .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) @@ -4869,12 +5183,24 @@ Discarded input sections .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .text.utoa 0x00000000 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) @@ -4969,7 +5295,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000000 g_pfnVectors 0x080000c0 . = ALIGN (0x4) -.text 0x080000c0 0x5d0c +.text 0x080000c0 0x60bc 0x080000c0 . = ALIGN (0x4) *(.text) .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o @@ -4992,539 +5318,564 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x0800107c __aeabi_dmul .text 0x08001570 0x6a8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) 0x08001570 __aeabi_dsub - .text 0x08001c18 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - 0x08001c18 __aeabi_i2d - .text 0x08001c9c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - 0x08001c9c __clzsi2 - .text 0x08001cd8 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - 0x08001cd8 __clzdi2 + .text 0x08001c18 0x6c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + 0x08001c18 __aeabi_d2iz + .text 0x08001c84 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x08001c84 __aeabi_i2d + .text 0x08001d08 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x08001d08 __clzsi2 + .text 0x08001d44 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x08001d44 __clzdi2 + .text 0x08001d5c 0xe c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + 0x08001d5c strlen *(.text*) + *fill* 0x08001d6a 0x2 .text.HAL_InitTick - 0x08001cf0 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001cf0 HAL_InitTick + 0x08001d6c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001d6c HAL_InitTick .text.HAL_Init - 0x08001d18 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001d18 HAL_Init + 0x08001d94 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001d94 HAL_Init .text.HAL_IncTick - 0x08001d38 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001d38 HAL_IncTick + 0x08001db4 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001db4 HAL_IncTick .text.HAL_GetTick - 0x08001d48 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001d48 HAL_GetTick + 0x08001dc4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001dc4 HAL_GetTick .text.HAL_NVIC_SetPriority - 0x08001d54 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001d54 HAL_NVIC_SetPriority + 0x08001dd0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001dd0 HAL_NVIC_SetPriority .text.HAL_SYSTICK_Config - 0x08001db8 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001db8 HAL_SYSTICK_Config + 0x08001e34 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001e34 HAL_SYSTICK_Config .text.HAL_SYSTICK_CLKSourceConfig - 0x08001df0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001df0 HAL_SYSTICK_CLKSourceConfig + 0x08001e6c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001e6c HAL_SYSTICK_CLKSourceConfig .text.HAL_GPIO_Init - 0x08001e10 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08001e10 HAL_GPIO_Init + 0x08001e8c 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08001e8c HAL_GPIO_Init .text.HAL_GPIO_WritePin - 0x08001fa4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08001fa4 HAL_GPIO_WritePin + 0x08002020 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08002020 HAL_GPIO_WritePin .text.HAL_GPIO_TogglePin - 0x08001fb0 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08001fb0 HAL_GPIO_TogglePin + 0x0800202c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800202c HAL_GPIO_TogglePin .text.I2C_Flush_TXDR - 0x08001fb8 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002034 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_TransferConfig - 0x08001fd8 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002054 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x08001ffc 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002078 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnTXISFlagUntilTimeout - 0x08002074 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080020f0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x080020c8 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002144 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryWrite - 0x08002114 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002190 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x08002198 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002214 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x0800221c 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002298 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.HAL_I2C_Init - 0x0800226c 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x0800226c HAL_I2C_Init + 0x080022e8 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080022e8 HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x08002334 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002334 HAL_I2C_Mem_Write + 0x080023b0 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080023b0 HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x080024fc 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080024fc HAL_I2C_Mem_Read + 0x08002578 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002578 HAL_I2C_Mem_Read .text.HAL_I2CEx_ConfigAnalogFilter - 0x080026cc 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x080026cc HAL_I2CEx_ConfigAnalogFilter + 0x08002748 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002748 HAL_I2CEx_ConfigAnalogFilter .text.HAL_I2CEx_ConfigDigitalFilter - 0x08002724 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002724 HAL_I2CEx_ConfigDigitalFilter + 0x080027a0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x080027a0 HAL_I2CEx_ConfigDigitalFilter .text.IRDA_SetConfig - 0x08002778 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x080027f4 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_WaitOnFlagUntilTimeout - 0x0800290c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002988 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_CheckIdleState - 0x08002978 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x080029f4 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.HAL_IRDA_Init - 0x080029e8 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x080029e8 HAL_IRDA_Init + 0x08002a64 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002a64 HAL_IRDA_Init .text.HAL_PWR_EnterSLEEPMode - 0x08002a54 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x08002a54 HAL_PWR_EnterSLEEPMode + 0x08002ad0 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x08002ad0 HAL_PWR_EnterSLEEPMode .text.RCC_SetFlashLatencyFromMSIRange - 0x08002a84 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002b00 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .text.HAL_RCC_OscConfig - 0x08002b0c 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08002b0c HAL_RCC_OscConfig + 0x08002b88 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002b88 HAL_RCC_OscConfig .text.HAL_RCC_GetSysClockFreq - 0x080030c4 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080030c4 HAL_RCC_GetSysClockFreq + 0x08003140 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003140 HAL_RCC_GetSysClockFreq .text.HAL_RCC_ClockConfig - 0x08003158 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003158 HAL_RCC_ClockConfig + 0x080031d4 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080031d4 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x0800330c 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x0800330c HAL_RCC_GetHCLKFreq + 0x08003388 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003388 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x08003318 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003318 HAL_RCC_GetPCLK1Freq + 0x08003394 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003394 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x08003338 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003338 HAL_RCC_GetPCLK2Freq + 0x080033b4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080033b4 HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x08003358 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x08003358 HAL_RCCEx_PeriphCLKConfig + 0x080033d4 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080033d4 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCCEx_GetPeriphCLKFreq - 0x08003544 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x08003544 HAL_RCCEx_GetPeriphCLKFreq + 0x080035c0 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080035c0 HAL_RCCEx_GetPeriphCLKFreq .text.HAL_RTC_WaitForSynchro - 0x080037bc 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080037bc HAL_RTC_WaitForSynchro + 0x08003838 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003838 HAL_RTC_WaitForSynchro .text.RTC_EnterInitMode - 0x080037f0 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080037f0 RTC_EnterInitMode + 0x0800386c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x0800386c RTC_EnterInitMode .text.HAL_RTC_Init - 0x0800382c 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x0800382c HAL_RTC_Init + 0x080038a8 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080038a8 HAL_RTC_Init .text.RTC_ByteToBcd2 - 0x080038d8 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080038d8 RTC_ByteToBcd2 + 0x08003954 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003954 RTC_ByteToBcd2 .text.HAL_RTC_SetTime - 0x080038f0 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080038f0 HAL_RTC_SetTime + 0x0800396c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x0800396c HAL_RTC_SetTime .text.HAL_RTC_SetDate - 0x080039fc 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080039fc HAL_RTC_SetDate + 0x08003a78 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003a78 HAL_RTC_SetDate + .text.RTC_Bcd2ToByte + 0x08003b64 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b64 RTC_Bcd2ToByte + .text.HAL_RTC_GetTime + 0x08003b78 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b78 HAL_RTC_GetTime + .text.HAL_RTC_GetDate + 0x08003bd0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003bd0 HAL_RTC_GetDate .text.HAL_RTCEx_BKUPWrite - 0x08003ae8 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003ae8 HAL_RTCEx_BKUPWrite + 0x08003c18 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003c18 HAL_RTCEx_BKUPWrite .text.HAL_RTCEx_BKUPRead - 0x08003af4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003af4 HAL_RTCEx_BKUPRead + 0x08003c24 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003c24 HAL_RTCEx_BKUPRead .text.UART_SetConfig - 0x08003b00 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08003b00 UART_SetConfig + 0x08003c30 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08003c30 UART_SetConfig .text.UART_AdvFeatureConfig - 0x08003e40 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08003e40 UART_AdvFeatureConfig + 0x08003f70 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08003f70 UART_AdvFeatureConfig .text.UART_WaitOnFlagUntilTimeout - 0x08003f20 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08003f20 UART_WaitOnFlagUntilTimeout + 0x08004050 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004050 UART_WaitOnFlagUntilTimeout .text.HAL_UART_Transmit - 0x08003f8c 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08003f8c HAL_UART_Transmit + 0x080040bc 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080040bc HAL_UART_Transmit .text.UART_CheckIdleState - 0x08004070 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004070 UART_CheckIdleState + 0x080041a0 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080041a0 UART_CheckIdleState .text.HAL_UART_Init - 0x080040e0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080040e0 HAL_UART_Init + 0x08004210 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004210 HAL_UART_Init .text.makeFreeRtosPriority - 0x0800414c 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800427c 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.inHandlerMode - 0x08004158 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004288 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osKernelStart - 0x08004164 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004164 osKernelStart + 0x08004294 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004294 osKernelStart .text.osKernelSysTick - 0x08004170 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004170 osKernelSysTick + 0x080042a0 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080042a0 osKernelSysTick .text.osThreadCreate - 0x08004188 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004188 osThreadCreate - .text.osDelay 0x080041bc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080041bc osDelay + 0x080042b8 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080042b8 osThreadCreate + .text.osDelay 0x080042ec 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080042ec osDelay .text.osSystickHandler - 0x080041cc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080041cc osSystickHandler + 0x080042fc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080042fc osSystickHandler .text.osDelayUntil - 0x080041dc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080041dc osDelayUntil + 0x0800430c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800430c osDelayUntil .text.vListInitialise - 0x080041ec 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080041ec vListInitialise + 0x0800431c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0800431c vListInitialise .text.vListInitialiseItem - 0x08004204 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004204 vListInitialiseItem + 0x08004334 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004334 vListInitialiseItem .text.vListInsertEnd - 0x0800420c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0800420c vListInsertEnd + 0x0800433c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0800433c vListInsertEnd .text.vListInsert - 0x08004224 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004224 vListInsert + 0x08004354 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004354 vListInsert .text.uxListRemove - 0x08004254 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004254 uxListRemove + 0x08004384 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004384 uxListRemove .text.prvIsQueueFull - 0x08004278 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080043a8 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x08004298 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080043c8 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataToQueue - 0x080042b4 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080043e4 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvNotifyQueueSetContainer - 0x08004338 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004468 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x0800439c 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080044cc 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x080043c0 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080044f0 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericReset - 0x08004448 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004448 xQueueGenericReset + 0x08004578 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004578 xQueueGenericReset .text.prvInitialiseNewQueue - 0x080044b4 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080045e4 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericCreate - 0x080044dc 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x080044dc xQueueGenericCreate + 0x0800460c 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800460c xQueueGenericCreate .text.xQueueGenericSend - 0x0800451c 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0800451c xQueueGenericSend + 0x0800464c 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800464c xQueueGenericSend .text.xQueueGenericReceive - 0x0800467c 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0800467c xQueueGenericReceive + 0x080047ac 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080047ac xQueueGenericReceive .text.prvResetNextTaskUnblockTime - 0x080047fc 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800492c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x0800482c 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800495c 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseNewTask - 0x08004840 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004970 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x080048dc 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004a0c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x08004934 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004a64 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddCurrentTaskToDelayedList - 0x080049c8 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004af8 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskCreate - 0x08004a34 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004a34 xTaskCreate + 0x08004b64 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004b64 xTaskCreate .text.vTaskStartScheduler - 0x08004a94 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004a94 vTaskStartScheduler + 0x08004bc4 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004bc4 vTaskStartScheduler .text.vTaskSuspendAll - 0x08004ae8 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004ae8 vTaskSuspendAll + 0x08004c18 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004c18 vTaskSuspendAll .text.xTaskGetTickCount - 0x08004af8 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004af8 xTaskGetTickCount + 0x08004c28 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004c28 xTaskGetTickCount .text.xTaskGetTickCountFromISR - 0x08004b04 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004b04 xTaskGetTickCountFromISR + 0x08004c34 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004c34 xTaskGetTickCountFromISR .text.xTaskIncrementTick - 0x08004b10 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004b10 xTaskIncrementTick + 0x08004c40 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004c40 xTaskIncrementTick .text.xTaskResumeAll - 0x08004c14 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004c14 xTaskResumeAll + 0x08004d44 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d44 xTaskResumeAll .text.vTaskDelayUntil - 0x08004ce8 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004ce8 vTaskDelayUntil + 0x08004e18 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004e18 vTaskDelayUntil .text.vTaskDelay - 0x08004d60 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004d60 vTaskDelay + 0x08004e90 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004e90 vTaskDelay .text.prvCheckTasksWaitingTermination - 0x08004d94 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004ec4 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvIdleTask - 0x08004de4 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004f14 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskSwitchContext - 0x08004dfc 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004dfc vTaskSwitchContext + 0x08004f2c 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004f2c vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x08004e80 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004e80 vTaskPlaceOnEventList + 0x08004fb0 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004fb0 vTaskPlaceOnEventList .text.xTaskRemoveFromEventList - 0x08004ea4 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004ea4 xTaskRemoveFromEventList + 0x08004fd4 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004fd4 xTaskRemoveFromEventList .text.vTaskSetTimeOutState - 0x08004f1c 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004f1c vTaskSetTimeOutState + 0x0800504c 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800504c vTaskSetTimeOutState .text.xTaskCheckForTimeOut - 0x08004f34 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004f34 xTaskCheckForTimeOut + 0x08005064 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005064 xTaskCheckForTimeOut .text.vTaskMissedYield - 0x08004f98 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004f98 vTaskMissedYield + 0x080050c8 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080050c8 vTaskMissedYield .text.xTaskGetSchedulerState - 0x08004fa4 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004fa4 xTaskGetSchedulerState + 0x080050d4 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080050d4 xTaskGetSchedulerState .text.vTaskPriorityInherit - 0x08004fc4 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004fc4 vTaskPriorityInherit + 0x080050f4 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080050f4 vTaskPriorityInherit .text.xTaskPriorityDisinherit - 0x08005044 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005044 xTaskPriorityDisinherit + 0x08005174 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005174 xTaskPriorityDisinherit .text.pvTaskIncrementMutexHeldCount - 0x080050b8 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080050b8 pvTaskIncrementMutexHeldCount + 0x080051e8 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080051e8 pvTaskIncrementMutexHeldCount .text.prvTaskExitError - 0x080050d4 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - *fill* 0x080050e8 0x8 + 0x08005204 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x08005218 0x8 .text.vPortStartFirstTask - 0x080050f0 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005220 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text.pxPortInitialiseStack - 0x08005124 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005124 pxPortInitialiseStack + 0x08005254 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005254 pxPortInitialiseStack .text.SVC_Handler - 0x08005144 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005144 SVC_Handler + 0x08005274 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005274 SVC_Handler .text.vPortYield - 0x08005148 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005148 vPortYield + 0x08005278 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005278 vPortYield .text.vPortEnterCritical - 0x08005160 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005160 vPortEnterCritical + 0x08005290 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005290 vPortEnterCritical .text.vPortExitCritical - 0x08005178 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005178 vPortExitCritical + 0x080052a8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080052a8 vPortExitCritical .text.ulSetInterruptMaskFromISR - 0x08005198 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005198 ulSetInterruptMaskFromISR + 0x080052c8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080052c8 ulSetInterruptMaskFromISR .text.vClearInterruptMaskFromISR - 0x080051a4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080051a4 vClearInterruptMaskFromISR - *fill* 0x080051ac 0x4 + 0x080052d4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080052d4 vClearInterruptMaskFromISR + *fill* 0x080052dc 0x4 .text.PendSV_Handler - 0x080051b0 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080051b0 PendSV_Handler + 0x080052e0 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080052e0 PendSV_Handler .text.xPortSysTickHandler - 0x080051f4 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080051f4 xPortSysTickHandler + 0x08005324 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005324 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x08005218 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005218 vPortSetupTimerInterrupt + 0x08005348 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005348 vPortSetupTimerInterrupt .text.xPortStartScheduler - 0x08005240 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005240 xPortStartScheduler + 0x08005370 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005370 xPortStartScheduler .text.prvHeapInit - 0x08005274 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x080053a4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x080052c4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x080053f4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.pvPortMalloc - 0x08005314 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005314 pvPortMalloc + 0x08005444 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005444 pvPortMalloc .text.vPortFree - 0x080053d8 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x080053d8 vPortFree + 0x08005508 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005508 vPortFree .text.HTS221_I2C_Read - 0x08005430 0x24 Src/HTS221.o + 0x08005560 0x24 Src/HTS221.o .text.HTS221_I2C_Read_return - 0x08005454 0x1c Src/HTS221.o + 0x08005584 0x1c Src/HTS221.o .text.HTS221_CheckAvailable - 0x08005470 0x14 Src/HTS221.o + 0x080055a0 0x14 Src/HTS221.o .text.HTS221_GetCoefficient - 0x08005484 0xa4 Src/HTS221.o + 0x080055b4 0xa4 Src/HTS221.o .text.HTS221_EnableDevice - 0x08005528 0x2c Src/HTS221.o + 0x08005658 0x2c Src/HTS221.o .text.HTS221_I2C_Write - 0x08005554 0x24 Src/HTS221.o + 0x08005684 0x24 Src/HTS221.o .text.HTS221_ConfigDevice - 0x08005578 0x18 Src/HTS221.o - 0x08005578 HTS221_ConfigDevice + 0x080056a8 0x38 Src/HTS221.o + 0x080056a8 HTS221_ConfigDevice .text.HTS221_Init - 0x08005590 0x24 Src/HTS221.o - 0x08005590 HTS221_Init + 0x080056e0 0x28 Src/HTS221.o + 0x080056e0 HTS221_Init .text.HTS221_GetHumidity - 0x080055b4 0x9c Src/HTS221.o - 0x080055b4 HTS221_GetHumidity + 0x08005708 0x9c Src/HTS221.o + 0x08005708 HTS221_GetHumidity .text.HTS221_GetTemperature - 0x08005650 0x9c Src/HTS221.o - 0x08005650 HTS221_GetTemperature + 0x080057a4 0x9c Src/HTS221.o + 0x080057a4 HTS221_GetTemperature .text.MX_GPIO_Init - 0x080056ec 0x8c Src/main.o + 0x08005840 0x8c Src/main.o .text.func_NVM_Manager - 0x08005778 0x44 Src/main.o - 0x08005778 func_NVM_Manager + 0x080058cc 0x54 Src/main.o + 0x080058cc func_NVM_Manager .text.func_LEDBlink - 0x080057bc 0x34 Src/main.o - 0x080057bc func_LEDBlink + 0x08005920 0x34 Src/main.o + 0x08005920 func_LEDBlink .text.func_UartPrint - 0x080057f0 0x48 Src/main.o - 0x080057f0 func_UartPrint + 0x08005954 0x1a4 Src/main.o + 0x08005954 func_UartPrint .text.func_SensorRead - 0x08005838 0x40 Src/main.o - 0x08005838 func_SensorRead + 0x08005af8 0x6c Src/main.o + 0x08005af8 func_SensorRead .text.Error_Handler - 0x08005878 0x4 Src/main.o - 0x08005878 Error_Handler + 0x08005b64 0x4 Src/main.o + 0x08005b64 Error_Handler .text.MX_RTC_Init - 0x0800587c 0x90 Src/main.o + 0x08005b68 0x90 Src/main.o .text.MX_USART2_UART_Init - 0x0800590c 0x38 Src/main.o + 0x08005bf8 0x38 Src/main.o .text.MX_USART1_IRDA_Init - 0x08005944 0x38 Src/main.o + 0x08005c30 0x38 Src/main.o .text.MX_I2C1_Init - 0x0800597c 0x58 Src/main.o + 0x08005c68 0x58 Src/main.o .text.SystemClock_Config - 0x080059d4 0xa4 Src/main.o - 0x080059d4 SystemClock_Config - .text.main 0x08005a78 0xdc Src/main.o - 0x08005a78 main + 0x08005cc0 0xa4 Src/main.o + 0x08005cc0 SystemClock_Config + .text.main 0x08005d64 0xdc Src/main.o + 0x08005d64 main .text.HAL_MspInit - 0x08005b54 0x40 Src/stm32l0xx_hal_msp.o - 0x08005b54 HAL_MspInit + 0x08005e40 0x40 Src/stm32l0xx_hal_msp.o + 0x08005e40 HAL_MspInit .text.HAL_I2C_MspInit - 0x08005b94 0x48 Src/stm32l0xx_hal_msp.o - 0x08005b94 HAL_I2C_MspInit + 0x08005e80 0x48 Src/stm32l0xx_hal_msp.o + 0x08005e80 HAL_I2C_MspInit .text.HAL_RTC_MspInit - 0x08005bdc 0x20 Src/stm32l0xx_hal_msp.o - 0x08005bdc HAL_RTC_MspInit + 0x08005ec8 0x20 Src/stm32l0xx_hal_msp.o + 0x08005ec8 HAL_RTC_MspInit .text.HAL_IRDA_MspInit - 0x08005bfc 0x44 Src/stm32l0xx_hal_msp.o - 0x08005bfc HAL_IRDA_MspInit + 0x08005ee8 0x44 Src/stm32l0xx_hal_msp.o + 0x08005ee8 HAL_IRDA_MspInit .text.HAL_UART_MspInit - 0x08005c40 0x44 Src/stm32l0xx_hal_msp.o - 0x08005c40 HAL_UART_MspInit + 0x08005f2c 0x44 Src/stm32l0xx_hal_msp.o + 0x08005f2c HAL_UART_MspInit .text.SysTick_Handler - 0x08005c84 0xc Src/stm32l0xx_it.o - 0x08005c84 SysTick_Handler + 0x08005f70 0xc Src/stm32l0xx_it.o + 0x08005f70 SysTick_Handler .text.RTC_IRQHandler - 0x08005c90 0x4 Src/stm32l0xx_it.o - 0x08005c90 RTC_IRQHandler + 0x08005f7c 0x4 Src/stm32l0xx_it.o + 0x08005f7c RTC_IRQHandler .text.SystemInit - 0x08005c94 0x5c Src/system_stm32l0xx.o - 0x08005c94 SystemInit + 0x08005f80 0x5c Src/system_stm32l0xx.o + 0x08005f80 SystemInit .text.Reset_Handler - 0x08005cf0 0x50 startup/startup_stm32l053xx.o - 0x08005cf0 Reset_Handler + 0x08005fdc 0x50 startup/startup_stm32l053xx.o + 0x08005fdc Reset_Handler .text.Default_Handler - 0x08005d40 0x2 startup/startup_stm32l053xx.o - 0x08005d40 TSC_IRQHandler - 0x08005d40 HardFault_Handler - 0x08005d40 ADC1_COMP_IRQHandler - 0x08005d40 PVD_IRQHandler - 0x08005d40 NMI_Handler - 0x08005d40 I2C1_IRQHandler - 0x08005d40 RCC_CRS_IRQHandler - 0x08005d40 SPI1_IRQHandler - 0x08005d40 TIM6_DAC_IRQHandler - 0x08005d40 EXTI2_3_IRQHandler - 0x08005d40 I2C2_IRQHandler - 0x08005d40 LCD_IRQHandler - 0x08005d40 DMA1_Channel4_5_6_7_IRQHandler - 0x08005d40 EXTI4_15_IRQHandler - 0x08005d40 DMA1_Channel1_IRQHandler - 0x08005d40 Default_Handler - 0x08005d40 TIM22_IRQHandler - 0x08005d40 EXTI0_1_IRQHandler - 0x08005d40 USB_IRQHandler - 0x08005d40 SPI2_IRQHandler - 0x08005d40 TIM21_IRQHandler - 0x08005d40 WWDG_IRQHandler - 0x08005d40 TIM2_IRQHandler - 0x08005d40 DMA1_Channel2_3_IRQHandler - 0x08005d40 USART2_IRQHandler - 0x08005d40 FLASH_IRQHandler - 0x08005d40 USART1_IRQHandler - 0x08005d40 RNG_LPUART1_IRQHandler - 0x08005d40 LPTIM1_IRQHandler - *fill* 0x08005d42 0x2 + 0x0800602c 0x2 startup/startup_stm32l053xx.o + 0x0800602c TSC_IRQHandler + 0x0800602c HardFault_Handler + 0x0800602c ADC1_COMP_IRQHandler + 0x0800602c PVD_IRQHandler + 0x0800602c NMI_Handler + 0x0800602c I2C1_IRQHandler + 0x0800602c RCC_CRS_IRQHandler + 0x0800602c SPI1_IRQHandler + 0x0800602c TIM6_DAC_IRQHandler + 0x0800602c EXTI2_3_IRQHandler + 0x0800602c I2C2_IRQHandler + 0x0800602c LCD_IRQHandler + 0x0800602c DMA1_Channel4_5_6_7_IRQHandler + 0x0800602c EXTI4_15_IRQHandler + 0x0800602c DMA1_Channel1_IRQHandler + 0x0800602c Default_Handler + 0x0800602c TIM22_IRQHandler + 0x0800602c EXTI0_1_IRQHandler + 0x0800602c USB_IRQHandler + 0x0800602c SPI2_IRQHandler + 0x0800602c TIM21_IRQHandler + 0x0800602c WWDG_IRQHandler + 0x0800602c TIM2_IRQHandler + 0x0800602c DMA1_Channel2_3_IRQHandler + 0x0800602c USART2_IRQHandler + 0x0800602c FLASH_IRQHandler + 0x0800602c USART1_IRQHandler + 0x0800602c RNG_LPUART1_IRQHandler + 0x0800602c LPTIM1_IRQHandler + *fill* 0x0800602e 0x2 .text.__libc_init_array - 0x08005d44 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - 0x08005d44 __libc_init_array - .text.memcpy 0x08005d90 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - 0x08005d90 memcpy - .text.memset 0x08005da2 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - 0x08005da2 memset + 0x08006030 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x08006030 __libc_init_array + .text.__itoa 0x0800607c 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x0800607c __itoa + .text.itoa 0x080060aa 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x080060aa itoa + .text.memcpy 0x080060b2 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x080060b2 memcpy + .text.memset 0x080060c4 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x080060c4 memset + .text.strcat 0x080060d4 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + 0x080060d4 strcat + *fill* 0x080060ee 0x2 + .text.__utoa 0x080060f0 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x080060f0 __utoa *(.glue_7) - .glue_7 0x08005db2 0x0 linker stubs + .glue_7 0x08006164 0x0 linker stubs *(.glue_7t) - .glue_7t 0x08005db2 0x0 linker stubs + .glue_7t 0x08006164 0x0 linker stubs *(.eh_frame) - *fill* 0x08005db2 0x2 - .eh_frame 0x08005db4 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .eh_frame 0x08006164 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o *(.init) - .init 0x08005db4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08005db4 _init - .init 0x08005db8 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .init 0x08006164 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006164 _init + .init 0x08006168 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o *(.fini) - .fini 0x08005dc0 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08005dc0 _fini - .fini 0x08005dc4 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x08005dcc . = ALIGN (0x4) - 0x08005dcc _etext = . + .fini 0x08006170 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006170 _fini + .fini 0x08006174 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x0800617c . = ALIGN (0x4) + 0x0800617c _etext = . -.vfp11_veneer 0x08005dcc 0x0 - .vfp11_veneer 0x08005dcc 0x0 linker stubs +.vfp11_veneer 0x0800617c 0x0 + .vfp11_veneer 0x0800617c 0x0 linker stubs -.v4_bx 0x08005dcc 0x0 - .v4_bx 0x08005dcc 0x0 linker stubs +.v4_bx 0x0800617c 0x0 + .v4_bx 0x0800617c 0x0 linker stubs -.iplt 0x08005dcc 0x0 - .iplt 0x08005dcc 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.iplt 0x0800617c 0x0 + .iplt 0x0800617c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.rodata 0x08005dcc 0x1a0 - 0x08005dcc . = ALIGN (0x4) +.rodata 0x0800617c 0x210 + 0x0800617c . = ALIGN (0x4) *(.rodata) - .rodata 0x08005dcc 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .rodata 0x08005df0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .rodata 0x08005e38 0x50 Src/main.o - .rodata 0x08005e88 0x24 Src/system_stm32l0xx.o - 0x08005e88 PLLMulTable - 0x08005e94 AHBPrescTable - 0x08005ea4 APBPrescTable - .rodata 0x08005eac 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .rodata 0x08005eec 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .rodata 0x0800617c 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x080061a0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x080061e8 0x50 Src/main.o + .rodata 0x08006238 0x24 Src/system_stm32l0xx.o + 0x08006238 PLLMulTable + 0x08006244 AHBPrescTable + 0x08006254 APBPrescTable + .rodata 0x0800625c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .rodata 0x0800629c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) *(.rodata*) .rodata.str1.4 - 0x08005f2c 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x08005f31 0x3 + 0x080062dc 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x080062e1 0x3 .rodata.str1.4 - 0x08005f34 0x38 Src/main.o - 0x36 (size before relaxing) - 0x08005f6c . = ALIGN (0x4) + 0x080062e4 0x80 Src/main.o + 0x7e (size before relaxing) + .rodata.str1.1 + 0x08006364 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x0800638c . = ALIGN (0x4) + *fill* 0x08006389 0x3 .ARM.extab *(.ARM.extab* .gnu.linkonce.armextab.*) -.ARM 0x08005f6c 0x8 - 0x08005f6c __exidx_start = . +.ARM 0x0800638c 0x8 + 0x0800638c __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x08005f6c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x08005f74 __exidx_end = . + .ARM.exidx 0x0800638c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x08006394 __exidx_end = . -.rel.dyn 0x08005f74 0x0 - .rel.iplt 0x08005f74 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.rel.dyn 0x08006394 0x0 + .rel.iplt 0x08006394 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.preinit_array 0x08005f74 0x0 - 0x08005f74 PROVIDE (__preinit_array_start, .) +.preinit_array 0x08006394 0x0 + 0x08006394 PROVIDE (__preinit_array_start, .) *(.preinit_array*) - 0x08005f74 PROVIDE (__preinit_array_end, .) + 0x08006394 PROVIDE (__preinit_array_end, .) -.init_array 0x08005f74 0x4 - 0x08005f74 PROVIDE (__init_array_start, .) +.init_array 0x08006394 0x4 + 0x08006394 PROVIDE (__init_array_start, .) *(SORT(.init_array.*)) *(.init_array*) - .init_array 0x08005f74 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x08005f78 PROVIDE (__init_array_end, .) + .init_array 0x08006394 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x08006398 PROVIDE (__init_array_end, .) -.fini_array 0x08005f78 0x4 +.fini_array 0x08006398 0x4 [!provide] PROVIDE (__fini_array_start, .) *(SORT(.fini_array.*)) *(.fini_array*) - .fini_array 0x08005f78 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .fini_array 0x08006398 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o [!provide] PROVIDE (__fini_array_end, .) - 0x08005f7c _sidata = LOADADDR (.data) + 0x0800639c _sidata = LOADADDR (.data) -.data 0x20000000 0x8 load address 0x08005f7c +.data 0x20000000 0x8 load address 0x0800639c 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -5535,14 +5886,14 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000008 . = ALIGN (0x4) 0x20000008 _edata = . -.jcr 0x20000008 0x0 load address 0x08005f84 +.jcr 0x20000008 0x0 load address 0x080063a4 .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.igot.plt 0x20000008 0x0 load address 0x08005f84 +.igot.plt 0x20000008 0x0 load address 0x080063a4 .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o 0x20000008 . = ALIGN (0x4) -.bss 0x20000008 0xebc load address 0x08005f84 +.bss 0x20000008 0xebc load address 0x080063a4 0x20000008 _sbss = . 0x20000008 __bss_start__ = _sbss *(.bss) @@ -5577,7 +5928,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000ec4 __bss_end__ = _ebss ._user_heap_stack - 0x20000ec4 0x604 load address 0x08005f84 + 0x20000ec4 0x604 load address 0x080063a4 0x20000ec8 . = ALIGN (0x8) *fill* 0x20000ec4 0x4 [!provide] PROVIDE (end, .) @@ -5665,22 +6016,32 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .ARM.attributes 0x000005f4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) .ARM.attributes - 0x00000620 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x00000620 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + .ARM.attributes + 0x0000064c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .ARM.attributes + 0x00000678 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + .ARM.attributes + 0x00000696 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + .ARM.attributes + 0x000006b4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .ARM.attributes + 0x000006e0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) .ARM.attributes - 0x0000064c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x0000070c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) .ARM.attributes - 0x0000066a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x00000738 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) .ARM.attributes - 0x00000688 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x00000764 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) .ARM.attributes - 0x000006b4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x00000790 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) .ARM.attributes - 0x000006e0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x000007ac 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) .ARM.attributes - 0x0000070c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x000007d8 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o OUTPUT(RTOS_IOT.elf elf32-littlearm) -.debug_info 0x00000000 0x14f18 +.debug_info 0x00000000 0x153c8 .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_info 0x00000fea 0x647 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -5699,14 +6060,14 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_info 0x0000e8ec 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .debug_info 0x00010a83 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_info 0x00010d33 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_info 0x00011098 0xade Src/HTS221.o - .debug_info 0x00011b76 0x1d64 Src/main.o - .debug_info 0x000138da 0x117a Src/stm32l0xx_hal_msp.o - .debug_info 0x00014a54 0xd6 Src/stm32l0xx_it.o - .debug_info 0x00014b2a 0x37b Src/system_stm32l0xx.o - .debug_info 0x00014ea5 0x73 startup/startup_stm32l053xx.o + .debug_info 0x00011098 0xb37 Src/HTS221.o + .debug_info 0x00011bcf 0x21bb Src/main.o + .debug_info 0x00013d8a 0x117a Src/stm32l0xx_hal_msp.o + .debug_info 0x00014f04 0xd6 Src/stm32l0xx_it.o + .debug_info 0x00014fda 0x37b Src/system_stm32l0xx.o + .debug_info 0x00015355 0x73 startup/startup_stm32l053xx.o -.debug_abbrev 0x00000000 0x2a87 +.debug_abbrev 0x00000000 0x2ac4 .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_abbrev 0x0000046d 0x1cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -5725,14 +6086,14 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_abbrev 0x00001d0a 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .debug_abbrev 0x00001f7a 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_abbrev 0x00002149 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_abbrev 0x00002306 0x216 Src/HTS221.o - .debug_abbrev 0x0000251c 0x25e Src/main.o - .debug_abbrev 0x0000277a 0x18d Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x00002907 0x7b Src/stm32l0xx_it.o - .debug_abbrev 0x00002982 0xf3 Src/system_stm32l0xx.o - .debug_abbrev 0x00002a75 0x12 startup/startup_stm32l053xx.o + .debug_abbrev 0x00002306 0x207 Src/HTS221.o + .debug_abbrev 0x0000250d 0x2aa Src/main.o + .debug_abbrev 0x000027b7 0x18d Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x00002944 0x7b Src/stm32l0xx_it.o + .debug_abbrev 0x000029bf 0xf3 Src/system_stm32l0xx.o + .debug_abbrev 0x00002ab2 0x12 startup/startup_stm32l053xx.o -.debug_loc 0x00000000 0xdb99 +.debug_loc 0x00000000 0xdc7e .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_loc 0x00000447 0x284 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -5751,10 +6112,10 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_loc 0x0000b99e 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .debug_loc 0x0000d293 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_loc 0x0000d339 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_loc 0x0000d57d 0x32c Src/HTS221.o - .debug_loc 0x0000d8a9 0xc5 Src/main.o - .debug_loc 0x0000d96e 0xc6 Src/stm32l0xx_hal_msp.o - .debug_loc 0x0000da34 0x165 Src/system_stm32l0xx.o + .debug_loc 0x0000d57d 0x3b0 Src/HTS221.o + .debug_loc 0x0000d92d 0x126 Src/main.o + .debug_loc 0x0000da53 0xc6 Src/stm32l0xx_hal_msp.o + .debug_loc 0x0000db19 0x165 Src/system_stm32l0xx.o .debug_aranges 0x00000000 0x1338 .debug_aranges @@ -5832,189 +6193,187 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_ranges 0x00001258 0x18 Src/system_stm32l0xx.o .debug_ranges 0x00001270 0x20 startup/startup_stm32l053xx.o -.debug_macro 0x00000000 0x1775b - .debug_macro 0x00000000 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000340 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000b72 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000bc4 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000c67 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000c95 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000cbd 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000cdf 0x87 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000d66 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000daa 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000ea7 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000f05 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000010e4 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001118 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000113e 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000158d 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000b24d 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000b289 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000e72b 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000e77d 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000e7b2 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000e84e 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000e864 0x97 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000e8fb 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ec08 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ed05 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ed15 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ed67 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ed86 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000edc9 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ede9 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ef70 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ef80 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000ef9c 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000efee 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f02e 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f03e 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f07e 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f155 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f16b 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f2f6 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f346 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000fc26 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000105fa 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00010747 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000108cb 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00010b44 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00010d33 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00010e5d 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011113 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011315 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011370 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011400 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011589 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0001159f 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000118ab 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011c9c 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011d79 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000122c3 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00012307 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00012587 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00012597 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000126fc 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00012a18 0x355 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00012d6d 0x3e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00013155 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00013471 0x32b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x0001379c 0x334 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00013ad0 0x36a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00013e3a 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00014168 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00014484 0x31c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x000147a0 0x32e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00014ace 0x1f5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014cc3 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014d0f 0x8d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014d9c 0x174 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014f10 0x4a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014f5a 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014f6a 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00014f9f 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015071 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000151d9 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001528f 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001529f 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000152be 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000156d4 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015794 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015820 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000158b1 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015945 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000159a8 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015a77 0x18b Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00015c02 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00015e09 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00015e1f 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00016090 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x000160a1 0x14c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x000161ed 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x0001639f 0x332 Src/HTS221.o - .debug_macro 0x000166d1 0x22 Src/HTS221.o - .debug_macro 0x000166f3 0x3a Src/HTS221.o - .debug_macro 0x0001672d 0x154 Src/HTS221.o - .debug_macro 0x00016881 0x3e8 Src/main.o - .debug_macro 0x00016c69 0xd8 Src/main.o - .debug_macro 0x00016d41 0x31c Src/stm32l0xx_hal_msp.o - .debug_macro 0x0001705d 0x3dc Src/stm32l0xx_it.o - .debug_macro 0x00017439 0x322 Src/system_stm32l0xx.o +.debug_macro 0x00000000 0x17c67 + .debug_macro 0x00000000 0x395 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000395 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000bc7 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000be9 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000c35 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000cc2 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000cf7 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000d93 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000f07 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000f51 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000fa3 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000fc2 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001005 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001025 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000011ac 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000014b9 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000014c9 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000014fe 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001514 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000152a 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001553 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000159f 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001642 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001670 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001698 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001795 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000017f3 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000019d2 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001a06 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001a2c 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001e7b 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000bb3b 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000bb77 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f019 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f035 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f045 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f055 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f071 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f0c3 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f103 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f113 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f153 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f22a 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f240 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f3cb 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f41b 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000fcfb 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000106cf 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001081c 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000109a0 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010c19 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010e08 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010f32 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000111e8 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000113ea 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011445 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000114d5 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001165e 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011674 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011980 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011d71 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011e4e 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012398 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000123dc 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001265c 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001266c 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000127d1 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00012b42 0x3aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00012eec 0x43d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00013329 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x0001369a 0x380 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00013a1a 0x389 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00013da3 0x3bf Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00014162 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x000144e5 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00014856 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00014bc7 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00014f4a 0x22f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015179 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001524b 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000153b3 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015469 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015479 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015498 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000158ae 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001596e 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000159fa 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015a8b 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015b1f 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015b82 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015c51 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00015e03 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x0001600a 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x0001605c 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x000162cd 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x000162de 0x239 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00016517 0x1d9 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x000166f0 0x387 Src/HTS221.o + .debug_macro 0x00016a77 0x22 Src/HTS221.o + .debug_macro 0x00016a99 0x3a Src/HTS221.o + .debug_macro 0x00016ad3 0x160 Src/HTS221.o + .debug_macro 0x00016c33 0x43d Src/main.o + .debug_macro 0x00017070 0xd8 Src/main.o + .debug_macro 0x00017148 0x371 Src/stm32l0xx_hal_msp.o + .debug_macro 0x000174b9 0x431 Src/stm32l0xx_it.o + .debug_macro 0x000178ea 0x37d Src/system_stm32l0xx.o -.debug_line 0x00000000 0x10027 - .debug_line 0x00000000 0x9c6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_line 0x000009c6 0x97b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_line 0x00001341 0x940 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_line 0x00001c81 0x1879 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_line 0x000034fa 0x941 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_line 0x00003e3b 0x101a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_line 0x00004e55 0x971 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_line 0x000057c6 0xaf9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_line 0x000062bf 0xaf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_line 0x00006db7 0xb8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_line 0x00007943 0xe71 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_line 0x000087b4 0x129c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_line 0x00009a50 0xb7b Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_line 0x0000a5cb 0x564 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x0000ab2f 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x0000b5e3 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x0000c505 0x5a0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_line 0x0000caa5 0x613 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_line 0x0000d0b8 0x8cb Src/HTS221.o - .debug_line 0x0000d983 0xb74 Src/main.o - .debug_line 0x0000e4f7 0x89f Src/stm32l0xx_hal_msp.o - .debug_line 0x0000ed96 0x9f5 Src/stm32l0xx_it.o - .debug_line 0x0000f78b 0x819 Src/system_stm32l0xx.o - .debug_line 0x0000ffa4 0x83 startup/startup_stm32l053xx.o +.debug_line 0x00000000 0x106b2 + .debug_line 0x00000000 0xa0f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_line 0x00000a0f 0x9c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_line 0x000013d3 0x989 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_line 0x00001d5c 0x18c2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_line 0x0000361e 0x98a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_line 0x00003fa8 0x1063 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_line 0x0000500b 0x9ba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_line 0x000059c5 0xb42 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_line 0x00006507 0xb41 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_line 0x00007048 0xbd5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_line 0x00007c1d 0xeba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_line 0x00008ad7 0x12e5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_line 0x00009dbc 0xb9f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_line 0x0000a95b 0x589 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x0000aee4 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000b998 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000c8ba 0x650 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_line 0x0000cf0a 0x638 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_line 0x0000d542 0x915 Src/HTS221.o + .debug_line 0x0000de57 0xc50 Src/main.o + .debug_line 0x0000eaa7 0x8e8 Src/stm32l0xx_hal_msp.o + .debug_line 0x0000f38f 0xa3e Src/stm32l0xx_it.o + .debug_line 0x0000fdcd 0x862 Src/system_stm32l0xx.o + .debug_line 0x0001062f 0x83 startup/startup_stm32l053xx.o -.debug_str 0x00000000 0x865e5 - .debug_str 0x00000000 0x7a34a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x7a763 (size before relaxing) - .debug_str 0x0007a34a 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x7a575 (size before relaxing) - .debug_str 0x0007a5d9 0x2c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x7a408 (size before relaxing) - .debug_str 0x0007a89a 0x11a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x7b2ce (size before relaxing) - .debug_str 0x0007ba3c 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x7a6d5 (size before relaxing) - .debug_str 0x0007baf4 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x7ab16 (size before relaxing) - .debug_str 0x0007c269 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x7a3e0 (size before relaxing) - .debug_str 0x0007c515 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x7a780 (size before relaxing) - .debug_str 0x0007c9f8 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x7a6c9 (size before relaxing) - .debug_str 0x0007cea1 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x7a55e (size before relaxing) - .debug_str 0x0007d2da 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x7a883 (size before relaxing) - .debug_str 0x0007d7f4 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x7ae3d (size before relaxing) - .debug_str 0x0007e118 0x5993 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0xb8b1 (size before relaxing) - .debug_str 0x00083aab 0x22a Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x8cbf (size before relaxing) +.debug_str 0x00000000 0x866ec + .debug_str 0x00000000 0x7a448 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x7a861 (size before relaxing) + .debug_str 0x0007a448 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x7a673 (size before relaxing) + .debug_str 0x0007a6d7 0x2c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x7a506 (size before relaxing) + .debug_str 0x0007a998 0x11a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x7b3cc (size before relaxing) + .debug_str 0x0007bb3a 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x7a7d3 (size before relaxing) + .debug_str 0x0007bbf2 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x7ac14 (size before relaxing) + .debug_str 0x0007c367 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x7a4de (size before relaxing) + .debug_str 0x0007c613 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x7a87e (size before relaxing) + .debug_str 0x0007caf6 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x7a7c7 (size before relaxing) + .debug_str 0x0007cf9f 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x7a65c (size before relaxing) + .debug_str 0x0007d3d8 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x7a981 (size before relaxing) + .debug_str 0x0007d8f2 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x7af3b (size before relaxing) + .debug_str 0x0007e216 0x5977 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0xb993 (size before relaxing) + .debug_str 0x00083b8d 0x148 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x8cdb (size before relaxing) .debug_str 0x00083cd5 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o 0xa3ff (size before relaxing) .debug_str 0x00084495 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o 0xaef7 (size before relaxing) .debug_str 0x0008552d 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x6ed5 (size before relaxing) + 0x9652 (size before relaxing) .debug_str 0x0008590e 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x93cc (size before relaxing) - .debug_str 0x00085b51 0x6c9 Src/HTS221.o - 0x7ac2e (size before relaxing) - .debug_str 0x0008621a 0x305 Src/main.o - 0x809b7 (size before relaxing) - .debug_str 0x0008651f 0x1b Src/stm32l0xx_hal_msp.o - 0x7ad50 (size before relaxing) - .debug_str 0x0008653a 0x47 Src/stm32l0xx_it.o - 0x7ef0e (size before relaxing) - .debug_str 0x00086581 0x64 Src/system_stm32l0xx.o - 0x7a19d (size before relaxing) + 0x93e8 (size before relaxing) + .debug_str 0x00085b51 0x742 Src/HTS221.o + 0x7ada5 (size before relaxing) + .debug_str 0x00086293 0x393 Src/main.o + 0x80bf1 (size before relaxing) + .debug_str 0x00086626 0x1b Src/stm32l0xx_hal_msp.o + 0x7ae4e (size before relaxing) + .debug_str 0x00086641 0x47 Src/stm32l0xx_it.o + 0x7f00c (size before relaxing) + .debug_str 0x00086688 0x64 Src/system_stm32l0xx.o + 0x7a29b (size before relaxing) .comment 0x00000000 0x6e .comment 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o @@ -6042,7 +6401,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Src/stm32l0xx_it.o .comment 0x0000006e 0x6f Src/system_stm32l0xx.o -.debug_frame 0x00000000 0x345c +.debug_frame 0x00000000 0x3558 .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_frame 0x000002c0 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -6061,18 +6420,22 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_frame 0x00002798 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .debug_frame 0x00002d08 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_frame 0x00002e18 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_frame 0x00002ec0 0x120 Src/HTS221.o - .debug_frame 0x00002fe0 0x14c Src/main.o - .debug_frame 0x0000312c 0xd8 Src/stm32l0xx_hal_msp.o - .debug_frame 0x00003204 0x38 Src/stm32l0xx_it.o - .debug_frame 0x0000323c 0x38 Src/system_stm32l0xx.o - .debug_frame 0x00003274 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .debug_frame 0x00003294 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .debug_frame 0x000032d0 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .debug_frame 0x0000330c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .debug_frame 0x00003348 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .debug_frame 0x00003384 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .debug_frame 0x000033bc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .debug_frame 0x000033e8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .debug_frame 0x00003414 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x0000343c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x00002ec0 0x124 Src/HTS221.o + .debug_frame 0x00002fe4 0x168 Src/main.o + .debug_frame 0x0000314c 0xd8 Src/stm32l0xx_hal_msp.o + .debug_frame 0x00003224 0x38 Src/stm32l0xx_it.o + .debug_frame 0x0000325c 0x38 Src/system_stm32l0xx.o + .debug_frame 0x00003294 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .debug_frame 0x000032b4 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x000032f0 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .debug_frame 0x0000332c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .debug_frame 0x00003368 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .debug_frame 0x000033a4 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .debug_frame 0x000033dc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + .debug_frame 0x00003408 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .debug_frame 0x00003434 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x00003460 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + .debug_frame 0x000034a0 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x000034c8 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x000034e8 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .debug_frame 0x00003510 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) diff --git a/RTOS_IOT/Inc/HTS221.h b/RTOS_IOT/Inc/HTS221.h index 9c6cd68..c3defdd 100644 --- a/RTOS_IOT/Inc/HTS221.h +++ b/RTOS_IOT/Inc/HTS221.h @@ -15,12 +15,13 @@ -#define HTS221_DevAddr 0xBE +#define HTS221_DevAddr 0xBE #define HTS221_SLAVE_ADDRESS 0x5F ///< I2C Slave Address #define HTS221_DEVICE_ID 0xBC ///< Who am i device identifier -#define HTS221_DEFAULTSETTING (HTS221_AVGH_32|HTS221_AVGT_16) - +#define HTS221_DEFAULTSETTING (uint8_t)(HTS221_AVGH_32|HTS221_AVGT_16) +#define HTS221_DEFAULTREG1 (uint8_t)(HTS221_PD|HTS221_BDU|HTS221_ODR_125HZ) +#define HTS221_DEFAULTREG2 (uint8_t)(0) // /// @name AV_CONF:AVGH @@ -79,33 +80,33 @@ /// @name Register Addresses /// @{ -#define HTS221_WHO_AM_I 0x0F -#define HTS221_AV_CONF 0x10 -#define HTS221_CTRL_REG1 0x20 -#define HTS221_CTRL_REG2 0x21 -#define HTS221_CTRL_REG3 0x22 -#define HTS221_STATUS_REG 0x27 -#define HTS221_HUMIDITY_OUT_L 0x28 -#define HTS221_HUMIDITY_OUT_H 0x29 -#define HTS221_TEMP_OUT_L 0x2A -#define HTS221_TEMP_OUT_H 0x2B -#define HTS221_H0_RH_X2 0x30 -#define HTS221_H1_RH_X2 0x31 -#define HTS221_T0_DEGC_X8 0x32 -#define HTS221_T1_DEGC_X8 0x33 -#define HTS221_T1_T0_MSB 0x35 -#define HTS221_H0_T0_OUT_L 0x36 -#define HTS221_H0_T0_OUT_H 0x37 -#define HTS221_H1_T0_OUT_L 0x3A -#define HTS221_H1_T0_OUT_H 0x3B -#define HTS221_T0_OUT_L 0x3C -#define HTS221_T0_OUT_H 0x3D -#define HTS221_T1_OUT_L 0x3E -#define HTS221_T1_OUT_H 0x3F +#define HTS221_WHO_AM_I 0x0F +#define HTS221_AV_CONF 0x10 +#define HTS221_CTRL_REG1 0x20 +#define HTS221_CTRL_REG2 0x21 +#define HTS221_CTRL_REG3 0x22 +#define HTS221_STATUS_REG 0x27 +#define HTS221_HUMIDITY_OUT_L 0x28 +#define HTS221_HUMIDITY_OUT_H 0x29 +#define HTS221_TEMP_OUT_L 0x2A +#define HTS221_TEMP_OUT_H 0x2B +#define HTS221_H0_RH_X2 0x30 +#define HTS221_H1_RH_X2 0x31 +#define HTS221_T0_DEGC_X8 0x32 +#define HTS221_T1_DEGC_X8 0x33 +#define HTS221_T1_T0_MSB 0x35 +#define HTS221_H0_T0_OUT_L 0x36 +#define HTS221_H0_T0_OUT_H 0x37 +#define HTS221_H1_T0_OUT_L 0x3A +#define HTS221_H1_T0_OUT_H 0x3B +#define HTS221_T0_OUT_L 0x3C +#define HTS221_T0_OUT_H 0x3D +#define HTS221_T1_OUT_L 0x3E +#define HTS221_T1_OUT_H 0x3F /// @} bool HTS221_Init (I2C_HandleTypeDef * hi2c); -void HTS221_ConfigDevice (uint8_t Config); +void HTS221_ConfigDevice (uint8_t Config, uint8_t REGS1, uint8_t REGS2); double HTS221_GetTemperature (void); double HTS221_GetHumidity (void); @@ -113,29 +114,3 @@ double HTS221_GetHumidity (void); -// -///** -// @class FaBoHumidity_HTS221 -// @brief FaBo Humidity I2C Controll class -//*/ -//class FaBoHumidity_HTS221 { -// public: -// FaBoHumidity_HTS221(uint8_t addr = HTS221_SLAVE_ADDRESS); -// bool begin(void); -// bool checkDevice(void); -// void powerOn(void); -// void configDevice(void); -// void readCoef(void); -// double getHumidity(void); -// double getTemperature(void); -// private: -// uint8_t _i2caddr; -// uint8_t _H0_rH_x2, _H1_rH_x2; -// uint16_t _T0_degC_x8, _T1_degC_x8; -// int16_t _H0_T0_OUT, _H1_T0_OUT; -// int16_t _T0_OUT, _T1_OUT; -// uint8_t readI2c(uint8_t registerAddr); -// void writeI2c(uint8_t registerAddr, uint8_t data); -//}; -// -//#endif // FABOHUMIDITY_HTS221_H diff --git a/RTOS_IOT/Inc/main.h b/RTOS_IOT/Inc/main.h index 71c1573..ef3b059 100644 --- a/RTOS_IOT/Inc/main.h +++ b/RTOS_IOT/Inc/main.h @@ -52,6 +52,8 @@ //#include "stm32l0xx_hal_gpio.h" //#include "stm32l0xx_hal_i2c.h" //#include "stm32l0xx_hal_uart.h" +#include +#include /* USER CODE END Includes */ /* Private define ------------------------------------------------------------*/ diff --git a/RTOS_IOT/Output data.png b/RTOS_IOT/Output data.png new file mode 100644 index 0000000000000000000000000000000000000000..4bdde122bfd50a88a7da0bb0932b04772664f735 GIT binary patch literal 12862 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 literal 0 HcmV?d00001 diff --git a/RTOS_IOT/Src/HTS221.c b/RTOS_IOT/Src/HTS221.c index 479a09e..a3929e3 100644 --- a/RTOS_IOT/Src/HTS221.c +++ b/RTOS_IOT/Src/HTS221.c @@ -52,7 +52,7 @@ bool HTS221_Init (I2C_HandleTypeDef * hi2c) if (HTS221_CheckAvailable()){ HTS221_EnableDevice(); HTS221_GetCoefficient(); - HTS221_ConfigDevice(HTS221_DEFAULTSETTING); + HTS221_ConfigDevice(HTS221_DEFAULTSETTING, HTS221_DEFAULTREG1, HTS221_DEFAULTREG2); return (true); } else{ @@ -93,11 +93,13 @@ static void HTS221_EnableDevice (void){ HAL_I2C_Mem_Write(HTS221_I2CHander,HTS221_DevAddr,HTS221_CTRL_REG1,I2C_MEMADD_SIZE_8BIT,&dat,1,10); } -void HTS221_ConfigDevice (uint8_t Config){ - uint8_t data = 0; +void HTS221_ConfigDevice (uint8_t Config, uint8_t REGS1, uint8_t REGS2){ +// uint8_t data = Config; // data |= HTS221_AVGH_32; // data |= HTS221_AVGT_16; - HTS221_I2C_Write(HTS221_AV_CONF,&data,sizeof(data)); + HTS221_I2C_Write(HTS221_CTRL_REG1,®S1,sizeof(REGS1)); + HTS221_I2C_Write(HTS221_CTRL_REG2,®S2,sizeof(REGS2)); + HTS221_I2C_Write(HTS221_AV_CONF,&Config,sizeof(Config)); } diff --git a/RTOS_IOT/Src/main.c b/RTOS_IOT/Src/main.c index 0b373f0..a6d10e0 100644 --- a/RTOS_IOT/Src/main.c +++ b/RTOS_IOT/Src/main.c @@ -79,6 +79,28 @@ osMessageQId Queue_SendTo_Uart; QueueSetHandle_t NVM_QueueSet; +struct StructDate{ + uint8_t Weekday; + uint8_t Month; + uint8_t Date; + uint8_t Year; +}; + +struct StructTime{ + uint8_t Hours; + uint8_t Minutes; + uint8_t Secounds; + uint8_t TimeFormat; +}; + +struct StrucDataPacket{ + double temperature; + double humidity; + struct StructDate Acqdate; + struct StructTime Acqtime; +}; + + typedef enum{ EV_ReadsFromTempSensor, EV_ReturnFromUartSend, @@ -87,19 +109,18 @@ typedef enum{ typedef struct{ - double temperature; - double humidity; + struct StrucDataPacket dataset[5]; // uint8_t * ptr_sent_Success; }QMessageData_USART; typedef struct{ EventId_NVM_Check EventId; - double temperature; - double humidity; + struct StrucDataPacket TempnHumidity; uint8_t dataArray[4]; uint8_t* ptr_sent_Success; }QMessageData_ForNVM; + /* USER CODE END PV */ /* Private function prototypes -----------------------------------------------*/ @@ -149,6 +170,10 @@ int main(void) MX_USART1_IRDA_Init(); MX_I2C1_Init(); + /*Set Date & Time for RTC*/ +// HAL_RTC_SetDate(); +// HAL_RTC_SetTime(); + /* USER CODE BEGIN 2 */ __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); HAL_PWR_EnterSLEEPMode(PWR_LOWPOWERREGULATOR_ON,PWR_STOPENTRY_WFE); @@ -454,7 +479,7 @@ static void MX_GPIO_Init(void) void func_NVM_Manager(void const* argument){ QMessageData_ForNVM Rawdata; QMessageData_USART Uartdata; - uint8_t Uart_Updatecounter=0; + uint8_t Uart_Updatecounter = 0; for(;;){ // TODO: Copy data from Queue then write into the EEPROM. xQueueReceive(Queue_SendTo_TaskNVM,&Rawdata,portMAX_DELAY); @@ -465,12 +490,13 @@ void func_NVM_Manager(void const* argument){ case EV_ReadsFromTempSensor: // TODO: Receive the data from Temperature Sensor, then Save it into the NVM // write to EEPROM; start Counter - if (Uart_Updatecounter>5){ + if (Uart_Updatecounter >= 5){ xQueueSend(Queue_SendTo_Uart,&Uartdata,100); Uart_Updatecounter = 0; } else { // Need to write into EEPROM then increment Uart_Updatecounter + Uartdata.dataset[Uart_Updatecounter]=Rawdata.TempnHumidity; Uart_Updatecounter++; } break; @@ -516,12 +542,46 @@ void func_LEDBlink (void const* argument){ void func_UartPrint (void const* argument){ QMessageData_ForNVM sendReturn; QMessageData_USART receiveData; + HAL_StatusTypeDef Status = 0; + uint8_t itr = 0; + char tempText[5] = ""; + char OutputText[80]=""; + + for(;;) { xQueueReceive(Queue_SendTo_Uart,&receiveData,portMAX_DELAY); - HAL_UART_Transmit(&huart2,(uint8_t *)"Next Game",10,200); + for(itr=0; itr< 5; itr++){ + + strcpy(OutputText,"Current Temperature is "); + itoa(receiveData.dataset[itr].temperature,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText, " Celsius '\n"); + + strcat(OutputText, "Humidity is "); + itoa(receiveData.dataset[itr].humidity,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText, " %rh '\n"); + + strcat(OutputText, " @ Time "); + + itoa(receiveData.dataset[itr].Acqtime.Hours,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText,":"); + itoa(receiveData.dataset[itr].Acqtime.Minutes,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText,":"); + itoa(receiveData.dataset[itr].Acqtime.Secounds,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText, "'\n '\n"); + + Status += HAL_UART_Transmit(&huart2,(uint8_t *)OutputText,sizeof(OutputText),200); + } + // HAL_UART_Transmit(&huart2,(uint8_t *)"testing",10,200); sendReturn.EventId = EV_ReturnFromUartSend; - sendReturn.dataArray[0]=0x00; + if (Status == HAL_OK) sendReturn.dataArray[0]=0x01; + else sendReturn.dataArray[0]=0x00; + Status = 0; xQueueSend(Queue_SendTo_TaskNVM,&sendReturn,100); } } @@ -530,12 +590,21 @@ void func_UartPrint (void const* argument){ void func_SensorRead (void const* argument){ QMessageData_ForNVM data; HTS221_Init(&hi2c1); + RTC_TimeTypeDef Time; for(;;) { data.EventId = EV_ReadsFromTempSensor; - data.temperature = HTS221_GetTemperature(); - data.humidity = HTS221_GetHumidity(); + data.TempnHumidity.temperature = HTS221_GetTemperature(); + data.TempnHumidity.humidity = HTS221_GetHumidity(); + HAL_RTC_GetDate(&hrtc,(RTC_DateTypeDef *)(&data.TempnHumidity.Acqdate.Weekday),RTC_FORMAT_BIN); + HAL_RTC_GetTime(&hrtc,&Time,RTC_FORMAT_BIN ); + data.TempnHumidity.Acqtime.Hours = Time.Hours; + data.TempnHumidity.Acqtime.Minutes = Time.Minutes; + data.TempnHumidity.Acqtime.Secounds= Time.Seconds; + data.TempnHumidity.Acqtime.TimeFormat= Time.TimeFormat; + xQueueSend(Queue_SendTo_TaskNVM,&data,100); + //TODO: Need to comment the osDelay(1000) after implementation of autowakeup function event osDelay(1000); } } From c550eb54850b2641e5dcf7db1790fcafda83ad8e Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 15:33:58 +0800 Subject: [PATCH 09/18] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e91c169..7faad3a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ # RTOSWorkGroup Exercise Project on RTOS + +Credits to Hideki Yamauchi for FaBoHumidity-HTS221-Library (arduino library). +Use with modification. + + From 452332368959bc87ce1436cf87115156640d27e9 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 17:07:30 +0800 Subject: [PATCH 10/18] Updated Program Flow chart --- RTOS_IOT FlowChart.xml | 2 +- Untitled Diagram.xml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 Untitled Diagram.xml diff --git a/RTOS_IOT FlowChart.xml b/RTOS_IOT FlowChart.xml index 9462b52..a13f374 100644 --- a/RTOS_IOT FlowChart.xml +++ b/RTOS_IOT FlowChart.xml @@ -1 +1 @@ -7V1Lc6M4EP41Pk4VIJ7HdSaZOWSqpipbu2cFZMOOjFwgj+P99SuMBBjZGBIbRFa+xGo1D/f3datbEmQBHjZv3zK4jX+QCOGFZURvC/B1YVmmDWz2p5AcSokdBKVgnSURV6oFL8m/iAsNLt0lEcpPFCkhmCbbU2FI0hSF9EQGs4zsT9VWBJ9edQvXSBK8hBDL0r+TiMZcahpG3fEdJeuYX9p3eMcrDH+tM7JL+fUWFlgdP2X3Bopzcf08hhHZN0TgcQEeMkJo+W3z9oBwYVthtvK4pwu91X1nKKV9DvA85IaBtzIDN4K+D77wM/yGeMdt8ZMZnt8sPQgD5ftkg2HKWsuYbjATmuxrGCc4eoYHsisunlNmDNFaslZGOdLspsDyaCVU3EfRqgxRNDB8RXhZmfKBYJKxrpQcL5jTjPxCQsgsbBw/VY9ArLijVYJxQ5NjweQkpU9wk+CCoH+hLIIp5GJ+jz5vnrsOxMk6ZbKQWRmxzqVsdmFHlFH01hBxGL4hskE0OzAV3utxRgiP4c19Tb/A5bK4wTxPMA9yyq+rM9ewsy8c+Z4ssCQWPBdgW4bZkwkS2rKFLlLvusm4jSzZRuZZG4F72MiXbCTZpqZ4YZN9nFD0soVh0btngbNlsk/mARdJ1dslrFOXcB0ZbuMM3O490A402uOibTpTwi0SEY333fAGp3g77ploPhrelivBiyKWEvImyWhM1iSF+LGWLk8J0AD7Gr5sbPyjyFJbsqekuOEyHWqMnw5rozQSR4QY5nkS/hknadnBDzPLVuOgfxClB96GO0qYqP4hz4Rsq8F6AOE+RKz+WUBOdlmIuodeZqM1ungefqICxk46ZghDmvw+zfxvSy5Pk2s+5BLE6WRXcGtyHQ9lKMBDQ2FLkpTmjTP/LASNIdM+P2Y+XdD3OtXZl/IGapZXv+SdxPc18edD/KBPVLWUiaoif9DkmgO5TDBFVH0/ueSJDk0udcnlzotcci2pyaUsucS8xBzywdaEWdCa/O9WB163utepfvvsEQDtJvNxk14DvOmoE4QDza75sKtXELaAMuyydXEyJ3b1iV2WPRW7TMN7hZ6LbASAswqCL7o4mRG5TK/PwOgrQy5dnMyIXGJZsptcN49c76pOXLdVnpjd9UZb33G69W2jU//DBYrkKbo++XSeMtkkkUQuW5Prs5HL+F+EYX/kKOxoR5mPo5h96vjbR+F3OUqLyO619CP4oL55Z0fRW5zm5Ci20umKPJ1anlPeMS6Xk1PsGBe9rbFs2h3kYqeR3mTad5MpGAo4aMdkGe/R9pjal1xEriMndBFgKeUilnaRYS5iDwZcqX338jgi4x2Tzesuv471537C7OPIt3aPnnvmzB8NeDk6ake/q6NP/MCFXn5XpBoRE42d1Uiv+S11lt+dS6mWPKs6Yapl+0qlWrLRdATuBNwZCji4PuCOmGq5OtUaDflWqgXOuPp4qZanHX1cR69WpqdxdP3s+sh4T5xa93l2XQf2uwR2d8oaGug9A4rUVGJNurOm4krdNRVP0hSoqYBeaJ8Tu/o8EicyQRXYpVen58SuPs+KizxEAXbJpS6fD5Jj2oTzQW57Qn7a+SD9grOByaM7FHClykRL70YYG29/Urwtjfe4eE88LdBnaV3jfUO8z00GjIc30G8dUySjFqVNZ0bd5512YohWIKMG+tVeM2JX9RL1TnZZyrBLXqHi9Zo8SzBhveYbKtVrlt5BNXB894YCPuL4zpr1fwEon/6o/9UCePwP \ No newline at end of file +7V1Zc6O4Fv41qep5SAqx85ik16rebpKe6XlKEVuxucHgAZxlfv1IIGG0YMtYgLOkqjuxwCB0tu8sOhxZ54vHT1m4nH9LpzA+Mo3p45H1/sg0Pcsw0C888lSNWJ7tViOzLJpWY2A9cBn9C8kg+eJsFU1hzpxYpGlcREt2cJImCZwUzFiYZekDe9ptGrN3XYYzKAxcTsJYHP0rmhZzMgrog+EDn2E0m5Nb+w45cBNO7mZZukrI/Y5M67b8qQ4vQnotcn4+D6fpQ2PI+nBknWdpWlR/LR7PYYwXly5b9b2PLUfreWcwKVS+4HnQnQTeLQjcaej71jG5wn0YryB9BDdG1zq7TdEl0YyLJ7JK7j+rlB44zksanqITgiXig7P1YfTXjPwurxPRgYurH5fo/OMvP67oMTTRiD8fjVW3psMmMwszf4gWcZigT2fzYhGjQYD+nMyjePo1fEpXeB3yAtGFfjpDn7KCMB1aH+usJBjES4I/1TTBH+LwBsZnNVXP0zjN0KEkLW+YF1l6B+kgIrZR/tRHKPOYeJmiOG6cSdiiWr6P4SKKsbD8CbNpmIRkmMwxIB9l9wnjaJagsQkiOMzq9WlyACUpzAr42BgiHPEJpgtYZE/oFHLUcoi0EvG1verjw1oUTNcnHDxviIFHxSAk8jerr73mQfQHYUNFljQFlvySREWEnvzfsIjSRJEjBKqLK9UqDduXjiwVlevmUtmylbL6WCm/VXin0b1UdtFjFceEh7DwxvC2aBfdGxX5BwZSAMIlPp9+vcZke/cHK9o3EnEvJ8uO6pl/vgyT7o/QWIVq4PIpL+DiPE4nd9fnaXIbzVSerprEs33ob7+vP/388kOZmM//cS+uzl/R0/66PL24Mq9/of9f11Nf/Q2uv1y8P31FT/3FPAdaH5czxGtchQ3wwzwq4OUynOCjD8hz4OyzftiFL9sddvlHe8GuVhyjjMOoN0S9KEfEFkCCLYDh7I8tnP6hRDVwFeZ3mGnRv3ffwwXh4c8QgbUzGKIrnGMHbpVMiuuvH96fxVFyV439zKI0i4qnkmPKkShBGC+ZlI5jBfCMEvjj3xVJXfsPdN9wgVkvucmXO2KRfdi7hfgqPNPKIB7LIKYhok/gSDlEA/p0JRzCLRBMpqfYG8eCEod5Hk3YNUHPnT39Rh+OjRPDpAN/Y/Kd2PXnnzCL0OywmJVkhY9R8bs8xwgc8hl/B5wYgHzkv1LNDE4Fr3+7uObpKpvAzYAbeRYzWDQER6RYgyQyitCxDMbIp7lnpymjErnDzzQqvXLKARYn+tXsyVnNOAD94iN7f3Id4HPXqZ5QuA6ibvjUOG2JT8gl86OeJcewtslxXHXBNf/VK6jEklQbDqa1TE5rXV2iSVznMMmRxWhorsty5AKG0zfdRa7gBqxxk1i3/nQXkIW5BlZeYC/V1VQ5wFClhoo6G1x3PbKhE6obAEdnVVV2TG9NL+RyF+pHl1mep1eXiWGvfnWZxeqy739+OzIr5aSudOoBrPau0SWuvyFYPUPMrPIlQTcCVd0ITP9lKUef4S3bs9SUo+9p0I0y6N9VNxqsXqRwTa4Bg/HRG2ihyzAqkFMpttlRBdo2cx3HMofQgA7QqwEFelkCY14hPvmYYZ1VepAHkAegxszmXTNRgKUZFB15AYm8Itm5JB/TrJinszQJ4w/rUS4F1hTlWlwZX4sR8uoQFfN6kUUVUQ5/jPDMy/v8HxbFE6FFuCpSNLSe3tc0XTI6djcNYMkJtKeI+pyjZHZ0uLZdp0VEO4iRKYqNHiBR44Y1Xmi1wNqDohFNASKexSq8nEo9ger/8qGzKLxBd+hxKg8hmkoyw84e9vqM/63gCg65FuhYeU/sZk6v0mtMmIocBwJ2WkRRHua0PYkn6MrAjrW/qhSm6m20MaJmHdHG2LzHJLExsnXTYmMsMdRC+N74nhZt3N/gw/A+jOJSNJWEg1E5+SpfwpJpFVl8ni5uVnlf7O1thgIce7tAJJMpC3RQD3AvKBD0pPzZpBRDHbv63i8kAsiXKyt3hk6ZfTkc6yDhYl0GQ6798bpv/vL4BmGzxHAGwQlcUWJkRTWBvb/A2LIaml29350hc1cvl1irppdLFXPTq620wFhe7TFvqHw+hKsc2rO4jJdQcKYPNgNRczaRgLUfEthVYDYjAccfEwm0l4w21b0COmgxEC8CNIAWEZSDBMcXSy6BJQUJGkAwDQ8NCRKAkOcfra6mcWH9XmU1BB/hZFXA+pqbgupKzFyVnZjGGS4+rLBEkWJ+QdCixhVFNLnL6ZEMhpP5geGCLUJB4okbyxssXyIUOlKEjujgaAICdUy8JXamAASocWIMvyQzWEn2aIaft0vdDb9jDWb4TZHwTcNvH5Lh9xTCzF5vhl8MLJbqqNSdlZ7a6voUc7hWVLxKZBSXgaTaWOSjGO/G1hypnmK3S4BAEsCS6ik+xd2JCvbwxtuUlruM5uXna8M6kpMfNWdSLQu+Gr8w2u8rwRX4rlgAp2EREhEaLhJ9UGHoLVLL1x/5otA6pii0gY7iWhng1hZkUMAP9fbDJn6wJPjBHhU/8OatO35wg8HwgyXWTzTxg3NI+CEAY+IHsYL4heIHq6UoWI4fLEvVz9GCH8SMV+/4QSllPM72GiU7JpvaTTbWZNdBsY1xhTHXs2CjFkgkp0+V9OIdTdkqSSqhXqRTuOOUe4cRW4SXhRE2LWseBEbIoP+uMGJDRmIviEHNIAMxXAnEaMkFDQMxOFhg87BAGWD47nAAQ0xRNQGGe0gAAxgKqYn+EIaYw6FpCLhYFk8yVbVdaR5aasFqKduXowtp/UFv6IIC+GFTC6ZRgsP1Jp2DMIKI1pM5vC8tILWEFX6l9hCJZOnM30ZZXpzgJ6gM5ENULioT9G+cHt5W45N0sYxhFQ6Yr4MCB2ZON3Mra07rvRuDmFMdOxpbI/4qJtOXmMxANJl2S2BjIK/c0hbVt4aL6rvtYdIbXiZUOx0BW7bR/gIuy3wm8VAdTDxknpueJ9vPSLZNhWM7rHR4693cAk/2xTf3upMhYaM6Fs9oEsan5MAimk7LfLpMuHVItMXuZXGBGB2n0tvkVkvDVhZXRaJ1lMabGwp9zM3F8XVLg26V8Y1+BcDprmaoeDTVjNsS/FPWH8ogQawgaQJaT6DZmICW3yo9KKC1RS32QkNm9hYysKC2jqgPAmqdQHj4cTfY7KlDFHQGFdGmzrAlOsMeSmd4YhxdAw2aOxKZMg1wxMVGRtbhB0cPWyN4ZqiwZv2W/aQKq9W216K5erTanqmbbdm4MtCGeL4osGtwiu8T4/CAXR/MtmXZBG1soInUpizTOY5PRV2orjt9OTDief1RVraT5DkJuCnxpK0WlPFGdQp1ZJtHD02eLYnhq1INb5Rtp6yONg9jyjMNEDBUH2ejy75UXzcWrzs2+L3R/TlYaJo2UIGyw4AxwElmZ1qbxnAiPspetq79GsYxxZS8luWcuOsfdueB5YMTq/HTsedDEGy4h+PbzYOup8QVu7ZsQc/JRk5cEpZqn/PG84/2bfLibk5m01DlYcT+VHbc9xb7oxd+RVEntyWzsG8PF1bSAk7YzYA57LvdpH2/u+izAl77/sxhCvyGzr1fZWGS35YZcVIEjxZx0DL4rSWF3B79bvWEnDLYrdm2+HoSaRByiwJtE9Da2jA8b3sSfWlLcn+Bjs4u7S/D0Jzw/ZZmVclF2Z795ed7txDddVhF5wyX7/U0+Da8HKj4uHqaOSiG9L1RgbLpavKDLNDND9oZ8ToGi2At0rlcW5tCDYHRLkzXW2CFAgaG6cYJpx0K03VhC1Ngi6ZjI6aQx3RsnGCrYyN91YQex0bspfLSHZuKOd4cm/0kTEw5s9Xdh1uy3UZ/qqb4km1TEMf+qltodecraxl3AScQS17tNN5m6eLlOY19zfQCLuNyS9cmR/uZbek7QId7i+IQOudJFEcgseOAB1SdFIeGjGIbENbfSo/OrQl8JdvT/HFr7QHgoW/nYnsAePDbX7U95TutrKDwToHeEpLUKDKsMWpXRZvbOxHwroxy8tnnrlT3StDPF/7m9sqUQQ/EK/KNEb0iX0x9vXSvyG/ZCvzmFe0iYtv2vB6uV9RGf7lX5ASyHpl9eUW0t/Bzb5MxVLenYTwRxdYX2u/bsZ+FQs9NnSw1DA0mCKdlaRyTlfhnBfOiap+aNpboMoZwiX5/27AiB+BfbVFB/Bt5PYkKkvpXPDjrpII01OKq+VcaOpT6ktbk1DQ1QXQwbocxwHcU7+xfAe5CLu9Sa/SutqDoPd+EpRdFr1H9GCg6eH0oOnhD0Rq6/9NX/TRk7Lxp6Ig92/qam/qUuh8pvx/3dEU6d9/BFbaQH+5hGQBXAjO94vE2TmrJUtA8+yB4HBh9WMMxQ0zUw2Df7GuOaR6F/ptd8+4e336zv7w7MDb33wQim4xpHYXXHovW0e7t1R1A0izspZtHwh9v9nFPKZPU7TO53Mt1KOkA/LpWqteVqnzmTPLGZdkLW4GhoW4RGGLQjo0Blav5XBdT2nKuv8Wk8EJcTNK3vm6Z8gzXst6/M9BaSlrzMC/wec5rWb/MY6C13K1FBjGF0zCf1+u4X8ko28REFbvWgIrplmHIXp4ORi1NPuZ3T3eO5VgcXHUUYzk7v0Cdu49rezvNi+7w1FXKDMBuBfS7sugGRtzLvZKzKLUDrEM1atKeb53Yvd+wsI1YsZhjXxaln5VFh7T708aiktcz/VW1Ry2dBvQ7vW+0Vn2Ypzg7ZCyzdALzXBKhod1TsV9RB2EgCcKoBF3G2qzTi420+NcVy/a4yt5ESAuq9sPBsizrvkEdBa+0k2FU6ipF44isEmrZQfXMojpIxbJ7vVy/HyUk3sjVbfjMoRjPGJPxxgVoAOjiPAA6BhT35jy6r1Qf5/WY1W1tZzg4341aRfss+Y5/MwXQ23cDrckwfNeboR2Lm0xgBxvauBhc5yZlY2ptvKw1RHcYgescSzN677uKrt5SXwejTePdd5z54TcYGfKSsbasq9AzoB64XSWTa9nOpfavVC9qROenWYQrMpGQlCNRgnyYBPkpR3QfA3Zqqnc9EDEz/T92maXOEqsjJf9CLpq0aN20Gf5yHUkBlUx2fR0BOB0tahUyxMaJETCuxokBAvL5J8wiNHHs7KnuVJHt0OYVoiwYN2phleVzxboeR0BVtWjzm1boq691xzm4CXsG0Kr5HFkXHo3Mp85ITL/EURscA4NrLmaBrlzC9Xjw+Qt1znyij1mKTc36dKQY57iMFZ/xHw== \ No newline at end of file diff --git a/Untitled Diagram.xml b/Untitled Diagram.xml deleted file mode 100644 index 1aef78b..0000000 --- a/Untitled Diagram.xml +++ /dev/null @@ -1 +0,0 @@ -7V1tc5s4EP41/pgZQLx+POeStjPptFNn7j4rIBuuMvKAXMf99SeMZDCyMU5sEKk8kwxaCZD3eXa1Kwk8AffL108ZXMVfSYTwxDKi1wn4e2JZvmex/4VgWwpsxysFiyyJSpFZCWbJb8SFBpeukwjlBw0pIZgmq0NhSNIUhfRABrOMbA6bzQk+vOsKLpAkmIUQy9J/k4jGXGoaRlXxGSWLmN/ad3jFCwx/LjKyTvn9JhaY7z5l9RKKa/H2eQwjsqmJwMME3GeE0PJo+XqPcKFaobbyvMcTtft+ZyilXU7wPOSGgTc3AzeCvg/u+BV+Qbzmuvjx/G3GJHfs78u3Z95tuhWqyjfJEsOUlaYxXWImNNlhGCc4eoJbsi66kVOmFlGaslJGOease2C60xcqelSU9iopChi+IDzdK/WeYJKxqpTsbpjTjPxEQsh0bew++xqBXdGjeYJxrSVHhclJSh/hMsEFVf9BWQRTyMW8jz4vHrsPxMkiZbKQ6RuxyqkMgNAoyih6rYk4IJ8QWSKabVkTXutxbgjb4cVNRcTA5bK4xkFPcBBy8i/2V64IwA44BzrywZL4MNvmFC0LNqQJTZgCfkOakLQjMSTwZYWd5OR5DXKVWbLKzKMqA7dQmS+pTNJNxfhCJ5s4oWi2gmFRu2EOtaGyD2YQJznW2UKsQwtxHRlu4wjc7i3QDjTa/aJtOkPCLSIUjffN8AaHeDvuEW/eG96WK8GLIhYr8iLJaEwWJIX4oZJODwlQA/scvmxs/KsIXxuyx6TocBkd1cZPh5VRGokzQgzzPAmf4yQtK/hpZlmqnfQfonTLy3BNCRNVX+SJkNV+sL6AcO8iVvcoICfrLETtQy/T0QKdvA6/UAFjKx0zhFlk8+swJbguuTxNrvGQSxCnlV3Btcm1O5WhALe1BiuSpDSvXfl7IagNmfbxMfPxRHuvtTk7KDtQsXz/Td5IfF8TfzzED7p4VUsZryriB02uMZDLBEN41beTy9TkGhG53HGRS84lNbmUJZeYlxhDPNiYMAsaqwLtzYHX3txrbX796BEAbSbjMZNOA7zpqOOEA82u8bCrkxO2gDLssnVyMiZ2dfFdlj0Uu0zDe4Gei2wEgDMPgjudnIyIXKbXZWD0lSGXTk5GRC6xLNlOrqt7rjdlJ67bSE/M9nyj2d5x2tvbRmv7dycokqXo/OTDWcpgk0QSuWxNro9GLuOPcMN+z17Y0YYyHkMxu+Tx1/fCbzKUBpHdc+FH8M725o0NRW9xGpOh2EqHK/J0annN2n7Jp2JTuGXI6eQQO8ZFbWMsG3YHudhppDeZdt1kCi4FHDR9sox3b3tM7VMmIueRA5oIsJQyEUubyGUmYl8MuFL77uVxRMY7JsuXdX4e64/9wNn7kW/sHj32CJrfG/Cyd9SGflNDH/iBC738rkg2IiYaW7ORTvNb6iy/O6dCLXlWdcBQy/aVCrVkpWkP3Aq4cyng4PyA22Oo5epQqzfkG6EWOGLq/YVanjb0fg19vzI9jKHrZ9d7xnvg0LrLs+vasd/EsbtD5tBA7xlQJKcSa9KtORVv1J5T8SBNgZwK6IX2MbGryyNxIhJUgV16dXpM7OryrLiIQxRgl5zq8vkg2acNOB/kNifkh50P0i84uzB4dC8FXKk00dK7EfrG2x8Ub0vj3S/eA08LdFla13hfEe9jkwH94Q30W8cUiahFatMaUXd5p50YohWIqIF+tdeI2LV/u3oruyxl2CWvUPF8TZ4lGDBf8w2V8jVL76C6cHz3LgW8x/GdFaufByif/qh+ggE8/A8= \ No newline at end of file From f233a1c6957758c6acbf34f5dc0c920a9f3d6188 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 17:10:59 +0800 Subject: [PATCH 11/18] Update RTOS_IOT FlowChart.xml --- RTOS_IOT FlowChart.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RTOS_IOT FlowChart.xml b/RTOS_IOT FlowChart.xml index a13f374..e999db4 100644 --- a/RTOS_IOT FlowChart.xml +++ b/RTOS_IOT FlowChart.xml @@ -1 +1 @@ -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 \ No newline at end of file +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 \ No newline at end of file From d87cc5880ef2e1bff701df33a67c8e6cb67a8598 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sat, 14 Oct 2017 17:11:37 +0800 Subject: [PATCH 12/18] Update RTOS_IOT FlowChart.xml --- RTOS_IOT FlowChart.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RTOS_IOT FlowChart.xml b/RTOS_IOT FlowChart.xml index e999db4..a7784e2 100644 --- a/RTOS_IOT FlowChart.xml +++ b/RTOS_IOT FlowChart.xml @@ -1 +1 @@ -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 \ No newline at end of file +7V1pc6M4E/41qZr9kBTi5mOSmdlJ1Vxvkr0+pYitxLzB4AWcY3/9SiBhdOAILI7MbKpmEgsMQn093epujqzz9fOvWbhZfUmXMD4yjeXzkfX+yDSBabvoFx55qUYc36oG7rNoSU7aDVxF/0AyaJDRbbSEOXNikaZxEW3YwUWaJHBRMGNhlqVP7Gl3aczedRPeQ2HgahHG4ugf0bJYkVFgGLsDn2B0vyK39h1y4DZcPNxn6TYh9zsyrbvypzq8Dum1yPn5KlymT40h68ORdZ6laVH9tX4+hzFeW7ps1fc+thyt553BpFD5gudBdxF4dyBwl6HvW8fkCo9hvIX0EdwYXevsLkWXRDMuXsgquX9vU3rgOC9peIpOCDaIDc52h9Ff9+R3eZ2IDlxef7tC5x9ffLumx9BEI/58NFbdmg6bzCzM/Clax2GCPp2tinWMBgH6c7GK4uXn8CXd4nXIC0QX+ukMfcoKwnRofayzkmAQLwn+VNMEf4jDWxif1VQ9T+M0Q4eStLxhXmTpA6SDiNhG+VMfocxj4mWK4rhxJmGLavk+husoxrLyO8yWYRKSYTLHgHyU3SeMo/sEjS0QwWFWr0+TAyhJYVbA58YQ4YhfYbqGRfaCTiFHLYeIL5Fe26s+Pu1EwXR9wsGrhhh4VAxCIn/39bV3PIj+IGyoyJKmwJIXSVRE6Mn/CYsoTRQ5QqC6uFKt0vD60pGlonLdXCpbtlLWECvltwrvMnqUyi56rOKY8BAW3hjeFe2ie6si/8BACkC4xKfTzzeYbO9+YUX7ViLu5WTZUT3zzzdh0v8RGqtQDVy95AVcn8fp4uHmPE3uonuVp6sm8WYf+sufN79+v/imTMy3/7iX1+c/0dP+dnV6eW3e/Ib+/7me+vovcHNx+f70J3rqC/McaH1czhDvcBU2wE+rqIBXm3CBjz4hx4Gzz/phF75sf9jlHx0Eu1pxjDIOo97QC4VlIrYAEmwBDOdwbOEMDyWqgeswf8BMi/69+xquCQ9/ggisncEQXeEcO3DbZFHcfP7w/iyOkodq7HsWpVlUvJQcU45ECcJ4yaJ0HCuAZ5TAH/+uSOrav6D7hmvMesltvumIRQ5h7yEYxGMZxDRE9AkcKYdoQJ+uhEO4BYLJ8hR741hQ4jDPowW7Jmgpspc/0Ydj48Qw6cBfmHwndv35O8wiNDssZiVZ4XNU/FmeYwQO+Yy/A04MQD7yX1Ff/DzdZgu4H18jR+IeFoycwCUTUBAp1iCJjCJ0LIMx8mke2TCEjErkDt/TqPTKKQdYnOhXj0POasYB6Bef2fuT6wCfu071yMJ1EHXDl8ZpG3xCLpkf9Sw5hrVNjuOqC+74r15BJZak2nA0rWVyWuv6Ck3iJodJjixGQ3NdlSOXMFz+p7vIUTdgjZvEug2nu4AszDWy8gJTqy4qLVPrrmc2dEJ1A+DorKrKjumt6YVc7kLD6DLL8/TqMjHsNawus1hd9vX3L0dmpZzUlU49gNXeDbrEzRcEq+8RM6t8SdCNQFU3AtP/sZSjz/CW7VlqytH3NOhGGfTvqxsNVi9SuCbXgMH4KtCclQrkVIpt9lSBts1cx7HMMTSgA/RqQIGAlsCY14hPPmZYZ5Ue5Az2Aagxs3nXTBRg6Q6Kjn0BU1woPaajthQ7C9Gqc7WHwSK66YMUM5bicir1BKr/y4fOovAW3WHAqTyFaCrJPYb3GOcb/9vCLRxzLdCx8p7YsVhepzeYMBU5pjBvVlfp4AJbtifB/q7MvFmHC4cwe2+vVhFt34RaxeYxskSryNZNi1axROea8L3xNS3auL/Bh+FjGMWlaCoJB6Ny8m2+gSXTKrL4Kl3fbnMt7O11JRNHJdsFIplMmWtL4chByj8YSPmz2xAMdezqe78hEUDovczVGHuT5GI+1kHCxboMhlz743Xf/+WRDUJnieEMghO4osTI0igC+3CBsWVZE139ndqnYQLSjCdUHap9oU4r2fRrqB5u+jFU6Gfixxzzhsrng3bKwRyL2+MQUoxafJk+ERdRczaRgDUnJOD4UyKB9iTBprpXQActBuLtgYaad/qCBMcXk+yAJQUJGkAwDQiMCRKAsLM7WSZF48L6vcpqCD7DxbaA9TX3hVGVmLlKNDCNM5xuVmGJIsX8gqBFjSuKaPGQ0yMZDBerKXFBd6EgEaS9G9qWLxEKHZtCjujgaAICdRRUAgT2Lx1j+GkmfMPwU0Gei+Hn7VJ/w+9Yoxl+UyR80/DbczL8nkJg0RvM8IuBxVIdlbqz0lOvuj7FCu4UFa8SGcVlIKk21vnwxrumv7qeYhPkQSAJYEn1FL+p2YsK9vjG25QmOEzm5ec7wzqRkx81Z1ItC74avzDa7yvBFfiuWACXYRESERovEj1dGLq71PIZJ74otI4pCm2gI51SBri1BRnaF4fBD5YEP9jzwg+8eeuPH9xgNPxgiTvmTfzgzAk/BGBK/CDmjP4I+KGmf1/8YFmqfo4W/CDueA2OH5S2jKcpqFCyY7Kp3WZTTXYXFNsbV5hyPQs2aoFEcvlSSS+uYcm2SVIJ9Tpdwo5T1gsjugsvCyNsmsg6CoyQQf+uMGLPjkQXiEEXjoEYrgRieLOCGBwssHlYoAwwfHc8gCFuUTUBhjsngAEMha2J4RCGuIdDtyHgelO8yFTV60pz0q2Fmvh90YU0/2AwdEEB/LhbC6ZRgsNdWcYsjCCi9WIFH0sLSC1hhV+pPUQiWTrzd1GWFyf4CSoD+RSVi8oE/Runh3fV+CJdb2JYhQNWu6DAlOa0M7ey5rTO1h/FnOqoYWuN+LcvDmMyA9FkUhmaick8trRF9a3xovpue5j0lpcJ1d42wJaVVl/CTbmfSTxUB1MTmeem58l2sJEVJnBsh5UOb72bRc+kErpZ3UyGhNJkLIrRIoxPyYF1tFyW++ky4dYh0RZbveACMTpOpbfJrZaG4gVXRaKRVF2Rj2lWrNL7NAnjD7tRrh+QVNjNPYk+prDBVyIvqkbqInY09hHr+eo2/4dF8ULQWbgtUjS0m93nNN2QazUq1IGjrGaoNDTVjKsa/FPWH8ogQcwgaQJaT6DZlICWL44dFdDaohb7EUJmdncysKC2jqiPAmqdQHh4LVpENVtQtw5pJ0hTZ9gSnWFPpjM8MY6ugQbNGjQmTQMccbGRcXX4/OlhawTPDBV2rN9SQaiu5ZurR5PrmbxZS3H1RiqB5pMC+wan+M4gDg/Y9cFsW7aboI0N+pHalO10zsSnoi5U39pODox43nCUlVWSzFjATYknTXPm/qO6KtUdWfHoxPJsSQwf3Wr4j7LKlNVR2D+iPNN4AEP1mRS6HEr1XSvpukbfH4zuM7TQNMLZC8qOA8YAJ5m9aW0a44n4JLVsilWBMzHFlLyW5Zy4ux+28sDywYnV+OnZVi0I9tzD8e3mQddT4oquTTrQc7KRE5cg4fY57z3/6NC2Hu7+zWwau5xH7E+l4n6w2J/XXmc3TqLW2Huo11mY5HflziZJZkacOWo686upYVytdb+8MI7Bu7XJFV8s8Gowye2eQmAxbG97Er63JXs4gY4OHe1t7DVv3H1Js2rrvGys/IPt23UnuuuwNtAZb9/O04BReTlQ8VV6FeUrhma9eQEe09WEZy3QD892Ri6OwSIRi/Qc1tZgTEOAqw/T6XKQKYMxTDeTsMhcmK4PW5gCWzQBqrgVOCVAdYJXAaq0SbwegCpuAbHZljNJoawpqp7CwqdQmsKyDrfbTLOtfrIWTpdwAbGmqcH/XZaufzzwP9RML+EmLkss9jlMb6zEZmrHqbviEDpZSRRHINHHgDeMvRSHhgh/G6A5uLUVnUoTwEjKRajymwmAOQaAhzC9k18B4EHMcNmvlO+0soJCV2ddGwSUDRjWmMnmD+3GyeUyBzwkVd4M8rkr1bXL+vnC39/ulDLoTNCtb0yIbn3RPZwluvU7t1vk0K0TyHqPDYVuac/Gt15+PFYXjXEQpWJJsfb79qwTVuhlppOlxqHBAtnbLI1jshJ/b2FeVG3p0sYSXcUQbtDvL3tWZGyc3F0F8e+28yQqSIqTeSPbSwVpyHFSw8ndO7/5kpav1BI1wRBVozMBQ8eA79TaGycD7kIu7xppRMmvoKF5vVPCeL13y3BoCNBW+I21Om8qLKKXXm0DX59S9+vi61VOt6Sz5QPcYk334REm+1rIDoSrgkNxlU33L0bBVcAYQquN6PJRjca+o8yclZoT+lP13c/w+PZUw+1n1O+DbdNyIptMqeWEF8GJWs4erLU1MCTZSUyE/Grn2I2NsnaE7JDHwccjJW8Sk72ICBg6XiVmiC4065GVq/lWF1PaWGO4xZS83ZTtzlkXhr7BtayzFEdaS0kBMtOm/C2vZd2yeKS17FYISNKdlmG+qtfxsIQKtlSzBYHU68rUBBqylwJS5pgJ5jjma0R6e1YWBzocRc+q84sBufu4ttdpXjSPXdu7VEG39LKuLLqHEbuAZDmLUrXPwuJ5bYXwDWL6d1UTiiUUt8gOZVH6WVl0SFMTfa/7Fa37H1UTqBJ2o9/pY6OB1NMqxbFaY5OlC5jnEj+b9ojCdei1Kw2JK63iOk+VyjqIjbT4l7LJMvll71uh+9aH4WANfRv7bMyrGEal2nnqhrNKyJ+VEtLmmyOdy2ZCu/4wSki8kavb8JljMZ4xIuPNDKABoIvzAOgZFjqY82jVhT7OG3CPpbVpy9B8N6/cpDfJd3z/XaC3uhCtyTh8p8/QzoSbTGAHe4pVDa4+XdmYWnsva41RAytwnWNpRu9D57TUBWd1MNo03n3F8Xs+bduQJ3C07Z0JFXX1wN02WdzI8sHbv1K9jgadn2YRzo9CQlKORAnyYRLkpxzR7FDs1FQdbYmYmf4vXWapM+FBlNTOmxa2aTP85TqSdAaZ7Po6AnA6GnEp7PMZJ0bAuBonBgjI5+8wi9DEsbPXkv8rq1/iFaIsGDevNAfL51LnPI6AqmrR5lOB6Rv/dMc5uAl7BtCq+RxZjbpG5mtlJKYrzLzauAGDa6Fggb5cwlVA+vyFeu8So49Zik3N7nSkGFc4qQyf8S8= \ No newline at end of file From 04574afac06db9144ddd45b46de1167b1ebb9321 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sun, 15 Oct 2017 11:37:30 +0800 Subject: [PATCH 13/18] The LED will blink independently every 1 seconds. And, Temperature and humidity data is captured in every 1 seconds and conservatively for 5 times. Data in the queue will be received and place into EEPROM and then send the data out to UART using queue. The Uart will return the acknowledge bytes to NVM task before put the device into sleep. --- RTOS_IOT/Debug/RTOS_IOT.bin | Bin 25508 -> 26032 bytes RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1043172 -> 1046700 bytes RTOS_IOT/Debug/output.map | 890 +++++++++--------- .../Src/stm32l0xx_hal_rtc_ex.c | 1 + .../Third_Party/FreeRTOS/Source/tasks.c | 39 +- RTOS_IOT/Src/main.c | 67 +- RTOS_IOT/Src/stm32l0xx_it.c | 7 +- 7 files changed, 534 insertions(+), 470 deletions(-) diff --git a/RTOS_IOT/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin index 3e83ae483169fbe112e3c2495bbf32629eb993f7..99ce37c5f2ed3dad6c87e40438a7685e77233e06 100644 GIT binary patch delta 4844 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 z zbcYSDsL&E-tvVX_qW%Q~N(vz=cXUz^Hb% z;o@zIzL{%ribB5#Ie#B*g}Ss0z?Ydh_AmtUqvZB)kAFJKTC-jo!E49)VJxuXVNXa7Zil`ndqm-MlhQn*+yL$LTc4;8VQ`TT&mbcek7Qc+QM@ydNMG+q?>z*>u6 zTT@-401;Q&;PJgqdA+r>;lip>!j&9J_qm;5(<-Z8^4hQmPZ|qrl}9GEa!PO+UX9Jg zrIXkE6Ks0&60TbdhU?AHZU7u4B27igMk+*_i?jrdKSG|((c8qOkXqb2(aEVylG2uCh90M*7H*!pZMs2q{+vKpX02r2J7i&L!b12`snaOiZJD z>oVpg;VDRlBw<7%T&pwPSL^HafwjeX)~9#HgkPxIGm@?nOA{qGB)NMHICJT@bp=Ty zc+$w;FH5HWB{Z+zmNZZGcoHSQpbhnT1zy#L$M?#6_?LJB%RXM@wa6b;`5N>XaDGHj z*5A(jT%>{esmzNZn!Gxz{V6rV6e%X$uWY2SkP?arhb1i=5l&0MF&6ntIwGu>G7+8p zohFS+lCSTDo``S<_Tz3OHYN!{5ihkku0h%;VRcw?F{jO9u3O8cdk1g^Yig!fGWObK z6S{MjXn=#p4;vE)xevKPu!urk*g}u3o|1WAIKyrB>be=QLT+*6*~Zh{S?;uKu_!#5 zUR^z9>D(|Dju*IG1SSgSBFPHZrf?rb5|9%GQ&_}>k{1ZBf*rb3IQ@L*7$dKpQxTC=p{fn90867gEc0^5y30ATS) zp$}-D*O7bxr8lW-E#2zvo)i+Em9$6d>NTB(km{QUAt5HxI~r!T`_MMnH{cAuV|eE! zr?33habg~B8Kk?Bo<{PhPkAiUIwX53%8}L~4Iv#+pYm9yw~>BCO16VxI?{fmHR=<` zZbh&O1vLodsaho+%m{FD@a~VYSL%O~c~Mq|ve^A#AUKx)yhtS|J6TI-HvZn^;Ww^r zXl9!>Jih+1wHxnZslPG1ARcX8k3Z7V-168Kw&mYgWP#1u$jfrp&U#uNS*ytILO!02 cr*}5ZHdc8YY(>>_%? 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 diff --git a/RTOS_IOT/Debug/RTOS_IOT.elf b/RTOS_IOT/Debug/RTOS_IOT.elf index be6e8fd765c9767f165898edd2e63b168d230e53..d0a22a357a52faa4df5fe8bfc56f8ec888ed4022 100644 GIT binary patch delta 63044 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 delta 59806 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 N$M+g>_+mnN{V#=TP)7g& diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index 86ec614..7a5b175 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -158,10 +158,6 @@ Discarded input sections 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .text.HAL_Delay 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SuspendTick - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_ResumeTick - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .text.HAL_GetHalVersion 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .text.HAL_GetREVID @@ -2683,16 +2679,10 @@ Discarded input sections 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .text.HAL_RTCEx_SetWakeUpTimer 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetWakeUpTimer_IT - 0x00000000 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .text.HAL_RTCEx_DeactivateWakeUpTimer 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .text.HAL_RTCEx_GetWakeUpTimer 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_WakeUpTimerEventCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_WakeUpTimerIRQHandler - 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .text.HAL_RTCEx_PollForWakeUpTimerEvent 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .text.HAL_RTCEx_SetSmoothCalib @@ -3520,6 +3510,7 @@ Discarded input sections 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osThreadGetPriority 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osDelay 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osTimerCreate 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osTimerStart @@ -4047,6 +4038,8 @@ Discarded input sections 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.pcTaskGetName 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskDelay + 0x00000000 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskSuspend 0x00000000 0x90 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskPlaceOnUnorderedEventList @@ -4621,7 +4614,6 @@ Discarded input sections .group 0x00000000 0x8 Src/main.o .text 0x00000000 0x0 Src/main.o .data 0x00000000 0x0 Src/main.o - .bss 0x00000000 0x0 Src/main.o .text.vApplicationTickHook 0x00000000 0x4 Src/main.o .debug_macro 0x00000000 0x832 Src/main.o @@ -5295,7 +5287,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000000 g_pfnVectors 0x080000c0 . = ALIGN (0x4) -.text 0x080000c0 0x60bc +.text 0x080000c0 0x62ac 0x080000c0 . = ALIGN (0x4) *(.text) .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o @@ -5342,540 +5334,554 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .text.HAL_GetTick 0x08001dc4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x08001dc4 HAL_GetTick + .text.HAL_SuspendTick + 0x08001dd0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001dd0 HAL_SuspendTick + .text.HAL_ResumeTick + 0x08001de0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001de0 HAL_ResumeTick .text.HAL_NVIC_SetPriority - 0x08001dd0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001dd0 HAL_NVIC_SetPriority + 0x08001df0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001df0 HAL_NVIC_SetPriority .text.HAL_SYSTICK_Config - 0x08001e34 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001e34 HAL_SYSTICK_Config + 0x08001e54 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001e54 HAL_SYSTICK_Config .text.HAL_SYSTICK_CLKSourceConfig - 0x08001e6c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001e6c HAL_SYSTICK_CLKSourceConfig + 0x08001e8c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001e8c HAL_SYSTICK_CLKSourceConfig .text.HAL_GPIO_Init - 0x08001e8c 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08001e8c HAL_GPIO_Init + 0x08001eac 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08001eac HAL_GPIO_Init .text.HAL_GPIO_WritePin - 0x08002020 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08002020 HAL_GPIO_WritePin + 0x08002040 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08002040 HAL_GPIO_WritePin .text.HAL_GPIO_TogglePin - 0x0800202c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x0800202c HAL_GPIO_TogglePin + 0x0800204c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800204c HAL_GPIO_TogglePin .text.I2C_Flush_TXDR - 0x08002034 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002054 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_TransferConfig - 0x08002054 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002074 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x08002078 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002098 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnTXISFlagUntilTimeout - 0x080020f0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002110 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x08002144 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002164 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryWrite - 0x08002190 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080021b0 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x08002214 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002234 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x08002298 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080022b8 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.HAL_I2C_Init - 0x080022e8 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080022e8 HAL_I2C_Init + 0x08002308 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002308 HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x080023b0 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080023b0 HAL_I2C_Mem_Write + 0x080023d0 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080023d0 HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x08002578 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002578 HAL_I2C_Mem_Read + 0x08002598 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002598 HAL_I2C_Mem_Read .text.HAL_I2CEx_ConfigAnalogFilter - 0x08002748 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002748 HAL_I2CEx_ConfigAnalogFilter + 0x08002768 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002768 HAL_I2CEx_ConfigAnalogFilter .text.HAL_I2CEx_ConfigDigitalFilter - 0x080027a0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x080027a0 HAL_I2CEx_ConfigDigitalFilter + 0x080027c0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x080027c0 HAL_I2CEx_ConfigDigitalFilter .text.IRDA_SetConfig - 0x080027f4 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002814 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_WaitOnFlagUntilTimeout - 0x08002988 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x080029a8 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_CheckIdleState - 0x080029f4 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002a14 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.HAL_IRDA_Init - 0x08002a64 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x08002a64 HAL_IRDA_Init + 0x08002a84 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002a84 HAL_IRDA_Init .text.HAL_PWR_EnterSLEEPMode - 0x08002ad0 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x08002ad0 HAL_PWR_EnterSLEEPMode + 0x08002af0 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x08002af0 HAL_PWR_EnterSLEEPMode .text.RCC_SetFlashLatencyFromMSIRange - 0x08002b00 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002b20 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .text.HAL_RCC_OscConfig - 0x08002b88 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08002b88 HAL_RCC_OscConfig + 0x08002ba8 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002ba8 HAL_RCC_OscConfig .text.HAL_RCC_GetSysClockFreq - 0x08003140 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003140 HAL_RCC_GetSysClockFreq + 0x08003160 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003160 HAL_RCC_GetSysClockFreq .text.HAL_RCC_ClockConfig - 0x080031d4 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080031d4 HAL_RCC_ClockConfig + 0x080031f4 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080031f4 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x08003388 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003388 HAL_RCC_GetHCLKFreq + 0x080033a8 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080033a8 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x08003394 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003394 HAL_RCC_GetPCLK1Freq - .text.HAL_RCC_GetPCLK2Freq 0x080033b4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080033b4 HAL_RCC_GetPCLK2Freq + 0x080033b4 HAL_RCC_GetPCLK1Freq + .text.HAL_RCC_GetPCLK2Freq + 0x080033d4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080033d4 HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x080033d4 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x080033d4 HAL_RCCEx_PeriphCLKConfig + 0x080033f4 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080033f4 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCCEx_GetPeriphCLKFreq - 0x080035c0 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x080035c0 HAL_RCCEx_GetPeriphCLKFreq + 0x080035e0 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080035e0 HAL_RCCEx_GetPeriphCLKFreq .text.HAL_RTC_WaitForSynchro - 0x08003838 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003838 HAL_RTC_WaitForSynchro + 0x08003858 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003858 HAL_RTC_WaitForSynchro .text.RTC_EnterInitMode - 0x0800386c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x0800386c RTC_EnterInitMode + 0x0800388c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x0800388c RTC_EnterInitMode .text.HAL_RTC_Init - 0x080038a8 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080038a8 HAL_RTC_Init + 0x080038c8 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080038c8 HAL_RTC_Init .text.RTC_ByteToBcd2 - 0x08003954 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003954 RTC_ByteToBcd2 + 0x08003974 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003974 RTC_ByteToBcd2 .text.HAL_RTC_SetTime - 0x0800396c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x0800396c HAL_RTC_SetTime + 0x0800398c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x0800398c HAL_RTC_SetTime .text.HAL_RTC_SetDate - 0x08003a78 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003a78 HAL_RTC_SetDate + 0x08003a98 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003a98 HAL_RTC_SetDate .text.RTC_Bcd2ToByte - 0x08003b64 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b64 RTC_Bcd2ToByte + 0x08003b84 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b84 RTC_Bcd2ToByte .text.HAL_RTC_GetTime - 0x08003b78 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b78 HAL_RTC_GetTime + 0x08003b98 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b98 HAL_RTC_GetTime .text.HAL_RTC_GetDate - 0x08003bd0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003bd0 HAL_RTC_GetDate + 0x08003bf0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003bf0 HAL_RTC_GetDate + .text.HAL_RTCEx_SetWakeUpTimer_IT + 0x08003c38 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003c38 HAL_RTCEx_SetWakeUpTimer_IT + .text.HAL_RTCEx_WakeUpTimerEventCallback + 0x08003d4c 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003d4c HAL_RTCEx_WakeUpTimerEventCallback + .text.HAL_RTCEx_WakeUpTimerIRQHandler + 0x08003d50 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003d50 HAL_RTCEx_WakeUpTimerIRQHandler .text.HAL_RTCEx_BKUPWrite - 0x08003c18 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003c18 HAL_RTCEx_BKUPWrite + 0x08003d88 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003d88 HAL_RTCEx_BKUPWrite .text.HAL_RTCEx_BKUPRead - 0x08003c24 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003c24 HAL_RTCEx_BKUPRead + 0x08003d94 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003d94 HAL_RTCEx_BKUPRead .text.UART_SetConfig - 0x08003c30 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08003c30 UART_SetConfig + 0x08003da0 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08003da0 UART_SetConfig .text.UART_AdvFeatureConfig - 0x08003f70 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08003f70 UART_AdvFeatureConfig + 0x080040e0 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080040e0 UART_AdvFeatureConfig .text.UART_WaitOnFlagUntilTimeout - 0x08004050 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004050 UART_WaitOnFlagUntilTimeout + 0x080041c0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080041c0 UART_WaitOnFlagUntilTimeout .text.HAL_UART_Transmit - 0x080040bc 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080040bc HAL_UART_Transmit + 0x0800422c 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800422c HAL_UART_Transmit .text.UART_CheckIdleState - 0x080041a0 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080041a0 UART_CheckIdleState + 0x08004310 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004310 UART_CheckIdleState .text.HAL_UART_Init - 0x08004210 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004210 HAL_UART_Init + 0x08004380 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004380 HAL_UART_Init .text.makeFreeRtosPriority - 0x0800427c 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080043ec 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.inHandlerMode - 0x08004288 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080043f8 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osKernelStart - 0x08004294 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004294 osKernelStart + 0x08004404 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004404 osKernelStart .text.osKernelSysTick - 0x080042a0 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080042a0 osKernelSysTick + 0x08004410 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004410 osKernelSysTick .text.osThreadCreate - 0x080042b8 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080042b8 osThreadCreate - .text.osDelay 0x080042ec 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080042ec osDelay + 0x08004428 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004428 osThreadCreate .text.osSystickHandler - 0x080042fc 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080042fc osSystickHandler + 0x0800445c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800445c osSystickHandler .text.osDelayUntil - 0x0800430c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800430c osDelayUntil + 0x0800446c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800446c osDelayUntil .text.vListInitialise - 0x0800431c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0800431c vListInitialise + 0x0800447c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0800447c vListInitialise .text.vListInitialiseItem - 0x08004334 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004334 vListInitialiseItem + 0x08004494 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004494 vListInitialiseItem .text.vListInsertEnd - 0x0800433c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0800433c vListInsertEnd + 0x0800449c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0800449c vListInsertEnd .text.vListInsert - 0x08004354 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004354 vListInsert + 0x080044b4 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080044b4 vListInsert .text.uxListRemove - 0x08004384 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004384 uxListRemove + 0x080044e4 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080044e4 uxListRemove .text.prvIsQueueFull - 0x080043a8 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004508 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x080043c8 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004528 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataToQueue - 0x080043e4 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004544 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvNotifyQueueSetContainer - 0x08004468 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080045c8 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x080044cc 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800462c 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x080044f0 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004650 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericReset - 0x08004578 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004578 xQueueGenericReset + 0x080046d8 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080046d8 xQueueGenericReset .text.prvInitialiseNewQueue - 0x080045e4 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004744 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericCreate - 0x0800460c 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0800460c xQueueGenericCreate + 0x0800476c 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800476c xQueueGenericCreate .text.xQueueGenericSend - 0x0800464c 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0800464c xQueueGenericSend + 0x080047ac 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080047ac xQueueGenericSend .text.xQueueGenericReceive - 0x080047ac 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x080047ac xQueueGenericReceive + 0x0800490c 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800490c xQueueGenericReceive .text.prvResetNextTaskUnblockTime - 0x0800492c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004a8c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x0800495c 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004abc 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseNewTask - 0x08004970 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004ad0 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x08004a0c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004b6c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x08004a64 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004bc4 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddCurrentTaskToDelayedList - 0x08004af8 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004c58 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskCreate - 0x08004b64 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004b64 xTaskCreate + 0x08004cc4 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004cc4 xTaskCreate .text.vTaskStartScheduler - 0x08004bc4 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004bc4 vTaskStartScheduler + 0x08004d24 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d24 vTaskStartScheduler .text.vTaskSuspendAll - 0x08004c18 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004c18 vTaskSuspendAll + 0x08004d78 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d78 vTaskSuspendAll .text.xTaskGetTickCount - 0x08004c28 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004c28 xTaskGetTickCount + 0x08004d88 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d88 xTaskGetTickCount .text.xTaskGetTickCountFromISR - 0x08004c34 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004c34 xTaskGetTickCountFromISR + 0x08004d94 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d94 xTaskGetTickCountFromISR .text.xTaskIncrementTick - 0x08004c40 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004c40 xTaskIncrementTick + 0x08004da0 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004da0 xTaskIncrementTick .text.xTaskResumeAll - 0x08004d44 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004d44 xTaskResumeAll + 0x08004ea4 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004ea4 xTaskResumeAll .text.vTaskDelayUntil - 0x08004e18 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004e18 vTaskDelayUntil - .text.vTaskDelay - 0x08004e90 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004e90 vTaskDelay + 0x08004f78 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004f78 vTaskDelayUntil .text.prvCheckTasksWaitingTermination - 0x08004ec4 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004ff0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvIdleTask - 0x08004f14 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005040 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskSwitchContext - 0x08004f2c 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004f2c vTaskSwitchContext + 0x08005058 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005058 vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x08004fb0 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004fb0 vTaskPlaceOnEventList + 0x080050dc 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080050dc vTaskPlaceOnEventList .text.xTaskRemoveFromEventList - 0x08004fd4 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004fd4 xTaskRemoveFromEventList + 0x08005100 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005100 xTaskRemoveFromEventList .text.vTaskSetTimeOutState - 0x0800504c 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0800504c vTaskSetTimeOutState + 0x08005178 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005178 vTaskSetTimeOutState .text.xTaskCheckForTimeOut - 0x08005064 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005064 xTaskCheckForTimeOut + 0x08005190 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005190 xTaskCheckForTimeOut .text.vTaskMissedYield - 0x080050c8 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080050c8 vTaskMissedYield + 0x080051f4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080051f4 vTaskMissedYield .text.xTaskGetSchedulerState - 0x080050d4 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080050d4 xTaskGetSchedulerState + 0x08005200 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005200 xTaskGetSchedulerState .text.vTaskPriorityInherit - 0x080050f4 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080050f4 vTaskPriorityInherit + 0x08005220 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005220 vTaskPriorityInherit .text.xTaskPriorityDisinherit - 0x08005174 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005174 xTaskPriorityDisinherit + 0x080052a0 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080052a0 xTaskPriorityDisinherit .text.pvTaskIncrementMutexHeldCount - 0x080051e8 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080051e8 pvTaskIncrementMutexHeldCount + 0x08005314 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005314 pvTaskIncrementMutexHeldCount .text.prvTaskExitError - 0x08005204 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - *fill* 0x08005218 0x8 + 0x08005330 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x08005344 0xc .text.vPortStartFirstTask - 0x08005220 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005350 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text.pxPortInitialiseStack - 0x08005254 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005254 pxPortInitialiseStack + 0x08005384 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005384 pxPortInitialiseStack .text.SVC_Handler - 0x08005274 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005274 SVC_Handler + 0x080053a4 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080053a4 SVC_Handler .text.vPortYield - 0x08005278 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005278 vPortYield + 0x080053a8 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080053a8 vPortYield .text.vPortEnterCritical - 0x08005290 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005290 vPortEnterCritical + 0x080053c0 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080053c0 vPortEnterCritical .text.vPortExitCritical - 0x080052a8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080052a8 vPortExitCritical + 0x080053d8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080053d8 vPortExitCritical .text.ulSetInterruptMaskFromISR - 0x080052c8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080052c8 ulSetInterruptMaskFromISR + 0x080053f8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080053f8 ulSetInterruptMaskFromISR .text.vClearInterruptMaskFromISR - 0x080052d4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080052d4 vClearInterruptMaskFromISR - *fill* 0x080052dc 0x4 + 0x08005404 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005404 vClearInterruptMaskFromISR + *fill* 0x0800540c 0x4 .text.PendSV_Handler - 0x080052e0 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080052e0 PendSV_Handler + 0x08005410 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005410 PendSV_Handler .text.xPortSysTickHandler - 0x08005324 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005324 xPortSysTickHandler + 0x08005454 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005454 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x08005348 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005348 vPortSetupTimerInterrupt + 0x08005478 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005478 vPortSetupTimerInterrupt .text.xPortStartScheduler - 0x08005370 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005370 xPortStartScheduler + 0x080054a0 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080054a0 xPortStartScheduler .text.prvHeapInit - 0x080053a4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x080054d4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x080053f4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005524 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.pvPortMalloc - 0x08005444 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005444 pvPortMalloc + 0x08005574 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005574 pvPortMalloc .text.vPortFree - 0x08005508 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005508 vPortFree + 0x08005638 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005638 vPortFree .text.HTS221_I2C_Read - 0x08005560 0x24 Src/HTS221.o + 0x08005690 0x24 Src/HTS221.o .text.HTS221_I2C_Read_return - 0x08005584 0x1c Src/HTS221.o + 0x080056b4 0x1c Src/HTS221.o .text.HTS221_CheckAvailable - 0x080055a0 0x14 Src/HTS221.o + 0x080056d0 0x14 Src/HTS221.o .text.HTS221_GetCoefficient - 0x080055b4 0xa4 Src/HTS221.o + 0x080056e4 0xa4 Src/HTS221.o .text.HTS221_EnableDevice - 0x08005658 0x2c Src/HTS221.o + 0x08005788 0x2c Src/HTS221.o .text.HTS221_I2C_Write - 0x08005684 0x24 Src/HTS221.o + 0x080057b4 0x24 Src/HTS221.o .text.HTS221_ConfigDevice - 0x080056a8 0x38 Src/HTS221.o - 0x080056a8 HTS221_ConfigDevice + 0x080057d8 0x38 Src/HTS221.o + 0x080057d8 HTS221_ConfigDevice .text.HTS221_Init - 0x080056e0 0x28 Src/HTS221.o - 0x080056e0 HTS221_Init + 0x08005810 0x28 Src/HTS221.o + 0x08005810 HTS221_Init .text.HTS221_GetHumidity - 0x08005708 0x9c Src/HTS221.o - 0x08005708 HTS221_GetHumidity + 0x08005838 0x9c Src/HTS221.o + 0x08005838 HTS221_GetHumidity .text.HTS221_GetTemperature - 0x080057a4 0x9c Src/HTS221.o - 0x080057a4 HTS221_GetTemperature + 0x080058d4 0x9c Src/HTS221.o + 0x080058d4 HTS221_GetTemperature .text.MX_GPIO_Init - 0x08005840 0x8c Src/main.o + 0x08005970 0x8c Src/main.o .text.func_NVM_Manager - 0x080058cc 0x54 Src/main.o - 0x080058cc func_NVM_Manager + 0x080059fc 0x88 Src/main.o + 0x080059fc func_NVM_Manager .text.func_LEDBlink - 0x08005920 0x34 Src/main.o - 0x08005920 func_LEDBlink + 0x08005a84 0x34 Src/main.o + 0x08005a84 func_LEDBlink .text.func_UartPrint - 0x08005954 0x1a4 Src/main.o - 0x08005954 func_UartPrint + 0x08005ab8 0x1e8 Src/main.o + 0x08005ab8 func_UartPrint .text.func_SensorRead - 0x08005af8 0x6c Src/main.o - 0x08005af8 func_SensorRead + 0x08005ca0 0x80 Src/main.o + 0x08005ca0 func_SensorRead .text.Error_Handler - 0x08005b64 0x4 Src/main.o - 0x08005b64 Error_Handler + 0x08005d20 0x4 Src/main.o + 0x08005d20 Error_Handler .text.MX_RTC_Init - 0x08005b68 0x90 Src/main.o + 0x08005d24 0x90 Src/main.o .text.MX_USART2_UART_Init - 0x08005bf8 0x38 Src/main.o + 0x08005db4 0x38 Src/main.o .text.MX_USART1_IRDA_Init - 0x08005c30 0x38 Src/main.o + 0x08005dec 0x38 Src/main.o .text.MX_I2C1_Init - 0x08005c68 0x58 Src/main.o + 0x08005e24 0x58 Src/main.o .text.SystemClock_Config - 0x08005cc0 0xa4 Src/main.o - 0x08005cc0 SystemClock_Config - .text.main 0x08005d64 0xdc Src/main.o - 0x08005d64 main + 0x08005e7c 0xa4 Src/main.o + 0x08005e7c SystemClock_Config + .text.main 0x08005f20 0xf0 Src/main.o + 0x08005f20 main .text.HAL_MspInit - 0x08005e40 0x40 Src/stm32l0xx_hal_msp.o - 0x08005e40 HAL_MspInit + 0x08006010 0x40 Src/stm32l0xx_hal_msp.o + 0x08006010 HAL_MspInit .text.HAL_I2C_MspInit - 0x08005e80 0x48 Src/stm32l0xx_hal_msp.o - 0x08005e80 HAL_I2C_MspInit + 0x08006050 0x48 Src/stm32l0xx_hal_msp.o + 0x08006050 HAL_I2C_MspInit .text.HAL_RTC_MspInit - 0x08005ec8 0x20 Src/stm32l0xx_hal_msp.o - 0x08005ec8 HAL_RTC_MspInit + 0x08006098 0x20 Src/stm32l0xx_hal_msp.o + 0x08006098 HAL_RTC_MspInit .text.HAL_IRDA_MspInit - 0x08005ee8 0x44 Src/stm32l0xx_hal_msp.o - 0x08005ee8 HAL_IRDA_MspInit + 0x080060b8 0x44 Src/stm32l0xx_hal_msp.o + 0x080060b8 HAL_IRDA_MspInit .text.HAL_UART_MspInit - 0x08005f2c 0x44 Src/stm32l0xx_hal_msp.o - 0x08005f2c HAL_UART_MspInit + 0x080060fc 0x44 Src/stm32l0xx_hal_msp.o + 0x080060fc HAL_UART_MspInit .text.SysTick_Handler - 0x08005f70 0xc Src/stm32l0xx_it.o - 0x08005f70 SysTick_Handler + 0x08006140 0xc Src/stm32l0xx_it.o + 0x08006140 SysTick_Handler .text.RTC_IRQHandler - 0x08005f7c 0x4 Src/stm32l0xx_it.o - 0x08005f7c RTC_IRQHandler + 0x0800614c 0x24 Src/stm32l0xx_it.o + 0x0800614c RTC_IRQHandler .text.SystemInit - 0x08005f80 0x5c Src/system_stm32l0xx.o - 0x08005f80 SystemInit + 0x08006170 0x5c Src/system_stm32l0xx.o + 0x08006170 SystemInit .text.Reset_Handler - 0x08005fdc 0x50 startup/startup_stm32l053xx.o - 0x08005fdc Reset_Handler + 0x080061cc 0x50 startup/startup_stm32l053xx.o + 0x080061cc Reset_Handler .text.Default_Handler - 0x0800602c 0x2 startup/startup_stm32l053xx.o - 0x0800602c TSC_IRQHandler - 0x0800602c HardFault_Handler - 0x0800602c ADC1_COMP_IRQHandler - 0x0800602c PVD_IRQHandler - 0x0800602c NMI_Handler - 0x0800602c I2C1_IRQHandler - 0x0800602c RCC_CRS_IRQHandler - 0x0800602c SPI1_IRQHandler - 0x0800602c TIM6_DAC_IRQHandler - 0x0800602c EXTI2_3_IRQHandler - 0x0800602c I2C2_IRQHandler - 0x0800602c LCD_IRQHandler - 0x0800602c DMA1_Channel4_5_6_7_IRQHandler - 0x0800602c EXTI4_15_IRQHandler - 0x0800602c DMA1_Channel1_IRQHandler - 0x0800602c Default_Handler - 0x0800602c TIM22_IRQHandler - 0x0800602c EXTI0_1_IRQHandler - 0x0800602c USB_IRQHandler - 0x0800602c SPI2_IRQHandler - 0x0800602c TIM21_IRQHandler - 0x0800602c WWDG_IRQHandler - 0x0800602c TIM2_IRQHandler - 0x0800602c DMA1_Channel2_3_IRQHandler - 0x0800602c USART2_IRQHandler - 0x0800602c FLASH_IRQHandler - 0x0800602c USART1_IRQHandler - 0x0800602c RNG_LPUART1_IRQHandler - 0x0800602c LPTIM1_IRQHandler - *fill* 0x0800602e 0x2 + 0x0800621c 0x2 startup/startup_stm32l053xx.o + 0x0800621c TSC_IRQHandler + 0x0800621c HardFault_Handler + 0x0800621c ADC1_COMP_IRQHandler + 0x0800621c PVD_IRQHandler + 0x0800621c NMI_Handler + 0x0800621c I2C1_IRQHandler + 0x0800621c RCC_CRS_IRQHandler + 0x0800621c SPI1_IRQHandler + 0x0800621c TIM6_DAC_IRQHandler + 0x0800621c EXTI2_3_IRQHandler + 0x0800621c I2C2_IRQHandler + 0x0800621c LCD_IRQHandler + 0x0800621c DMA1_Channel4_5_6_7_IRQHandler + 0x0800621c EXTI4_15_IRQHandler + 0x0800621c DMA1_Channel1_IRQHandler + 0x0800621c Default_Handler + 0x0800621c TIM22_IRQHandler + 0x0800621c EXTI0_1_IRQHandler + 0x0800621c USB_IRQHandler + 0x0800621c SPI2_IRQHandler + 0x0800621c TIM21_IRQHandler + 0x0800621c WWDG_IRQHandler + 0x0800621c TIM2_IRQHandler + 0x0800621c DMA1_Channel2_3_IRQHandler + 0x0800621c USART2_IRQHandler + 0x0800621c FLASH_IRQHandler + 0x0800621c USART1_IRQHandler + 0x0800621c RNG_LPUART1_IRQHandler + 0x0800621c LPTIM1_IRQHandler + *fill* 0x0800621e 0x2 .text.__libc_init_array - 0x08006030 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - 0x08006030 __libc_init_array - .text.__itoa 0x0800607c 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x0800607c __itoa - .text.itoa 0x080060aa 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x080060aa itoa - .text.memcpy 0x080060b2 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - 0x080060b2 memcpy - .text.memset 0x080060c4 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - 0x080060c4 memset - .text.strcat 0x080060d4 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - 0x080060d4 strcat - *fill* 0x080060ee 0x2 - .text.__utoa 0x080060f0 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x080060f0 __utoa + 0x08006220 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x08006220 __libc_init_array + .text.__itoa 0x0800626c 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x0800626c __itoa + .text.itoa 0x0800629a 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x0800629a itoa + .text.memcpy 0x080062a2 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x080062a2 memcpy + .text.memset 0x080062b4 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x080062b4 memset + .text.strcat 0x080062c4 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + 0x080062c4 strcat + *fill* 0x080062de 0x2 + .text.__utoa 0x080062e0 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x080062e0 __utoa *(.glue_7) - .glue_7 0x08006164 0x0 linker stubs + .glue_7 0x08006354 0x0 linker stubs *(.glue_7t) - .glue_7t 0x08006164 0x0 linker stubs + .glue_7t 0x08006354 0x0 linker stubs *(.eh_frame) - .eh_frame 0x08006164 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .eh_frame 0x08006354 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o *(.init) - .init 0x08006164 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006164 _init - .init 0x08006168 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .init 0x08006354 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006354 _init + .init 0x08006358 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o *(.fini) - .fini 0x08006170 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006170 _fini - .fini 0x08006174 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x0800617c . = ALIGN (0x4) - 0x0800617c _etext = . + .fini 0x08006360 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006360 _fini + .fini 0x08006364 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x0800636c . = ALIGN (0x4) + 0x0800636c _etext = . -.vfp11_veneer 0x0800617c 0x0 - .vfp11_veneer 0x0800617c 0x0 linker stubs +.vfp11_veneer 0x0800636c 0x0 + .vfp11_veneer 0x0800636c 0x0 linker stubs -.v4_bx 0x0800617c 0x0 - .v4_bx 0x0800617c 0x0 linker stubs +.v4_bx 0x0800636c 0x0 + .v4_bx 0x0800636c 0x0 linker stubs -.iplt 0x0800617c 0x0 - .iplt 0x0800617c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.iplt 0x0800636c 0x0 + .iplt 0x0800636c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.rodata 0x0800617c 0x210 - 0x0800617c . = ALIGN (0x4) +.rodata 0x0800636c 0x22c + 0x0800636c . = ALIGN (0x4) *(.rodata) - .rodata 0x0800617c 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .rodata 0x080061a0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .rodata 0x080061e8 0x50 Src/main.o - .rodata 0x08006238 0x24 Src/system_stm32l0xx.o - 0x08006238 PLLMulTable - 0x08006244 AHBPrescTable - 0x08006254 APBPrescTable - .rodata 0x0800625c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .rodata 0x0800629c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .rodata 0x0800636c 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x08006390 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x080063d8 0x50 Src/main.o + .rodata 0x08006428 0x24 Src/system_stm32l0xx.o + 0x08006428 PLLMulTable + 0x08006434 AHBPrescTable + 0x08006444 APBPrescTable + .rodata 0x0800644c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .rodata 0x0800648c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) *(.rodata*) .rodata.str1.4 - 0x080062dc 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x080062e1 0x3 + 0x080064cc 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x080064d1 0x3 + .rodata.str1.4 + 0x080064d4 0x8e Src/main.o + 0x92 (size before relaxing) + *fill* 0x08006562 0x2 .rodata.str1.4 - 0x080062e4 0x80 Src/main.o - 0x7e (size before relaxing) + 0x08006564 0xc Src/stm32l0xx_it.o + 0xa (size before relaxing) .rodata.str1.1 - 0x08006364 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x0800638c . = ALIGN (0x4) - *fill* 0x08006389 0x3 + 0x08006570 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x08006598 . = ALIGN (0x4) + *fill* 0x08006595 0x3 .ARM.extab *(.ARM.extab* .gnu.linkonce.armextab.*) -.ARM 0x0800638c 0x8 - 0x0800638c __exidx_start = . +.ARM 0x08006598 0x8 + 0x08006598 __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x0800638c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x08006394 __exidx_end = . + .ARM.exidx 0x08006598 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x080065a0 __exidx_end = . -.rel.dyn 0x08006394 0x0 - .rel.iplt 0x08006394 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.rel.dyn 0x080065a0 0x0 + .rel.iplt 0x080065a0 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.preinit_array 0x08006394 0x0 - 0x08006394 PROVIDE (__preinit_array_start, .) +.preinit_array 0x080065a0 0x0 + 0x080065a0 PROVIDE (__preinit_array_start, .) *(.preinit_array*) - 0x08006394 PROVIDE (__preinit_array_end, .) + 0x080065a0 PROVIDE (__preinit_array_end, .) -.init_array 0x08006394 0x4 - 0x08006394 PROVIDE (__init_array_start, .) +.init_array 0x080065a0 0x4 + 0x080065a0 PROVIDE (__init_array_start, .) *(SORT(.init_array.*)) *(.init_array*) - .init_array 0x08006394 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x08006398 PROVIDE (__init_array_end, .) + .init_array 0x080065a0 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x080065a4 PROVIDE (__init_array_end, .) -.fini_array 0x08006398 0x4 +.fini_array 0x080065a4 0x4 [!provide] PROVIDE (__fini_array_start, .) *(SORT(.fini_array.*)) *(.fini_array*) - .fini_array 0x08006398 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .fini_array 0x080065a4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o [!provide] PROVIDE (__fini_array_end, .) - 0x0800639c _sidata = LOADADDR (.data) + 0x080065a8 _sidata = LOADADDR (.data) -.data 0x20000000 0x8 load address 0x0800639c +.data 0x20000000 0x8 load address 0x080065a8 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -5886,14 +5892,14 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000008 . = ALIGN (0x4) 0x20000008 _edata = . -.jcr 0x20000008 0x0 load address 0x080063a4 +.jcr 0x20000008 0x0 load address 0x080065b0 .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.igot.plt 0x20000008 0x0 load address 0x080063a4 +.igot.plt 0x20000008 0x0 load address 0x080065b0 .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o 0x20000008 . = ALIGN (0x4) -.bss 0x20000008 0xebc load address 0x080063a4 +.bss 0x20000008 0xec0 load address 0x080065b0 0x20000008 _sbss = . 0x20000008 __bss_start__ = _sbss *(.bss) @@ -5901,36 +5907,38 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .bss 0x20000024 0x12c Middlewares/Third_Party/FreeRTOS/Source/tasks.o 0x20000124 pxCurrentTCB .bss 0x20000150 0xc18 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .bss 0x20000d68 0x1 Src/main.o + 0x20000d68 updateCounter *(.bss*) *(COMMON) - COMMON 0x20000d68 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x20000d68 uwTick - COMMON 0x20000d6c 0x14 Src/HTS221.o - 0x20000d6c HTS221_CoefStruc - 0x20000d7c HTS221_I2CHander - COMMON 0x20000d80 0x144 Src/main.o - 0x20000d80 hirda1 - 0x20000dbc Task_ErrorCheck - 0x20000dc0 Task_UartSend - 0x20000dc4 Queue_number - 0x20000dc8 hi2c1 - 0x20000e14 Queue_SendTo_Uart - 0x20000e18 Queue_SendTo_TaskNVM - 0x20000e1c thread1_counter - 0x20000e20 NVM_QueueSet - 0x20000e24 hrtc - 0x20000e48 huart2 - 0x20000eb8 Task_SensorRead - 0x20000ebc Task_NVM_ReadWrite - 0x20000ec0 Task_HearBeatLED - 0x20000ec4 . = ALIGN (0x4) - 0x20000ec4 _ebss = . - 0x20000ec4 __bss_end__ = _ebss + *fill* 0x20000d69 0x3 + COMMON 0x20000d6c 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x20000d6c uwTick + COMMON 0x20000d70 0x14 Src/HTS221.o + 0x20000d70 HTS221_CoefStruc + 0x20000d80 HTS221_I2CHander + COMMON 0x20000d84 0x144 Src/main.o + 0x20000d84 hirda1 + 0x20000dc0 Task_ErrorCheck + 0x20000dc4 Task_UartSend + 0x20000dc8 Queue_number + 0x20000dcc hi2c1 + 0x20000e18 Queue_SendTo_Uart + 0x20000e1c Queue_SendTo_TaskNVM + 0x20000e20 thread1_counter + 0x20000e24 NVM_QueueSet + 0x20000e28 hrtc + 0x20000e4c huart2 + 0x20000ebc Task_SensorRead + 0x20000ec0 Task_NVM_ReadWrite + 0x20000ec4 Task_HearBeatLED + 0x20000ec8 . = ALIGN (0x4) + 0x20000ec8 _ebss = . + 0x20000ec8 __bss_end__ = _ebss ._user_heap_stack - 0x20000ec4 0x604 load address 0x080063a4 + 0x20000ec8 0x600 load address 0x080065b0 0x20000ec8 . = ALIGN (0x8) - *fill* 0x20000ec4 0x4 [!provide] PROVIDE (end, .) [!provide] PROVIDE (_end, .) 0x200010c8 . = (. + _Min_Heap_Size) @@ -6041,7 +6049,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x000007d8 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o OUTPUT(RTOS_IOT.elf elf32-littlearm) -.debug_info 0x00000000 0x153c8 +.debug_info 0x00000000 0x15e9f .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_info 0x00000fea 0x647 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -6061,13 +6069,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_info 0x00010a83 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_info 0x00010d33 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_info 0x00011098 0xb37 Src/HTS221.o - .debug_info 0x00011bcf 0x21bb Src/main.o - .debug_info 0x00013d8a 0x117a Src/stm32l0xx_hal_msp.o - .debug_info 0x00014f04 0xd6 Src/stm32l0xx_it.o - .debug_info 0x00014fda 0x37b Src/system_stm32l0xx.o - .debug_info 0x00015355 0x73 startup/startup_stm32l053xx.o + .debug_info 0x00011bcf 0x24fe Src/main.o + .debug_info 0x000140cd 0x117a Src/stm32l0xx_hal_msp.o + .debug_info 0x00015247 0x86a Src/stm32l0xx_it.o + .debug_info 0x00015ab1 0x37b Src/system_stm32l0xx.o + .debug_info 0x00015e2c 0x73 startup/startup_stm32l053xx.o -.debug_abbrev 0x00000000 0x2ac4 +.debug_abbrev 0x00000000 0x2bf5 .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_abbrev 0x0000046d 0x1cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -6087,13 +6095,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_abbrev 0x00001f7a 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_abbrev 0x00002149 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_abbrev 0x00002306 0x207 Src/HTS221.o - .debug_abbrev 0x0000250d 0x2aa Src/main.o - .debug_abbrev 0x000027b7 0x18d Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x00002944 0x7b Src/stm32l0xx_it.o - .debug_abbrev 0x000029bf 0xf3 Src/system_stm32l0xx.o - .debug_abbrev 0x00002ab2 0x12 startup/startup_stm32l053xx.o + .debug_abbrev 0x0000250d 0x30d Src/main.o + .debug_abbrev 0x0000281a 0x18d Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x000029a7 0x149 Src/stm32l0xx_it.o + .debug_abbrev 0x00002af0 0xf3 Src/system_stm32l0xx.o + .debug_abbrev 0x00002be3 0x12 startup/startup_stm32l053xx.o -.debug_loc 0x00000000 0xdc7e +.debug_loc 0x00000000 0xdcba .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_loc 0x00000447 0x284 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -6113,9 +6121,9 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_loc 0x0000d293 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_loc 0x0000d339 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_loc 0x0000d57d 0x3b0 Src/HTS221.o - .debug_loc 0x0000d92d 0x126 Src/main.o - .debug_loc 0x0000da53 0xc6 Src/stm32l0xx_hal_msp.o - .debug_loc 0x0000db19 0x165 Src/system_stm32l0xx.o + .debug_loc 0x0000d92d 0x162 Src/main.o + .debug_loc 0x0000da8f 0xc6 Src/stm32l0xx_hal_msp.o + .debug_loc 0x0000db55 0x165 Src/system_stm32l0xx.o .debug_aranges 0x00000000 0x1338 .debug_aranges @@ -6301,7 +6309,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_macro 0x000174b9 0x431 Src/stm32l0xx_it.o .debug_macro 0x000178ea 0x37d Src/system_stm32l0xx.o -.debug_line 0x00000000 0x106b2 +.debug_line 0x00000000 0x106dc .debug_line 0x00000000 0xa0f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_line 0x00000a0f 0x9c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_line 0x000013d3 0x989 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -6321,13 +6329,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_line 0x0000c8ba 0x650 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_line 0x0000cf0a 0x638 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_line 0x0000d542 0x915 Src/HTS221.o - .debug_line 0x0000de57 0xc50 Src/main.o - .debug_line 0x0000eaa7 0x8e8 Src/stm32l0xx_hal_msp.o - .debug_line 0x0000f38f 0xa3e Src/stm32l0xx_it.o - .debug_line 0x0000fdcd 0x862 Src/system_stm32l0xx.o - .debug_line 0x0001062f 0x83 startup/startup_stm32l053xx.o + .debug_line 0x0000de57 0xc78 Src/main.o + .debug_line 0x0000eacf 0x8e8 Src/stm32l0xx_hal_msp.o + .debug_line 0x0000f3b7 0xa40 Src/stm32l0xx_it.o + .debug_line 0x0000fdf7 0x862 Src/system_stm32l0xx.o + .debug_line 0x00010659 0x83 startup/startup_stm32l053xx.o -.debug_str 0x00000000 0x866ec +.debug_str 0x00000000 0x866fa .debug_str 0x00000000 0x7a448 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x7a861 (size before relaxing) .debug_str 0x0007a448 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o @@ -6366,13 +6374,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) 0x93e8 (size before relaxing) .debug_str 0x00085b51 0x742 Src/HTS221.o 0x7ada5 (size before relaxing) - .debug_str 0x00086293 0x393 Src/main.o - 0x80bf1 (size before relaxing) - .debug_str 0x00086626 0x1b Src/stm32l0xx_hal_msp.o + .debug_str 0x00086293 0x3a1 Src/main.o + 0x80cfa (size before relaxing) + .debug_str 0x00086634 0x1b Src/stm32l0xx_hal_msp.o 0x7ae4e (size before relaxing) - .debug_str 0x00086641 0x47 Src/stm32l0xx_it.o - 0x7f00c (size before relaxing) - .debug_str 0x00086688 0x64 Src/system_stm32l0xx.o + .debug_str 0x0008664f 0x47 Src/stm32l0xx_it.o + 0x7f63c (size before relaxing) + .debug_str 0x00086696 0x64 Src/system_stm32l0xx.o 0x7a29b (size before relaxing) .comment 0x00000000 0x6e @@ -6401,7 +6409,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Src/stm32l0xx_it.o .comment 0x0000006e 0x6f Src/system_stm32l0xx.o -.debug_frame 0x00000000 0x3558 +.debug_frame 0x00000000 0x3560 .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_frame 0x000002c0 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o @@ -6423,19 +6431,19 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_frame 0x00002ec0 0x124 Src/HTS221.o .debug_frame 0x00002fe4 0x168 Src/main.o .debug_frame 0x0000314c 0xd8 Src/stm32l0xx_hal_msp.o - .debug_frame 0x00003224 0x38 Src/stm32l0xx_it.o - .debug_frame 0x0000325c 0x38 Src/system_stm32l0xx.o - .debug_frame 0x00003294 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .debug_frame 0x000032b4 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .debug_frame 0x000032f0 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .debug_frame 0x0000332c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .debug_frame 0x00003368 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .debug_frame 0x000033a4 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .debug_frame 0x000033dc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) - .debug_frame 0x00003408 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .debug_frame 0x00003434 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .debug_frame 0x00003460 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .debug_frame 0x000034a0 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x000034c8 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .debug_frame 0x000034e8 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .debug_frame 0x00003510 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .debug_frame 0x00003224 0x40 Src/stm32l0xx_it.o + .debug_frame 0x00003264 0x38 Src/system_stm32l0xx.o + .debug_frame 0x0000329c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .debug_frame 0x000032bc 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x000032f8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .debug_frame 0x00003334 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .debug_frame 0x00003370 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .debug_frame 0x000033ac 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .debug_frame 0x000033e4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + .debug_frame 0x00003410 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .debug_frame 0x0000343c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x00003468 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + .debug_frame 0x000034a8 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x000034d0 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x000034f0 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .debug_frame 0x00003518 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) diff --git a/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c index 962fe0b..70b8430 100644 --- a/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c +++ b/RTOS_IOT/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.c @@ -1344,6 +1344,7 @@ void HAL_RTCEx_WakeUpTimerIRQHandler(RTC_HandleTypeDef *hrtc) /* Clear the EXTI's line Flag for RTC WakeUpTimer */ __HAL_RTC_WAKEUPTIMER_EXTI_CLEAR_FLAG(); + /* Change RTC state */ hrtc->State = HAL_RTC_STATE_READY; diff --git a/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c index 6c261a6..2d242e9 100644 --- a/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c +++ b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c @@ -3139,7 +3139,44 @@ static portTASK_FUNCTION( prvIdleTask, pvParameters ) for( ;; ) { /* See if any tasks have deleted themselves - if so then the idle task - is responsible for freeing the deleted task's TCB and stack. */ + is responsible for + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + freeing the deleted task's TCB and stack. */ prvCheckTasksWaitingTermination(); #if ( configUSE_PREEMPTION == 0 ) diff --git a/RTOS_IOT/Src/main.c b/RTOS_IOT/Src/main.c index a6d10e0..ef055d0 100644 --- a/RTOS_IOT/Src/main.c +++ b/RTOS_IOT/Src/main.c @@ -66,6 +66,7 @@ UART_HandleTypeDef huart2; /* Private variables ---------------------------------------------------------*/ uint32_t thread1_counter; uint32_t Queue_number; +uint8_t updateCounter = 0; osThreadId Task_NVM_ReadWrite; osThreadId Task_UartSend; @@ -170,13 +171,19 @@ int main(void) MX_USART1_IRDA_Init(); MX_I2C1_Init(); - /*Set Date & Time for RTC*/ -// HAL_RTC_SetDate(); -// HAL_RTC_SetTime(); /* USER CODE BEGIN 2 */ - __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); - HAL_PWR_EnterSLEEPMode(PWR_LOWPOWERREGULATOR_ON,PWR_STOPENTRY_WFE); + + /* Configure Event AutoWakeup */ +// TODO: Need to configure the Period of auto wakeup currently is every 30 seconds + HAL_RTCEx_SetWakeUpTimer_IT(&hrtc, 30, RTC_WAKEUPCLOCK_CK_SPRE_16BITS); + NVIC_EnableIRQ(RTC_IRQn); + NVIC_SetPriority(RTC_IRQn,0); + + /*Set Date & Time for RTC*/ + // HAL_RTC_SetDate(); + // HAL_RTC_SetTime(); + /* USER CODE END 2 */ /* USER CODE BEGIN RTOS_MUTEX */ @@ -202,10 +209,10 @@ int main(void) osThreadDef(HeartBeat, func_LEDBlink, osPriorityNormal, 0 , 64); Task_HearBeatLED = osThreadCreate(osThread(HeartBeat),NULL); - osThreadDef(HTS221_sensor, func_SensorRead, osPriorityNormal, 0, 64); + osThreadDef(HTS221_sensor, func_SensorRead, osPriorityNormal, 0, 96); Task_SensorRead = osThreadCreate(osThread(HTS221_sensor),NULL); - osThreadDef(NVM, func_NVM_Manager, osPriorityAboveNormal, 0 ,128); + osThreadDef(NVM, func_NVM_Manager, osPriorityAboveNormal, 0 ,96); Task_NVM_ReadWrite = osThreadCreate(osThread(NVM),NULL); osThreadDef(UartPrint, func_UartPrint, osPriorityAboveNormal, 0 , 128); @@ -216,8 +223,6 @@ int main(void) /* USER CODE BEGIN RTOS_QUEUES */ /* add queues, ... */ - - // osMessageQDef(NVM_Manager,1,QMessageData_ForNVM); // osMessageQDef(NVM_Manager,1,uint8_t); // Queue_SendTo_TaskNVM = osMessageCreate(osMessageQ(NVM_Manager),Task_NVM_ReadWrite); @@ -228,13 +233,12 @@ int main(void) Queue_SendTo_TaskNVM = xQueueCreate(1,sizeof(QMessageData_ForNVM)); Queue_SendTo_Uart = xQueueCreate(1,sizeof(QMessageData_USART)); -// + // xQueueCreateSet(1*sizeof(QMessageData_ForNVM)+1*sizeof(QMessageData_Sensor)); // xQueueAddToSet(Queue_SendTo_TaskNVM,NVM_QueueSet); /* USER CODE END RTOS_QUEUES */ - /* Start scheduler */ osKernelStart(); @@ -313,7 +317,7 @@ void SystemClock_Config(void) HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK); /* SysTick_IRQn interrupt configuration */ - HAL_NVIC_SetPriority(SysTick_IRQn, 3, 0); + HAL_NVIC_SetPriority(SysTick_IRQn, 2, 0); } /* I2C1 init function */ @@ -505,8 +509,14 @@ void func_NVM_Manager(void const* argument){ // TODO: After confirm receive successful (0x01), // delete data in NVM. // else resend the data in NVM to UART. - if (Rawdata.dataArray[0]==0x00){ + if (Rawdata.dataArray[0]==0x01){ + Rawdata.dataArray[1]=0x01; + /*Config Low Power SleepMode*/ + HAL_SuspendTick(); + __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); + HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON,PWR_SLEEPENTRY_WFI); + HAL_ResumeTick(); } else { @@ -523,18 +533,12 @@ void func_NVM_Manager(void const* argument){ void func_LEDBlink (void const* argument){ uint32_t xLastTickWakeup = osKernelSysTick(); thread1_counter = 0; -// uint8_t TestSentPtr = 0; -// QMessageData_ForNVM toNVM; -// toNVM.ptr_sent_Success = &TestSentPtr; for(;;) { thread1_counter++; HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); +// osDelay(1000); osDelayUntil(&xLastTickWakeup,1000); -// toNVM.EventId = EV_ReturnFromBlinkLED; -// toNVM.dataArray[0]=0xBC; -// *toNVM.ptr_sent_Success = 0x04; -// xQueueSend(Queue_SendTo_TaskNVM,&toNVM,100); } } @@ -545,7 +549,7 @@ void func_UartPrint (void const* argument){ HAL_StatusTypeDef Status = 0; uint8_t itr = 0; char tempText[5] = ""; - char OutputText[80]=""; + char OutputText[90]=""; for(;;) @@ -553,15 +557,20 @@ void func_UartPrint (void const* argument){ xQueueReceive(Queue_SendTo_Uart,&receiveData,portMAX_DELAY); for(itr=0; itr< 5; itr++){ - strcpy(OutputText,"Current Temperature is "); + strcpy(OutputText,"Thread counter: "); + itoa(thread1_counter,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText,"\n"); + + strcat(OutputText,"Current Temperature is "); itoa(receiveData.dataset[itr].temperature,tempText,10); strcat(OutputText,tempText); - strcat(OutputText, " Celsius '\n"); + strcat(OutputText, " Celsius\n"); strcat(OutputText, "Humidity is "); itoa(receiveData.dataset[itr].humidity,tempText,10); strcat(OutputText,tempText); - strcat(OutputText, " %rh '\n"); + strcat(OutputText, " %rh\n"); strcat(OutputText, " @ Time "); @@ -573,7 +582,7 @@ void func_UartPrint (void const* argument){ strcat(OutputText,":"); itoa(receiveData.dataset[itr].Acqtime.Secounds,tempText,10); strcat(OutputText,tempText); - strcat(OutputText, "'\n '\n"); + strcat(OutputText, "\n \n"); Status += HAL_UART_Transmit(&huart2,(uint8_t *)OutputText,sizeof(OutputText),200); } @@ -588,14 +597,19 @@ void func_UartPrint (void const* argument){ void func_SensorRead (void const* argument){ + uint32_t xLastTickWakeup = osKernelSysTick(); + updateCounter = 0; QMessageData_ForNVM data; HTS221_Init(&hi2c1); RTC_TimeTypeDef Time; for(;;) { +// TODO: Need to verify the integrity of readout values from sensor data.EventId = EV_ReadsFromTempSensor; +// osThreadSetPriority(Task_SensorRead,osPriorityAboveNormal); data.TempnHumidity.temperature = HTS221_GetTemperature(); data.TempnHumidity.humidity = HTS221_GetHumidity(); +// osThreadSetPriority(Task_SensorRead,osPriorityNormal); HAL_RTC_GetDate(&hrtc,(RTC_DateTypeDef *)(&data.TempnHumidity.Acqdate.Weekday),RTC_FORMAT_BIN); HAL_RTC_GetTime(&hrtc,&Time,RTC_FORMAT_BIN ); data.TempnHumidity.Acqtime.Hours = Time.Hours; @@ -605,7 +619,8 @@ void func_SensorRead (void const* argument){ xQueueSend(Queue_SendTo_TaskNVM,&data,100); //TODO: Need to comment the osDelay(1000) after implementation of autowakeup function event - osDelay(1000); +// osDelay(1000); + osDelayUntil(&xLastTickWakeup,1000); } } diff --git a/RTOS_IOT/Src/stm32l0xx_it.c b/RTOS_IOT/Src/stm32l0xx_it.c index 2ac9343..4aacbc6 100644 --- a/RTOS_IOT/Src/stm32l0xx_it.c +++ b/RTOS_IOT/Src/stm32l0xx_it.c @@ -36,8 +36,10 @@ #include "stm32l0xx_it.h" #include "cmsis_os.h" -/* USER CODE BEGIN 0 */ +/* USER CODE BEGIN 0 */ +extern RTC_HandleTypeDef hrtc; +extern UART_HandleTypeDef huart2; /* USER CODE END 0 */ /* External variables --------------------------------------------------------*/ @@ -70,7 +72,8 @@ void SysTick_Handler(void) /* USER CODE BEGIN 1 */ void RTC_IRQHandler (void){ - + HAL_RTCEx_WakeUpTimerIRQHandler(&hrtc); + HAL_UART_Transmit(&huart2,(uint8_t*)"RTC IRQ \n",9,10); } /* USER CODE END 1 */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ From c72342c8db76143aa5a413a0ab4666b54b7f872e Mon Sep 17 00:00:00 2001 From: tiongpatrick86 Date: Sun, 15 Oct 2017 15:56:00 +0800 Subject: [PATCH 14/18] Updated Write to NVM EEPROM but forgotten to put time value into the queue --- RTOS_IOT/Debug/RTOS_IOT.bin | Bin 26032 -> 27508 bytes RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1046700 -> 1067292 bytes RTOS_IOT/Debug/output.map | 1550 ++++++++++++++++++----------------- RTOS_IOT/Inc/HTS221.h | 7 +- RTOS_IOT/Src/main.c | 82 +- 5 files changed, 892 insertions(+), 747 deletions(-) diff --git a/RTOS_IOT/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin index 99ce37c5f2ed3dad6c87e40438a7685e77233e06..f8fe85f09f15fa94ad8c0ae5cf35fe8c3a001c9b 100644 GIT binary patch delta 5595 zcmaJ_3wRV&mOi)onfDXOJJpXsLP8SWs34tgQY76`!c!m-IwX!AB5up5#1SV^kwI}j zfvams6kU+{2oE>XW}I&njUzLQX4$WsBs;+XHi|?<$5t3Co$9XIQu)b_=l^fr)LY)%Qtth5DwEc@_i8bIJ(I~QVmFVFjsqOi75jmEX%FY_24k#44RJsM zyOMc&bj2r;T{gaUq+i5W6Wpa0?=YKNZ_xY z!^{?jafdvq8W$n&d!Eu>R5MjUS{qZ%n1b}}n4L`GW;!qS?v(kX&@mruHZ4?gEVOYF z|1SMqY(Yx;s0yIHm0M|(@eaiQm3|VtKk1Vobg0q3k}FlL%jlN4!lc89Y88}eliM(P zI^zmR`W}fbExW3M6(rNt778JF_{{ZEv_nAW3r^! zY9Jrh>D{Md3`L;NIBj{wVpgF&S`QC{5zJRGz&UDw*+?l!l9bT8gGfvPlH5t43OYBJ*yYNfw z5gGgZ7M5iorc8C4mGnVu;vJdMZC09*ZEXp3Z{*f+_i#(Nz`MDsS{O=b=h7YVs(awm zgjQ}|%$B&_++J>ROher3)^u-*<27rhmzWM)wca#X_`x1-KX;Hj#syA&X#LrDru?R_ zuRPHUGXlO+n+n$F(6Z~pGl7_hZP@1@zSBlbF#Sv4rC~6Af$@=a&;qgpOB5Gm2NuQ@ zEt5Mx#MQzMrTb44_HYexLkXv>h2FenA6SdA`FLzz2Tya&*5)!On&R8Y-DykpIXGOy zh0$KEABq^?T8^<1?|y3rx?5pQv)%421|r9C z4Ms8x*Uej8NmT+4WrGsQ#gRxpjzc+YWxe@Tf3O<8&@v<0x4^cSuYgDd26lp zWyD-#&9bq-2rv{+@z#{5duzB_D=}r+ei*(37&Eb5_njZE;}~<2?W*tZ$VJ5A{`;clzyA~DulQ*HgopB;Lzd}uJr3+4yQ+5bGZj;pfPVV9NGSleHR&y@ey zAehgT-{|{j80QCQZFUY*IzqQ+7csvc^&HJ+NXv9bN8^x2H&9?--pH6@Y%A+pO*MF$ zfXQs%*SHTgrpk&&Vq|Rgx>n;pNU`N0z5?-V#Pt#U9O7w+CnG)uadiYwCMmXLxgE7` zAPMor@pcf8mGKspW+0}*+Q=HBZPvONn-0NqD&2q;MdZk$eq5J`1JG7Td`F7}`C1>C)b^Ei zCMSc?K1n_usy_i3A89;Hf>cN5c2a2c5@WI>;q%GV|^V{M0|6d(SCw^ z<;2Oktr}(5e1CGTTXqQY8LtLwJRpIQ!P?+wa0qzUU?kOYN1o$3F$@XQKe12ZcaC8x z34691Y6uC@K_f>7X|CxzB6woWy@ZT<2JnDwQNc;}jL0_`cwP)oct zLNAr&&?^Ot$Ott~ZzlJ8I;I~Y(?$McTn!q($e+Sh(2x)3mwfqej!ajF>YoE~h@OmS z-HiC!owLZCJRtd(f$jBbOt!2eYvV8qMpDXvySCB)cLoFf0DIM&Pe zBK>y8T~QIKSER+o1>@35kvfZW$E5>!zZF-Oh+0VV=c z)i50?DUc;K+MEs3>7_HrrLHh-kR`REqhWfWGkQJZ z3rfbN-v{Z@1#_6JkjKAZmnt^QAIB3h$sgvANVI2R4&ArVh~Ul$_>AP~S-6T(3;aJs znzndWi@+}xTTg;{v0viv9<@M|s|MG5qf6lLQt;XS6-v~i2bx@K^=p(>FKdewt=TW5 zD<)8bf~I3zmqu=HYm$P;Db{!lD?34MC5njjv&HkW1pd3Qyzc@|FfYa0mxGPUz7u$V zm}XhB?iG0Ngh8Rd5jS9t(y73op1^alV#~;Q#Xn8pDT@901{C;XVY<^|k6$Hkz~tWm zRD4648|fvBgcEqFY(IXRt%vcOV{0Zq(N}Fga)UN5IXrWXbg=2Grgkgw5i_2aW(cg4 zSQtxraG3`<=};3C-qPCX;_?~fbGoHGoAlD%3!T%O}hwz7wI9c zWJ;^399(#M#sQ{8zO8>0hau2NuW^f~EE08o?59-X-x66cWBDf5!`7EBBLVu-(%r;M zGb;*Lyd6&P*KdYGy;rt^z^V`)!I(K746FRuCUUQbA>auU*6t@AP^j`@;u!|k=7$oM zk2wN?Z6PvWwuivhQ3&h{(?F$>yhz`#m`Q5r_Z3f&>GZ+MMGh$x>$h=VIpxlDk7SVy66?;E`COiQ;7b<{wp$xu68_z=Vz~@ zo}8m4RZ}pBURw40^m{_uoM>+?3xSG|CWm;n^=f}9Rz5_(uWHOXD5(6ltg)D@x&SW_ zGXZuF?%(HDd$!(VCFEJ!eea=!yisCiov! zAVjyXK1wWf+8RgZ4x!$qu_raY$ki`NsmsTRER!TY0pCj1^qu>%bM{ z*+rkbFHe^$>d7>I#VxC2J{DpBU4jqD%g zGX&ztB*CER3Sjtl;r)x5*5W|-b6wL|iN8)SuFXat%CJYt)S(gh1&S9(b_x9a39LBc z$6JaY(GfqUMf}KB{D_VCk#(CNq3|s~J{$etez?0|=*n@N->jxjtgCFX2(6|LqM^|a zEd{ggWlg8PBE&b1vL+4HzM^|sk4Pzm_)VkHU6>5vF%4iy#B-wB-F>tRrh=J0vCxs` z0uwQ=uoi&GKP445Lm}fOg${3ESY4bxnCEBlWV0Y9*ycR%)XyPvzdwmi=S{0p&-n8EG^OzdBhx9$yL{?@3_~&a*s2iU9W=I^I$$56 ziI9%rUmaw?01O-AKM&?*o7?hm8XSlfD3~{>pA+K$JxJ#LeDd%xYhsV~)sn(xZ~C-& zl!W*bLG?t(QB_ehZk`YEPmV;{lU!;{=u(`-0Bo3NMnZh^$WDAZ%!!w0RIe|UOT5XU z``Ip$e}?W}pPocVM-9&dIU@20LIJd0K)ct^VERRRW&NyFfxj%VX^e4AB?LYaSP=O0 z5}jU?u}R?H3P&5$Iw5daNbAJL1AkQ1AE9})aVeU=uE_799A{jD@+(4@>qm_2u1LM- zBlX%9yF+NFHQt4GPb+eVME_8egZJDE5fVAKpQze?(TgUlShT5 zJzz|8WVq8XGi?fMkAunNmiRN_H=UQA690IZt*fg`z8C)u!Ic)~t0Zy)j0L!-!hD8Q zxS-jzt*NL9t^nDCWYldCt;x7LLWNm!fkd1$s#*Iv+tkwfP8Ec zd@x*-z%Z#I%zq(G#(V{n>rODmxE=1@?p|k19WlnE?rg-iPa?)9F2lXv-R=fcBiHNJ zp>~Nl*3xN7V+R9+h)0qSm>$kTJMS-vqoZT`H!!JhpkLo#7#EDR_bei>(d-QcC2YjT zh2F^9tOD;N**ho7YLp*}$ZM5{!4>-0hPmW!dTc{BSxrCPkXun6sXs*u^XbYW3-TqR zz&DC&R^XozG3hrDd<_eHv6zj%$qQ2&mLzxg%UuHhb6CO@2osSIE!~(#=F`fJ(?}+L zWMevsr@J?%H+sv6@;p|zxv;LCYoBS6ri2Ti9B5J^xkIjqxOG3ONH7n9C zAqFLp_Xb6r0y*?>88F`k={3wJE}-0xG>CKor$$~Er8LfI%6KCTMwLN+ybJt(g&%Vr zlU2L3m^m-f-#8y72j~yZGV&CiS(j44heUi`$p5iuF#I2eqfJppRizr2>eLZA>5%)* z$FCeiXC5R(+A*Ggs{z{~jd6_~e z--+c4q|Hcvq=S(Xd4~f08G$Txq|&Jj2FC+<)&RsJ_Q0lFm=iHQVv9C{o**y(oJb+u zj!!vhM#HR@?XjS@$AG>XOG~6&kNmhS>tvEKSwHVKIvx-DBgr`Cq%ryxmaQnuv=wPw lmU$VI_#ag?h|vH5 delta 3905 zcmaJ@3vg3q7C!%Nl7_xpYU!Jsq(Doh56V*o3N4{Dg;pq9T7;AqOetuV^?~coQb8SE z(1ks)gA@@_W?LRkB$S06>Q-bO$D&dyuJ|IzDEMOH`nXB%&HeY>+Z32_W;65MbIy0p z|NrMd|0_R##60~h2}BUzYX)=9${}n|&e{kE7K0fgzvOx_&%PyK!7ci5qyHzhZZ!X` z@>cz~ZBuV%bJMx~jj=*~%l5B}=<7{m^(?^@V4ZvIf+y~jdtRR%j|tY;`fvf5XhzIm z>%A3mD79#Kci7!8w<38S^-OH;kRf zRBzwdCdR^;oo{EmuqFR{rg-ZL`WchG*@fj%LX?8bi_$VB84M72%?aWdU$d*qobK3T zcUFd_?__+wC@uTa4R^fm?yzMELjmVy>?_I>*0$i+MK%`1nBpe-t}fm{6TDRX3LDR* zHv>j6`nc2^D9>umhl`b8zU;_ybw>SiA)eTy5$|gOJY4FE;BuBDYh7pbFBejL8Py}# zG0T>Uk*ic`eRg9VPS?(J= z)0aS@pPCF8;;ZT^6sd=(~T~9AQ!`em$*7sBFcw>A9MiGQDDiV$#e1mV%q6?;N%sQoQ0FKQm!m z*qe6O156w2=^5ijgp7KTxGJ>{tjw%d zr1$lJJYT!3!MsS{&YJrzoz0+TUj%M#_79zp*P}aZP5SQE;tvHdVeS+f@A-gsLi|q1 zn@5c=2isf@8c~rbJ?GqP%4~fAJLaZRFyXUY0 zmIpq_1Ah}2A*r{|p43BI)L+G4X@|m_-WuFoJ%R1U*Q;~b7W|<4&Dim3Qm?zmNU_JT z(=pGuM+N`$c-2unYLn`we%#bgJU~7hSbto-3jTJSP%~@PEH&CkY(TiAJAv7qp7PdL%nvIYvx=d>vB*DH{3ItTt&!%;r!leCw@;O_}DvD(Kv zp)hIy{I7*Utnfi`)PT?h{znxyRf`Az`Vjbc;HL|0?0Mu1O4)r_y6`b}J04m%L!i=p zyD+olCk6Z?sI$f!oe9+0;v1dy%UWjvih4T;{%Z<;w!q51#CvN;$G)vNUEu#o2LF5b zL~R!PJHA-k9(^(_Qe}=~Vx2{}BICrm)oc{LQ1>tkVdC8_86V2gjwTlrMxQg%LHlIQ zl{K^!=fUs6Eq6bcQLC78W6muT!C$QybJ;mli@{ey-5tQvMQz!y%2B?G?4hzod4Nit z$3Q$wcgyTL@9{-*7<&qXi(g3`7h-vWwzT^4PQyd>Pq0fkVMz}A3?1~nh;2&>*&*-F zCHFEGi$B~mi%H%I_qH(H+E6c)F2*k#wz5=waA`5yhc7K1BP>wy?WJ>A8IEXtT~K8_ z)p(H2#QU2ZS)1e*m$5pzZL7Vda%6KpaH*DaDPD2+*5QxKa-tvM22WCN2maVJ$lUnv zWn-dK)M!eb81jNT_xB>EsR0BM;>W{MnQ1xVXlECzsFPI8*MhbuuHyI7|q6(L0RY z<|;*M3yC%(ns!F-FcVV(isTH%c-+0(lLKH$qU)fpq^H{hV{#8?JJMZXW7b7;ETBq% zrm$AYN1I!|p4b&^riC{FnAqHD)#YiW!fEbo$1?Z^=p1GQx0Ae~pd*h&IvqzOq zW34kIc`y{RJPWK#mA+8?SNrTDKIWVtq;l+XPE1uKOHfP~toO_Z|G#9BW|a}d>(0!T zisTB!Skoz&19Eydt(5<`?&bk8J;pkZ!e7*FiR^f5CD}V=kLyRebZa8*o{hBIt;b!V zIFt2GihDx0KMmlT=3Kf@-wohaT{#)R*P8P)73mcUHCS^gbhiACt?&0P8U4+7 zY}_B7M03#Q`5~P>k>uJ{V7^8=kc=Z_6Y>Zpgh_-NiqUH0?)fX#u$YE(KXGg$VK-)PiHS$92UYV7%B&=05 znJVg$2PqpDZRN9sd~GDWymDO1n_=y`K6^f{YblN&3=Oq@i6`~eV0TMl{PakR&BQ#3 zms<*oosk$94Xo|jXXpmk5^<7kAp3B{ZlD%@_Om#>bu#-CKG>SWcH(obqnn?Kv>(O8 z(o%ingrwx4EOm2(C`+d~SOp6c%jd|_13ZUv(>5Ew%DKB|hewvC(EZaz5W`#wsPwp# z-auH-X+16ZG^0l`e$}|FrjW&v?u_XYzy_&hEBjZTw)R_3gGH4VV(qGow%MUH^1JM7 z>^8WoY-0b!(<%Kax_?qAi9BG=+$pf z`lDG%hm1~sQjaW6RaNQPU{Y^VkCA4mhGT3atWom~wCt+`T9vg-TD6UcrT2Fxcaa7F zB7JncgP-4Dk+6^0VZ6Eui(Cg&ws6Ctre#sPOJJmXIs~P#ir>1%Z*)^+pr_9sIAuPy z*Y2Kos~%TCTc2_b*=6nauQLnaQ5X%47ioVF?1VLr5SjK{nafuo_l_h@zr{iU^9bh%`a~ z7f{(0P>6^qC@P9b5Ksh!fC#9lQPd=4`+d%-=^^@k?|Yy7$9;bPTzoonKBrEdbL!OE zU0vK?K@C8_iDX+qFt14{^r|LC7af85~fI*1a75LV)N z(@Pv0@!a=L+xggIwLzruqW4<e zq*;!;MI+D`s|xm8b49X33oB&l>8klDan{0|yl%f=J&=R&bT#H`GCA<`>P85Y8+kr1 z+N8-DnpRL%6yY!PrQBEauvLC%(fU*vqXK1rEv3SEBTz2XLZ%wG2g%OiZElLSZA5mq zRrJbni`6-`Wp5i#2FXU@F*p5$STjH8&TL9pi-c9iM?vz1(2pv_S_^XY%E@5)uEvaD znI5_cY%8<1)ubk+XmhY^Bx9D1c(mJfk6iLtJ+<&EijwoGF^s_^*)wJ7d zj76bxpcYhPoC}o;wEk0z#)rvdExM@6o$)#{rghkmDN^?3tj<|{MU-wUS{os&rQBZh zLX=!A<+Y*|mz-^pZx}|roaHIl?Vp%dEJ|mUN9IQMj*I;&wqE0?@0y74-lG0ju`4r2 z_^0}%1`Z4sNvVE;!Ks09{wdkPeZu@xGQ+b+iZn4?FW4WL)I{j9hcchfO!b32q_18T z$s+YKVxDLbq9v|yT(z~%`3rJF;>YJK$%%=dkRwVCcyj9P7NxR6q{)*a>2OxP{UN}E z%QLfNMhMe4%8_c8bB5&Hk<%@w^zC|nqr_R~nw*$ihu znrO#|3;sJo>@J+%9KnfJAL&~_YVEdLy;!8))!qHYSHpAqWQ~K# zURgoeA74G({mauL^>FtaCqB4}`Vq#c1evI1lpFIBWD{-n&7v&{Qj?y>xofAK^|zgB z)O)}bEhRAf&T;coMq-c=DXG0zOj&`HlwLijplfFL9ydREg$U111b-m-3E=Bq{#W3; zzz+jI8hneFA11@I!$^2$=2w2UQ&tFP zdW8pS;n}kHbK?qn2)CA55G>pUyDg%&tXZwU&`T!7TM_Q&#kFM(YBS>&WHmYAq9WP; zI2ncCwKnaPmK>hDW?UE-H2P!+as9(jI`BKv-{U+P1R~Bq@MHibSZpVC`t|cWX~pkZ zxKdj-vsSt-C4O!V7b4>>*iVjFb4TW%wOLPDa{YUs$)gLcwnVyVbf@&+j&5D-Z}HRo zdJo8#6j`L3X(1?pwP$VFT2HM=vmO^Imfm-cOUcu~T2V_QME{S3FiYwXks=~DZk|j} zE|$q*xv}?#LGBUcj5;oo9l0aMX-(wu)_DOXsMzD%ceS4H&mHHNU9AhqA(5sP`yZA+Aanyfb7am$DB(<({!kkv)=lH^D!tBljhGDn^^>ZQo* zva%>BRUVP@X3^>TGShG3xC&trLDx{U7A2x|NcFhXHnx@@qIU%zBreox(%OA}ai zSuYsRyIp!IH!gpz-(RPK!QJIeeWTXM zZzA)9YRcw%Irr8Y=bFeS;EeKehSeGoP37*Snzkk1PZ6ksuD!$a=O^_Nf!X1CHD$lo zC_}&07(X?Y9qe9sq{e90Og1v%t{Nk+nXG5R^_c#e$zIKCtin}-))Jy+*4Eb4*49?m z)|TL>UTtkTii_#SO>9vhGHc4l*Q{zTA8Ld=RusWqGe52%cXgKd_CU$B+_)KQ{r^1W z06)T;9#Ug$Y%X){)ylmq)kb-9_ycHx)X{3AafWPR!X4GdM1~eleXiPAp8;>H74%da zpJd2$iSgC3B@RUKtkrTVxM%vUYmCpk$lK#9%dS^b|18ZDsXdVWV#O5hpOs}L)kb`#jPF}nR_v2V zFPVa#n#g7=%MSVY^^nt3ZsvT)#}8+Dv!_;;ZLKyIX3E}RaXwSl zqDs+OU%=1YEV&6kiP`9`e;7u#JT7k-Q@Y7bEr!&-Jnj2wYqG#e#VDI9N{83Fg<3A5 zCzR&YzA{au-%9Ombm=ae$}`4{?lM6hF`n)&4+c)H3E7Y3AjEeWLvv&g|1~wDbcyjw zj%*%1zlKLW486euYpUb-?5VjbN~ah<=EyG5ooZ|)u$EC7Or*-w@l zOMA$tWw8<0Q>G7mquNii%C$F4ywW!j^*de)qW+=3u;}pD1ED1x_g(%wIbc` zI99OL!kt|rn)@BsUKgeJSIIUcFG}yZDN0vV8>PKuvRq>9>nU5vk;X4Q(FqzGclDB; za%-!CO0sjl&m)62ufbO;m6_kGM5zsCM)=GKn7Pwu=13)(`5RK7REW|m#&5l3N_t6^ z+)O^a3neMI>8LGx6t^F);*@-mj+vSPO}wNyAjp5 zjU&Bfl9p0s{MuVimXXHbTsa5B?~zqf2yRmtI>>~dv`f&i< zGWy?%d!RYPjF<0}OJtPMe2{D|UpB@LlJ&LimBzwBu+`f5Y>?cki7I2>V7WzR8V!fY z+_(jm6Y~9ghfZ0NGof4fxHQD7Uu|uf6Srvnjh#bff^BZCWk<;V)yB>t@`PMuJTX+( zw?)+0P#o|`K&w##r-sV0a<$QVm~4c>VJT+f*xbspCo9A-NJFn9_1KXhuOsnw9I2|l<;dqZ|LsV@?x%Jn=6*ZXVmvTh_VQ#_ z&QDn@{htfSwLT|OZ7cmZ>piQ=rrmU>_&;ZT-nLQ)Cqq<~jlUVN1B)(<^+F_tV07tU zuzSl6(LkiSw|C5S<%<-VJTR+~s4086Hhr#0*NSC&ZgJ^VOS72M^-J6s5`V6lDej3m zA+#+kQJ1c~;dy!am7cPan)_mIc$us7zRlBH$=1K@g4gvM_OUd*^ld{{J~3I_TtnkQ zgHNxDX5zTJPgU9OisUsZYsCurT!@H41q`mxM3T_lRb^)?>L;YGu8)ey1+NkFiYxS1 zRb_8h$lL$kwdtxm#l7XkD4E{x#p6~CI#p%cD=a?4_CEHee|}q4_E5RKcWAx^3&-$0 znIzoRWm8_QBQ${2wiTIv1We08=O-9M~p7GVK zP!uZfYK#zV@tc9CMcY6h!c~l`1lKiOf8r{~H4!otr-I!p5Sx1|LzjtUS8i;93oGGi z)z)nyC8eOY>~Qsqc^C6)%kHaoj~h2GtS=tQpv6^}^{JKHMRFtbuIjSb+Vr+_Q|_NO zcf$Q!=e~0P&vU=O-|lS}NoaDB)fDeg#JiyK1f0xAhr5g`lN>M-M$3kiXoQu;wPion ziloS%)nylIqp$$NYJRgw2`tDhc)H+7Uf?*H>_FO4uk49hnLI5gwqQiTngWqBCFe+i z4XNE~l%_+q{=G$#2F_cxG~67>$uu^Pmd%5oyQu^=;5K5S@xy4D9$ewo_&8XFM#31` zsJYuKl@Eug%k{(*Mh@lyTY#r~@i4v_xopfCBU{VP#?~&Y)XyAU0L>64em9PB<{m2%bL|Bz(Z=MwO4Cv3wE#EQCaqPbuE@tSkP1% z8DphOwlR8*l?`Q_F>9=hkq+Z&{7jKIqjFt&`8iW_Qbfm=w;j3d!>}V^ABv=!vOgy6*?WLNpH(PEqoZ&X%QgS#4f z&f|~Tc)vOz#h&cf%YwGspqv&jO^D4IJq{I9&!pH-1x&+i4ikiW;-U5g!jsy zW=tI~w}fr3vTPkW%5P1E2rp3|*TnoB^k8206i0(qa?ENL0t}5X6_#KFADy|Y-FMEGM=Q876Fyi4z zuRJafiX<=&2@wR|r17_SdEn{bbs8&l37Y=p;i^IxeK^mEoru-)yda_X4itKS{APN8 zM}RglrO`z^O256%wap>)*TYcgP<2hl?|fjo?!jeZqKQX%5q^DFgfNawlt;B;M$wu{ z^5vB)wS8K~pU>~tinX*hMN6gD$4}egHt;kxA@Gn}=ovO4T*Yp~-(O43Jq?B%rICfH zSaZhy1h@ff)mVTS*g@Hx>nI&ujU1qh64y29)^1NKiVD^=sjW^jVjY@0b~Ow)Cbv$+ z{{?rKX_#rB0Br*um#}wgCwH|{A+nrG6X4<6>dK?K! zGK*Bl>&H-amSj$H3;WHxfl}lKBn8Mm`0M{x7Q6{;{S=;o2i@6ykdWR4Yx}#T@yN4U zvWEneu(kWsB>c&1&>7h7bsK~&O98As@A1jlhV3Sq4J>n#WCBlsMk(IJk8RW{qz1ce z<3bT^$ID2!O(0S@ZW29-oVGYdZw7rA(YnJkoD!xG2y%oIJ&n8wam13o8N`ne{$$jW zN}Rh7fOLj}ly7RKsKB=&Aq#uLNJ#oe;O^9@CVHUuL})kY!vo&CkcIwb;*y1h5Dl}# z1*9y+LtZf-vf<Ihx&2_5qZT|piXR_e$jLhx4>4o5wORFbN0EOi2|MNx7RvPTm^#u`D&h4ufv z-b5-9OMMM-mLg6+uav!3B@$1>{78@0Gu!t^$iwY~t^IIh_r#Br@M+(D45mEj+N@l>xKSxIVI zS-p|_6j6H;nh;;V06a-dfGR;ulOaOek?~Al`P~qZg&!l&|CCL9fXaU?3Qqg`(Zk7l z0D^`%+6{|Wj(4QFS4 zGPYrfsG9%va8?UR8qOYsly^8I(j3mnVRJYm+BcjLFo!ep!W_Er)m<8;Y9Bs+Tzd<68$ZrbzzA?Nc25VQN9p;Up+KUhd-)Y-%sft;n+qQ z52%d&i2jH(ItG%GBby);t+ zPdK_#zVDTtJkoasw1+%wLg+?gWNrU(JYYvyiV<@9Hw>379EYwMIte}@g)&UF0=sVEH-W== zjF0A=X9;JJSr^OuV?GR9O9o>YcK{A2^?lK2`$2hxcdUq{@-x@uh>%sJC)3aLC==Oa z;UDBtHfhY{g3Tuj>_HYwzC`#%@-Ul=c!Y2q1x?{{!kccTCu8}dJo3P$l7G7NZ;$Ge z-Ftj7>c$>D=MRrUNaH;gs;q&~7}}0}S9mtzw{PKvk3W1Lf=O^QbL*RPOVr52t)V7P#Tw!501|%pUb+ zk5cfgUwPDzJ<1}?9`)BeTm&$DE?xPr9>pg%z%AJlwws3KRT_H~Uxu_Ru{dNxh2P;>W89*M=ge^Vic=Wpliz0CWwd(z5 z^P9(_7a>}2I(6p#MB1HzTNqvi%ms9F>^`7u&kzinqGJlBa(x8otJi%HHv`Aa#$X)t zC@$R^{Lg_k#zLzMHHjs@M#ZW&ol}v{Mhz+Fs>!)uecsfPTn=VrpZRtWHO=!lK;}hK zXI}8$>4BYOTKm&wyITspmnAIXakNG6@>aZ|mbddEN&k+a<<-B9mba~JNr;D*KFP=o z^>Z0xJX(AhuW!|&b_9g6s5L$e(YnTWffkEXQlr-cc5ep=VGtDX*&9Z^P|ekOGBLyD z$0X6j(ptWaf&_GCzO#~;otWtg*!hOBIaEv6 zCcIJfb*N_7JXxQih`BU0SVC7o($<$~J+vK+*ai?C6gr#ugNP0hmSdDKWCvPQ5Z|QR z#>b#71rGvS1V0Q(+;<kV4q(BaE!B&Qlw@ZRwgkt<>Yi$_+3>?F=VOz$LVGxRadz%p)skuC?^$FJ68wpD9 z6Z{}U4v6oKSjZ=_-XfbK>PPAzo8^M~LdRGL$L9K*j&1&jW1GDSqK}fBo0WorB5Dum zJ1Cby0h%Bbc((gA9Q104Kpt@_8c4AU*!v(CLpXjI~ZOi|nt_BMuZYG5t+Q{ms!=bDDDKZ`OJNR_Z}eka@J= z7Sx^kqRV-^Q}o-aJ013Rr(w6DOSS%=cZ(eo{_Cxxkrb^ZH$3wJ+I!hy*s<8x;Wph; zPPA_SYd7c$qJxCxk0N7gwAQ52Q$=7-kt`9kl)zL5K|#%T0!(8N5;Ss$@jB12s?M+5k$M}591!% zHkRmkJZ7ujw<<=9^h`y~2UuT}bgKQ-5%8DIgiL+=q<28CSP$_u`xpB_ zuUwFhgeLZ;s1)0(1)wwRBT4CMqFdQ}Q3=-&-PRuan(;x5*3{D-4%pUz59Kzuo>hZ1 zy9Ivh-Kb!~eh4=7oox?Aeo^=yX@1@ zHgpbLys%uRgwfB#mczsM=DKGXy07yb6bWbPUYl?`>%rGl=V3H~BNIB- z6g6`0M+qA{x5M{5=Te0HMdv2`EfJP1QvIwQ+8j#rYl}$pG}NJRZiVI$=Y7!ZcK!-Z zrm%R1LWjP60)#>zLLK$dKOKZ_!*!v5Mx?3>{RoA|V*dcH=toC@pKAZ|An0SeAd+U^ z_A%(=d(b5t+XLa8eu7$g6Z;H=U;mou4EqL(&1nzvwz8K}%+5UFpG9@CpTM~%kkFAU zTR%^goynE0mpl!AS8jRwrDdSAPWRg^{&0z%dh1 z>2fw_kDw)6>OEGqgjMy~Lw6LR ztm_LyUl=HSC{1z2L;XL5DDrEmL1LI1w210)kp-WIta7Ao9 z6<}2;`8x<{gV;ueX~Tmgiu4knkyW7-$#;B46uu0cn2-Ea(%*0?{Rwh_HV5=T?LIg$ z7wP1Lh>b$Omk+Sf*TL+~MyKm$kRD*0A$Y3nalLqsMagJKFkDWR^(6X5K4C8T1MJjd z;Ak$n!l>T313sHhjGD5Yg9`d5m9GkdiOXONJ<=HC){?X}4UI?Lnmgc-*Zpw;Mqxe8WxWPmVKbWU&|Je&2JKCax%%QVXCeO$RG$SaQ9KCZi3!d!O>r(+e87?NhRPtpF1j&(z=P6$vMk&|7TA?lk_6|#LOfo?r9E9= zXRbGqRtdaG;njc2r#}h$aeqt()>HHSg$+;;Z({=?xQ|r^eqjSeWPp;%vN>9~8&D^j zqnV@Id|s%Z$Ni?tI)@8Ufvl=U&e5n74TuF!Ma?B5D@}Ay6NATTC2$lNoyhnyMRRGt z#u_`@Xc0wKDOxuMRq?wGDC$IryaYOCryOv<~mgRnC0GDt8`_Rn77R%XU329{i%h}>YOuEWqIa_>{ zFk38V3njqH;!Vau^_0cm(zFk>r~}51MrMiTS*S!Kv6%M`85SzRlZ4scJPXH*Fqd#1 zr`z1nuVD=$AF)sg?{FKDjkVTVzqgG(jZM`DS@nw$RjLni)-MRN>VvG>nq;b0>3x8e z>W^6UiX>wvRQH%n4b9?j#%Us~%EBLL+T=J{{HYv2kTO3S0k6VGd1WtgtmJ#IB!LVQW@c>r>d86}C%Zh0|__!co*s^L+}{J!?Cf zE?8kcE1aDI%!6}2E4WCQJ1<8yH$ssQ&gnV_8$p)s(&NWTm*yZ(yqG zWTm)T8k(v)St+ia8ycsYYR!7gr4V?mW+m<5N{XVQot>Z5hd=tpEB+U9M>QI(848gd?O>FIUc{PXk_$muC=v) zi3D1@-eEM)&{DN)jf|bmwffp0jf~UHF^{)xY}{iHqtVX?cT=5;0&ZMY;4TS z&=Ne~;TB7dwo&}fHO5axUxyTAXPMC{4 z+D4VPkuVoorJp0LiagpzMUH4<7I`e=KEQGD>E0qYOE)^V&>CxF(v7Jtv^D{SNT4Fm zj59Jaw0a?a0U}i-zT@Q@amMHjEk;+|!|6sP<+U_18s4U*2Q+A+@+QPn-V`mfiSg)d zh{wPt#_PA?t(MEwp00B|;Fl=JB@6FKfWI7%>l}|~;GT-db&kg|!W<8U?M;C>9tvj@ z=6GD^cuXYB@lff7z^cYwzjFCc5`#y(-xvorGe)-59`O81(`G;2Z0%L--QzSAvv>V; zs;x22fVqM8)2X&zB+T9^e18=zBdZ6XGHH<0nU z=Ek&E+Jhd0+R{#+cWt>XZKi>oz1zv&HAf>>-tA=XW)WuZ6y8dhy;JxH!tC8n_RfkY zKgv6m-Wk~I-COLml1qB9=x$H_3acXT6ZX4>f0$&S%lda zh364wUliU$n0={lr$~K6m?Ndqoh?mY8rmsPJqWWaX^bBMHa6a_Jv;qbxK-7>-ALhmz$z3kaQao?q<$Y5>)U8AYGv;j znQhJDI|8WqX_%Chen-GAxI2h27tawu#e0@87f+?11dgWX0MZda#iM&yE?o%2SWHPV zFVm7Il<`<#G)+8RMPGdY(-#NW3!%>f7jNiY^UW8T}pSs*Z!q^A{9t<{51F+O_8Rj#Xs!fy`Ysk-2~kx&cLh@G zx!&H`*+F|?NHjH&7XrZ%VYp;rJWb`C@deJSa-5;fL_v+nc67Aw7t+!LO*V-!ztY z(jtP{-F9r`%?`${PTC01268zzh`doQ|Ln^j>&+i+A&+B&UL$V@L?2f+NWk-Z}3f;!u;g6Dt=LpC-PdKSaK#hmd;{*}c1IdBg6d z^9^kOPNsY5IO>P{=T64PE_h`71{v&FM?0;Pl=hCM_IeLf8}3s_Xs=JGk5A|V1#DCu zq4PeWQ9hy9sJzo}3H2=W!y-r7n{G;_ZlbUa<{i{;~?EHw+%M?a3;?LxlK$nZG#^` zqZ;PR+%}jp|3UZxikQMLcQKq<+IsEa`^KAD<{+;*DC^}e5as5eadT*pX=YV84>%qw z1r^P_$&R{{0zHX4%}J!m!l|@m;et=%;{1SYO6?>rPH0!}U{6o>jGSz3p*C;7@nyE= z>cqJ|2qI^0gOtkkK@gRroG_O|;rFwsDN++U7(@+TWE&~nwCmdM9~hzC&3li{9FjY- zO;wvYBufdiDupY7m8z}5r0TA2z&u-RWBK*njQhH4b36s~1g0B5NO3_-79PXuMmJa&v>E%j*G!nwBb*wF&H)S&kU4{`$u zW6&Fq*LayR35+;o6{J=~Wzi@)nBBrG4!812AwS<4%x=vk1#Dm_yY+&ZpISRBqP`*A zi93xia?B>Nlv{QYM1}i98c5a#(M|&W({ahd_kC`!Wzo|tT0+je$~8u!ltUKM-H0mT zt1MbUqV@Tm&b|J^zEIY0fkB8a+ml-TmXBa7gD%@*O|*wGix`LA=iR+a!=?kh>*?|* z{dhW?i~Xwh|Ce{~=JwQH|HtlKVBOujz`DD4f!Mw4)$3oocY*)dy>pCxt7vsEZI+zM z+jgOKw(b0TKI2C_QP!@p2pwF&bm@VO{zUR>nftv zo}G0y(Q41mx`t@pv&-${-Ltc<9|uF&;LMtbG~Tnb)!DPN^`t1MJv&>jiWKeHnH!w6 zXJ;FrB1L<4wmN%uwmN%uwz_+Ew$b6R6{7a+Y@V+HLV3?Fl=tjHdCxAC_v}J>&n}er z>_U0ZE|mA|LV3?Fl=tjH>+IRto_&&3bG6uBvtk(>%6oR9yk{56dv>99_v~!jFCs%2 z@7dWt{R$b>{^@5#diPI{P-xVio$csp@YSB3t4%p)dPQ`Ctz@q#iWP+^~EI%zwqfPCOxZJ z@WF#d=YCqWxVq(PE%>hj!^>WBx$(0>YMo|M>-k)(9iLfbb!H|8Kv5;Gq`~(2K{>sSvgEZJR|q z*3SQf7ZQ#_-h3h9S#xl+Jw>GXLIRb=d?BGPX!C`HZYv@5pWaB=0>1e|0@3CR2}GMO zBoNJmTZ=(>#@YRSBX5wF;@Nk|CUo!EzX4UC_n`J;v48mqXz$ohyT$6wgCP5gPeBiQ zjcUn0fbtHbwM>|>d_f5#j>3rdm4F44(TJQcL62}ck?3{?Kt9!34o;Hu6#gbVmw3QR zaV8w5cMH0GXcHyEvH(B&sz%6czFY7zDH;y8aCU)<()lWKY0f|K*W%14r=2sP0WWf8 z<41o3XW)dbqy84XR<2$#*!?N|^1fnFl!#=DJ(~)+*Ru}^F8iZUrSGGX#M`e^!v1p_ zmXG#0^auR|l5yL=K&R6Wl1!?73mN^0WE$8Hp91|c@zd1%2A>{;d=vG$!DmEgsMigS zP*t|F?m4(4?B`%jok;`k|fCsw%xIDWEMN5TRSkHX7I$d$cG*qyk_8XKTtW$w$*&teD}#(1C# zUv8-vNkgc$o@9?H?F=qiI55EU_#|iTj;!kO*-1%V>;hqa$aGRt3rp_<%yn{-XRJxU z+!$l<3Lv${?#BA85w%d4#$8_2!)6k-o;0BedH!>qo{1 zBg~*JVA}^Ft86b|+hhBgwimFjO~4{)2UYuiUoj4VCkr?Eim{(n{Y+W882ee(Vod8Q zi2GU9F<_B2?GU{+Q|;5Wk#$x0bXBvi$N{FVYSz`2Fjq)5>v|HH@64}KuSjY^LrAWl z8Rl)Q^Nt|o;r5a1M`1o_>P&+u#rYSX(p=uRZ8`8CN=F_xsz++B39MoztC#@^kraes zS?=*!8^zXM@mbr$qOY;&8X6+L^@*xwo&~EM<=D3@dU2pJca+w?O94eW#A23WF6-^; z6ArOZDT43xI(dTzBZvqhL{j1*sv8?n}t4zSx;ZRgCqK$0+)ERD*xb@EjUi9S)R`Z^(DpXxdp0t#KU3T|7V? zF|Ck!5&h67#`~j9-!JoU|05*0Gm`|y2KBJhT}r*VZykT`h9%`sU!Om((VFy2_6PkO z?!4)9=Sy}cV36rfF}srvj8J-n=nYBXK0viLrj8YSLBVTfjL%8|37ustnQSG(X%_k{ zTj}hx@*P_ltE>n??uh8ODYO;3S=;mR%~-fPpOkQ3>934eo&_>u9C}80L+b! z{1ooRWcZOffeHvQ1NDf{NIhzIR!jp}mh{9QS@-~?RP(Uv)I1*dS<$)B8wVRdkJUO( zNTm?%z}yT|JaRq}YDQ;=KXry8%J>~g?cz=I?+ITfr`}>5Jp}k0Y7TERZcMlVrSE3k zX^8Pup0?TZBC%50MYskJKPE%mfK%DSMU;`Nr2%`m8JOch0Tb?2YL?H|iNjCGubSnv zW*m~1QXF>p`rm0b)FTXr5?J#N?tt%+B@g+ti{H4Y8Dbn8r#0}@P$|c)~4la!NP z9Lp|_9BR5aj$NDw%q~({MC2Z_-nvfyPks4YbN;2i{B1b@j(_A&bK9w{tglnX>rkM| zxZW&d%K3vv;dspz%mr%3b@b6tTwiy3Y`=(TZKfp(%TBrUO4$H`AwsIeu7yO%kFy(|0%RZ}gA%i!i@o5oENOq$R3z zHFR#=qRx%uT+O&i+Sj+!xf-kYT#b#+)mXjfYHXiTN+_Rg2+{iw6xJ}NBSg^T?Z%AB zxYv8~NKxTrZGfEE12=NEtWAi32<3O|yAzGq>gUq??mg(W_OOGH(LB;GEF11?Pl32d zoR!iq{6}zP9_4o9l7$iR$R>yIs!_GBh{r!S2IQmTgi^{q@(XChWEE}c10rG+4V0BF<}dIFXxSOwtS9xWQy2^l1XuI+EMNhgL>X1xEHKu}|xWWkD>8#Xf}?CKZ|^ zGf3*ZY=zZs1}mf6K-Y8R+j&+t56YtElJfK3qax~IO$n#2LuxFYZtM>Q$Vn#|W2XQQ z0>)hghJP8G2Ry{YH3|>wXEJbHJ#rn{iz9jOfk!+Z@_G@cQ3ZSrJFc1JMI4_!DFar1 zByhTGgmGw!)=hi;b0c7?R)5r|RII72&>P1o#JRsNCy$ISsLLrQ1Iz1jT9eFn=FlHm z7}pD5IGn1vleS{?^0wk$M^!7H&l46FbTfrm*v;37Z+-Q^{lEL_fiYp4wzHA!cSk`J~sZ>3q`5SU+9cObxr&46T=>11c+LYF#~Di_wlt z_d!^MOgjep2GN#~ay(wM{Y|tU@&O8Ds~{R@W-KIB*$|bhw?!~4sF{E#Nr@&|OF%8< z^k-lRuwi{;(;4Ui<0)$(gP?#Lq}0)gQAogM$`r~VBA^&iwnZ{<1)Qc#F%04Z`Vxp| z;0`!()L4GE7UP*gc~j*yaw)>rNRA|z<`XlWB}Kp|WUCniOTdSuy#)h3pgZ~3ia}7o zV9L{mL5K*vKuPUn2(&pP^qg(@4edW=CQhAjIYamvPc9!9wS>^2IlZq67af|@2XMGT z=+K-#h-mMjIeo}oP!!e-1(6&4aX?2*M9W_U0a-`~y2B^J38YY#0V6O3+;{hEAzxy= zA2{+XHNlq|2aJSJl;B2g!5M?=m3}N3hC`5$>Mcbdk4g z6?HU;$tE$=BwjR$*G=M#NnA1s?RKx8052gDE!4-NE>eqWfZ8+PSN|Aml<*gi*>Z_Z z&E-o(J-j#7g2FcmM^Uva+yL8}(V>LXEYzB{<)dOq9W7giLK&Kj@!LIGoQB_^+1gmo zQzVt>L^Hiyz}7axzm>>|rxbXO5y{PMA*T$4oydjgJyPL$gfEgVh4&MVqDH51 z4dJJ#cnS|43yjD6xc`2V6)pusxVBP`c7D`=+qS_slhEL0;U(A(|ATC`^CS9Wh=v=a zs~vy7U~C?Aaf9x__-Wv{1IW&m{-sI$Y7&mN-lVj)!lQ&1f%Of-Q}1OE)O=LaLA}sG zll(Lp|D6524guU=!z~vrmE~N|#`L4c`Z-#n*0R`mpMD=IHqOt{8gvXndFX0DXLjk*8%Xgf%5M?BU?uCF z<0cs_R(R;!t+vh~b?bcpUI`BOwk=y{~)G|?{o0_D9xbi7`l=u1Sqh2>t#{KI?~gHkPO`ekhmjsQn>2+o2ogarP{E?)XlMw#0Xg~L9QfQ84e2^} zl!pH37}0p}E*~VaJP!_VznDk9q>dwh;EjBk;DdmX|3E4mPFBAeFZ6u@BFd*W( z6XO|Xq;|kzH7v7aAw5Zn|C`hy1@n!FACGk=`@57y4^9FOpkgcRHyOCiE!>?j+gir* z_uU2DmC{!*em5WZb~2#w--LOHQuwwhD02IbLVs1qN;#@Os9h9=0ub*LvC!naZgM^` zIoC~2Kqqf57YNEF63$TX-b+hK^GgjM66a&)&`l+FAnQ}5onQ_x$vuS$BdDhSVix_u zcyoq)zg#EV9)v84^ezA)5;RKJP>nuAtH@Ar9ggb=#e){-Sgzy317Ng(n8A7YbVHsW z(WtMguWWY;Io^*dY&3#`x~4vn@FIEi6z5e7Y}XvJxRN`wwtW3^dp+@a;U{8 z9{$Rh`7mxe`PuPq*1ZV2V~a^e5#zTBb9;S<@sCs?P%F3%nuJJ5BtLpVsreuf#u`~e|&==z-;=35zWBc6kbi*-<)1h7!}RA7D; zGKleQg!xs-V8)ZD8h1USb(;JTDav^sx$BXNB=cq&A5KfEb3@HjtoMdGsm@Kepr^4G z@ogmjs-5S~->4yY2el;p>-GdTJB$`UBq79i#8XC2I7o zT%vVzhQf;F8}Gex)Hg=oXEc{H`)e@IFf(57{k1V;zE*$q8jOCH^UQ3bcP5Do3^Mcq z1WFjR(i@P%iwxT8ClN=>B?cY!qXfQZkg2~+VwV|o(|{(d`*pHMiCw2XhQ175*^`~Me?5U1YE-MA*Dsgdy^qwW4&ct z^dK3v*q)*LJ4aV4-BM+=3pubt8SO(_!5=1gmq_8@4->pcwPI1<;C%l$YRc_6b;Nk-aV^U8HpvRF$nE-cmpdW9?`!)efA`gqW1IL+VdW5{fT zMAlI8y>IFUVX#+5YsjcrH_iBLftKd+P>I|6n;!N-23a`8C)}1bel`u6c?@prPY(VC ztQ_pXIB7ao1!U_tEOLE>2|xP8J}d9Am2$Fj#kBIP zX(eVJDceQy2c6W6I?;^_Q#UjQ* z5vVnzTguvMeA;TMCLV$^ReZ@Sj@M=w&o9*adfuaYKIu>G{T-;KIZYO}!;l`HN7J!N zIZl~(Q)Pe6rTPt6ge8#Gwfs1$7+KZP!4s5~3$d2lrvne4!W&Taua%TGnQ#iJT1$R- z#Oq*0@ZH-wcB~ROQgjhI6(CYKi7+n_)fWU6{zE7;1M(tx)SAqII4#uS!$wh%`)U-I zbC9^sWuvcWDF^#%8l5HXbT=4N$iu!GB|cA>J?yJdGdu$v5l3O_&$wv;{0htTIv8sb zsa_D0Q`Jam~3J`3JI9i#y+Z1E{0Z;|F2&GEVccZ9eb+QV;7xEE_S&l(ENRzI`J9Kr~L zcS&$_sY0{Wk9_HLkLk-+Kl0^y!tBddUIg6$R&8oK-JOtk_jR z*2BJ%By&`AA*xzovPP|NI$X;FgLdS+}JAE5f2rAKO3$OU8=Qxz&Hmu za=hutR4>s5YE4J(`L`om$&n9z)4?Hjghn~#$cH>KPl8_6&OWqs?2gLaKn$K9KIG}( z2w@J9!u}|2>4`0POF&m0G(fF&@jN|Yb40>B} z82SeNi&>6g&N%qCmTnyAq4{=J{@=n;{J(|c|4$1?tnKJYzISa$>5XZd@K=aZ*!ck2!ytH>Y3NZug!_^ZBhm{g|ZSQvcKnc9I$HMgk(lqW- zI2p3xI}8n5%~5|449UU?{^sIyE0J5!uS4UYOKv4cE)#sm2NUndNXOI7c1j%vD4b&~ z_mT2Vup=*-$}zA(`3FAbmq_`WkXOntQT87RvT}wgcub>|U#8U2^wcK2?{~%<%gyyz zgd{DmBSAgzjp8N4B^LYwcLg%jyE`Vt0c6IPQ85um@bsF=SsOn9yn%|7DJg9T;VvrY zPTpcrBZpIzx;a%Ajz?14h9Lt%32(3e2zg6Yc3rVVM0dKQt_6 zlpnL%57&dh;pE3`NofOtRgvbfnI*tzQPgt67g41J@x%hAP>*5n^eGI|C?-XwLJveq zdArOtA_6kWV^D@dBeTbHOIdmiCy=!?3 z*<2jk96xe_9;h@sKMhiY>qucL@JbE#NzJ7AO{^nS?Gu{l6Pio*ex@5Fu@aXo9EFKn z#qei#^Ye#{;FVg(9)h$z<6Fy&V&T0$;b&Om-&7{Pxp;=xCdu;iV#{C`?$&_Fh&u9odz-y_|iuPu)JohkWXyDdHFYrHD_aVekI%scUbcniz)c5nGfbRp1)JgQ;BYdG0>v zQ{Rzs(j%!ieA%;w&r_l;6*>p&5^uhMr?ZZxUuh3jYqQ zqWnCk-;VWm)DEb-=>YMLNmQ8xjskI#MT8GNZ{)4Qaba#?f3da4kXvahV{L~#>^6j3 ze`jomu)1k$JA}Q z%vLNEHy)l3J6C8QT@eRsS%$fe3fFP z@NJKq$`U#K-p5H|e9`m%1|tceRq^!Pbr=?i9ydyf-_At4TFA`Hu3Un|)|CHTds6L+`J8HMJr-1&vG zuKABy=g<)BwwWdA%vrnovbt>({LvoIu|JQVH8R#{uC`ppOr)THJ%J3-v=*1MFut0@ z_HrmtJzy4#p$CMAo;T(rcT>*&D6{(`w`#YK+9>?CbiQTvOtDt-Cs*`Ogol=KA4KE*}D>K%#@x*FT379b(^bnHIoAN7$dd z2s)2wm;D%;mp*~$c;T^(y$Up$9;w;V^l4v_(I-jy3=$Cbm%ax*i)f4eIw`!DXx*Ml z+3qJg$i9&jK16hg{W|u*^+$+~ux}>$M~QaXb4kwvqT}rcu7G}$Xm^PH;SzwS31Den zSYnjCh$sJzAR(MHq1Wwv8d_4Ff1vLtIX}SPWaqO;O>tHsckteO ztyYLKU^IV3v!dZ#G(rM>> zEkRqHZZhK>56krW5XJNg*|8PqKi`EM>ZsN)M0$^E{YJHDv3DcU-zm7M>e$we;|O>k zb!zLc{Sfc3PHmO_foXZ5M;+U$AfZ9(*j6P84O7Rqs!3>sI<{3y{82&tnOG^mL592_ z{!FYNgNZ@(QDEJlSC{!gd~(YsXTZTJL5Ds?N+5%&LHwy$honwET}%zLT!9H|EXo$# zmufUbt_B@>oFZ9>)fJj6E?M{rG(}xO9Kj_TgJ+oK9uScQSHaxMqHY$&I}BdYt)^&n z))nL2%a}D-!+Qaw;gcuu7=$P8_XF%Y=!ImA-)W9*1Xm>ek8aGdyA=eK`9#fYKK2zd z+_a9+aGy|9Qz&i#Dg^IBW};K$pU3-JBmEypTa2={UB$4Hvb z#N5ZZ-HXiJ_i^sKfbnV;+M#^g=g8~e$wK;Hl&CVi&8k{2HdVdNs>Ts!N8V;tYk?Dy z6JO)S3?$-CUNV+!)Lb1o48lTXIptF!EL0Zxl&L~+y>tL(6-q<%t40YlOkfQ?Si>Ah zh`41`Gx-)XaHGJJg=v`Nl)w2b`X-A;Q_-ICiK<1*VxQh=td(W8fA$-6m zjC%*@{lq7HfQ2KU_Bxq?VzReHh`2PesByE} z{oHR(m}<$Mh~9S5ce5uu{WuhA$6<_hXQ3K#AoF}61vP* zy0MiPd{!>Al^mayD{SR1Wd%JEf+D&z^_!Xiv(grjeLSzn%2ZWA4aea@WKu(k2&AFp zC@JMbFp|Fy@(W=;1fwy|c*gARFmfwym1L}5of0*M9aW-wz7l!1(c)B6%)Eh{O5X4h z0U1E`*caMWJ^HbCcLQ@fB)3KEE($ztpP99@6l`Usna@fH<|-M?M*2Wd7S=$Bjl_UW zRvv>^WyQ%>UU|m&@^zevS%sNPj^NgpDJf?n7Ue2fBe?bLp^SVcW|Z|XbYCKT`6J{S z%{b{a>NDV<%6U>C=bA&x^jdw7~Ms&2v_RseGx zC}1M?Gm1l}I&pX$`BfY`nQ@2L;^5>Sop*V)`?g{rQYCvZ8$U=OT(U6Fm%k(DulD8d%=r_S z)y;oL?6(vUdcnr5*e9Ss6{wF{pyU){o#7(3SZ2JlRcmoq8Wm|7 zyA;JPC4`zqTE;Fdh6}1lE7+wirc2~Ini{o*k##)ELVo4ZNS{ZeE*br|;YbeKkK-n? zf0;378|;5g&TeA+G|b4tGd}y9*nT9oF_it+*#7On98z*r#6C`~_)WHtj)wfTU@QA? zn)c)7e{TeD*IZNB{$6JHf*KLmm1dFSHnZ=yXAOg~98sY<&Z3XA=s2poAAO=3EIQvO z`Xh_(XVE#AjAvm^O~NtyEAXxi32r{26UU!xcC7&B6FLgF0TyxjG?b;W0H8n@M1lVH z*+^qmLr66F0M%P3ojkvcrw{Zi3s2xBPUU$gh+-JMpUm(hWY((`!b>2fw6pkw}f4%X@Y+1o^7 z5dMG0V?8uECWD$rL?MX#iMVERI(LTpUc`Vs$6&U=D_<45f%yS6y>Gyf|5M+IcFn{}7rGE&l z4!tVxXtV=wfaFpI zUSpr&j%dYWvKD3fbd7yl2Nh}=c#U0Z^MdKpHFoK7!tByDHn|^IO?W@COFsgu3GZi? zx34i>)UR`fhHH$|JGB3gvhR+Ms_5RoZFldMY&Id~h7=N#P(lqsL`9l(A|xSnM4Bi? z1qH-{i->@TN)WkiI9C6zKhE?p{>vIKa}D6q4X>)qPJ?)RM5 zT&wP3-~OD|BzhyA{R@`)4zNrVjp^x_07--Xf(`5~D5&=_ViQq(N0FL4#IAP+G`5Rh zYSI1yjm^pn9WGy1gPvH%tl?2IzhOS=b6B6vQgx3A-UAWGz3R)bKH(v|*Ltl?yZvjs zdVTCIGE$=YJ_Ocf>^4Tq6*5~MviF0v`(oy1Q*6GVpkB~)*H|&Vn?zWv1}@i@ZIYk= zcOkx!-Tx+0c5AhL)$>|e!z8}q?)Z;x=|o)F9nvjrueLvZ9#i2ClwTTWZY?QupzY*n zsW6{KO6-aiw=|p)-@m>VR_jN9g|&Y4*C78rU19JqDCAjRhQPzV!q`#AzQOI@LY{wQ z2yXQj#?D3tU-ibnOct7>DnTsu8OnJ6cUG}R6q>TP&E-}8ZCbA=%?89*vEsiS?BZN| zUF#QvYahj2yD42pZkjb(-U`rb9KwH}v7xD{crHCAl&|pL{2BlJ%kfV!9%^7J-cdIY zTuN{>CN7HcgaL5e>j1sRGb9}N1q*LiQbcZi#W}lM`k?&?<>i*Sf(PH@fdKIL3OF$(A0xpVj!P)Icu`_&h-=#>b{s(Y9l_i)srxAGa)iH#>fC<5d z4!kM}a1)hR#d(b__#f#3LsHax^$pX%I~Hl6Esr^sm~dgGqs1X zR*GLqUys!oC8=31v^;N6&T#D5U_1>2QP9I1n@UQstGbp#*G5qf!EWkG2q{T-g@JU( z1t^rtW^z5`W=k_^GzvS|Q*}&y8+8%vB?wHs5qSyrRcS-y;gfKwU_TWNPf2=&C0nUp z3vICe1Ux4=NaY=vk>#iqBREX`OGo~bPBG>(Q3t;J;0(c$xW*QI7o8^G6>2`-TMpaU z7+a%XVbFLvG95V&{tyaYg9DFXW6=h$b=ah2gOdbtiXk{zWp$WJ;zg|M>(u@&AQYL8 zgv{VH^#N)a!J5CJwub4B1|@MfiZytvI*BrWbY!Zt)FW}3+v76!u$S;#7d6$s#ip}L9XP{#-^Qrn=8QvYH`?^7*gG}X2MFIMR_N?Is*mwF{Ql6bpeaDggUWF+B8 zJX($VEmAX*$6PU13Er=!fD2ivW_>IXtzP3s(9(~B%lhRfv_^CgeQ;8DDX1Ab%1oQ^ zI?bqi63tRw#EzsT-Zsv7l?!>9SK+0vE@ESEy$rqYl|&bl?;4;=-FME}lQv_aTIefC zUrjcVdYDq*3EP9`LF}2vh;A2G&x;MSZ$%m;!9Wa_b7EkKDvVC1UZ$1oKuh51}l9Q2@#zm3I|@%S8MO z6pMQ5W~49?H0QNahl>4D}Sfr3?Pmmlk!JU4vFNCT}K0mwI7y z{-U1tQ!i^JTIav)PhZyRx1RtPQHz{PgRGN-hoQ8=PjDE-Fy%?mn2%WHHkecpTgoUr znrwG?MXP`Qg>}H$J+8yaSOz*wM@M(jQ3V|hq};npBi*vxe&7`?yWtcxVs)U9m_h-9 zT0J)|JWzy>F1J5^Me82@6^^G~9Z!k#D7E@6GGD;bxLQ0qfQ_0)DUYGpCaFFYKoj73 z)cpzzw6H}AI2WpOrJch&MMtt9I##1QKn&qh$TWTd{V(ut;8e>Sqk!#ITeS2Z8|p#9 zwzv_Fg3(l9w~-jCzM2ZesBL1DT3$qd##M!MmUBv>_k3I3s#$|X<|{Gh9>_RcCt_R~ zX!fd(n}TS6%-DnRv~-PWJsX$v2q&~RY-LY|_F}2TJdKsO4_pmSp|gN)w(Y-wH<{D} z78huIduvq_o22)#H*eL(Xt$=@x!bV($gTjl+LFD|%2+A)(!_;ZCdk&!}0!6XKMGk8F2iIXDAyyj9wKngjcMz_iWR0O4p#kNQ@ zAoG`;ZY~ow+vA2T6GOCzW7WMvQf>#l$(9p#$#!kP1yACgj2{lg%5RWDhna@{!_l}? zG){(uQ|`MQPKv*_9b?3MSX`gP#p{ar=D7GLBEIZl`-i<+cK4s?Sifp3+^jYd=1y2n zY0w`1HDUzA<&)YB<>@hW@St6J~UOpH_1HoA1eP{d)FTKyxH zJ%=F#V#quc!j9*+kvH%%DihCdtFsc`2hO~-eoY&oW#!llUem04B0pT@LyyEVK0=ow zBJ=C7A>$h`G*WMLh)CMW_{-r~@;8cj+eakh{mWBf(Q=(HZ2nz?fL;*mHVxY1RfibD zV~|#(i|7px3+F=OOIa|h^v00*8hEpDiu#D;;j)VT_8^bIwo)Dx4nc zHgqQqB%yPX&>2^;YOq($c+~!O2RhC!4eWY5HR~#2OqNkf=SLyrd&N$?o2!1dw;|Qi zBkbh|i;@v!{f^!DU`b^Gap`d!{3GC~Pb50j;9wl>+wqNI27TkN$L#z!w0=W3v5Iaq z*o67_0D@Y5H>P+EB&{1It-6oLbl)gxT@KvQee=I{-y*t~FuEe$-v5R+sNF|wf?Ev^ z9QZdDL9H&qywb_{Rv7|rX9AM%t&;EWsR38KT(L_VuQmP0-oHz;&KHBe7flII#0>gg z4C)TN1)Sg~sen8tG#O5(6n?ImcJ6L1y@?2G9-47mTv+q4ex3nNpD_e`=Lvh%ZmnUv zlPzF(x+m6ki~%D)ew2cAMOC_}`ktzmajuf?p_ep&QVPc2xmzo1cORQ|TTiTL7mJ2m ztavyY+KPt7kZ`K4tt9_}tD$_4X89sdIR!ask5;N>hV88&MkV=4B77m@o#ZD;@>784 zBN>IhT!0S){;HN^$h4M&`I(-T7zH@5%==+P-eW+!aT4$QCe5lu@~$`K}yt35;b*={oGzHwc+2G#HzF7COiG|HC9Z|Y++uqM*3xKRoD)_ z4Tq68?P4$Aw6DP^rSLt>H}N&5m}?ti%?@gj_v~6PU)Ns<>qJbq)z|-n_3t?A>%wY0 z6C3QjE?I=r6@J9w1`=MDC)mv6AbXYB27V|`^k3Y@_=$S4kC9?IaW zHj7VVM8M#)JjE$!W(+>lQ`{UwP6ppqYVn;&iNSY=S$qtgEQ9ZMt<_t2A2WDwDqe}n z3xn@Py?8Jt?hL-pdhsgEz8Ipu3-#h|d8WeP+o%=a*&I3%d;wqaZlurPd)8b030e|^ zZ=kQ({>!H@_|v_`v#_AR;6Ljro{bKV!GB6G9*$Qdga2Vqai>P6!rw)zb3 z1qSaOC9zKx6raZAp25G;)2csa+YIWx#UEk#%HaD(FHVIcFhqUl8^ygbQDN}aHHwo1 zro!NR-6&q2X(|l9KaAqKh-dKqq7~1_JD9<*d5gnnN(_F(C@#TT41+(_P##7d8%l>9 z{CC!)+IDuwnMvv*YQsHJ*mE!A&`YQ>mHeY->8_jU)E;(7Z<%6>xfKCA`;zM1fT zk`3Pvgbz?X*02nfw43rkI@AN8KYA&m)xO)&qd5bTXFv@UAS-I$=K*48+BBj7f{gJ0 zPVTFYfZL07)asAO-BE}H!5w6({>w<3atwTEwcx9VDsi++SZ%|3Sk-OF#?;XWy4NKkWDI7bnrs~IitB*-;O&!|}hxn}7Z&6l-Cuk(!i z5TMt17ytd@d)^oN!^Qx8&%23^pakf9-j_%=0`xuaX2NEGzUO`U$tZY20Xm=e6};Zz zd|rc2qtW@i+X(u__q?y#fF0F4YN_5?OZ6L~TG8lx-rfAcu3vo5`}RS~()YakPKsHq zO7H%ID$+LsbUyC^>c`UK@8%Dn$~$yQE_n>!1KlR7407I z`|dhUQLeq3gP0j@lnL;10VkjfG{+JQ8tS}CC<~QdVk#Zf`2t@GW$ImGo7dO@F8||* ztyE|6iwl80NLHOqMkR2XoOcj50ylQI_Z`CLFOx~T=L4i33H*r)RqrKS5ICQ36;-qi zG$*`>DYOeTpuYPEcML3{Z{5!yk9P_5B+nAUT?5JFS(XmCN5G)|hsj?Ws860%tn)G@ zOj39UE75BVfk~Rx3$c$1cn=jknGFU0e;{wFFAf46SkCmg)(-fc-hf|9VO|vNFcaBa z0v>H+Pk`IVp12Fepg!zlk(Z)Hpu0pveHk&4r>N**AK<9+G@3=yAhJFptS5mdSAzd5 zjL?$D0{9sKjC>W6zD86$m)tiA_e8`yx5Vooj-v#{Hh;*_M5?iJsGG%>l zyTuVKgl+~?Hd07=69A2`18ycawLnQe;6^Ie2|!JuYY=rw@qlOej_<_7B8IGe)s)($z1KMixXT;)z$257~N}Wsmtv#tTHF|#`zKFb(Y|zBS^uBD`>(qH5G!XNa(!3FLzjfFP#CP|Rd_;N~2OmXzqZ98%*R+th z^d#%#JNnP9SL!Hr6PTZMD!mXJ|d!sg!M*xsI zpLVHz=|@-}nSH5!^+)I&79c|EyBYwUp~CN0H>!5E8=1T|2CN4lF1pK2sqp@2d3Q|k}*QVLV$9z!%z6Sm3$Fa2Gf4QLD4AGM@8r-h| zXx!;AP=0QUPc8y&E|X{lKyq@S%T-j1tG&yW(#?(RUMsRyFE>_^`vcO?XQ_XTT0|d# zpjIyfb40x4WAT#Y7wkPB{)TBk{4nQ^_Q?#0?&Gv)%LeIq?%RP z&2ICF)>=FLyFKv})POYK2X*?$3@|%B@}N#1nfxN~Yw3*->O~>k(Lh{$|PqlA5 z8Z)Y;L8FFjiW$+;pb>puiY400V4^n>mqbepCi(zzNwl@WM9%9N#b8dn1ZnRvo^Sxvzc?&#uDAl4A)mFXj7h8mi*}VxCL`%jW>t*#3^O zpy&M-H1Xem+{kEMXcsp}Q}p(AVv_>^qy<_okk$YITOe7h1|gaGP#~?IW=gAT8WU;> zKpJFg01`FGjY=5-;996z;-*?1{a{yr7IWjJ9=b6v40HTssfT{@GjVBKOFeY!EX=E&wp8u;5>?xSxVZH) z58Zk!aq)xY9=dfkaB=HOMCM0ge(-{aZrybo+1r?h z9N!BOFFqyK-3|fAx>I7^Zs3kJr^TAzh>JC6#G0J#z{O4f@X$*uh>LY+#kwoD+nz79 z^K~pS*d4ym(l3;>ns_frLQRr)Am6&pWc+v-c(Q^&r-KH-npAu&wTzNh_QEeTtE9qPgytL~s2r4;m^|Z^6Ybm`%qM+1BFTiDyag8sE zpzpPq;HH>h&em>r-j{gaiT+PaW(4-i)aMhq&p<7&H+4FGXKd2rIzfYyk;;vwvl0tb zDL_!Ght`Rie^#_i0INv;C6bQ3V zM2Y2R^0K&|^Y-8NXE3>)a1EBSYVmrkzK6=dd?;|KZ(4=6iar?s<89Ht#4i3yvyu<9 z)Q0%kJmx|o^Qq4E(64Z$@M6-hl1T++ixAZ6g(=A3Z1&n$`HM7sD*zIa`lkLCb%J1|ST?%c(AnjwsbW;F*m{K>xaYur%tZD;#c@FxrZX5nA& z#((!Uej)N4#|=AnLd>JHZ1Q7knV#ACu?0-e9R&wq8H4W$v+yB!J43+(kY(^)YZf#> z%`^CxnEA0qUe8ShTs~v)&QkMZ%c%aR3*yVk(Q32c35@9(eDlqMT5FsINl?e&TWA(k z;mP3ZZWh#9`^=9m!g}W9$5viFa|?>0jlp-&EcgTlGWb@R`LWeo{~G1KJhuDXTt1w| zt7RDI&f0D$C(-@$Z}B_W>bsJQS3R-WzsA1z8+_4~zb5q>=$G-eH~e!~t_Bj!UxSlI z1(OKYTEub=<^2Sz*Eog$C~b_5o&=<5>JSvn$PWlQ=ksO}bk653Cg_~cBSSz|xqQ(V zrb0Y8o;9&451dLWncas78B)wVuBn{OppVL335O&!8xF)9UY8ipjo}4Hz12@=G?~s z2f3(b-Wh}yN|1|c=6vQHD?(gUGw-^M{1I$^g-pCm!84*9WcgXE65LP$_&(N+5xgmk znlu*^fuUFbZL8m-3vLMR0`u|7Xjeh5H1wfB3}vkos|NvTCv063-zD3{g7iqF#cDw(!AcV!hi&)<3e}Y*rgJ)Znc4{&Digo$ zZ=e4IZ!#hO1oak_RGlZN^;)$z7*ZBea=KS42wCfbpjNL%OzIj`C}Id7M0b`Z{q#-3 z+2IY~dwFc=X75(S4+oCZv9RB3yae1gkpG^?zm&1m|4TxY<;FjB+DPCZM5W${%0Lw1 zH>q$73SRv!fhB)}3cd2Jb06LrO8TZt5jQBj4@1P3qM@ZHX2Os#Vc#y1V8ZExnP&Yk z)-c_VmrdiRF|~6VR?f|8No~Ft@)fMwbJ}rG zxG|A1^yCjL0wRaJHJE+f921*qxw0^buQK`LF>SxYB?XO3k>8TwK%XjMjL zkor72bE8$6neS2Dt3M^Np)_$UQ>T;ocEcYr!0?NzZoslz!PM`O7oOg$i+PIqXkE3! zn5wiYP_m~ZuEA+U4wOiIG0jl2XM#xDgc!|IGM1Lv^MBGhM>FZ1MG5P`G6yR;maHVw4z zU0N%b=AD|NWdBxXm!HJ%QqQ`PR4^6Bq;F&?y{?<(u`kYVgjlMS-Rn|z(_x$yL3CXh zXEg`#EG*2P1fUR<)sjlNHU+m+PXVo%TnhlS1E8c&;70t7$<-iC1Rlkg?@Z{IspyT# z?7LP&e`-0cxG|Y=`+%oiN|(D?;{PJPhxjdAc~uhkAc3{e*BuFDzXpJ2U;~kb;?WD( zpIAph?gz5m6a*jtnskt7R7A%cI{ArCY`3%^dK46U)au|5M z6j)Oq)?DaEq;z9@GgyWJ zLiacAFMrW)>%Wc%S56sx4e*cS3AK6yg{99sCBj!iIBzbMofb~DENwp9>luTbPsUaM zVXz0>^``yuuUb}j?y9TpJSUH-RXcD47=u7<>A{?tJvFMP|+ z`3+yG<#xSV@gK@&$CXuxvO#fWm7;7~Tv>mSyp#CHbOQ%}960AX%6L?b08;@dxjZMJ z-UMqDWe0*<-JbWkJ7(V`DQ$*i>K%MN-6WciP_q>8Et0an7xY*#Q+iRzs(z=&$^Id%m9vM6Dx0eY|VPQY!WqA#ypd|E!mvM9V+V`B&M(EhW zw|_pRrC%((9}DmE@kEZwtLoFZ?584|`!;mR6#ST%wN(1H-Su~ET4$cZQ0x1yf~TST zLiYV(Fv>fxK$_xs2xiYjG>Q_xVsKmU9sSYIsO27g;duM+-?e(7YH-Yy0-fLAZgd(e z+#GMK5BOd|L_{>_@HB_o*JRV)3o3Gi^u{2)yd}(Zxx`?Kn!_U?>Tp4i#2J^8Q4Aa5 zGUiKuMw*V-6=ZPZZH9~CXtSd~C;bom-P2f2xs-4JJ4_brJQju&>|B$M_z-YxHnR(S z-OnmIj#Ldi@$EJY*&WuMezLwyQ4W&TH~h@V2gHMXqwf;Q?|~PtqmXok`~B<+yP(}h z>z#$t21tk})zZdLCi&tK98*? zOA7K2+I9;fzY9Z~brx#*ddaR25{+yOei}K&QnHI&+QlvnMrHQ`jYgJ7FcNVswU`+5 zYApxA*N?RZ0AEN-E>D}NQ;b(Ym@f8PSjI>_!>XBLjqbUzdMcL?``&|qI8jzluAQcJgqrVWV5s1L{Hn-#XIEn(T`Fr+c^ zZZ$vzoxy4jK;D^NNzX?Eb9s_bKMKtv-%B!SEE%gYm3tAi0~l_FBA zXAl5Z&uLg8K7^P4c+gnJ8MqhH+>VYUc9$qa1(Is#}~PgdRU0k+w@p`m}n z1BmI!m?0GWJwW!Ah{2za%_EnmmvF|9goOzBW;a%9Qn#|T=SbhT1>8G$+K-&H0Xv5z8SMc$t^ofQhbV?M zr&%tkL0Z#JtjSM_DNPO1-X2hr${r#EY}7iA1Q|#<`278L&fho{$@LAjPmopH1xY#X z&TFe36Z-_;0sJC_({AI-q%6q1y-!?v!E%xO7I^kBh_kwHgFvjynCQ~(uSHt`8e8L& zr1_nGBjbSq_U^y6Mgv!|)h`mI%-kf&+|X2*GmcfZD99PN|A3o0;LKYQaL2sGVqS0J zV&46tX~F@!`#)N-#YGr(TM!p!y52MsiZj11vlsq@u9-_Q>MjvD1dcJ1bXppc`kIxs zD>w(-^O^MJG;&vv9f5i)9P0J7PKHgP5ML=%X^o6!!ovA1ae2ighFEWJ z16Oh{#k^h3rv}XC>B=ucO=eW|lT;=Lxb`Qo3AB1IrhI<_bx#4Fb|s7P zU;<^=67S5iaPU`&Kh1gHAxY^F@On(nD#5>>V7}8i97$lSO+5^vL<3P0pwEdtCb1=l z?FOoT@s;bTF3BIOwRK=ss~2U&3{UbC?gmw<@3T~r{4DS5h%cg#CHa>jej{+lusWjY z3*tlAt2=nX`}UiveoDKuqy4I;TT$`+DPgGqjAOVKsooxz77l;P6&rqoUS}M0hs0pO zlgm{^bwzj#m}Ux7UmW#KZOsx|5#~xn-}jNQxYNU74h5@#XRiS}n|*sQ$2#+jeIV8z z7UXbkRsBqoI*zz0qJL{#|7W8AU|jzfqQBD-q$jyKE|Sjz&$b3R={*xm4{fR=Xz}FO zN9P>wYk#8aRzqnF<05<~Ba5n+MrhhHf5;Y9*sV}gzbntn^=Ti0Fh@GJ* z8;DC!yjN8J0o=*uJCbzahg6+nH}L3fwB6s>!#$|eUDThI#5(Q!A>?PVOUg=usB$y$ zR%{1ZNz)Kt|0CdOTrSBj<#>^38jE`f+%n@UrCN9Rz5o7iO&y+30IZ0_b zGVgV4n>DqPmmG!T}fnzfMi!%SJLwE z@4du?zetZcRMcNhc2ReksGCV#3VC=k3wilbyQ`@;hk@YVtZr_o)5> zCXap$y=q=LDL1;5-$KRMi1TM7FV<_MMtrpnCVhX zFPWB>+9yptHF}2bJlBmXAoD(oFHpabbaKhNgWb^GYECY#!>1~8#bxs{nesg@V@oo2 zq{H2-b{ED*WMsDUzM)?&bQy8tI5)2gHCBN!N|mJ~Jwc{Lu51@lWVQ7^SyJ`rSj5lG zJIVFQ#jYV`GmRc0sJ@U?O!ZXeczGu~<&n}D|g)fS24tZ~C z(gd9zgKw+aq!~CFd`s0LXQK#fD*mU7VjDc(IYqGz9`D?uzflnk{uhcagAok=SClo# zs-Y~*$A4!_XZdB$md-kiMELh2ocPso{Ln&4?B=QP{VTNOsC-SqIpMAwzPT5B6psvdStEyU~0?Um|zvvuw_VpW+oO zt7p&BF111lr@(6U-Q!SzLP0u-EF(1$YMkB+6xIX|@tqiiivro9fyC-l^HpVVYy_Cd znp2yq7AU#G6Jd?0=c~+9TTs!^AeqFtgbPAV0%}x0WD3eL?4pGcM5ucC}0Q4;&C1c`c_QeT$-4ZS| zF!&mn%19kmsa#%&|Bhqzy4-QBM$)6Aa#34nCvdNDvTPC7+86X1tRdfl5!jPauRQ?R zycg2yWP&G;)$V}OS1U)nZCU;hk9{=SU8UQK~@XwxX2Hpp^d1sSHQgw=|`I%3mQ zI;dI^d?ref8{}l+H7L5^a^lkkUkeS(NcNm{LeD`7TO^&vXl258!W=UBD6F3L9X49$9o8LK#kU939Pyo`$PB04mV zK1tMwqn{JaB)XhhJ)dC~{R&iUo{kKuZU4n*kxg7YB~wP z)#^F)l1bA@q@r$6gp%I?fDTf*1xo5Ti~C7$#?neV zk69auB85Zn4?{g9n0A2VE2X4ssOdipx2=et7k!Jd<99%zM=wK9n>m4r-^m4OGmFJk z_frxUuy(+afK`@XD6)WM=Fta{a1l8clG&q=AVDWbl|vXtLVXf!hcE_&?AV6-`JUH} z?AXq^=MO_E!R**jvKq#Hde2D5r>}B-x;@&%!K>q6rAbaTW?qTi&Bo)9JTCpYxhEvC zEq+mwe$jt@WO)`i_1xj$G`KCU%eFW=S$lbsUccdo+ptr98eJH^|GMmXz-I{m*GHD^ zuaoqqjpt)_Z;VrgBXlp3@q&axEuI51L6Asj=sLSyvfe6tGd7HkNkS|LJ-8LfWI-A! z370=_-<7QQ9xpfQ)&3x}r-zDK@a1|t-GirmklB05L70R?jN7r_-;J>IL1u3+!p;Yo zy?qEfA7u7c5OzMu>>WT@KFHj$j_!Pr**mfjs+}+JdMCdL`2YSvX7BU|!5_H>3SE?a_580-h0^ooDVX47mm<7veURC^cp8M8`kSFD zyh{i>A7u7EK-l>pvv(??E}fUETR4;{3*D`~AeY?{@>OEc8h8sdCEzT_|Hf6`6>yg_-B)c(|>#qc>+AbH-vDOVjO40Wpj~M zIO=@OI@-%X;e8B6O5(|veE1A&i(26;CsJ}+@K{?|`@7pfa2c7~$HiCd7vqQqxl z`-sGQ@oBx4iI3v{F~#Ui)%W~K)sE)JZ=&W2FH-Z<&>Tse2F0iOJIWiftt^NFfvG2nhJgCREety8%_wfygXy@nmi+x8~ z*&Y4w@v8V^GeGYoU%K{vJ_~SXKR;gVJ5Hrt{6D^I8)r33mq{L};4PrYt5m#DiHAa=DRj1?Xw>j!)QOzqB; zIwRrirmk!n90~Fo4h3YlacM;{TCtMd-lesV(ayukX_r0;o8O7>Eh_GXNBv68*or5%mY+9}!V zdb-44V#E%Lwb`YKvi5lIu4Hu&-VJh7DJG1g+zJ^ItB~)9**{x)v+j?v3Yz@})&gOD z1+0!^G$ZRsl&Iqv&FC1jfI5yLvCjgvB9|#vheE&;dtSptKQf1O4DHeiHRF zg4*^`ybDtl)b|C@UU9S+(Cjvs*?ThdY^~#E_6a;k^nxy$PfzIhFYl?hiis7|U&_GL zND_R32_~b3sl^1RLS^m{#L`1^M**P6C})aJ z%<-*>w0#LwWgVxnSF=%VAo>N%`5H2QOSA(G5;S}qsE_EijBNlkdlod)r%OPPnrf(I zFK}p4g+EphVqg5I=6 za1xI`4?~~&lSYAHu@*e~10dvo^0H51@a1dyGvNFTzWSOnyRZ+vg@Nh}MwS27c+47pb_6B!h8uVf}NEaYCvOk{+Tj4PQJ){PR5EtF1%KZoX0i6#ZAgw9dYBZv`- z`rZL%3TB2zQ8p+@DD*3}h6Ra)o}^HcASt1J96h88Vug-SCPR>{P#+>$g5-t{Qb9dI z3R22SOVM~#<_XSlHPscUNAP-7>ZJG@tGj9DOj4VOfD(Fx(#-`iLa#B!VnNJMSDM^f zkWi>UWzH7_zgYQ{Q5UE)pe?Py+|ENZR>A=s7=6tt!O;f+?{rGA$9}*SZ#qTz#~~o^ zN)cLq!UqUPtXvAbM>xeAK}AOhTh^x({*-W*RY>@A!nuku<&fRGfu0@hya(%1y-75z zMb7~4L)f$~K;!h66AoF|lU_-fmtZhrKqV|TWqj!$wFPjX5@aPX1DvXomK*5Q0P`?w z*?N3i^b!i9fnXdM=tkJEW@5e*=ta1ZX>G=6G$5<QimqbxfdPb5EL;MU z*wCGG1V%DJC-K1KQAj5sm%s$>gd#QY8&qh4HAq1ZJck#S5txSIm`5>oyaIjGi@~2E zbB@5gUuYx8xqWJ7u{}P zaTqh@rWWTMfhB}nT0^Py0m7}Vp3L7;!fma(kK122bmts_5an2Ex3QDm!=Lim@tYvY|5gbC;opS^) ztB15qXU-9fehwrcbB=(_IRY~02*{ixAajm@%sB!w=LpE0BOr5*fXq1pwdNebd+wuZ z@rmH$$=DtY$ebe}bB=(_IRdrk9KmOPfIx=KIfA>6LO|*wxQC!q7s0n!G={}FNAT_A zpch!2a|GYzhXfi~oO1;CV~Ip5vN-1m9%Sd$)Z&~Yc$jcYi*t_P5uPk+ZE?;K{4g<$ zdTeWP&Jp}L5fSaAvV%ui*&U^_gU3=q?*zXC&*%I#S!dK8;Nw)<#loE9U}L-@XKb+Z zim+fK7uN^m;`)GGTpy5&>jSket`GGrf|@k+JzMa!cyWEG%&Bf(Tp#M^R5vfK4~f^C z7B8+34JJKg@#6Z>Fv1aw7uSa_C!AvO;`&f@6cP90`p}pWOeiHZu9!zgcyWDb0>8z8 zNhsc4p=$}N7B8+3T}K!nYNPV0gmsG-*N3K4pJDOh`p_+eO^X-Thh`BDS-iMDbO+(s z#r2_iyP2pFx_c@U<;C@(d!0miaeZi!lPE8)58dx1%8Tnm4@jblTwEV|s2ya}3PPJ+ zq7F99&}M>;GlX7Y!8r{xw3T(0D|HpxzRiBViJl}E%!gi^NgcTfo!Ukq$J>+=+zyDh zDJ7IT8RKnA34NW6z4HcO>2pF--w9IU5sSAeB}j> z3)rxD(NV(B%y+cFx`ajfE8A(QbsLNR6x(T;^*!mQ*-k60Ow1}1{vc1KwHIwU;ZO1m zvYuk~{7s%A)^4~)!a35Ni;fahmF?8I=qN!K#JT7w!K2a>c+pW5GCuWtSm@kzgrf#T zoSTjk!ZI?Oh;?FoYfVXFxg_(VqlAc>4md3(+^G*n#o{sHS{@Vb&cZb;dP!JbS*CbN z*nKxH+68(gy*Mdil_SsLL9{zrG4}4V%bKHaco>pOAQ61IfdCi^0%t(U3%rN_^#cn) z$q!`j#tKfL%WFR6m}1PvBfMlVtVwGZetvizxAem=)RcaBBaJnrz{4-GFfA$Y@XJg* zOA0)^g@u_Dl@bqcBU7%Fc=%N^6-bGPUnf%oDe>@5(i=%H8Q#SLZz`Q+cn{&0(n*Hj zVsW>&c&}9WZQ6F8#cQR)`w6#^PBMImon%}5fRi>xL#WvB;fD!xGbwS@EclS@ASI5I zvgI#jBJxWa`OJ2beCoyEr(TleQ!l1A91_VNe2x_S@|kVFd}iA(pV4#b z+*hp+Z5e$r^)l4)n*m$VKI1WkbNgg=kLtvl?oqwErh8Pcak|Hh#EF!ie45hi&{gTU zoeo{S-Vwfk0+dd1gxR61PKU1OhH-myoCsSx&QvUQ)$A6%#Diwq2$SR=t#Ck6py=Wo@8mWulqri41dp}c9tY2ABODJVpKakZXORhD7 zN*|z07buC$@|PfsPF*qDknzE4P;wsHgY@z`$k*9nB41V%yD%cX5|ZjtJPWQ*xr7Z)UVYCF%H$LhSlGISh%-x z9mMnGB9CvSx6!IfmHKZW61}5xZ#?q5s2f|R)IaRTu8GHf??zTC^}li>_rxQAa3cpP z`Nrk=Y;!&~v=E68BjQ)`_z0tB<`!TLu%(h;7t!Mo?SZ|B_JkBuDI-VKFeO^p)QznX z1X*cth{dgG?GPJ6_SNcs*g$P4pL^Ei6SAYQl#!Rh!q+txxmML9?@1Php;ZCZtM=X6 z$Yiufqv-8mZ#-_wb&BfMSWEkWH@a*>6bwEg)cp!S%^ZN_roz;9Vk!?5BM+MYT!Gq; zIa!D3+Yr6aiDnv%H^(^fMOzVnH{$b;0C*6g*{%AkC^k3S`Uz0 zi?h550jKyzO7V?FcJrEyWBx~JbUm$VN>LfuKVvfE0sH`9y_1aIrB{JdrApxxME!v% z)>qXOQ1!qG9Tk?v6tB^4LG%f!u-CF;DPAKf&Si@G$aSq-VIA{I2C>E_xiz-?)<$yA z%47}eS;`aOcWUf9si1?DA4#{kUZZZkYWuBu1Bg%24hVjHM*agx-cx`hM)p6g^>qIe zKv|#n+BxT8&bAL|7_m>{P!cVN2KwlQs4&E2AZCZeaKqb;SMrY{ssK?(;!#Te3D8PF z;~_RM;#XS}zywvTl>8rEelDD|kXY?!gddH)K!^}nGu{#Cq2#BGbgbg}wSQZcg&0~j zIIb#gReeO!s;lEsN`6z&Xw{vuM0U7|AcL(C7p1_mS_17{ftO+e`&@yGmHbk~v8)a{ zaka{-5;3&u$GE1rRYMTPM6}GBypM4c$;o8?Sy;#1RNBDNT!B`#1g5wGeS`-76E6P+ zO8%{gqg7WqakZ?PgBV(Mdt6i8ss(N$Q9B-|+Pq?X^ zh--?cver%IuXvP_zsXI+f`1mMQRJmoDtp~jT1jMWZ#?9ta;e1p%Nsv*QyCeLQu2?x zsmyQ`dGs@GR$43hClS{U#qt>9>cbs9I(})A3!}xw(RU3&-=&$mmBOZ@(7D;=Z80ce zb8=sciO-??_&kOWR+>oStvYT=b%6uU@oi9Q<-I6O)!q=ohoOjTGfdB zz-ZV5b4$SrKS3>ZL@g;r$)NuP8}sV|xEl992Lc4!|{ zQwiWvux|ZN))`1vScicl$|MWN0(uU-QVldmk^`F__@x!bBfqgM_Nddr)>iV#&s63w z2f77PDL~@xrW8E}GPNqXA8<&tQC$}o>rb)6K=(kbH^riK(`u>sqj9-!SgfPf6Cezd zYYRj-;C&7TD6(@3iY zWKlj4QHrL!N#x%HKrh6gxWb902G@)wF`l&m5)1K$a}~@$t9a3kEZPhp6Ol!40B8sx ze=mR%0LvV9wY5@s1f&iiF?kMc$~in?t5KTY%R1c{ZLHw8U*I~4r&>L@KFsaJ;y+0c z!?qSGi{e)Y>(Qbe+raO{^r{Wf7N;5chl8$+w&Z{}e1&^x?O>xkMJdh)sR-SK(()vR zYAJ}s+8R#1_hF{*qwA2s=F@60McV(2MFpqZZ`FbI zD=Xg~9p8P-ZBg5~A}+saz_#X$MNlH*0(fgTGiU z*^JeF27d#!B=+U$q*Hnczv9P`v_UJ$Y2Z;9>eSOqEPQ*Ep-#SDQvI2sFx1J_OD=5c zRT%2j*GoDc_9zS~bJdcTd$5Mn5=*YBkEWu98X+iVz;pH)j<#6|;yzm;0T zZ@V)jf2y~R9q2vpc4UDe?dW;CQAP~uIc=sO@8c1&6hf_IAA2d`Re=l%qdn)X8i|oP zcfYN1=W$b*!J2R$H?bM4i6viQ;gccshE{SB-X;toT-9(3Ivj@3My=!vtZ_1A95qU^ zu@1@*dR;3ShIoe1POYTb$3BH2;}fHV_vSGqRCr3FQLLpfgwJUui?DLd5KPj}Yq3jH z80tq)RKvx_!NeWcZ?F=4#bfBm0H3tNHQc{ z=`G>CL=4G~sLC{Wy`i*hivP}zb6qT4aL2hNJc@ttF6H9s@g3(3ooDSnt6 z`bP=Q!MZEJ%Y$|EJL|379p?L0kiyOmGhs9A>@X9K?=bT;Z6bG=Z_+TDa(9@?p+wvr zW>FJycbG*_1Ut+*m(=VqlW0Y-!(4HRv%?&{q-KZNk#G;}5eY@y1A9aw5ggci?~|u$SG_R06n$V6I4+cORKZ$B4U+Or%TXTdMw2RQE{gTcH?V30xXE zz=*E}xu7iK?krQLGUDzm6B!h7cb16^i?}<>L`KNY^26O~c9uzvMDE^YpYG=DEO+a! z_fC|ZWi!6BY_II@ZcBQ5&xe2!=C-7_4`DORZAouA;ZT^{lHN+f?zW_Nz|&qtJSZwcX+VQxqI9w6L0%6R&XDNU)bNSM2nrqowT zn7fqbK&ME#OKD2+y1SI-W%vmIs#(g^jOJpO+>~8PQ+6p$*`+jPm(rA7N>g?zP1&V1 zWtY;FT}o4SDb4sUrJdUg3-YopY09>wDch2!yDiC+kmfT@kX#+vl{9x{VFW2vV(ua6 z)QI^Oi^2$VSJHgDKIjEu?n;{P@;g$E!rYZK_gA2%io)ELG!L?bn})e7X&%0RD3F$6 zZcCa+cs!|fnA?)(hnE6w8|JR0`7z;kQsw4RR(VIMa`RX}&^w7gnxFG%QD><_^Eeae z62`7%VsG~(r1|wwnz*(6s<9ED|{jYgJ59J0r zZ4F`&73RKQz-{{6_Y0IdhI8L9(3h|o=8jH4ntMn}G$5IXgt_k*7)G9y@Lar?10%%l zF!%ieqY1nFeu1(5nP{WHgkBg)hq>(+xEk>oNr$=b7nn?DBg}ojz!bt*Mfn==4TM8s z?)wF9CL9TK-!E`0;gm4<{Q|cUw!+-^3(O{*73RKQU@qa@F!%iecM&d7WZN%r_Z}D{ z^&M3LFD-&artJHfvhQcgzMm=kex~gEnX>O^%D$gjYu_*MR)5HbCI!Bmh~;&0{=g3e zotg>!gc3%kxbGMEnHet#bK5WQD;q*-7~6hG{}fw7S(y8NfzxaW6=ClC1^ysYWtjVZ zfj`MJD9nAoz~AH<66U^N;2i10B5V`^6$4tlNg`|&0bP(W5jmORQRx*|MYs_a@Tu3q zz;O}oLEc zuAf4bv2Slmse6AJDj+)_HB;9D&0)?pSl&SAi| z^TI6a;C{kwq!S7rVkgvA@iYGhH~oT#8v?Y_N1g9g)Ha7OvFZpfQmaQ`@|5xW6}G=j z&x&eeFl!G?k`t<> z1jl}j{XE&H>3b5kV_7D%J$OeVDJa8sh@q50Uo%9Y%^8;=uhtkIAQ}&C3Z~^S^yj$B z@l-kYYkPm0o)f(m9h*997_{XITS^24F7v`!1o4Zo6r&d!iPaQ6ll)3YaTxh=5{L0V zm(e;R+E#! z872@sVP8<8H|P+X6?z+}^}fWAjKSMbRd4_ng}kL1{yTGl0TZ3Mz)W{8aMDzjwKxBd zxj;5QM``f(6x}LC((aFKVsnDLbS?H{o863ce{4fI_G25uGAFQS_R}wk9pNN35^|4l z5{Vz-+yW$igp)CHg!7MnHA8O_<3~7&#E)O5RoGxR1^4s{k+XmY6Y=Kgx- z|N6-g?<(O>hF0L|{$z-S6Z^>!VZ+Z6w6_=G*iVKC$9^(IIQEkv!u-k5k^%8w47Gvg z*e`}Y0{s8;i=n5$AN$471Orxaxa^%zF!qZf8Xo(_P!qthUkpt)I%Bx({$fam%YF`* zy^H5UIQEMn!m(cr5sv+0h_L)(=*R#Z4eq+t_6@{u-(*0QC>(!7MpDSnQp%u>KOaOCHJ%IwPs)6W5wSwT1?Kh`lN z6A?cLRHkGi#m@niIf6Wvp93m$G+}o@Wsa?4qK(W6bI@h`IiND-M*)hT<0*48c@00u zQ|6Q{%1|cC0hM`!lPCvN=FNm7eh#S2TM4K5IiNCcBW(FOpfYC@&hm3WWzHp>>*s*V zyo<05sFn=IL_x++i86jll<`xdjGq!^{FEr;r$iY)CDs~0nQv9Wc;6)RI~*W&D#HAM zpi>d%Pb^Tw&+(J_GxJ&C=lIF|^#PQ9sh{t2^VE8`Pv+m`8RF;o$vj88b8gC1)#VUy&P|!RAkMid)1%S}cy0enqK_jgtg`Ev2nSKY?|labCvZSzM$``gr%XhruC_6*bXSwBQ5{NZ0O$oKfG~ir z0F;#T$k!_Zya1?LozG|sD84g-Gk*X$=S$~KWg~3srsMq|y&xSY04_wW$;-9z92A@- ztE)wrF)A5l_#qjCf3}*zYbO~3kLwwI(0~|%`;Cm)@}4=`quhWD;Md44@ZWhMZE;^n z54bO+mUUF+Q;dc*)w_4EN3oNJ>Lc;d>ffmH1L%Y~%*KPQVeT-=M)+|OjsjNp z3V}a-O`LKy?gu@#5QL^D;EbKH6z8C`h_*QxL-!E9g&Kr8@(s}U<7g+KN>b+{4}Mp& zP_aM0OwVa;z75%#jgb>i`3F@UJ~W@F7TGRjy&0?u0_z4Kcq|+Wva@$IvcMUt|xlzYp>I%+U0lX>5)ilMGs#XyvWnDj)s#J zN%rLNdS;Vk&%da3YN0s3kWwR)6|_H{pl3I@bC#+ksl_Pjbbu;B6^Jz-bj_;j45^If zioI^Eo(jY2+Et_UOncl7dOf@BcHJz*$jQ|i>{+Knh6eU}&6N%r?J}+ji+LDu<=VGR z(syalQa(wCMM|W(N-*6XKUoiTgYn5Vb}=t?YFm<0%aYVs1bh=BW=;0fCHtvXO?EO8 zl^|@Q&E=EzjD*bEMPZkX&~xlnGxRjObdnyhmyXhtTh?2|z9c`V5wHXAk@i893P<~a*RuG!*MDX!IJOZ90f0P^{4CQ>pB+Er| zwiCfeOtO4MZOLB3P!Z)bCR!n))0`MSVxkps(Kev|UlLsaKIWq)QA+-IMpOPfrwj5} zJXhEws`M67TCfxW#lr{ov`k%@q^=;a0l}+WXL$3~6@>R8IAs^h=>L!OYyTy^I!{TL zL^P!&UH~A1wsFnf`sHf#lR&ik+zfBIf=_%O78V5XRTM%2H-^vE2=?Tlk!p9`ueY>M zZqoDYnJ4t{l6=E&f3g%!C3lscVDAeV{$9G`KUb3;1fNDg0q{{jpI{{)jS&8w-L+s? z=kW4TKi@9gzQK;&=q5i1pBSd zM!*hyuQ#=GJHSUr{G`{n%a-aUt<4bo?Ctm>@xP1@+xr&jS$0G>GAPy5-rmJ%Ms>j& zUb6T-hB67g#dCk4ciH~F?zc~#)$52Vi8g)8bu7KQ_Gjjd|09`YZx0(I?01G5VW+_MbO!X+ z30U)THU90p8##KZn$`GkXyGBmf;nV=+sU}psr>)YA{7uT*xKd1@Qj|0V!J+8Y$(Q> zeE$dZf0pw{$G~~Ui!YV&F;l=wJ{BPS+pVqw?`>^iSX~lsN!)1RVnAgQ8A!KMR`nxstl;Dp{ApuhUKE6f{*P2_UB^< z0#mD45heJh6T`%Hvl>+xFqAH2~sNb4^I z))b$!3u!{XSoPG7)(Ws!Akh{7E4nVCvk+9JKOZdx9Lxv4YYplEJ}wk+7#}!wW#W8q z|2}w*5ORM$t`TqmACm;Eybh0B9qLRxW;q}q^93Bn$3g)s`B*7ne?Fc-(3DA`^?05Y z@<2X9l8gR$bTzXC9>7PgL*}EUL*=8jL*=83L*=8JL*=8g(C)KP-dOF8ZVxi0i%h% z@QB{TZgHP}Rg@AxItutGZ9uh^d{iR*JD=n|DZJ%;IJ^UD^VVd!hPQ&e4McB$K4N+$ z_fg3lNyCMsjE~0ztmNYfgnt`R!&_d%+rKt%jS)4x6*asAYV$^G>VQdYkd({#I4NL% zK7K*?w-GhG>qy<>VzplpHk%kz+Q3s#Ne1Q&D3N8RiH>KR#j%HTL`ks<)Ap4HHs^0cn8FI?M|6S9*0CVW2pbf+q=L=RbBt1bDntsnF!$(Ax=UF zh)5m=3`jx}Kmvp?NhT1G@-pFN2oX>bkwHX?R1pw4s7O$eQbmf&kD(SRB2}amky3xu zqNU2uQi>E6E%it3{eJhJJ#!|-e|zu!+&i$&ckQ*-UVH7wIs42xJA2ZciYJXuya62G z>>qBnlicYtGa-+m+%6*X6ZGrFNk=dR>nBJyKuEb>euX$@nx*Ss#)rzVCE2V^eQcBn_rGx`g zN;n~(b`D>G-A2)~Lzd*-Zaj^?a#=ZuaF=FGSr z;~6tx26*K=Iy9sOFQIEZw8#YMxYZ)|l>8zhbJ9kAT=`5_KGT)Yqw)oj5s!l8$CVMG zMG6!JhYK`SM&!eT8TrYAZIuWprytIT$NN1Y9k624PE97gGz#O zS=mgkDkwGXtkJ<`L)iz!b|vNsf=Qk7g3cjG3cvkSm&BWk&k;rc*UKD&mGqD#+ z*FD9}#6E)0ZzkpmzMz>nMDWGU#1SCZHxS0cN-$Ja8B|e)%DR2W96^ttSdq=#HH2DF zY_%iCp3120ShsDoQ=_(3v{lZc*M+D-H4TEYqTgO!a>0X2ycU8qnrrI z3=nHfTmnLk2@eXknjl@&sCGD%3)vrp+E3_}!%P7}Z^8Nrk_`~@b6ocW`;CpxT>m#b=)iN2 zgkV^zf@cA{WIn=fkSvef9;qO_9#N3nD;0!&5e2#ZQb9N$QK+(}K@wbw17jyH17W-o zo(hYJ+ohNhurOK^>EAUv>5b)3P5eNp{U-q*N>-K2NFK@+ZSznNxLNQ4!t+v0IMtUH z0m3DaYz4vf6ABa11tb;Z(uBfKXcBCIumu#`WnZHF6)1s`2Fa|Hr4nQ;HH57onh>{v z(3OO}f~`r-L-8O;38jLqsR9I~lrTd|d)|am2!btPf?#VJ0F6N@ZUiiq;!S|fQcBn@ zrEdccNh#r!ly=I;fCIrXAt2Z>2LK19lyFK)KLMPPQbN3F-Z8;`zyiVh2^E5^nE{w3 zrG!ON`W#@3loDhQ)et_GQUbdO{l@OGMKAaX>>o%8J`mfL*fS{PHN64(k}U@KB}OiTNNf9oCHxuqyyaTRYpBjMm*aML{F%AgdhQ&mBftX+-9C{!!CWvD~lixP*mvFF64%-sj3fpQzD#-B63pSHs zo3xCmQ&>i%4a#tvGE0FJtCnDLw-5#W#H|I)6(DRAte^0rloGZ}DPf0{5_U={;Z-Rm z?2=N#ZYd?~ky64DDJ7f_;t+eKU~GO7TO~mn*9haVZFH6_g24e0TZDKRgxV9%2zCtN zoRktwQS=x>qF{r5;s7aT{a**s9r3UfM_R4FC;na#N+5hQKr|X5^Olyi7zl$!Ai5$h z1|c6|tzgHbB43vQ;@h6T3-}!2Zp>N0dC6V`T#~E`fo?Z~=$5!!_^LVvxG31_D}at7 zQW96U>>Iopqh}|cPL~b*2YFI&R5I$sagLGCY7 zLAVf6kV`0(gC?O6kCH+1^dZ*~gytfoMik__NChD+q9Es!3PNT?K`u)w2t6YTa=k#f zX!?o0BN}pjKu{2JA_{VOQbEX%D9H7b3PM3dL2iIl5C%pRj8!i0!|+(fA$OpYkXO_d75 zw1|S-45=W@iYUl6NChAm-x$%5Ymyqm#)v|l@mV;lrh<6J6M4d6(j%n7m|`OP17ZUG zxUU)XumwaJ@kkH{+=bFbPS}B(jr|dqrFojk(-qPljOk|b9Wc&m zOXP(B@(Zgr=~V$P*f3!t$_~$kQ2O!nUxO$Ws<#!rNgn z@sJb;iRZ&|B2P=06B5G>LTn9!n9wOKCZbcof4l>J?yDfndA= z@Z3O*KU#wcU+=1;SGa06&2eeXtJr5C8WZIety*5ggg>^7dl2>(O&~^4fn)~)cow7Z z5dfZr_`8W}o^w2lAm%y4lK`wb7g(UX8QDaX5zm6+@OZ4EBr~=7A`6nXFTl#~rd=F5@HmEV^+Ib3_9EJqCErb6f91-udEtMX8*v&LKcaCZL7q85I_ zQNacX$3U@nNSh(q31XFquYxde2uBO$3JNSmNeVLO|41FdETUO}U<=kyNR(1SYfx-S zCy?zdh$Ruvflv}bdaEJCgJ?mN?!;^(E!VbX(2s@>eAlU$6Pmz2sfcFq$ zy-7xJ52X90?E%0M$*L}*b}xwK6AuY>B z8YG?q#kLF`pB9cQ3DQMP)J0{~MUC4-^xl;o{wX|E5f~GTsA?uR5QH~KfS~X#HBt9f zbbl(6MYYBUaFhxuTZ2efc$`guDYazuwP0Ehd{9nM#twxxs`-5!nTG$FSM;}j{2*lKj9=8^LCA1t`S+Q2nA6I&Q9PJvh$@iYj9 z5onFVoOHtsILA7gDbAISW(TKfg4s!~D%?NN>=--9S~-b@SWxKywOlgT*||6p!wrp< zzP{E>2o2KAcf3LRy)1nD31^0~m>NRntt~5X76#vd7#`6cEMjU4I4xNJc|hwS(t?-_ zLhlkX!eU~U6a#|sIbk``FXa;ejgmcqKu(L8B6pLFq5|dUcojmd5`2C$ag5*#nu$vV zU))SwF8KUr;!436G!qX7MWVR*An=gj^P7oB1Ygih{8;eC%>qSO0sQ4!e3E2Yw^Yfd z0Wu}a8upZIZ$KZ(vQmpB+Xt1(ABy_pBB-vRteFpTwlA@#sCYGj=4eR5Cm>q5bFG6@ z%7`080e-^vu$Z`0iV26qVj$*ZDJPr`%ZX>Cm~c5PCSH+ZLUK3`VhRZ15jus%#0)9^ zzNm9pKEnnR?(hJc$n8Q_JV4-Bpf&LW;W=;;@S$W+0X~*22aIYZq8!wbWtE|)CZ`Dw}S1niY8oAbD2*@S*M1*OAtsyjl)RjqI z**#I?%Bb;Jw{i4}7`3gUt@0MV#77OPqt0sG&Z4jLg3SJN5W*znmyrz+`U%!gD3DUZ z04XI5lu|;GloE=ilu#4JzhJ8g(naLeE8YBFX#Iqq!Q=mo+bD*1^dhzU8) z>YH#Uz?E1|&Q_zzIkp#zDvQ50ZeIU|YfaYk^*J!^C-V6T1t1wOxdBo^7#LBgj#D{V z5tS8zsC*QwjLri|W}0(r7qg+T0e%)qw}j3A;+6(MVNglfB-k3l=HVf%c73{a^-d&y zF64f~eo$;1(_oJ9pWr`*2s0PtTx(&CiOD!)`FkF>`UP%a{sK4 zKw%(!af=7^l&or#D=^LyqR2Is7G*-@CzOL?gQcWe8W1K5Hb4kY#z7jBn<_PgSrLUQ znbH~3fItIuhSD}5IZuiRiv$}WEC$IU$Ssiy!io`?f?^}3c)7G7z`|VylbfW7uuZT5 z!VW1V9F|hT5h*2nBc+7PQc8#qjuhiL9*_u%4Ti-%D~u}%EQbb_&E#H@3IdCg3UcpB z1%ahW1-Wmff}qN(3`VXFENrc?s3I^Te0_8W7QHI1g28hjo&ZF~gRT$(A|J(OxJIrX zS`8~(xUC`3wGs5(6>L_8B%pHsZUuI3mq=8tVKhMG@e>L`y5~+0ajM|gG!UnOP!gdr zELP)!9(+PwNnlP4Y~>*Q)idg&O8JoOro41Owg!S2OiPa=Z}L5GH^Owi2_=ka87O6OyZh$WK@YV%Yvj^U+|bFsLM~ z6>NYIwhg+z?NIczu<#SG69K}iA*6z09X|(y6T&v|0pPr3Ra_U4j2GDhi2&&-(r{fM zx>0ETHwJ;r1s@=+0L2y*HLheHXpiCsb6B4G{dG*!sXYY+D(%9pko*c0km&incnO;pS!n zF;4JzVh=P?2)}}?nV`lk^CgOSstIicTSG{ZQi6=K#$9r>->$&J1Q_u=Cmt2~#uAPR zac(nF`oIn1NLlpVkSzhBAy)y`OLi;ZWyz`t>Hqs$EQG(_eB2JQ=^h5b7vb&EqEQJ) zL9vY*wXKZWj&a*Y8#QWMMceUkhPDe3Ckg&e4>8D6s8As@Uz3QZny^5y;|L3-lyFc= z35TVWa9&CY7o?ORYc$RsWwZmP24S%c#2z4KAspO`6MBlsa+`_LN#quNH!R-(;eiVw zNo1;3RhSCVf7+zi?||{!!c`4{!Q=X^HIuQ0-x|6OVi#UT+|3O z!8@t3%9MViy-(v_!lH`MB-k1P-O@ICv7l|PFsLSk%dK;lI}36Q5)W~?Fb$6vT#$;8 zE)}wB!Vpkv&t3n-$H>cE3lH( z-?H$>%k4w>^PSE{yCu*+Ep0Xdwu0n0G5kqyJEySRY!mEVjqi#eRHGKKO|q)&@krhw zM3L`5pTP+;akLQo2z7uy^1@=`ekmp#35$szN-^OqS*)m5WnF?}nQII!j|$63&$dSL zIw6XzAU}s>N7B+fR0YuZk3!@p^r@k?hL8`!c)>R7k=xOzab?sv;4*eyaL&P7y6_h1 zm@Fi36rxCQ2Vj)~5&McLb40G3p9MTtd>6=_60bSP_3GgM60>8l7>Wu|yl1{A=lb}6 zrbYs-g0u;Qs;G)CLvpzg`3W0Au@{Ejkfe-Zo=CvQ!=hGrQ9mTjK%@CGB4v1-QKQYm zLLaj971{iRA)r{lG{_MKm4qU}1_(pO@H_o2_} zR1kVb6y$nI1)(6KP;IY@t;1Bsa&v@n4M7=4FQi={Wegk=bSI4i%Gh4GSNxiW287auN!9QSe2P%1nZD}oABf(92abW z@S&6vBpV={0mb&r3`qVTd%&cL51ppeiq0Vn5o~~PtCSMTq?9m1N(tpsN~n-hf@A}P zT2O4jXI-TQq5c1%xMCE;UL~?P4q0M_H>^;R@@)6XH(vOYeY{rPV|3$CP6(YIYu;l8 z55oR!5XJ)G5D1%_ENUimRLH9d$EAEhGntbzF~6D2$1*XwnamlGYgEzs2SQXy_z;A@ zV>5}g1Rum+KJv41oF~2+gzSV@1sgdvJB`OF2EzA9LLb3a5(Y{sAt2alLLErQP9Eyh z0qI^K?u^p9nVfVHtS06~G~}em$d!w(mVgi#VX0uN3A?0Jl`##;Ss>eE_}h4V&E%y? z#MfMiVjPI)?vYD4t$z+eQG|~L8z7tp*?gYSExwuj+}mgsX`agvjS-@nsen4ks=zKm z`>k*w10#P0gv)dAJ75=KULDODi8m9Pn}pU+$OqY;yD&#Yuibm#pabL_jYJv77y`qf zm?#4tLs$S(gM_Cm(=SRH;WZG3V0<%~!y++1zM0H1Q0$qv5R#=JxFgWWHBVhdL>H%I z2EwHv4zVt2aaLGV68-|>w+7-R5RIc3SQ>u_!muPLgXsM~C2|MOBYad5 zWWKvZ(c$7|D^ox8DoY_*Ar0^glJO?U)u@Z0Sq;)XLHt!Jm<_@-@D$*b zV8<|*4Pv*bQg=YL6J&e*kDHZ`o8)Q7_Ew+0kiF%yQF0dPfo-B^Q{>NQk;X$878G`< z3UwPXh!mHNa@Yy7G!O$MW`a<~=KxzI>$dC-5iN=NLLKM_SQHfe80Ojva@V#T=?ahv zjy&z$wVi>O>WuY#bE>1 zfEJ5|ae%N6gh!NSGno&ioNxhzb?-GqI&@u6XF#+b1nmaEQ%ed$n-(l&I?oj?1{>UNSGIZi45X9dAq_fEPA|^+RqWpwKpx9wg$vSC3 zsGHi-U>T%4K`e_HOoNH$8AqVCdjQaOL)dm3(4Ft{6wx@}0+`Kp(Pi=uA@UQ>fMR1z zs>gr^>7Kl1PjR?|Dewtl^mL2LV5sb-;Ux$N8do#r<}CuhLy8I97&*33N-jzR zf;pY}#z+7D#likqSiQ?bQx9y5f&FP(haQ|}cGvQD`fzDO@h5>k;ALPkFg~3RW8|j` zAO&g4Gt-?9rDF3#SREK)UB7T*$I0W2pS7Dzr!kBMS92 zsaTj}@8U43w8AZ6IopaKb!Vq=pcG@9aBMl=O}42Y$coj4)7&?!PS`nXXPa#+dWZ9{ zvG|cX$@At1yW;s&rMQpRx^Sbl4kPv;_blr!`)PG|r|nF$cW_~r%CP~OH0cbUJ=I>%M55KEASlF6t>*WfVr@Z-K%$)`TE#A{HUPWHT=WhbwK_R-!2weAe-|t&7gK?Q^8IABcC_x;%z*hHI+D0e2$y_pk%Q#cQZXOAnB?7r-lx@g0lm%gV zIgl$LTLVv)I)|IgIz98H5c*?*mdB-o#n`u$3k6TZfa`u5fLyTh36P(B6vTBSP2dlf zIUmk72M*kY;AB^GaRpuT!y(J%7fhD{84^FNVE}2iNW<_@)jTsv(>D)yrq0JjW#@2b z<$SX)_|_kkORj>T=}92=>h+ukb^=}o<^X%*4Rj_@eKJMk%s{*{B(787xxuvrU4Scq zOM$KNK65INuTz6qZ0djoW1W@vnEf(_;CX=$X+A1h0_4+*`9OYXUt8;Za*sJA zcqCN|_r`pDTV~Z(0~s2>So?tTTQnGanDZ>;L=V0_6FUKYzycr#(hwj=gC95qxDJRa zc=iB$0#5_!Uwp88zo#6edlq$7fu!Ku9@~Upii!NjdJwqaHs|;PTwMR?Qb>3(d^@)Z3K{bGjUZpglY!@|j`cjf&&H z-(27^`%J%& zNlx%2PVgj7@FY&w&gPZo^&DjUP{5g51*niR?t@6e28b+qGUx5xAZ4SF^ET&bl~zcZ zn6tC+U@=VG@s9I0=WG%;ZR5PnUC=~b1;^=`sitId+$M>{nK^X&L9sGZp@-WIs~4ZqJ-V}mYM}@v}7UV)XY+gMTbn|UJTr4 zLGH02rcBXfG~=wTe3IvEt`mhAP3qKNQbB*l-K!7(n4EtnF8@e8S{CQ@ z%v++q$!{!lHa%dzK8^D^=WtaXdCuh|&f!W<{wRp^Ip=cHq2j1s*-`c(i1Rt;a?+v_ zXWvqDWicmhPSDC$A!TbpoU}PnD>-@oH35n9G@I4$u(?AQ*?|QVa^e=N{D+|72#0i~qIcW!o^Ens8aA647G00%aag_tF9~;DQEx3SbwI`<3-XQfx zkni_YaGzkB{RZ?cNXL|#2+9CCI~SUr3V0L18vt<=0OU;oZvaTV0U+@PfW%k0B)&ss zI0fQXfYZO~2=crQAn`VU#A#pY6;j6A01|HlNSywao;+^@NW2Xoar#$!@|gW|BLdzE zaQasU zlQ_SVFt78k2;}_6N&YhsCwWfrBu?-oPVgj7@FY&~Bu?b2K=Pc>Nu0-(U-F#CRhm4X zEs)IVIy$rov*xXw&^eit_=6G3EqPAaD!Y<%MF)B6PKW7}>7k-W&5KF;rQxBRji#Z2 zalmv8l|N&iHY2H_&zT3cRQ_y|eM|P=<2?GnnT_*3cHt|1b&p-NE6eG&#eA}((7&w- zgLgDxaY);h^~2w6F+;!EV!hK&dnxqv9;;b*4uz~VC;PCKsKq&7gshE8hr8m3C7!?+ z9K)j-Lqk9Pt@XB^7#D}12k{uY^?0Y@=hiCc^jnstzt=PL*dD9V7?|+WIFI#&_P^T! z>$RpG07n}_;RfxO6h5iljGv0Kp3+WJw^4fnVB()%n-}W87cPRwLr|>HAAAk)u)gBI z04w#cb^?B+$Ne1eh|Zq^u^!bE@NX(>$O8@u`z|;B~dfBLt_x}R;jBYc>CjBw|;F$HC{tTTyufMS$ zuth)4)K=YO6hGEqW=Y%hJi<%*w~Y4{{g=DK)k+;1x_iGh$I!O~LVtP-^=mufZCE_3 ztvVF8h^r4xf5&Pty8a2jIBFFy> zAl8g#N@jK?e@FTe92)|Z-1RE?yYG4r$9t|jhU2|IA-}Me{C&TIjqq$N4E^*dJZJv; z1mq=!zrnHeS^Rd1&<=UXH3H_whj#wfI-)tF4_F-SmjITuf$uASF}p8qYY_?zZX z%J1N-W7{+Evgl3xVvKeFVEjIh@U`bv$2n#FMepi!mVIRPGd{y#<-PHdH8eP(7B{s< zy%pDI9GMxdt&xlVfu8{z+ua)WRgZXxCfaf9$3quaejA3~Lt0kc1Tdx8gc=E@YaUTiMjD)zxDb&qOw1(Y=A6zv?`4Y@HeJW+M zdRoJNQ$RoQruDh?lQfhaS3lKx_G7Di@C!TMV@)}ljN{aMvT(fp!y9m{%SphozTtWt zr+tPK-kQGMz;VWNDLBqto`~bDhkN08$DR188mr-N?QopkrY(+*scmq)^Xzpv&i(tf zINtrkt~lP)z_Jz$jKlHXpJn5?@a5p=Xw3T>G$a-cPQvm2*S~;dnfB2&NIa~aWX8v| z6=*o?aqWNbLp(VDK1F4$r?qlgZr04+NIk1Pf-uk{9&6ZlETDR)h2xm5Xg_OgTq=&^ zRk9ZgSFx126|CjF zmojji{{gjkeTbg4?tUj7$9ryIT^Bsp3CDY@zd^2r2Uv^y-egNGs_lT|{W@CTT6{Mx zgSAQV_>uG_+U);@?E~6Z10Ya}FlUwd>d)Kh%Cl;R@|% zT>uYj$G?JZrFO@+fFEg%Ecg*Ei;elH_VPcGTBTL7NgmUZ8S-kaoaL?25&=PLtyZQ( z`ncvl59vBBk=~xrHur;Yy|%0n;As6Rd|JE6VX{#RV(^KkE~{dPjO&4GwKe|UKHzVA z*u-(d9prz|9anE_;!|w)Nn1I#X4xD`jSXKyK5rh|BRGGmXvVqh()*HFuSGXt)sA)l zS|5&!>)3O_9yEPeD`(%V)SjpFA8BXV3y)~8+z5D7JInF9O8XHlpU~#f#nakpHrGaN zIfvIKtrTU5uxC}WyB4>>udU;Ezc^&>Wb?kM-On-)XrHkO-_j0ZYzlRQhw@jo&*^8k zmdpY1y7u2UBehQ}L1Q3Kbx)+;)|USnsl(b8xVDaJZ?o#hwZ6H4549SOdtDt zIB?DfwO_OGE^2?}NV%-dWa^66m#{?tJ-sc{f59{C5j}}1M}LWyyY#o&7<=^pW?$~r zcQA^>dRxZyzTTG&|KIv(TnMa>^moo8^{GCe!|Sa666^B0K7cj;N)Mjr0J)<71B z-5AM1zR!4q&JGyQ^7MM!c#!!H8`-UpI%=#8vfSgw|8TT@U{v%4d}!2iw0&%R$dmpP zqbFMF?~IRF?ozXcXZ3Qkgcqrm<}V4W z%nj`MwPrngWWBkoYY_O9c@NKkP3CXu^f~i5+j6Vc@|*fG1! z^zKN#ZZ2YKpZN!RJ77MV2YB23^fH8p&EIDtb=36nx^djx!g_vSX0R(hG(Y79@?-OX zbNGE(>k~7cXXj^THV5=M^L9ph!OY^B_oewboAevAGo$#{{2@=1@66o{ZK-vMC&zMY zYd&D5b)MJWRn`yKlxwXfajCR6vq`pD6WEj6txIgKoz~s#ie1)noQ6SbuVwM_bkM5f zb?1phlq!n%zo*-6}708UxW97(6Gde-8MRZGkB)@y9_i&id2;3caa zQ|ap%uB}md*j~lhj@l0}<9qft_Te%68urNh_I#G~ zk-ZRsimSu)Z#b7M*Y>j=)@jK+FQ3rb^LnseJ3tSP_A_3MH)ub)3Gk%$Jjd`;+H72K zgSbj*%(zjrIl!OMrZS$7v}eSa(8jTE|EfL0rvAH@#cD0pKNr_Qef(cwxmLf-;rf*R zS_kN!*O&8T-KMYS=-a2i$dFIzr#M{yq-U{F|El-Ykordd3Mmi%NXlc?#G0lEtgGwMSGtE?E!r& z$LUgi_n(mAL47Xkva`)}Uh!UO!{39qew6eyr<+HDNq^vQf5^KU?IoIXa!+37rhLLy zp4yEg{Pw@HZ|Z)}>ApUb9W>3ud3d^?7vh=y*fz61;{0;QMYejw9lVUp&iCQ?ta&3x z_pi*qFxscB1L8t&Ww3ePu;0lK0w0h2F*6*GYsD+;)A46HzkGp5_u+`jwsG{&+{ZI& z)@V^qEk}9d3q1Yj^kH)}U1Vu@zR?NCxffXNdAGAgUe~fY;eV<>$+wIHWbRb>7wP@>2O+iF z{23ejpXOoeR$3qNOy6t8cSY)#)_OYq%K8nj0#~dMuWYZ{|I40w!yds4)LHv9&$=(| zV~8I0(Z}v{-SrQ%t@!_GtvNgYjLyNm`xEEF_wGl}S$Y2Oy?dIvcfU^EyZa*d?q=-0 zdwT4>`*2I%vWu?>r{4!Et|2&1svO1+Y4|e}v)>qsW8>-J zIL>XRWZvXkaa?E(#&L!IUu90k=hirV-O|2`SKH~N_wO!Ex!C@#8#ye zUvlJ^pSYN+RCQBde&W@apX$uGoip*K#I(nW>do3)i8$ z{Gs+0)ho2Gsef4efWnp9;W2>6v<-yS+BKDcHQMQNz*=p=2*4KY@c>|lrjG?2)HaR> z{8G!S0sK{arGzCss5dg>YCVTepV2o$$q|4%%tu)03)%p`9E-a@a*f52@nS>_yl71o zUmu^nXkAucA5AqFt}+B$42Bj%uskvtGTbd_jsE5~gi<}8$H44~IM(BU7RE(d+<8Ay=Q)|LG@;@kJwu!%H6HH2@qp2V8Sl^BES-Z&3eH4~r_}gck zx-YFS<>;?T5p|vNRrqv!>MJWx)wQdtYnmGP*F{E)FLvO!sOuO@jh2|Y+O=XpOxnS) zrrtL>98l3YSL4UWTcMGctZTJ+Tv_UIIwm^rU9j3a_kV4*Pi%Ev+~hm?9lEu%@oTG8 zUwUWg^w+qf@4c5&t5x%K)xllsrlO2=y$;6=5Byl&-X))Ze!BDV->j0L_YDfKsl6S? zwjSiO+FhQ4W6Hghw>PKZc&q$W z^;_E9@Co_e_tWymdGz1sW(JlWET%fYCl!6)=ds^kskpg-84AWx+y5L3D>_N}pbnH2 z7t(U*Cp?b$8QqP1g1r9$+En^^toj1&YE_pqlt3l5H9w-|m`onWwxOhULXe4ZyJ$3i z4U4($Q%WZ6V=+Itp2vw@XW%&LSG1XYgf>&wvw*2D(8cXHQeL-%lKQuJoHh&|FvRrg zuU!4vyQ_6$@BhW~l$$$R@kwQ164R_UU*`5RJ%;x>EB?`y{KZmV+&it1H}20o8p-LF zzHhMZG0Y5W;F90k5Lw-vKc2EuN;9oi8;(HJCe1XGy2m}7{E{;o|OrvwpxJq(y&*Nw`Yu%mPH?5Sh*IU>3;{(PUyPI*_uc7{DczbMI(>?B8 zplPJ^vdqQe5zcUuP@_QYbI^5_~er>f&xiQ7M{@i=; zp3}$bo|u7nZs_X#{9EhVp4oAwST$j+)6BRgG7oAxM#^Mxy>pC&Tr08k9#$^T`R-dQ zGwUX+SN5-1_2A>Q7U7|XPN&NYvj?Sm=M=H484&(A5%D~Rii zcgjX)I7X|-yzkIFJ^RP?h1j&R#~epcg#+S-(yFMtX$-!_(i8rSrRDa(xEk8T-N~ad zq|j>9c`y2^bCK2Kx?{M27^#Ee-V(ZNi>+?$UVz`M63bb;&q{4qYTCawmi__ZS%YWe zEx0jyu=8fTo$7SEVx?R^B(4jdOe4f|^2T1TM#s)>(~{No%J0558`CS*?3S!%w;9)nxjTqwdsXV$-Zha&d)4aEUZwld z9;3_d6uzFd3dn0%oV;e`-8T#8PX5C>39voJeldC=iAy-6ZHIaC$5XVSjP&_A9k^y<_gcuuJ**ZuM)U= zqrda!IJ+QpA;B)yLKP+UK;7A&YTHi6WxLop_ON{elkv{}yX<7=ySa8sXwXXgmwIS( zrriS%4q56?Evq{P(A9!B+Vsgbrt~qo zjYwBLE86n!npS)ZGQ>1yQSP8_#YM&ppV8SD6YG9c%a~cH+o-9ADN^?g{MT+Te!xz+ zO1JlRb-UvmW?$zldBC3JG~I1K8WfT2k8_PWAvqeSwJVH?_P_td=8upR#n_yOB+^F0 z&lB-lDXNr{lQVL{NTc_NVjaH|9~n*i?V#2puOfR8Oma(NRA0txMxt-jxLm19aOL{S z)_RUAyo%zPI4vVfXo_-*d9jHU^gCV4bG3A7>G*Di#vMK*HRvlE*{!g9(X%`VZd8%6 zH`vGcrN^f_TU2Dbp=IX|9yDlBVay=@wV@dazQM+w(+r<4MswNFI_8ZxlKaH8&}LKX zF(`LXdXA`YyeAlq@i0}T5sgrAfs^rwg+W@F-@BWt5|=v}&6aC4bK#Tmily~MYh{#( zL4q@u%b<+kTUv#y>f($oLgVFtin|4KONxwu&$!X2GKtzgZfotP$JBo#B;#TROloy}Et zo{lBeC#vjsyjV&ddSsWyG&%13$&%7nH;U0ThD}7_(`UmZvUAdUb z*xgFY8&y=4G1o{KF*HlHUF#xe=!15BXRfOy(|FuKb-W4fR`VFTF-TQyO~xc{@+jGjDY+Y_ZdI zbC`3@3wHN}reVmn&eHC1N;cUU&aoHl6z8rN><{!nnKNoD3=futnzq_IZ9QkWlku{h zr4JnLjCk3;RxcawOn=$V?7&4-#;2N=K5|fwDi;f)pM{Od1=0Inv8Q4|bSUFh`;yg* zOQ($YJX(k1;`EGsWzU6F##xV+5|Nx9?iBB_JL#8)JLC6YJoFq9TC&IPYxUu}DdSnM zmYY+a*DY7a?`HE%;3_KP+aySfT+$UIoKN4d`{=DlI_>t^xt+MC%DC7@%PuM`$}d-i zuN&!1*k|YKUCMD&ZuhvBE3Ay2hE|e)Q}^`riu{|D;m&gB#6GmZ#q!XVefDAvYp6qu z_S?hb`*M|(ak7in9%rFxFSYY0kIac&$*@w&c&>|PwCz)9bRDRirTCq157~qCoqp$* zcX8sxS333Y+Wqy7mCojO?H+o3Rp{M!?IW5#qsno9We?2a+9_j$SL+zL7vd@^*T~`k5+c=n;FCezw|q<%m66-y3lBU)%TS`8CdczqT{4+MV?iW1K5T?IOKkY-r$nwykyH$|&Q(u3CG4 zxv{VhE-c+uHS5MY6OY-s`kArLnqzj2URxVFd(7T$_vQjA<4sNL%&V9^!j4RNTrp*Q zplKcSRN09KYq5E<-BCYN>-_G&?VdMq$&}&X9UK8J+3$KixTH(v8 zXSf2($k4J!j!ai$mW#2BA}xJfPUL*eoZw9Qlbz=0x-8?QN6XI1{&~a$WxZW4xme5i zgGYOA+_-VdCl_uRxmtQQT4$olx!?!Rum5Cs)l()q=l^7<#=p{RMc@FW!y2 z=KH^}cLli`%s69cH?4W_!H4cC%+4N_ot~avt|nkE5;Gpa?O$5=HM21Yj8YzU@X*YI zu~5u%cCFp-E{v$c?03`Gbk8>045V@v4~0CW;h@2YH;Cg#>aAt(l}+|!;){T(Wz$HD z-cpX&!*@YklV*JGIA7Y&#Bp7k@toz{@|9hdvCq=fFyZnv;}6j^m#G;K8O{q|*_k%i zsu}M(?|o%=EarMOBV=e9g@veRc6xcPnmM?F&G=NO26BGNZ<=w_j9hi6z?E&r3r^N0 zyStC8+wfH$H$#1LbKxetuc;ePnzhCO&p-^hw?cPZvIoR>sYUT z)El>0Up?KaNRG?VPf!2hlH@p0JSYK_2x!G*<&&iC=+a5$Q|@ZKeMYRT zrmNDsojYY-y~_p;r_Y@-+f!9P|E{@>W2Q9RRUZ`Ua^zFR$RhkzqX$o_ z7+o<`xnnGKcg?L=W{jq$qI~q=kwb?l8|FdAVO1rgT%``Lsw|t*Sl3WL*E6NAZZ2vx ze|D472T^rahk-{cIJB{D^t91U^>e4ppE;*-@RWvzsZ+uR;S!^^;Yv*!9>7+$(^cDz zoicO&t#jsXi;Yr~Xz?nW!06O1W$Shy4LgFE5sj&2+_XJ+GcS8Ne?vb$7l zu4eO>3>!MMs-$|TD_6L0DyA~Vd4V~yYXbKMo9b1s%xPj}(KdPE_C&jsjvgH-ojE^u z@SMhJGpBomq$;XLyj9p8YiyOjy8ib0bLNT`D3OgEEqv&LNkd8kB}0dzZ$?cT+Bjuu zL;bBY7u44UX3h>qijTA?%uDL-9$l*9qWAez=GU`y)%$83hHZv7&YZ7Q#1;b&9+7uQ zeRX{U!t@WW8twOlTSAUM;ZBu{N`e3IwcwAAj-puPm=C-9 zI(bse3s(bYR;~w!o5Wcn&fd_JP|{8<)a7SM1FX=reM#@=p#g6ujnhNVyp@!yg$^7{ zy7i^RvOslSUhbr_Nxo2AllQ!iM;YF)TlweDofN*Dg}$8UouT!wsUBW2Y?3_7e4g;x zRvjp*3QQ^)GNfu~b+xZ2Ti~X=N%MWZuFqMJQ-FW?gvQRn5`JB!z$5Xlk3%p5M_|LJYEcdo^&fe?I=hM2hh29E2 zt!rH99n+PL_Tw=cAGz%U&p)4InxA5a`GP7*sWPXUX}ocWnDbA!OOoQ3>8rFDyJFb5 z^D&P*{crSbg|Ui@54n~(*DUh3OHgqYJLy06riedogJ+*}=Y8Jm#+|^zZGKdvs5A>E zsr0|o)0Sl``&t&(E~t{lP^mhzUP?aXd*t6||9$c;SN9Y2^t`%4#Hs>v*OPT{2RQJ1 z@)x+|D!=-(b(Qvay8(Y9;Bv?(J??;1gYj8Uoft&@Rl}&xcc&pn+&FJ6@^*B5 zi@aun%2Vg0Z}(o8=!5AM{OL9xv>aXNP1CPf&V_~EtTB}F!#^oz$V~Gg40)C2-__x* zpco#?K3sIf2I|NdhwoYUd9(T-#GjF>zn`Zsruk9lhC9vhnHGOn?_BeQw_RJMo)48& zI~VTrrrMO_(NEGMZ-)f(;?MS++($9WnG}C<@7%e?+fgL>2Ykz%HA`?#FL@a4LX!nO z@Q2Dm)<%_k1tPyVRrG_lvu}|%brvo8sRgM~!q&f5REpd;=M5+0=cJ4AJidlgDy$^1$SLVE;xWjLmHl5s!7&FNadQH0wm#6K$ozw?$`jf|g z7X!d2kmsjDj$)Pci+*dXk_?(9l_fcw9`vSFT@2^qu%KL}eJ#>6kY+`wSG#GHBt;vN z_SE4qaMChw+7E;s{%E%m@{*+1%Z!J_8PmyKhU$FU@(+9)gl+UbfO39lr^;qJhbLx= zh8mzG{bG`{FN_~ALszL>`(deulFaQSJ%n=$_PrkRrUjK9hnzdA2}rZ+mA=;H$1Pv* zJ@SFyBlo-HDDQ?y0q$miji-;xP!{MkKJD!=P6gD`KG9|Gu1HI}Vwat}IhQ!;k9br1 zyBgbF&42IR*|FT)Ax%Z+yUJOFCg0(BJCrJ$mXV!wMdmI$|6kO%5R4QK0c5;&G7$E=_M`n>NZmO`w!AVF+7=pe-WPp zhiaI!aOKE74BY|w{$B@xvEz2AIy1kWlk_9bSzEoyc?}3f?U`lv6b~Gn3t#;N?{y2sy7d!1ZYgXd!TDZbXBgUt)sf~A3HYMku z^7~+?|*|)>90+nw_e9IG@w*N8W4jSKZ#$PVshJs`p}p7rdxiwbI*R7I}U+ z<`@Fg+!bH}e7IdJJK8WLm1ax1)9iP5T7|N=z37HKK5LEsJ;#=4Cy*omNk8ZxiB@La4>%ARx#4GNBQ~*&u4Do4sm-2mfLtv`{aW~5{abXznecArK zduP+*xCv7Eul7{}Rp8CYEM?QO3a4D5x!b7VKajgeOw_N#`{7bm9xq#}>Q}di0Y3lQ zhhjo$tNbvpY&z${I-KIDm%_v+ys5q1cJ6XaWUTy*BRN$*w2d253%xUO+VLetq z;9Ep$qOxxq=4^s*mi77*-ZYzeumIxYCvd+{{vdXlX+U08zwppW!qABf@y+tGN^^cT z$ZulomGA)LH!@D%$s>-X<3fQY4-B8gG(WsWR%x~89E+k}?LFrX0nbV=Jn8L_PQBWT zPU#s2<=opQ-+2}fd7K=_Yo@BQI5#O3dITG)+fRhqlqxXl~oR0Q)rPvXj`N_C$HZu1H`AYi^2eb!x>*P(>(tM>-h zyIqFc%d{5e;jZH_h_sKpt7Kj$?J3zl1D?X%gb*V3n=w3iOBUNsks%<)F6`BiV7@U7 zox38r^ZmQ7ch{lz>UAi>m(WNZt};A%fsXX;e=@w(se|J1x`I#N3zB=_wE#kACoyEE zx%h~WA65D^(hQeGJ$H3-lArLV*i7{t;q=*vLAD4y*CM6C%H4RBb2SpjuaeUf<=o?G zseF3Mq}aQWk48JDGpV+4Y?(`J=_oHQG!r{JMw4QH$EZ)S&7<=QpUBdfyF*QO-c)D5 zh#J9&x~X#5Otj_4J$P9IB|k-%?VQ!P*X*ujuS4&CM8jc69rvJG%!iO2o%7Fl<3$`$ zdDch6Vse6fzNoyhjbbAb(?U?`**heaRs-Ps(yB+5UiG+2vpjdrd%DVZm2<6!)p7~M z)k9`<#0640q>ZY8>~N<~Gw%45-d%vZVAuW%1&8lB}vf+fjMt% z#!;{K5>*YL_7qiVwYR8BGgR{KG&_f5oBp`bm?^#{h?CLRaKp#_9s

nnR*USSrNY~mwrnZfZFdlFmqhbpVIJSXu<6j= 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 delta 116610 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 RRsRfVm$NOo2XoBhe*rY;WS9T| diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index 7a5b175..c20f321 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -6,6 +6,8 @@ c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) (__aeabi_idiv0) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o (__aeabi_uldivmod) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) + Src/main.o (__aeabi_d2uiz) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) @@ -20,10 +22,20 @@ c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.20 Src/main.o (__aeabi_d2iz) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) Src/HTS221.o (__aeabi_i2d) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) + Src/main.o (__aeabi_ui2d) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) (__aeabi_dcmpge) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) (__clzsi2) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) (__clzdi2) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) (__eqdf2) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) (__gedf2) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) (__ledf2) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (exit) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) @@ -577,8 +589,6 @@ Discarded input sections .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.FLASH_SetErrorCode - 0x00000000 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text.HAL_FLASH_Program_IT 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text.HAL_FLASH_EndOfOperationCallback @@ -597,19 +607,10 @@ Discarded input sections 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text.HAL_FLASH_GetError 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.FLASH_WaitForLastOperation - 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text.HAL_FLASH_Program 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text.HAL_FLASH_OB_Launch 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_info 0x00000000 0x4ee Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_abbrev 0x00000000 0x1f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_loc 0x00000000 0x223 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_aranges - 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_ranges 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x372 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -675,13 +676,6 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_line 0x00000000 0x9f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_str 0x00000000 0x7a416 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_frame 0x00000000 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - COMMON 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o @@ -782,14 +776,6 @@ Discarded input sections 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .text.HAL_FLASHEx_OB_DeSelectPCROP 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Unlock - 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Lock - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Erase - 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_Program - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .text.HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .text.HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram @@ -800,13 +786,6 @@ Discarded input sections 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .text.HAL_FLASHEx_Erase_IT 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_info 0x00000000 0xb5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_abbrev 0x00000000 0x220 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_loc 0x00000000 0xa12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_aranges - 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o @@ -872,12 +851,6 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_line 0x00000000 0xb05 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_str 0x00000000 0x7a6f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_frame 0x00000000 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o @@ -4693,7 +4666,7 @@ Discarded input sections .debug_macro 0x00000000 0x63 Src/main.o .debug_macro 0x00000000 0xcf Src/main.o .debug_macro 0x00000000 0x22 Src/main.o - .debug_macro 0x00000000 0x160 Src/main.o + .debug_macro 0x00000000 0x15a Src/main.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o @@ -5135,6 +5108,8 @@ Discarded input sections .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) @@ -5150,10 +5125,20 @@ Discarded input sections .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) @@ -5287,7 +5272,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000000 g_pfnVectors 0x080000c0 . = ALIGN (0x4) -.text 0x080000c0 0x62ac +.text 0x080000c0 0x6870 0x080000c0 . = ALIGN (0x4) *(.text) .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o @@ -5300,588 +5285,628 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000234 __aeabi_ldiv0 .text 0x08000238 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) 0x08000238 __aeabi_uldivmod - .text 0x08000278 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x08000278 __udivmoddi4 - .text 0x080003f8 0x658 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - 0x080003f8 __aeabi_dadd - .text 0x08000a50 0x62c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - 0x08000a50 __aeabi_ddiv - .text 0x0800107c 0x4f4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - 0x0800107c __aeabi_dmul - .text 0x08001570 0x6a8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - 0x08001570 __aeabi_dsub - .text 0x08001c18 0x6c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) - 0x08001c18 __aeabi_d2iz - .text 0x08001c84 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - 0x08001c84 __aeabi_i2d - .text 0x08001d08 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - 0x08001d08 __clzsi2 - .text 0x08001d44 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - 0x08001d44 __clzdi2 - .text 0x08001d5c 0xe c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - 0x08001d5c strlen + .text 0x08000278 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) + 0x08000278 __aeabi_d2uiz + 0x08000278 __fixunsdfsi + .text 0x080002b4 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x080002b4 __udivmoddi4 + .text 0x08000434 0x658 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + 0x08000434 __aeabi_dadd + .text 0x08000a8c 0x62c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + 0x08000a8c __aeabi_ddiv + .text 0x080010b8 0x4f4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + 0x080010b8 __aeabi_dmul + .text 0x080015ac 0x6a8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + 0x080015ac __aeabi_dsub + .text 0x08001c54 0x6c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + 0x08001c54 __aeabi_d2iz + .text 0x08001cc0 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x08001cc0 __aeabi_i2d + .text 0x08001d44 0x70 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) + 0x08001d44 __aeabi_ui2d + .text 0x08001db4 0x7c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) + 0x08001db4 __aeabi_cdrcmple + 0x08001dc4 __aeabi_cdcmple + 0x08001dc4 __aeabi_cdcmpeq + 0x08001dd4 __aeabi_dcmpeq + 0x08001de0 __aeabi_dcmplt + 0x08001df4 __aeabi_dcmple + 0x08001e08 __aeabi_dcmpgt + 0x08001e1c __aeabi_dcmpge + .text 0x08001e30 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x08001e30 __clzsi2 + .text 0x08001e6c 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x08001e6c __clzdi2 + .text 0x08001e84 0x80 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) + 0x08001e84 __nedf2 + 0x08001e84 __eqdf2 + .text 0x08001f04 0xc8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) + 0x08001f04 __gedf2 + 0x08001f04 __gtdf2 + .text 0x08001fcc 0xd4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) + 0x08001fcc __ledf2 + 0x08001fcc __ltdf2 + .text 0x080020a0 0xe c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + 0x080020a0 strlen *(.text*) - *fill* 0x08001d6a 0x2 + *fill* 0x080020ae 0x2 .text.HAL_InitTick - 0x08001d6c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001d6c HAL_InitTick + 0x080020b0 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x080020b0 HAL_InitTick .text.HAL_Init - 0x08001d94 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001d94 HAL_Init + 0x080020d8 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x080020d8 HAL_Init .text.HAL_IncTick - 0x08001db4 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001db4 HAL_IncTick + 0x080020f8 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x080020f8 HAL_IncTick .text.HAL_GetTick - 0x08001dc4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001dc4 HAL_GetTick + 0x08002108 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08002108 HAL_GetTick .text.HAL_SuspendTick - 0x08001dd0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001dd0 HAL_SuspendTick + 0x08002114 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08002114 HAL_SuspendTick .text.HAL_ResumeTick - 0x08001de0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001de0 HAL_ResumeTick + 0x08002124 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08002124 HAL_ResumeTick .text.HAL_NVIC_SetPriority - 0x08001df0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001df0 HAL_NVIC_SetPriority + 0x08002134 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08002134 HAL_NVIC_SetPriority .text.HAL_SYSTICK_Config - 0x08001e54 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001e54 HAL_SYSTICK_Config + 0x08002198 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08002198 HAL_SYSTICK_Config .text.HAL_SYSTICK_CLKSourceConfig - 0x08001e8c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001e8c HAL_SYSTICK_CLKSourceConfig + 0x080021d0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x080021d0 HAL_SYSTICK_CLKSourceConfig + .text.FLASH_SetErrorCode + 0x080021f0 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.FLASH_WaitForLastOperation + 0x080022a4 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x080022a4 FLASH_WaitForLastOperation + .text.HAL_FLASHEx_DATAEEPROM_Unlock + 0x08002328 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002328 HAL_FLASHEx_DATAEEPROM_Unlock + .text.HAL_FLASHEx_DATAEEPROM_Lock + 0x08002350 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002350 HAL_FLASHEx_DATAEEPROM_Lock + .text.HAL_FLASHEx_DATAEEPROM_Erase + 0x08002364 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002364 HAL_FLASHEx_DATAEEPROM_Erase + .text.HAL_FLASHEx_DATAEEPROM_Program + 0x0800238c 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x0800238c HAL_FLASHEx_DATAEEPROM_Program .text.HAL_GPIO_Init - 0x08001eac 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08001eac HAL_GPIO_Init + 0x080023f0 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x080023f0 HAL_GPIO_Init .text.HAL_GPIO_WritePin - 0x08002040 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08002040 HAL_GPIO_WritePin + 0x08002584 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08002584 HAL_GPIO_WritePin .text.HAL_GPIO_TogglePin - 0x0800204c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x0800204c HAL_GPIO_TogglePin + 0x08002590 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08002590 HAL_GPIO_TogglePin .text.I2C_Flush_TXDR - 0x08002054 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002598 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_TransferConfig - 0x08002074 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080025b8 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x08002098 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080025dc 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnTXISFlagUntilTimeout - 0x08002110 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002654 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x08002164 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080026a8 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryWrite - 0x080021b0 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080026f4 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x08002234 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002778 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x080022b8 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080027fc 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.HAL_I2C_Init - 0x08002308 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002308 HAL_I2C_Init + 0x0800284c 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x0800284c HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x080023d0 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080023d0 HAL_I2C_Mem_Write + 0x08002914 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002914 HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x08002598 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002598 HAL_I2C_Mem_Read + 0x08002adc 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002adc HAL_I2C_Mem_Read .text.HAL_I2CEx_ConfigAnalogFilter - 0x08002768 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002768 HAL_I2CEx_ConfigAnalogFilter + 0x08002cac 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002cac HAL_I2CEx_ConfigAnalogFilter .text.HAL_I2CEx_ConfigDigitalFilter - 0x080027c0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x080027c0 HAL_I2CEx_ConfigDigitalFilter + 0x08002d04 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002d04 HAL_I2CEx_ConfigDigitalFilter .text.IRDA_SetConfig - 0x08002814 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002d58 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_WaitOnFlagUntilTimeout - 0x080029a8 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002eec 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_CheckIdleState - 0x08002a14 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002f58 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.HAL_IRDA_Init - 0x08002a84 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x08002a84 HAL_IRDA_Init + 0x08002fc8 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002fc8 HAL_IRDA_Init .text.HAL_PWR_EnterSLEEPMode - 0x08002af0 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x08002af0 HAL_PWR_EnterSLEEPMode + 0x08003034 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x08003034 HAL_PWR_EnterSLEEPMode .text.RCC_SetFlashLatencyFromMSIRange - 0x08002b20 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003064 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .text.HAL_RCC_OscConfig - 0x08002ba8 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08002ba8 HAL_RCC_OscConfig + 0x080030ec 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080030ec HAL_RCC_OscConfig .text.HAL_RCC_GetSysClockFreq - 0x08003160 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003160 HAL_RCC_GetSysClockFreq + 0x080036a4 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080036a4 HAL_RCC_GetSysClockFreq .text.HAL_RCC_ClockConfig - 0x080031f4 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080031f4 HAL_RCC_ClockConfig + 0x08003738 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003738 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x080033a8 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080033a8 HAL_RCC_GetHCLKFreq + 0x080038ec 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080038ec HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x080033b4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080033b4 HAL_RCC_GetPCLK1Freq + 0x080038f8 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080038f8 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x080033d4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080033d4 HAL_RCC_GetPCLK2Freq + 0x08003918 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003918 HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x080033f4 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x080033f4 HAL_RCCEx_PeriphCLKConfig + 0x08003938 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x08003938 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCCEx_GetPeriphCLKFreq - 0x080035e0 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x080035e0 HAL_RCCEx_GetPeriphCLKFreq + 0x08003b24 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x08003b24 HAL_RCCEx_GetPeriphCLKFreq .text.HAL_RTC_WaitForSynchro - 0x08003858 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003858 HAL_RTC_WaitForSynchro + 0x08003d9c 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003d9c HAL_RTC_WaitForSynchro .text.RTC_EnterInitMode - 0x0800388c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x0800388c RTC_EnterInitMode + 0x08003dd0 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003dd0 RTC_EnterInitMode .text.HAL_RTC_Init - 0x080038c8 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080038c8 HAL_RTC_Init + 0x08003e0c 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003e0c HAL_RTC_Init .text.RTC_ByteToBcd2 - 0x08003974 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003974 RTC_ByteToBcd2 + 0x08003eb8 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003eb8 RTC_ByteToBcd2 .text.HAL_RTC_SetTime - 0x0800398c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x0800398c HAL_RTC_SetTime + 0x08003ed0 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003ed0 HAL_RTC_SetTime .text.HAL_RTC_SetDate - 0x08003a98 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003a98 HAL_RTC_SetDate + 0x08003fdc 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003fdc HAL_RTC_SetDate .text.RTC_Bcd2ToByte - 0x08003b84 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b84 RTC_Bcd2ToByte + 0x080040c8 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080040c8 RTC_Bcd2ToByte .text.HAL_RTC_GetTime - 0x08003b98 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b98 HAL_RTC_GetTime + 0x080040dc 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x080040dc HAL_RTC_GetTime .text.HAL_RTC_GetDate - 0x08003bf0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003bf0 HAL_RTC_GetDate + 0x08004134 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08004134 HAL_RTC_GetDate .text.HAL_RTCEx_SetWakeUpTimer_IT - 0x08003c38 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003c38 HAL_RTCEx_SetWakeUpTimer_IT + 0x0800417c 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x0800417c HAL_RTCEx_SetWakeUpTimer_IT .text.HAL_RTCEx_WakeUpTimerEventCallback - 0x08003d4c 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003d4c HAL_RTCEx_WakeUpTimerEventCallback + 0x08004290 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004290 HAL_RTCEx_WakeUpTimerEventCallback .text.HAL_RTCEx_WakeUpTimerIRQHandler - 0x08003d50 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003d50 HAL_RTCEx_WakeUpTimerIRQHandler + 0x08004294 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004294 HAL_RTCEx_WakeUpTimerIRQHandler .text.HAL_RTCEx_BKUPWrite - 0x08003d88 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003d88 HAL_RTCEx_BKUPWrite + 0x080042cc 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x080042cc HAL_RTCEx_BKUPWrite .text.HAL_RTCEx_BKUPRead - 0x08003d94 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003d94 HAL_RTCEx_BKUPRead + 0x080042d8 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x080042d8 HAL_RTCEx_BKUPRead .text.UART_SetConfig - 0x08003da0 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08003da0 UART_SetConfig + 0x080042e4 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080042e4 UART_SetConfig .text.UART_AdvFeatureConfig - 0x080040e0 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080040e0 UART_AdvFeatureConfig + 0x08004624 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004624 UART_AdvFeatureConfig .text.UART_WaitOnFlagUntilTimeout - 0x080041c0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080041c0 UART_WaitOnFlagUntilTimeout + 0x08004704 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004704 UART_WaitOnFlagUntilTimeout .text.HAL_UART_Transmit - 0x0800422c 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800422c HAL_UART_Transmit + 0x08004770 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004770 HAL_UART_Transmit .text.UART_CheckIdleState - 0x08004310 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004310 UART_CheckIdleState + 0x08004854 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004854 UART_CheckIdleState .text.HAL_UART_Init - 0x08004380 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004380 HAL_UART_Init + 0x080048c4 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080048c4 HAL_UART_Init .text.makeFreeRtosPriority - 0x080043ec 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004930 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.inHandlerMode - 0x080043f8 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800493c 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osKernelStart - 0x08004404 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004404 osKernelStart + 0x08004948 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004948 osKernelStart .text.osKernelSysTick - 0x08004410 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004410 osKernelSysTick + 0x08004954 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004954 osKernelSysTick .text.osThreadCreate - 0x08004428 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004428 osThreadCreate + 0x0800496c 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800496c osThreadCreate .text.osSystickHandler - 0x0800445c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800445c osSystickHandler + 0x080049a0 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080049a0 osSystickHandler .text.osDelayUntil - 0x0800446c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800446c osDelayUntil + 0x080049b0 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080049b0 osDelayUntil .text.vListInitialise - 0x0800447c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0800447c vListInitialise + 0x080049c0 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080049c0 vListInitialise .text.vListInitialiseItem - 0x08004494 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004494 vListInitialiseItem + 0x080049d8 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080049d8 vListInitialiseItem .text.vListInsertEnd - 0x0800449c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0800449c vListInsertEnd + 0x080049e0 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080049e0 vListInsertEnd .text.vListInsert - 0x080044b4 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080044b4 vListInsert + 0x080049f8 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080049f8 vListInsert .text.uxListRemove - 0x080044e4 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080044e4 uxListRemove + 0x08004a28 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004a28 uxListRemove .text.prvIsQueueFull - 0x08004508 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a4c 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x08004528 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a6c 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataToQueue - 0x08004544 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a88 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvNotifyQueueSetContainer - 0x080045c8 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004b0c 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x0800462c 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004b70 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x08004650 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004b94 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericReset - 0x080046d8 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x080046d8 xQueueGenericReset + 0x08004c1c 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004c1c xQueueGenericReset .text.prvInitialiseNewQueue - 0x08004744 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004c88 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericCreate - 0x0800476c 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0800476c xQueueGenericCreate + 0x08004cb0 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004cb0 xQueueGenericCreate .text.xQueueGenericSend - 0x080047ac 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x080047ac xQueueGenericSend + 0x08004cf0 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004cf0 xQueueGenericSend .text.xQueueGenericReceive - 0x0800490c 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0800490c xQueueGenericReceive + 0x08004e50 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004e50 xQueueGenericReceive .text.prvResetNextTaskUnblockTime - 0x08004a8c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004fd0 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x08004abc 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseNewTask - 0x08004ad0 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005014 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x08004b6c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080050b0 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x08004bc4 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005108 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddCurrentTaskToDelayedList - 0x08004c58 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800519c 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskCreate - 0x08004cc4 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004cc4 xTaskCreate + 0x08005208 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005208 xTaskCreate .text.vTaskStartScheduler - 0x08004d24 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004d24 vTaskStartScheduler + 0x08005268 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005268 vTaskStartScheduler .text.vTaskSuspendAll - 0x08004d78 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004d78 vTaskSuspendAll + 0x080052bc 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080052bc vTaskSuspendAll .text.xTaskGetTickCount - 0x08004d88 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004d88 xTaskGetTickCount + 0x080052cc 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080052cc xTaskGetTickCount .text.xTaskGetTickCountFromISR - 0x08004d94 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004d94 xTaskGetTickCountFromISR + 0x080052d8 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080052d8 xTaskGetTickCountFromISR .text.xTaskIncrementTick - 0x08004da0 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004da0 xTaskIncrementTick + 0x080052e4 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080052e4 xTaskIncrementTick .text.xTaskResumeAll - 0x08004ea4 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004ea4 xTaskResumeAll + 0x080053e8 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080053e8 xTaskResumeAll .text.vTaskDelayUntil - 0x08004f78 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004f78 vTaskDelayUntil + 0x080054bc 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080054bc vTaskDelayUntil .text.prvCheckTasksWaitingTermination - 0x08004ff0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005534 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvIdleTask - 0x08005040 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005584 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskSwitchContext - 0x08005058 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005058 vTaskSwitchContext + 0x0800559c 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800559c vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x080050dc 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080050dc vTaskPlaceOnEventList + 0x08005620 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005620 vTaskPlaceOnEventList .text.xTaskRemoveFromEventList - 0x08005100 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005100 xTaskRemoveFromEventList + 0x08005644 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005644 xTaskRemoveFromEventList .text.vTaskSetTimeOutState - 0x08005178 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005178 vTaskSetTimeOutState + 0x080056bc 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080056bc vTaskSetTimeOutState .text.xTaskCheckForTimeOut - 0x08005190 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005190 xTaskCheckForTimeOut + 0x080056d4 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080056d4 xTaskCheckForTimeOut .text.vTaskMissedYield - 0x080051f4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080051f4 vTaskMissedYield + 0x08005738 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005738 vTaskMissedYield .text.xTaskGetSchedulerState - 0x08005200 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005200 xTaskGetSchedulerState + 0x08005744 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005744 xTaskGetSchedulerState .text.vTaskPriorityInherit - 0x08005220 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005220 vTaskPriorityInherit + 0x08005764 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005764 vTaskPriorityInherit .text.xTaskPriorityDisinherit - 0x080052a0 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080052a0 xTaskPriorityDisinherit + 0x080057e4 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080057e4 xTaskPriorityDisinherit .text.pvTaskIncrementMutexHeldCount - 0x08005314 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005314 pvTaskIncrementMutexHeldCount + 0x08005858 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005858 pvTaskIncrementMutexHeldCount .text.prvTaskExitError - 0x08005330 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - *fill* 0x08005344 0xc + 0x08005874 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x08005888 0x8 .text.vPortStartFirstTask - 0x08005350 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005890 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text.pxPortInitialiseStack - 0x08005384 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005384 pxPortInitialiseStack + 0x080058c4 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080058c4 pxPortInitialiseStack .text.SVC_Handler - 0x080053a4 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080053a4 SVC_Handler + 0x080058e4 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080058e4 SVC_Handler .text.vPortYield - 0x080053a8 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080053a8 vPortYield + 0x080058e8 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080058e8 vPortYield .text.vPortEnterCritical - 0x080053c0 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080053c0 vPortEnterCritical + 0x08005900 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005900 vPortEnterCritical .text.vPortExitCritical - 0x080053d8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080053d8 vPortExitCritical + 0x08005918 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005918 vPortExitCritical .text.ulSetInterruptMaskFromISR - 0x080053f8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080053f8 ulSetInterruptMaskFromISR + 0x08005938 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005938 ulSetInterruptMaskFromISR .text.vClearInterruptMaskFromISR - 0x08005404 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005404 vClearInterruptMaskFromISR - *fill* 0x0800540c 0x4 + 0x08005944 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005944 vClearInterruptMaskFromISR + *fill* 0x0800594c 0x4 .text.PendSV_Handler - 0x08005410 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005410 PendSV_Handler + 0x08005950 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005950 PendSV_Handler .text.xPortSysTickHandler - 0x08005454 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005454 xPortSysTickHandler + 0x08005994 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005994 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x08005478 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005478 vPortSetupTimerInterrupt + 0x080059b8 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080059b8 vPortSetupTimerInterrupt .text.xPortStartScheduler - 0x080054a0 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080054a0 xPortStartScheduler + 0x080059e0 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080059e0 xPortStartScheduler .text.prvHeapInit - 0x080054d4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005a14 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x08005524 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005a64 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.pvPortMalloc - 0x08005574 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005574 pvPortMalloc + 0x08005ab4 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005ab4 pvPortMalloc .text.vPortFree - 0x08005638 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005638 vPortFree + 0x08005b78 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005b78 vPortFree .text.HTS221_I2C_Read - 0x08005690 0x24 Src/HTS221.o + 0x08005bd0 0x24 Src/HTS221.o .text.HTS221_I2C_Read_return - 0x080056b4 0x1c Src/HTS221.o + 0x08005bf4 0x1c Src/HTS221.o .text.HTS221_CheckAvailable - 0x080056d0 0x14 Src/HTS221.o + 0x08005c10 0x14 Src/HTS221.o .text.HTS221_GetCoefficient - 0x080056e4 0xa4 Src/HTS221.o + 0x08005c24 0xa4 Src/HTS221.o .text.HTS221_EnableDevice - 0x08005788 0x2c Src/HTS221.o + 0x08005cc8 0x2c Src/HTS221.o .text.HTS221_I2C_Write - 0x080057b4 0x24 Src/HTS221.o + 0x08005cf4 0x24 Src/HTS221.o .text.HTS221_ConfigDevice - 0x080057d8 0x38 Src/HTS221.o - 0x080057d8 HTS221_ConfigDevice + 0x08005d18 0x38 Src/HTS221.o + 0x08005d18 HTS221_ConfigDevice .text.HTS221_Init - 0x08005810 0x28 Src/HTS221.o - 0x08005810 HTS221_Init + 0x08005d50 0x28 Src/HTS221.o + 0x08005d50 HTS221_Init .text.HTS221_GetHumidity - 0x08005838 0x9c Src/HTS221.o - 0x08005838 HTS221_GetHumidity + 0x08005d78 0x9c Src/HTS221.o + 0x08005d78 HTS221_GetHumidity .text.HTS221_GetTemperature - 0x080058d4 0x9c Src/HTS221.o - 0x080058d4 HTS221_GetTemperature + 0x08005e14 0x9c Src/HTS221.o + 0x08005e14 HTS221_GetTemperature .text.MX_GPIO_Init - 0x08005970 0x8c Src/main.o + 0x08005eb0 0x8c Src/main.o .text.func_NVM_Manager - 0x080059fc 0x88 Src/main.o - 0x080059fc func_NVM_Manager + 0x08005f3c 0x10c Src/main.o + 0x08005f3c func_NVM_Manager .text.func_LEDBlink - 0x08005a84 0x34 Src/main.o - 0x08005a84 func_LEDBlink + 0x08006048 0x34 Src/main.o + 0x08006048 func_LEDBlink .text.func_UartPrint - 0x08005ab8 0x1e8 Src/main.o - 0x08005ab8 func_UartPrint + 0x0800607c 0x1e8 Src/main.o + 0x0800607c func_UartPrint .text.func_SensorRead - 0x08005ca0 0x80 Src/main.o - 0x08005ca0 func_SensorRead + 0x08006264 0x80 Src/main.o + 0x08006264 func_SensorRead .text.Error_Handler - 0x08005d20 0x4 Src/main.o - 0x08005d20 Error_Handler + 0x080062e4 0x4 Src/main.o + 0x080062e4 Error_Handler .text.MX_RTC_Init - 0x08005d24 0x90 Src/main.o + 0x080062e8 0x90 Src/main.o .text.MX_USART2_UART_Init - 0x08005db4 0x38 Src/main.o + 0x08006378 0x38 Src/main.o .text.MX_USART1_IRDA_Init - 0x08005dec 0x38 Src/main.o + 0x080063b0 0x38 Src/main.o .text.MX_I2C1_Init - 0x08005e24 0x58 Src/main.o + 0x080063e8 0x58 Src/main.o .text.SystemClock_Config - 0x08005e7c 0xa4 Src/main.o - 0x08005e7c SystemClock_Config - .text.main 0x08005f20 0xf0 Src/main.o - 0x08005f20 main + 0x08006440 0xa4 Src/main.o + 0x08006440 SystemClock_Config + .text.main 0x080064e4 0xf0 Src/main.o + 0x080064e4 main .text.HAL_MspInit - 0x08006010 0x40 Src/stm32l0xx_hal_msp.o - 0x08006010 HAL_MspInit + 0x080065d4 0x40 Src/stm32l0xx_hal_msp.o + 0x080065d4 HAL_MspInit .text.HAL_I2C_MspInit - 0x08006050 0x48 Src/stm32l0xx_hal_msp.o - 0x08006050 HAL_I2C_MspInit + 0x08006614 0x48 Src/stm32l0xx_hal_msp.o + 0x08006614 HAL_I2C_MspInit .text.HAL_RTC_MspInit - 0x08006098 0x20 Src/stm32l0xx_hal_msp.o - 0x08006098 HAL_RTC_MspInit + 0x0800665c 0x20 Src/stm32l0xx_hal_msp.o + 0x0800665c HAL_RTC_MspInit .text.HAL_IRDA_MspInit - 0x080060b8 0x44 Src/stm32l0xx_hal_msp.o - 0x080060b8 HAL_IRDA_MspInit + 0x0800667c 0x44 Src/stm32l0xx_hal_msp.o + 0x0800667c HAL_IRDA_MspInit .text.HAL_UART_MspInit - 0x080060fc 0x44 Src/stm32l0xx_hal_msp.o - 0x080060fc HAL_UART_MspInit + 0x080066c0 0x44 Src/stm32l0xx_hal_msp.o + 0x080066c0 HAL_UART_MspInit .text.SysTick_Handler - 0x08006140 0xc Src/stm32l0xx_it.o - 0x08006140 SysTick_Handler + 0x08006704 0xc Src/stm32l0xx_it.o + 0x08006704 SysTick_Handler .text.RTC_IRQHandler - 0x0800614c 0x24 Src/stm32l0xx_it.o - 0x0800614c RTC_IRQHandler + 0x08006710 0x24 Src/stm32l0xx_it.o + 0x08006710 RTC_IRQHandler .text.SystemInit - 0x08006170 0x5c Src/system_stm32l0xx.o - 0x08006170 SystemInit + 0x08006734 0x5c Src/system_stm32l0xx.o + 0x08006734 SystemInit .text.Reset_Handler - 0x080061cc 0x50 startup/startup_stm32l053xx.o - 0x080061cc Reset_Handler + 0x08006790 0x50 startup/startup_stm32l053xx.o + 0x08006790 Reset_Handler .text.Default_Handler - 0x0800621c 0x2 startup/startup_stm32l053xx.o - 0x0800621c TSC_IRQHandler - 0x0800621c HardFault_Handler - 0x0800621c ADC1_COMP_IRQHandler - 0x0800621c PVD_IRQHandler - 0x0800621c NMI_Handler - 0x0800621c I2C1_IRQHandler - 0x0800621c RCC_CRS_IRQHandler - 0x0800621c SPI1_IRQHandler - 0x0800621c TIM6_DAC_IRQHandler - 0x0800621c EXTI2_3_IRQHandler - 0x0800621c I2C2_IRQHandler - 0x0800621c LCD_IRQHandler - 0x0800621c DMA1_Channel4_5_6_7_IRQHandler - 0x0800621c EXTI4_15_IRQHandler - 0x0800621c DMA1_Channel1_IRQHandler - 0x0800621c Default_Handler - 0x0800621c TIM22_IRQHandler - 0x0800621c EXTI0_1_IRQHandler - 0x0800621c USB_IRQHandler - 0x0800621c SPI2_IRQHandler - 0x0800621c TIM21_IRQHandler - 0x0800621c WWDG_IRQHandler - 0x0800621c TIM2_IRQHandler - 0x0800621c DMA1_Channel2_3_IRQHandler - 0x0800621c USART2_IRQHandler - 0x0800621c FLASH_IRQHandler - 0x0800621c USART1_IRQHandler - 0x0800621c RNG_LPUART1_IRQHandler - 0x0800621c LPTIM1_IRQHandler - *fill* 0x0800621e 0x2 + 0x080067e0 0x2 startup/startup_stm32l053xx.o + 0x080067e0 TSC_IRQHandler + 0x080067e0 HardFault_Handler + 0x080067e0 ADC1_COMP_IRQHandler + 0x080067e0 PVD_IRQHandler + 0x080067e0 NMI_Handler + 0x080067e0 I2C1_IRQHandler + 0x080067e0 RCC_CRS_IRQHandler + 0x080067e0 SPI1_IRQHandler + 0x080067e0 TIM6_DAC_IRQHandler + 0x080067e0 EXTI2_3_IRQHandler + 0x080067e0 I2C2_IRQHandler + 0x080067e0 LCD_IRQHandler + 0x080067e0 DMA1_Channel4_5_6_7_IRQHandler + 0x080067e0 EXTI4_15_IRQHandler + 0x080067e0 DMA1_Channel1_IRQHandler + 0x080067e0 Default_Handler + 0x080067e0 TIM22_IRQHandler + 0x080067e0 EXTI0_1_IRQHandler + 0x080067e0 USB_IRQHandler + 0x080067e0 SPI2_IRQHandler + 0x080067e0 TIM21_IRQHandler + 0x080067e0 WWDG_IRQHandler + 0x080067e0 TIM2_IRQHandler + 0x080067e0 DMA1_Channel2_3_IRQHandler + 0x080067e0 USART2_IRQHandler + 0x080067e0 FLASH_IRQHandler + 0x080067e0 USART1_IRQHandler + 0x080067e0 RNG_LPUART1_IRQHandler + 0x080067e0 LPTIM1_IRQHandler + *fill* 0x080067e2 0x2 .text.__libc_init_array - 0x08006220 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - 0x08006220 __libc_init_array - .text.__itoa 0x0800626c 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x0800626c __itoa - .text.itoa 0x0800629a 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x0800629a itoa - .text.memcpy 0x080062a2 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - 0x080062a2 memcpy - .text.memset 0x080062b4 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - 0x080062b4 memset - .text.strcat 0x080062c4 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - 0x080062c4 strcat - *fill* 0x080062de 0x2 - .text.__utoa 0x080062e0 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x080062e0 __utoa + 0x080067e4 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x080067e4 __libc_init_array + .text.__itoa 0x08006830 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x08006830 __itoa + .text.itoa 0x0800685e 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x0800685e itoa + .text.memcpy 0x08006866 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x08006866 memcpy + .text.memset 0x08006878 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x08006878 memset + .text.strcat 0x08006888 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + 0x08006888 strcat + *fill* 0x080068a2 0x2 + .text.__utoa 0x080068a4 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x080068a4 __utoa *(.glue_7) - .glue_7 0x08006354 0x0 linker stubs + .glue_7 0x08006918 0x0 linker stubs *(.glue_7t) - .glue_7t 0x08006354 0x0 linker stubs + .glue_7t 0x08006918 0x0 linker stubs *(.eh_frame) - .eh_frame 0x08006354 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .eh_frame 0x08006918 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o *(.init) - .init 0x08006354 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006354 _init - .init 0x08006358 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .init 0x08006918 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006918 _init + .init 0x0800691c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o *(.fini) - .fini 0x08006360 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006360 _fini - .fini 0x08006364 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x0800636c . = ALIGN (0x4) - 0x0800636c _etext = . + .fini 0x08006924 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006924 _fini + .fini 0x08006928 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x08006930 . = ALIGN (0x4) + 0x08006930 _etext = . -.vfp11_veneer 0x0800636c 0x0 - .vfp11_veneer 0x0800636c 0x0 linker stubs +.vfp11_veneer 0x08006930 0x0 + .vfp11_veneer 0x08006930 0x0 linker stubs -.v4_bx 0x0800636c 0x0 - .v4_bx 0x0800636c 0x0 linker stubs +.v4_bx 0x08006930 0x0 + .v4_bx 0x08006930 0x0 linker stubs -.iplt 0x0800636c 0x0 - .iplt 0x0800636c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.iplt 0x08006930 0x0 + .iplt 0x08006930 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.rodata 0x0800636c 0x22c - 0x0800636c . = ALIGN (0x4) +.rodata 0x08006930 0x22c + 0x08006930 . = ALIGN (0x4) *(.rodata) - .rodata 0x0800636c 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .rodata 0x08006390 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .rodata 0x080063d8 0x50 Src/main.o - .rodata 0x08006428 0x24 Src/system_stm32l0xx.o - 0x08006428 PLLMulTable - 0x08006434 AHBPrescTable - 0x08006444 APBPrescTable - .rodata 0x0800644c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .rodata 0x0800648c 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .rodata 0x08006930 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x08006954 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x0800699c 0x50 Src/main.o + .rodata 0x080069ec 0x24 Src/system_stm32l0xx.o + 0x080069ec PLLMulTable + 0x080069f8 AHBPrescTable + 0x08006a08 APBPrescTable + .rodata 0x08006a10 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .rodata 0x08006a50 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) *(.rodata*) .rodata.str1.4 - 0x080064cc 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x080064d1 0x3 + 0x08006a90 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x08006a95 0x3 .rodata.str1.4 - 0x080064d4 0x8e Src/main.o + 0x08006a98 0x8e Src/main.o 0x92 (size before relaxing) - *fill* 0x08006562 0x2 + *fill* 0x08006b26 0x2 .rodata.str1.4 - 0x08006564 0xc Src/stm32l0xx_it.o + 0x08006b28 0xc Src/stm32l0xx_it.o 0xa (size before relaxing) .rodata.str1.1 - 0x08006570 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x08006598 . = ALIGN (0x4) - *fill* 0x08006595 0x3 + 0x08006b34 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x08006b5c . = ALIGN (0x4) + *fill* 0x08006b59 0x3 .ARM.extab *(.ARM.extab* .gnu.linkonce.armextab.*) -.ARM 0x08006598 0x8 - 0x08006598 __exidx_start = . +.ARM 0x08006b5c 0x8 + 0x08006b5c __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x08006598 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x080065a0 __exidx_end = . + .ARM.exidx 0x08006b5c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x08006b64 __exidx_end = . -.rel.dyn 0x080065a0 0x0 - .rel.iplt 0x080065a0 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.rel.dyn 0x08006b64 0x0 + .rel.iplt 0x08006b64 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.preinit_array 0x080065a0 0x0 - 0x080065a0 PROVIDE (__preinit_array_start, .) +.preinit_array 0x08006b64 0x0 + 0x08006b64 PROVIDE (__preinit_array_start, .) *(.preinit_array*) - 0x080065a0 PROVIDE (__preinit_array_end, .) + 0x08006b64 PROVIDE (__preinit_array_end, .) -.init_array 0x080065a0 0x4 - 0x080065a0 PROVIDE (__init_array_start, .) +.init_array 0x08006b64 0x4 + 0x08006b64 PROVIDE (__init_array_start, .) *(SORT(.init_array.*)) *(.init_array*) - .init_array 0x080065a0 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x080065a4 PROVIDE (__init_array_end, .) + .init_array 0x08006b64 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x08006b68 PROVIDE (__init_array_end, .) -.fini_array 0x080065a4 0x4 +.fini_array 0x08006b68 0x4 [!provide] PROVIDE (__fini_array_start, .) *(SORT(.fini_array.*)) *(.fini_array*) - .fini_array 0x080065a4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .fini_array 0x08006b68 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o [!provide] PROVIDE (__fini_array_end, .) - 0x080065a8 _sidata = LOADADDR (.data) + 0x08006b6c _sidata = LOADADDR (.data) -.data 0x20000000 0x8 load address 0x080065a8 +.data 0x20000000 0x8 load address 0x08006b6c 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -5892,14 +5917,14 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000008 . = ALIGN (0x4) 0x20000008 _edata = . -.jcr 0x20000008 0x0 load address 0x080065b0 +.jcr 0x20000008 0x0 load address 0x08006b74 .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.igot.plt 0x20000008 0x0 load address 0x080065b0 +.igot.plt 0x20000008 0x0 load address 0x08006b74 .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o 0x20000008 . = ALIGN (0x4) -.bss 0x20000008 0xec0 load address 0x080065b0 +.bss 0x20000008 0xed8 load address 0x08006b74 0x20000008 _sbss = . 0x20000008 __bss_start__ = _sbss *(.bss) @@ -5914,38 +5939,40 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 *fill* 0x20000d69 0x3 COMMON 0x20000d6c 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x20000d6c uwTick - COMMON 0x20000d70 0x14 Src/HTS221.o - 0x20000d70 HTS221_CoefStruc - 0x20000d80 HTS221_I2CHander - COMMON 0x20000d84 0x144 Src/main.o - 0x20000d84 hirda1 - 0x20000dc0 Task_ErrorCheck - 0x20000dc4 Task_UartSend - 0x20000dc8 Queue_number - 0x20000dcc hi2c1 - 0x20000e18 Queue_SendTo_Uart - 0x20000e1c Queue_SendTo_TaskNVM - 0x20000e20 thread1_counter - 0x20000e24 NVM_QueueSet - 0x20000e28 hrtc - 0x20000e4c huart2 - 0x20000ebc Task_SensorRead - 0x20000ec0 Task_NVM_ReadWrite - 0x20000ec4 Task_HearBeatLED - 0x20000ec8 . = ALIGN (0x4) - 0x20000ec8 _ebss = . - 0x20000ec8 __bss_end__ = _ebss + COMMON 0x20000d70 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x20000d70 pFlash + COMMON 0x20000d88 0x14 Src/HTS221.o + 0x20000d88 HTS221_CoefStruc + 0x20000d98 HTS221_I2CHander + COMMON 0x20000d9c 0x144 Src/main.o + 0x20000d9c hirda1 + 0x20000dd8 Task_ErrorCheck + 0x20000ddc Task_UartSend + 0x20000de0 Queue_number + 0x20000de4 hi2c1 + 0x20000e30 Queue_SendTo_Uart + 0x20000e34 Queue_SendTo_TaskNVM + 0x20000e38 thread1_counter + 0x20000e3c NVM_QueueSet + 0x20000e40 hrtc + 0x20000e64 huart2 + 0x20000ed4 Task_SensorRead + 0x20000ed8 Task_NVM_ReadWrite + 0x20000edc Task_HearBeatLED + 0x20000ee0 . = ALIGN (0x4) + 0x20000ee0 _ebss = . + 0x20000ee0 __bss_end__ = _ebss ._user_heap_stack - 0x20000ec8 0x600 load address 0x080065b0 - 0x20000ec8 . = ALIGN (0x8) + 0x20000ee0 0x600 load address 0x08006b74 + 0x20000ee0 . = ALIGN (0x8) [!provide] PROVIDE (end, .) [!provide] PROVIDE (_end, .) - 0x200010c8 . = (. + _Min_Heap_Size) - *fill* 0x20000ec8 0x200 - 0x200014c8 . = (. + _Min_Stack_Size) - *fill* 0x200010c8 0x400 - 0x200014c8 . = ALIGN (0x8) + 0x200010e0 . = (. + _Min_Heap_Size) + *fill* 0x20000ee0 0x200 + 0x200014e0 . = (. + _Min_Stack_Size) + *fill* 0x200010e0 0x400 + 0x200014e0 . = ALIGN (0x8) /DISCARD/ libc.a(*) @@ -5964,244 +5991,272 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .ARM.attributes 0x0000007c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .ARM.attributes - 0x000000ae 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x000000ae 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .ARM.attributes + 0x000000e0 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .ARM.attributes + 0x00000112 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .ARM.attributes + 0x00000144 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .ARM.attributes - 0x000000e0 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x00000176 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .ARM.attributes - 0x00000112 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x000001a8 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .ARM.attributes - 0x00000144 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x000001da 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .ARM.attributes - 0x00000176 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x0000020c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .ARM.attributes - 0x000001a8 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x0000023e 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .ARM.attributes - 0x000001da 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x00000270 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .ARM.attributes - 0x0000020c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x000002a2 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .ARM.attributes - 0x0000023e 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x000002d4 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .ARM.attributes - 0x00000270 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x00000306 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .ARM.attributes - 0x000002a2 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o .ARM.attributes - 0x000002d4 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o .ARM.attributes - 0x00000306 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000039c 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .ARM.attributes - 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000003ce 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .ARM.attributes - 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x00000400 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .ARM.attributes - 0x0000039c 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x00000432 0x32 Src/HTS221.o .ARM.attributes - 0x000003ce 0x32 Src/HTS221.o + 0x00000464 0x32 Src/main.o .ARM.attributes - 0x00000400 0x32 Src/main.o + 0x00000496 0x32 Src/stm32l0xx_hal_msp.o .ARM.attributes - 0x00000432 0x32 Src/stm32l0xx_hal_msp.o + 0x000004c8 0x32 Src/stm32l0xx_it.o .ARM.attributes - 0x00000464 0x32 Src/stm32l0xx_it.o + 0x000004fa 0x32 Src/system_stm32l0xx.o .ARM.attributes - 0x00000496 0x32 Src/system_stm32l0xx.o + 0x0000052c 0x22 startup/startup_stm32l053xx.o .ARM.attributes - 0x000004c8 0x22 startup/startup_stm32l053xx.o + 0x0000054e 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) .ARM.attributes - 0x000004ea 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + 0x0000056c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) .ARM.attributes - 0x00000508 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + 0x0000058a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) .ARM.attributes - 0x00000526 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + 0x000005a8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) .ARM.attributes - 0x00000544 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x000005d4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .ARM.attributes - 0x00000570 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + 0x00000600 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) .ARM.attributes - 0x0000059c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + 0x0000062c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) .ARM.attributes - 0x000005c8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + 0x00000658 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) .ARM.attributes - 0x000005f4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + 0x00000684 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) .ARM.attributes - 0x00000620 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + 0x000006b0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) .ARM.attributes - 0x0000064c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x000006dc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .ARM.attributes - 0x00000678 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x00000708 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) .ARM.attributes - 0x00000696 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x00000734 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) .ARM.attributes - 0x000006b4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x00000752 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .ARM.attributes - 0x000006e0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x00000770 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) .ARM.attributes - 0x0000070c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x0000078e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) .ARM.attributes - 0x00000738 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x000007ba 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) .ARM.attributes - 0x00000764 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + 0x000007e6 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) .ARM.attributes - 0x00000790 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + 0x00000812 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) .ARM.attributes - 0x000007ac 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x0000083e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) .ARM.attributes - 0x000007d8 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x0000086a 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .ARM.attributes + 0x00000896 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .ARM.attributes + 0x000008c2 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .ARM.attributes + 0x000008ee 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + .ARM.attributes + 0x0000090a 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .ARM.attributes + 0x00000936 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o OUTPUT(RTOS_IOT.elf elf32-littlearm) -.debug_info 0x00000000 0x15e9f +.debug_info 0x00000000 0x16f72 .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_info 0x00000fea 0x647 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_info 0x00001631 0x310e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_info 0x0000473f 0x83e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_info 0x00004f7d 0x150c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_info 0x00006489 0x5ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_info 0x00006a75 0xb74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_info 0x000075e9 0x8cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_info 0x00007eb4 0xd08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_info 0x00008bbc 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_info 0x00009adb 0x1990 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_info 0x0000b46b 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_info 0x0000cf7a 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_info 0x0000d21f 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_info 0x0000e8ec 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_info 0x00010a83 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_info 0x00010d33 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_info 0x00011098 0xb37 Src/HTS221.o - .debug_info 0x00011bcf 0x24fe Src/main.o - .debug_info 0x000140cd 0x117a Src/stm32l0xx_hal_msp.o - .debug_info 0x00015247 0x86a Src/stm32l0xx_it.o - .debug_info 0x00015ab1 0x37b Src/system_stm32l0xx.o - .debug_info 0x00015e2c 0x73 startup/startup_stm32l053xx.o + .debug_info 0x00000fea 0x4ee Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_info 0x000014d8 0xb5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_info 0x00002033 0x647 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_info 0x0000267a 0x310e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_info 0x00005788 0x83e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_info 0x00005fc6 0x150c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_info 0x000074d2 0x5ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_info 0x00007abe 0xb74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_info 0x00008632 0x8cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_info 0x00008efd 0xd08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_info 0x00009c05 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_info 0x0000ab24 0x1990 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_info 0x0000c4b4 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_info 0x0000dfc3 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_info 0x0000e268 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_info 0x0000f935 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_info 0x00011acc 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_info 0x00011d7c 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_info 0x000120e1 0xb37 Src/HTS221.o + .debug_info 0x00012c18 0x2588 Src/main.o + .debug_info 0x000151a0 0x117a Src/stm32l0xx_hal_msp.o + .debug_info 0x0001631a 0x86a Src/stm32l0xx_it.o + .debug_info 0x00016b84 0x37b Src/system_stm32l0xx.o + .debug_info 0x00016eff 0x73 startup/startup_stm32l053xx.o -.debug_abbrev 0x00000000 0x2bf5 +.debug_abbrev 0x00000000 0x300b .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_abbrev 0x0000046d 0x1cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_abbrev 0x00000638 0x213 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_abbrev 0x0000084b 0x192 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_abbrev 0x000009dd 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_abbrev 0x00000c05 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_abbrev 0x00000d95 0x242 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_abbrev 0x00000fd7 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_abbrev 0x000011c3 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_abbrev 0x0000135f 0x1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_abbrev 0x0000150a 0x24a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_abbrev 0x00001754 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_abbrev 0x00001a29 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_abbrev 0x00001b08 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_abbrev 0x00001d0a 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_abbrev 0x00001f7a 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_abbrev 0x00002149 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_abbrev 0x00002306 0x207 Src/HTS221.o - .debug_abbrev 0x0000250d 0x30d Src/main.o - .debug_abbrev 0x0000281a 0x18d Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x000029a7 0x149 Src/stm32l0xx_it.o - .debug_abbrev 0x00002af0 0xf3 Src/system_stm32l0xx.o - .debug_abbrev 0x00002be3 0x12 startup/startup_stm32l053xx.o + .debug_abbrev 0x0000046d 0x1f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_abbrev 0x00000663 0x220 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_abbrev 0x00000883 0x1cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_abbrev 0x00000a4e 0x213 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_abbrev 0x00000c61 0x192 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_abbrev 0x00000df3 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_abbrev 0x0000101b 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_abbrev 0x000011ab 0x242 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_abbrev 0x000013ed 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_abbrev 0x000015d9 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_abbrev 0x00001775 0x1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_abbrev 0x00001920 0x24a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_abbrev 0x00001b6a 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_abbrev 0x00001e3f 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_abbrev 0x00001f1e 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_abbrev 0x00002120 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_abbrev 0x00002390 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_abbrev 0x0000255f 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_abbrev 0x0000271c 0x207 Src/HTS221.o + .debug_abbrev 0x00002923 0x30d Src/main.o + .debug_abbrev 0x00002c30 0x18d Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x00002dbd 0x149 Src/stm32l0xx_it.o + .debug_abbrev 0x00002f06 0xf3 Src/system_stm32l0xx.o + .debug_abbrev 0x00002ff9 0x12 startup/startup_stm32l053xx.o -.debug_loc 0x00000000 0xdcba +.debug_loc 0x00000000 0xe991 .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_loc 0x00000447 0x284 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_loc 0x000006cb 0x331a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_loc 0x000039e5 0x245 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_loc 0x00003c2a 0x10fc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_loc 0x00004d26 0xf6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_loc 0x00004e1c 0x6a7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_loc 0x000054c3 0x9a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_loc 0x00005e65 0xc10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_loc 0x00006a75 0xf1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_loc 0x00007991 0x176e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_loc 0x000090ff 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_loc 0x0000a111 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_loc 0x0000a176 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_loc 0x0000b99e 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_loc 0x0000d293 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_loc 0x0000d339 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_loc 0x0000d57d 0x3b0 Src/HTS221.o - .debug_loc 0x0000d92d 0x162 Src/main.o - .debug_loc 0x0000da8f 0xc6 Src/stm32l0xx_hal_msp.o - .debug_loc 0x0000db55 0x165 Src/system_stm32l0xx.o + .debug_loc 0x00000447 0x223 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_loc 0x0000066a 0xa12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_loc 0x0000107c 0x284 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_loc 0x00001300 0x331a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_loc 0x0000461a 0x245 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_loc 0x0000485f 0x10fc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_loc 0x0000595b 0xf6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_loc 0x00005a51 0x6a7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_loc 0x000060f8 0x9a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_loc 0x00006a9a 0xc10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_loc 0x000076aa 0xf1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_loc 0x000085c6 0x176e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_loc 0x00009d34 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_loc 0x0000ad46 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_loc 0x0000adab 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_loc 0x0000c5d3 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_loc 0x0000dec8 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_loc 0x0000df6e 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_loc 0x0000e1b2 0x3b0 Src/HTS221.o + .debug_loc 0x0000e562 0x204 Src/main.o + .debug_loc 0x0000e766 0xc6 Src/stm32l0xx_hal_msp.o + .debug_loc 0x0000e82c 0x165 Src/system_stm32l0xx.o -.debug_aranges 0x00000000 0x1338 +.debug_aranges 0x00000000 0x1498 .debug_aranges 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_aranges 0x000000e0 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_aranges - 0x00000160 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x00000160 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_aranges + 0x000001e0 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_aranges + 0x000002c0 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .debug_aranges - 0x000001b8 0x260 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x00000318 0x260 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .debug_aranges - 0x00000418 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x00000578 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o .debug_aranges - 0x00000460 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x000005c0 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .debug_aranges - 0x000005f8 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x00000758 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o .debug_aranges - 0x00000698 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x000007f8 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .debug_aranges - 0x00000720 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x00000880 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o .debug_aranges - 0x000007d0 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x00000930 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_aranges - 0x00000888 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x000009e8 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_aranges - 0x000009a8 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x00000b08 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_aranges - 0x00000b90 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x00000cf0 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_aranges - 0x00000d68 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x00000ec8 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_aranges - 0x00000da8 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000f08 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_aranges - 0x00000ed0 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00001030 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .debug_aranges - 0x000010a0 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x00001200 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_aranges - 0x00001128 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x00001288 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_aranges - 0x00001178 0x68 Src/HTS221.o + 0x000012d8 0x68 Src/HTS221.o .debug_aranges - 0x000011e0 0x80 Src/main.o + 0x00001340 0x80 Src/main.o .debug_aranges - 0x00001260 0x60 Src/stm32l0xx_hal_msp.o + 0x000013c0 0x60 Src/stm32l0xx_hal_msp.o .debug_aranges - 0x000012c0 0x28 Src/stm32l0xx_it.o + 0x00001420 0x28 Src/stm32l0xx_it.o .debug_aranges - 0x000012e8 0x28 Src/system_stm32l0xx.o + 0x00001448 0x28 Src/system_stm32l0xx.o .debug_aranges - 0x00001310 0x28 startup/startup_stm32l053xx.o + 0x00001470 0x28 startup/startup_stm32l053xx.o -.debug_ranges 0x00000000 0x1290 +.debug_ranges 0x00000000 0x13d0 .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_ranges 0x000000d0 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_ranges 0x00000140 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_ranges 0x00000188 0x250 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_ranges 0x000003d8 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_ranges 0x00000410 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_ranges 0x00000598 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_ranges 0x00000628 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_ranges 0x000006b8 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_ranges 0x00000770 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_ranges 0x00000818 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_ranges 0x00000928 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_ranges 0x00000b00 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_ranges 0x00000cc8 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_ranges 0x00000cf8 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_ranges 0x00000e70 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_ranges 0x00001070 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_ranges 0x000010e8 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_ranges 0x00001128 0x58 Src/HTS221.o - .debug_ranges 0x00001180 0x70 Src/main.o - .debug_ranges 0x000011f0 0x50 Src/stm32l0xx_hal_msp.o - .debug_ranges 0x00001240 0x18 Src/stm32l0xx_it.o - .debug_ranges 0x00001258 0x18 Src/system_stm32l0xx.o - .debug_ranges 0x00001270 0x20 startup/startup_stm32l053xx.o + .debug_ranges 0x00000140 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_ranges 0x000001b0 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_ranges 0x00000280 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_ranges 0x000002c8 0x250 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_ranges 0x00000518 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_ranges 0x00000550 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_ranges 0x000006d8 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_ranges 0x00000768 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_ranges 0x000007f8 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_ranges 0x000008b0 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_ranges 0x00000958 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_ranges 0x00000a68 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_ranges 0x00000c40 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_ranges 0x00000e08 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_ranges 0x00000e38 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_ranges 0x00000fb0 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_ranges 0x000011b0 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_ranges 0x00001228 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_ranges 0x00001268 0x58 Src/HTS221.o + .debug_ranges 0x000012c0 0x70 Src/main.o + .debug_ranges 0x00001330 0x50 Src/stm32l0xx_hal_msp.o + .debug_ranges 0x00001380 0x18 Src/stm32l0xx_it.o + .debug_ranges 0x00001398 0x18 Src/system_stm32l0xx.o + .debug_ranges 0x000013b0 0x20 startup/startup_stm32l053xx.o -.debug_macro 0x00000000 0x17c67 +.debug_macro 0x00000000 0x1835c .debug_macro 0x00000000 0x395 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000395 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000bc7 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o @@ -6269,124 +6324,134 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_macro 0x0001265c 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x0001266c 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x000127d1 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00012b42 0x3aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00012eec 0x43d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00013329 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x0001369a 0x380 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00013a1a 0x389 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00013da3 0x3bf Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00014162 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x000144e5 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00014856 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00014bc7 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00014f4a 0x22f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015179 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001524b 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000153b3 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015469 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015479 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015498 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000158ae 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001596e 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000159fa 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015a8b 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015b1f 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015b82 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015c51 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00015e03 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x0001600a 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x0001605c 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x000162cd 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x000162de 0x239 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00016517 0x1d9 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x000166f0 0x387 Src/HTS221.o - .debug_macro 0x00016a77 0x22 Src/HTS221.o - .debug_macro 0x00016a99 0x3a Src/HTS221.o - .debug_macro 0x00016ad3 0x160 Src/HTS221.o - .debug_macro 0x00016c33 0x43d Src/main.o - .debug_macro 0x00017070 0xd8 Src/main.o - .debug_macro 0x00017148 0x371 Src/stm32l0xx_hal_msp.o - .debug_macro 0x000174b9 0x431 Src/stm32l0xx_it.o - .debug_macro 0x000178ea 0x37d Src/system_stm32l0xx.o + .debug_macro 0x00012b42 0x372 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00012eb4 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00013225 0x3aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x000135cf 0x43d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00013a0c 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00013d7d 0x380 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x000140fd 0x389 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00014486 0x3bf Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00014845 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00014bc8 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00014f39 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x000152aa 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x0001562d 0x22f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001585c 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001592e 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015a96 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015b4c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015b5c 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015b7b 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00015f91 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00016051 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x000160dd 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001616e 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00016202 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00016265 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00016334 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x000164e6 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x000166ed 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x0001673f 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x000169b0 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x000169c1 0x239 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00016bfa 0x1d9 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00016dd3 0x38d Src/HTS221.o + .debug_macro 0x00017160 0x22 Src/HTS221.o + .debug_macro 0x00017182 0x3a Src/HTS221.o + .debug_macro 0x000171bc 0x15a Src/HTS221.o + .debug_macro 0x00017316 0x44f Src/main.o + .debug_macro 0x00017765 0xd8 Src/main.o + .debug_macro 0x0001783d 0x371 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00017bae 0x431 Src/stm32l0xx_it.o + .debug_macro 0x00017fdf 0x37d Src/system_stm32l0xx.o -.debug_line 0x00000000 0x106dc +.debug_line 0x00000000 0x11c15 .debug_line 0x00000000 0xa0f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_line 0x00000a0f 0x9c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_line 0x000013d3 0x989 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_line 0x00001d5c 0x18c2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_line 0x0000361e 0x98a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_line 0x00003fa8 0x1063 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_line 0x0000500b 0x9ba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_line 0x000059c5 0xb42 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_line 0x00006507 0xb41 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_line 0x00007048 0xbd5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_line 0x00007c1d 0xeba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_line 0x00008ad7 0x12e5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_line 0x00009dbc 0xb9f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_line 0x0000a95b 0x589 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x0000aee4 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x0000b998 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x0000c8ba 0x650 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_line 0x0000cf0a 0x638 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_line 0x0000d542 0x915 Src/HTS221.o - .debug_line 0x0000de57 0xc78 Src/main.o - .debug_line 0x0000eacf 0x8e8 Src/stm32l0xx_hal_msp.o - .debug_line 0x0000f3b7 0xa40 Src/stm32l0xx_it.o - .debug_line 0x0000fdf7 0x862 Src/system_stm32l0xx.o - .debug_line 0x00010659 0x83 startup/startup_stm32l053xx.o + .debug_line 0x000013d3 0x9f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_line 0x00001dca 0xb05 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_line 0x000028cf 0x989 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_line 0x00003258 0x18c2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_line 0x00004b1a 0x98a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_line 0x000054a4 0x1063 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_line 0x00006507 0x9ba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_line 0x00006ec1 0xb42 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_line 0x00007a03 0xb41 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_line 0x00008544 0xbd5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_line 0x00009119 0xeba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_line 0x00009fd3 0x12e5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_line 0x0000b2b8 0xb9f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_line 0x0000be57 0x589 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x0000c3e0 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000ce94 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000ddb6 0x650 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_line 0x0000e406 0x638 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_line 0x0000ea3e 0x915 Src/HTS221.o + .debug_line 0x0000f353 0xcb5 Src/main.o + .debug_line 0x00010008 0x8e8 Src/stm32l0xx_hal_msp.o + .debug_line 0x000108f0 0xa40 Src/stm32l0xx_it.o + .debug_line 0x00011330 0x862 Src/system_stm32l0xx.o + .debug_line 0x00011b92 0x83 startup/startup_stm32l053xx.o -.debug_str 0x00000000 0x866fa +.debug_str 0x00000000 0x86ce0 .debug_str 0x00000000 0x7a448 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x7a861 (size before relaxing) .debug_str 0x0007a448 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o 0x7a673 (size before relaxing) - .debug_str 0x0007a6d7 0x2c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_str 0x0007a6d7 0x23e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x7a416 (size before relaxing) + .debug_str 0x0007a915 0x39f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x7a6f6 (size before relaxing) + .debug_str 0x0007acb4 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o 0x7a506 (size before relaxing) - .debug_str 0x0007a998 0x11a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_str 0x0007af6a 0x1170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o 0x7b3cc (size before relaxing) - .debug_str 0x0007bb3a 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_str 0x0007c0da 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o 0x7a7d3 (size before relaxing) - .debug_str 0x0007bbf2 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_str 0x0007c192 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o 0x7ac14 (size before relaxing) - .debug_str 0x0007c367 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_str 0x0007c907 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o 0x7a4de (size before relaxing) - .debug_str 0x0007c613 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_str 0x0007cbb3 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o 0x7a87e (size before relaxing) - .debug_str 0x0007caf6 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_str 0x0007d096 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o 0x7a7c7 (size before relaxing) - .debug_str 0x0007cf9f 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_str 0x0007d53f 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o 0x7a65c (size before relaxing) - .debug_str 0x0007d3d8 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_str 0x0007d978 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o 0x7a981 (size before relaxing) - .debug_str 0x0007d8f2 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_str 0x0007de92 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o 0x7af3b (size before relaxing) - .debug_str 0x0007e216 0x5977 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_str 0x0007e7b6 0x5977 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o 0xb993 (size before relaxing) - .debug_str 0x00083b8d 0x148 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_str 0x0008412d 0x148 Middlewares/Third_Party/FreeRTOS/Source/list.o 0x8cdb (size before relaxing) - .debug_str 0x00083cd5 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_str 0x00084275 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o 0xa3ff (size before relaxing) - .debug_str 0x00084495 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_str 0x00084a35 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o 0xaef7 (size before relaxing) - .debug_str 0x0008552d 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_str 0x00085acd 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o 0x9652 (size before relaxing) - .debug_str 0x0008590e 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_str 0x00085eae 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o 0x93e8 (size before relaxing) - .debug_str 0x00085b51 0x742 Src/HTS221.o + .debug_str 0x000860f1 0x742 Src/HTS221.o 0x7ada5 (size before relaxing) - .debug_str 0x00086293 0x3a1 Src/main.o - 0x80cfa (size before relaxing) - .debug_str 0x00086634 0x1b Src/stm32l0xx_hal_msp.o + .debug_str 0x00086833 0x3e7 Src/main.o + 0x80dbc (size before relaxing) + .debug_str 0x00086c1a 0x1b Src/stm32l0xx_hal_msp.o 0x7ae4e (size before relaxing) - .debug_str 0x0008664f 0x47 Src/stm32l0xx_it.o + .debug_str 0x00086c35 0x47 Src/stm32l0xx_it.o 0x7f63c (size before relaxing) - .debug_str 0x00086696 0x64 Src/system_stm32l0xx.o + .debug_str 0x00086c7c 0x64 Src/system_stm32l0xx.o 0x7a29b (size before relaxing) .comment 0x00000000 0x6e .comment 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x6f (size before relaxing) .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o @@ -6409,41 +6474,48 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Src/stm32l0xx_it.o .comment 0x0000006e 0x6f Src/system_stm32l0xx.o -.debug_frame 0x00000000 0x3560 +.debug_frame 0x00000000 0x399c .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_frame 0x000002c0 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_frame 0x00000388 0x784 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_frame 0x00000b0c 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_frame 0x00000bb4 0x444 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_frame 0x00000ff8 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_frame 0x00001130 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_frame 0x00001280 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_frame 0x000013f0 0x204 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_frame 0x000015f4 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_frame 0x00001954 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_frame 0x00001e94 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_frame 0x000023d4 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_frame 0x00002440 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_frame 0x00002798 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_frame 0x00002d08 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_frame 0x00002e18 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_frame 0x00002ec0 0x124 Src/HTS221.o - .debug_frame 0x00002fe4 0x168 Src/main.o - .debug_frame 0x0000314c 0xd8 Src/stm32l0xx_hal_msp.o - .debug_frame 0x00003224 0x40 Src/stm32l0xx_it.o - .debug_frame 0x00003264 0x38 Src/system_stm32l0xx.o - .debug_frame 0x0000329c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .debug_frame 0x000032bc 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .debug_frame 0x000032f8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .debug_frame 0x00003334 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .debug_frame 0x00003370 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .debug_frame 0x000033ac 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .debug_frame 0x000033e4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) - .debug_frame 0x00003410 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .debug_frame 0x0000343c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .debug_frame 0x00003468 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .debug_frame 0x000034a8 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x000034d0 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .debug_frame 0x000034f0 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .debug_frame 0x00003518 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .debug_frame 0x000002c0 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_frame 0x000003d4 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_frame 0x000005fc 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_frame 0x000006c4 0x784 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_frame 0x00000e48 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_frame 0x00000ef0 0x444 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_frame 0x00001334 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_frame 0x0000146c 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_frame 0x000015bc 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_frame 0x0000172c 0x204 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_frame 0x00001930 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_frame 0x00001c90 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_frame 0x000021d0 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_frame 0x00002710 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_frame 0x0000277c 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_frame 0x00002ad4 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_frame 0x00003044 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_frame 0x00003154 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_frame 0x000031fc 0x124 Src/HTS221.o + .debug_frame 0x00003320 0x168 Src/main.o + .debug_frame 0x00003488 0xd8 Src/stm32l0xx_hal_msp.o + .debug_frame 0x00003560 0x40 Src/stm32l0xx_it.o + .debug_frame 0x000035a0 0x38 Src/system_stm32l0xx.o + .debug_frame 0x000035d8 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .debug_frame 0x000035f8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) + .debug_frame 0x00003624 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x00003660 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .debug_frame 0x0000369c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .debug_frame 0x000036d8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .debug_frame 0x00003714 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .debug_frame 0x0000374c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + .debug_frame 0x00003778 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .debug_frame 0x000037a4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) + .debug_frame 0x000037d0 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) + .debug_frame 0x00003808 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) + .debug_frame 0x00003840 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) + .debug_frame 0x00003878 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x000038a4 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + .debug_frame 0x000038e4 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x0000390c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x0000392c 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .debug_frame 0x00003954 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) diff --git a/RTOS_IOT/Inc/HTS221.h b/RTOS_IOT/Inc/HTS221.h index c3defdd..e8df5af 100644 --- a/RTOS_IOT/Inc/HTS221.h +++ b/RTOS_IOT/Inc/HTS221.h @@ -4,17 +4,14 @@ * Created on: Oct 14, 2017 * Author: pt */ +#ifndef HTS221_H_ +#define HTS221_H_ #include <stdint.h> #include <stdbool.h> #include "stm32l0xx_hal.h" -#ifndef HTS221_H_ -#define HTS221_H_ - - - #define HTS221_DevAddr 0xBE #define HTS221_SLAVE_ADDRESS 0x5F ///< I2C Slave Address diff --git a/RTOS_IOT/Src/main.c b/RTOS_IOT/Src/main.c index ef055d0..547db89 100644 --- a/RTOS_IOT/Src/main.c +++ b/RTOS_IOT/Src/main.c @@ -47,6 +47,9 @@ #include "HTS221.h" /* USER CODE BEGIN Includes */ +#define USING_EEPROM +//#define CodeTesting +#define EEPROM_START_ADDRESS (uint32_t *)0x08080000 /* USER CODE END Includes */ @@ -80,6 +83,26 @@ osMessageQId Queue_SendTo_Uart; QueueSetHandle_t NVM_QueueSet; +union uDate{ + uint32_t u32_date; + struct { + uint8_t Weekday; + uint8_t Month; + uint8_t Date; + uint8_t Year; + }uStructDate; +}; + +union uTime{ + uint32_t u32_Time; + struct { + uint8_t Hours; + uint8_t Minutes; + uint8_t Secounds; + uint8_t TimeFormat; + }uStructTime; +}; + struct StructDate{ uint8_t Weekday; uint8_t Month; @@ -94,6 +117,16 @@ struct StructTime{ uint8_t TimeFormat; }; +union uDataPacket{ + uint32_t datPacket[4]; + struct { + float temperature; + float humidity; + union uDate Date; + union uTime Time; + }uStructDataPacket; +}; + struct StrucDataPacket{ double temperature; double humidity; @@ -101,7 +134,6 @@ struct StrucDataPacket{ struct StructTime Acqtime; }; - typedef enum{ EV_ReadsFromTempSensor, EV_ReturnFromUartSend, @@ -111,7 +143,6 @@ typedef enum{ typedef struct{ struct StrucDataPacket dataset[5]; -// uint8_t * ptr_sent_Success; }QMessageData_USART; typedef struct{ @@ -483,6 +514,8 @@ static void MX_GPIO_Init(void) void func_NVM_Manager(void const* argument){ QMessageData_ForNVM Rawdata; QMessageData_USART Uartdata; + volatile uint32_t* Ptr_address=0; + uint8_t itr; uint8_t Uart_Updatecounter = 0; for(;;){ // TODO: Copy data from Queue then write into the EEPROM. @@ -495,13 +528,43 @@ void func_NVM_Manager(void const* argument){ // TODO: Receive the data from Temperature Sensor, then Save it into the NVM // write to EEPROM; start Counter if (Uart_Updatecounter >= 5){ + #ifdef USING_EEPROM + Ptr_address = EEPROM_START_ADDRESS; + for (itr=0; itr <5; itr++){ +// Uartdata.dataset[itr] = (QMessageData_USART)(*Ptr_address); +// Ptr_address +=(sizeof(QMessageData_USART)/sizeof(Ptr_address)); + Uartdata.dataset[itr].temperature = (double)(*Ptr_address); + Ptr_address++; + Uartdata.dataset[itr].humidity = (double)(*Ptr_address); + Ptr_address++; + } + xQueueSend(Queue_SendTo_Uart,&Uartdata,100); + Uart_Updatecounter = 0; + #else xQueueSend(Queue_SendTo_Uart,&Uartdata,100); Uart_Updatecounter = 0; + #endif } + else { // Need to write into EEPROM then increment Uart_Updatecounter + #ifdef USING_EEPROM + if (Uart_Updatecounter == 0) Ptr_address = EEPROM_START_ADDRESS; + HAL_FLASHEx_DATAEEPROM_Unlock(); + HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, Rawdata.TempnHumidity.temperature); + Ptr_address++; + HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, Rawdata.TempnHumidity.humidity); + Ptr_address++; +// HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, (uint32_t)Rawdata.TempnHumidity.Acqdate); +// Ptr_address++; +// HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, (uint32_t)Rawdata.TempnHumidity.Acqtime); +// Ptr_address++; + HAL_FLASHEx_DATAEEPROM_Lock(); + Uart_Updatecounter++; + #else Uartdata.dataset[Uart_Updatecounter]=Rawdata.TempnHumidity; Uart_Updatecounter++; + #endif } break; @@ -511,7 +574,20 @@ void func_NVM_Manager(void const* argument){ // else resend the data in NVM to UART. if (Rawdata.dataArray[0]==0x01){ - Rawdata.dataArray[1]=0x01; + #ifdef USING_EEPROM + Ptr_address = EEPROM_START_ADDRESS; + for(itr=0; itr<10; itr++){ + HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); + Ptr_address++; + } + #endif + #ifdef CodeTesting + Ptr_address = EEPROM_START_ADDRESS; + for(itr=0;itr<5;itr++){ + Uartdata.dataset[itr].temperature= (double)(*Ptr_address); + Ptr_address++; + } + #endif /*Config Low Power SleepMode*/ HAL_SuspendTick(); __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); From c50741c256761ec243f3ce33d713b363263b1fdd Mon Sep 17 00:00:00 2001 From: tiongpatrick86 <tiongpatrick1014@gmail.com> Date: Sun, 15 Oct 2017 17:59:06 +0800 Subject: [PATCH 15/18] Working sets of codes. fine tuning might required --- RTOS_IOT/Debug/RTOS_IOT.bin | Bin 27508 -> 26884 bytes RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1067292 -> 1066652 bytes RTOS_IOT/Debug/output.map | 1013 +++++++++++++++++------------------ RTOS_IOT/Src/main.c | 95 ++-- 4 files changed, 528 insertions(+), 580 deletions(-) diff --git a/RTOS_IOT/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin index f8fe85f09f15fa94ad8c0ae5cf35fe8c3a001c9b..bc8d5270f1cd2e49053c01e45479ec478b8688ca 100644 GIT binary patch delta 3856 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 DhUm^Z delta 4699 zcmaJ^4OCOtmfq(kgz*2T5(2`_4;Bkz{HgzKLjqSISSczfFdD#W5T}jKRB1b%(D!`( znL4ZLu`>v2J1TGa+u<2$-&AdV*3Pr#`6iLRc_>9=+h^>u?Zl_;CEO%;_Ps>3Yt|ap z+MK<=^X;?G+2@>nZnj+}_x_ut0t@WU^`O2Hm7QtXF8IqzP($?Z=~bYPd5Dnqkbd9k z|7)dTr2dE7hxPyKJK@1>9(3;fXbPig-FdSZ|GOuV<)qR$Lb~^JOmE^D=i+mmvk&x% zHYFqh3G|1dK<Q;+D(W{v&a)~T=*O&AgCsB*>M&%h_Hy>pJN|PVfUktMGx~(j!&5<p z*&u;W-95}Q;$EcG65@2%#k3M~+WkA#u#!~KcM_f^26`vqH70cfeKGNgjJc!GJr}H2 z6;yC6baEnpiuNZ?&Bz*60CaV5%d8UKjrhON*rYvap9G;>iTn!AB(qECZ;}erdJt8~ zDAOs8VQ_z+G?irS5Lr{nO$F3&1q-{(prhQ@o7Efywz;RLbTecQ?N3|ABt|HkzKyBg z;Qn>Gp2_?m#F`GHPr<@>%wRapb#iaqgurq4^$B4@PPm6By+Oz=_j=8b3Ri-{)R(bD zn_z>6q|Z{oc+8SEoLY6zlKN$bajimcO|JSzn^%-LoK*ga_NqAp8ZDSoZw@BObT-cR z2hFJ8XI57o;#x|(uvcOI0rMHbWlvTD%tFaP5k=AUy&#IXKLsYwCz%&Cjpk2NSb)HL z^tqf(E@xj%Zh;2^n?@$uCRS!^FKhE2oitno8I_QKS-aa@A7fM)6Kaw`XH+C4856Q& z4A!Ko^caIV!`c7^uuAPbo1iNKwf2JfZL?8<d}RCmpa<hOIG@~~%_XH{8<(2X%x&kg za#}d>opW({eGni)C?H>e?xH2{Y%1C-M$8ssN|p7yBiJ_tZ0cEpa*mVwzm>4zpJOjc z*q1-YHc8mk2Uw1d7_ya}7BT>dsq?erJ1sOm*WwEFt>J39C0r>NIF+YpgrSr!F3Xmz zSOTA=bZ~PL{x<1NZYTF-!rG*LmMl+(ZLcNULkv9@l}7`M&g|g!a0j?!T;S|SmY=*A z%kFsx%2GWrE#Ng-6;Pi`OK$sT05K4&-|O=)uo442`jz*Z9}L$qKVmGnK$<|QJOyb2 zixP^KO2H3ujj&A)|5?foZf(*~%2`XHCx7V~OEC_gjKjymD_py!y#$Ify=%Ay)(Ku4 zho_@3-lOtC5#wFSF;?Q)W6|Pt%Pkt~!;^)Azj{_$R+bRG%WO%t-to_cSgXgwux86` z{~9jSddV~5@3DOKWz5j(vg?Ct53sAtu3av-l$Q{L83!BmUnm<G1olGNy@AVPE0Gr> z<*^nsnS<x%5I4Ol1(&i~&g7HPOm4xY^jKI=LDjD<dJnj!rF-XDOD&}(P|SLuD9O`k zX(=Jb21|~W{aJ#cIMdTmmgQ;S8ZE?-WBnihd|-^kdfR)&-^4M-H0w?8pHYjq4tc={ z1=l^_%GNjDzxewsieaK}v`nymf%>JP^<_hYaUL+PFJu33c@<Y>X~K{dmPG5P{)=UQ z90cRVvbzHx`*DAOR^{e0rV+X^w}||mdr$83v1HJlG9?(ZwkZfoNW5hSc7_iEwc#d* zO?^%i=2wj4`MxGcxmshB>Rp(x7{{}auMFMiKR%8p$$YGk%$SEMNH-Q4)uvXg;KqAE zdrP(SWYHjb%KhfFr<Ke|tNYrFQ%r77SnEr+Wjlsc%0DHQS6f4TMmWtkrX`1I@9YBR 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 diff --git a/RTOS_IOT/Debug/RTOS_IOT.elf b/RTOS_IOT/Debug/RTOS_IOT.elf index 93e00dcec713276e793ac267ea00c3330c2011fb..fd5a994027c311f114ce407307959adebb2b7886 100644 GIT binary patch delta 56232 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 delta 57478 zcmce<dwf*Y**3iP-jifVLI@#*Nl3!v0E7@iAQ2Hcgn%)GfRkhr4n_<Iky9~JwA7+Q zDITh50g;732}M*?N-0HS6_r|QQPBqUv52UVQlUz1YN_E6lJ~mS+Iwcw=Xt*0`+a|W z!|&$0*L_;|I_|^l?Ai9{_-z};uk%E&zg@VCgb;N%tk29GyJWEtq$o&)Fz}BblmB@k zce}x~#0e2eiLGymGb!^fU;OLUt2<*E@C%#P{~|T;*Xe>@>QgyGxFf>!J;Qj%=l=;A zg!*s{=l=)aUcqES$|qho2AH0OPkd?Q1DcWy!*7&lUo^IEFE#hY9&EVrP-(-9A~SZf zOLP}T>$_J)j_a6L3<Cc}d&6sylSQU3J#firJ<+}@t8e7C()x-2JbS1V-7{XUFpbQZ zcdiaXH+kXnho+}ZquOX1?J`mfqoHY9gt5>tUTykar17cCsE~~@Mx~J@{~2REXvQy+ z_rw}wdtG~3Y`s=Ym=Gx@m3qbI($2O6^4(ZtP_N|6mJnN3l~zxnVk;DzWK?(K$)3Nz zB(}QXF{!jb*^igM?rse3`833lN^EXsn5?G1cQ*zZ$?H131>?W8L{(|d^;?QX#^a?w z_|jJ@TGuoU?O|*+jS=$Qo<_A9+abLP#v0SNsOgymBh&2D)b1_V4Zoc08;eEOtEHPu zfBL0p-P81WqH)zQe%bVClJQf+IM;N$$N0Auh_MP@>@_7NX0o`s``bN4_6sFFKaH<= zswDo@s_c1I=7hM4Gb#P@Vn6L(_WP8R#l1vb33~ZhD!Q%UwQiG-dM=-BDRx)vDxEuV z3$)gRZ_vdZ=zuhr5QU&#pw7<Dz~8TQc4EkK3Yvf4=dh=)_zyk2LbUFcccdD31{z+B zNY7~&t#@ARJ-K&z-<0Di{c@8&%@e)KMgQX|8;fT~WLw!WRoz8KwiVMoJEm_$)`adA z2@zSvy(Zi&a>NXG!)q}adBUA?xcG_UYzy|VK6_SVitIB;D7{NEJyxwLjZd9Zy0$bq zb#AF>ITR@E_o8SuE{PoDLy>W$q~B}tDA!ypE-?z?75}e`(0wAj@vj-6L#5RJjj~U> z%6>%Isjjj+DLWaGrDhmeeO;SNj1NR?{B?b!H<!rhbfYBD`r@snwWU)^CziGz=x5c5 zPkL-AO`aTQO%ZSRSXDYA=6l^ADP3PWE@oc$pO+*z_nN$|q;Ip4^>j&Ovqy|RxUTfc z(w(I*l(xS1ddYXkj@)qJ*atVnH;W;y#|kD`VrKf|<G(&TOc+_lgtNz5&W@U3WQp9< z$38nNvOY%#bw-JRU;-0W3QS;hOx{hb{HfA9u|`$@c8_(X^SXc1<F%5(&HZmWSdx$M zaR?tJeq6euWW{)q*XP)+rK2V!9-CZ>`7t=UIkH9Mna8G=niGuXCreV0Zdr+ELU^(w z=iBD#CDX?nnStVx_zC|!d##9?(A;c#i%Y&fduwT*3GX#uJo|LX=~EG(%(~(86Ygf= zopr-!$ID8}#v5712zKJ^;Tt|UA-sogxbVSo-4fLh_G2x2G8GeNSLx7-9%#xe)sy4w zp1d1PdAh{goKx{kNoKPM3`saPa>B%tiQ`4Sw^`(MZ>}quJKo5?xg>Rhw@U|${65V$ z-;msVb7@_Pk(D~(A7`%<X0|cm>ti3Eon2~X_nh$Mu|I>0p76;rku7pQZ~mJqojLZ` zvoDrdpBkBUC5aP01pnSAx8Lx|iEhmz`}P~WM~}}attgp|Dkqi1PWZ#wBR9N%LS!Gg z;a?xTaTenvWJS7>ZWdgWOVW)z<NHldrW<!f87G>03@|Q5%$t2lxJ2x^df^?`B3f&& z&R#IteaLgQttKe%-!gkancFj&8{yTqNkMrs>|O1S{g|M<yRygDX=;yxOL9q`k?k&6 zi0wW5f{^<r8Yyyro^isM+Vsc}qtazwT-fy4Fynxko_aN<C2n%x1)oH^{;PYLZ$f)p zud6*<G#7VO?kh5K%<~JIP8Jz28Ss)DMi}{-?nS~K|6*s`*-qEwPZoR<9hKRu*ew5` z?nH6?Ya-q(b}wo=J;M0RH1EIM^yYQOQUf96@av6jMrzZat~aiUbX{rtrbD_*j3V>K z4mq~ONSc3r$Ey7zyRfB7B@_K$ix*6H*Qzd9xZp}#p3-KwP+Ap~W+-WLOK00>7mLN> z1vjH3Y291NyDRHeSvRY0p}bp%e5J$~nR5OrhoH4yWZwwiFD@-qLvW?7<*JOGV5ARk z4(bQDEW}Wxs~WGg9S+L-!7p&p@q78IteaqX%onc8yC)dsaej7u!aYKioikP}Y<ho! z@v>=rD<3R1jv4=wGj24V9#-4AbMapmZz+K!TeM*Ewa)1D3cX`t4{R;%d}^^69MYD{ zp=HJp<D|T$%t$ldl|L#oeiyT-BmOn)$S~h8Z=7V@7_p^8w62wpPcnw~S=G^i?XTfQ z9(S>=9b5KN$63+3P<}kg7}sY^M^p=HE9h+7)!`M{z#Z^J9p%PNMym{z8;=;xGG?+d zxN7g!9xZbhiNWq>8j4nbyU2;e5n$(4s|9hv{rswE{moUwTi#-96@#r~ID}ml-U%&Y zsCCTTEn0ujZd^-y(YoxiXx(sCwp19I##;HpWMi0dv;1_j@k1k5POC7+Ozv!tZJAK| zmwHwhWmovr6<y6g+eK>>s+k$AMxdJNU^VYvVKv{u>a9zn^-KAAg^@M5rQLXrIlO`( zSvc?LZ2K|JKs?P^3&h|^WO}&0et~HH*A>zFt{gJO=xaPJCrvRHM>SpLLGOTkb&7$5 zfc$idal6r5-Z0g;%eW|CoodWAj>~>G8GVes^4gn>N0X<tN2W(N*Lg*2S$jmf(HuF~ z)lz^6PsvYjG8U%pykfOXNY#U2?GqT7Y(se0VHw?D(=^9tlo-ZO<kOYLQ$6}$HnL65 z2Q?=~$Z1u^kBv{|$5j~hld_HQXW6^j7;HS(G``xHW*FV%lYV2I@$aUO{YXm|*BU<a zuIX|^t+CcflKrL`LyevCrfEih^OslT-P2IlHS)L9j9;6gT`rk!JZ}`sJ~NETeb-!> zyC9;x=fbr(L+CX-2VHejXJ=avoTT~WFJ_|N6>{qgqti%~TW8|vWXd;Y8b6zJrR`^( zA~R+3m9_^jiFL;M1uL$!Jpf4(B==nsTa2w&+Adr%*IDZ$v(C>d=zFE@2c6~?3(`9- zMT#E6opo-OfOJWxDPlx{xK3PdtLPvvHXBb~ZcDi$_uXuant!EjJfe1HZH>6nHd58J z`=Kjs*9K+zc3rzvUD0-31MRx{sk&nAx>CdHYQGw)>z&KeS7*!#6kl1Dwbh7tJbH5E z<03n1W5jdrvi7#cm%UjLk4HWcwb2bpfoN}=b2)lngWB+f$cV?1_cgru{5~;2WP5)( zda`GM$TBjkN(PCJwtG7VuMmUHW@GT==GL>W{Nxk;TfEqizV28mmL-26%;z_v*FE(! z>gyL=3AD9z+@1U{Te!LY<9c_Ian0ZN8!e*$zzWxp(;p91!RKX~&vkI&4*26)kuQ#U zE85#$yp*{mYpd8`JRUES(UmoqOpzf>Z+qLxOa0TbH}^-EPKIodk~Lp)7qz$j>XI?y zyZuj}^=5gW|Deto9N2Lz61zit+b=J<f)#hG=r-iS$L(!Dy4bC}=K@z&%!FR`MuzZS zZ8I;nx2?GN0FLNIxN;G=uqhxmh+^^LPxf`Rt!_8giA?w8l=`UhUJH!EUiIFL9o|C` z?QM@=zMSz>VeIZ`+uq&^|B>)(eetG1>8b;7?h{#_$34&Yy3=^PHdAD94YyvoE!e3k zX!(a7qQA&`vUFFAv8R4=rkL>Vgg28#-vzzuV}97{&N|peXL_C!t$)1Yd5)|3#1*f& z()LBC*JEbZP7<wesPe}sdort0Zn|=Z_)+p_B9QXJw$k|%3l`jo5!!WC2YK2K@{)3T z15VMIH^S-Xs@#Nf_soeXKXGN>f`7vAA=~e#w%-<I_Y~|RGp~o;k5zdq%H1+YqWr@v z1^4Qj8UnV9HhCB(W@Z6Q7F=ntO>VU<8dQ)UDvKOgOuO=<<dcHw&zZQ+ww+|#&Q!K@ zVe86Fhwb<)N3v#SW{A|Xj<!RW%O?JQ|C6PhWv(Fsabnt8BXi^nDGfM19PBz~WOxfl zK7Y)Q4L`%1MK0c+fFm&sbFLO)>^SC|v7d1a3vhM22mE1BGpGf04s-!@5i}1roGT44 zZovFlex)bohi7t1gQu*sZSmE}+C3sGtD&>)$kiS7U(|QD-F?+Nd-m*vskn;7vb)+= z(P{irWDde+akVW43oGjfi&xD3!3!&%`oY&L{_=xvc4`?|cD=81g7w4%Yq;`(oLz5R z+mqYB(cIbgw@#7KyX<P)=kmFFqwlcyZ1D%3M&{zul!loNTN*^x!qRseqF^+!LpvSr zj3~!kgyc8!--u>BE{DuEt~D=RmGfsCMH$}9+HL`YbIT~hv67Y5qwGR?iF|doF~Jxs zJ7;4*t&wSSjDE9ku$}sJUTsTOE8<ey(2gr@3p-riD{ZSgM5dWx;4J$}TYg6xjvZWC zoo9KCwsGH;w(qWXw(Z6~{aJfw+r^H~wz1%+gO+t-m@{&a>b3IcbBuv~`(DnN?5U65 zZHg?BSUBh1Id5jZoB5{5=xB?RpU*LptBlJ@Fj!E!s5DEAE*$>u@HZ3QO;83GE@8au zMP?52=xF=dl{i&ep-K;3i9xBOt@%<1W<fDVReT{@Iy*(@wuQ2Mt}!aP@v6wQGI*VE zrR_<@>()Fje?Aw-rjO-&b8%GNE+@=0#*ezUBT5|}#YAi$IFpQj@k(1;dk0Q}d3hIs z=DdD2I;&fzHOYl}JK!Qum{@7fV)^<!W4pOzv7B|AQ5822Q_!IW(A{P{pYU9}>xG-^ ztStqiSHpGUQd{44dCz<!H&6uIi!UB3y?D@laC>RPjp4j6U$_^5R)O9DZMKm-X&-3K zM94w=K#4a9_Zb_>liE=p1*`%s0=0m4+6aEK61)OIDiWDgkK>5_DF((ucH5kgtR6Bq zWMgg>ZUa0&^`LgFt9$F^(%X&Uft9hsT^=LcK47tpGr>D$>PVDPKO&6w#0mHA1T?y* zruo2CD3g|foHBXJSbhi?q(mY6Eim3Qr^}{q78pA>9xy*~nftu*Q<s?*bJ#1~1-L@; zG<#)4gqc101O#5BZ*0rPX>7_@C^q8sHwA@c!)FwV-rqnp6C%;qcV~n!3XO{p#4DH7 z2Yw65SfdUd;m(lDBg`3zi5ZTzulqe{8;tCXrY|DQe?^)_8S<l8bF4WcqbaGoX&UC{ z44D#VdQ&#TCzlaFNc}fzT8Ddd84rWmmC@vnGbbBnb4JrIdYC&+vo)jXh6HoBVeZP5 z|LA27N!*i(J9IEjI_NNoSxp6r=BaM^Ia$J;qx0Mb6QdD_e<6I3CMs#4QF)O9r(u-N z%aWtg%^`i3LOT_wKHu*qM55udqJ6&?y;o()`_j$6=GrW|HQk)jXSZ#1A>8O>mh4P7 ze__Nn{i2`wcbD0k)wC|#Ofbwf{pGIy<~Va*|E9n8H@_EYZtgGrdFJ=cm-{!pooB`w z=BfVj<00mlnD+j{{WqMnrsfZj8Tn?4=^r4+<eOv61q0;Dd^5eziUHa{q$Ir(C5#{T zbfKqq50JmkH|zQw3MzXvL3v#ql@|uc?4jmjGj5<<Kh(@IJp<*dLrt$)GEja>oIg-@ z4mFF+6$9lp1+ZH;Q0^=+2bfz1%6AH&KRi&LC!QN9<A%YmeW08;%p8*$pMwF%Jo+vg z_pf-qi~lRl<@mqKyc<&`HK*yRVdg`IS&<`$6q;$~yqu<rLUUD&nK($kKh}J-mv4}6 zOZprzmk{bpkNnwqGtF(SpBE|8Hw==Gk26P_?+=pijWY+E=LX5k<IMi%w}WIxvFVK- znXA1HC(G6%(<9fFn31;Y%v^bAF<h4C%I(E)c_3H*v&2l2pA?%3=BZryk7D!DnAE{` z_4$M4gX7IybJk$_oAKtg=C;A|{CIPS`SM`dx5ON19vLhrmO$^ylMN+^Iv`K}oLHPE z-zh=#s=OvdZ|!UD$&-JXWsWvoLz*&fHP1(x(}&0&x0_Q2`LRVcVala00rPt@+ra#Z zld#W;H!)O8qjGT@@O-|!|8|UH^ibjcL@BrZ5z6b8a{5qt@pf}a%zRs!wq~d-SYYOv zyN1eH3(Ohjk)iUp3(U0K78tC<2KFydItFGr#^*c8V$j1;n6I|1UrxbG3(bmnv#3B$ z{h>K-xUWFCxyX%+M#@5D<3}0uN8m<iN<GT8PPs#urx!H6@k8_5NON9+{LL!!4)c70 z%>FU@ZNM;D{bREzkW?hxrC3RQCpyd_hdJUfEe><eW<=iyhS_e9Im|AH+2b&t;kJ#} zVSElV-C+XT!8KtQ>wDT}QsWA72tY=o(G{4p*xULJfJh~o?=XuTW|_lmbC_KYbJ$^y zI!w_ucAU`;Gk(6qEp?b34zt@~PCCqKhcQRkfuct=y|vnm!A3Vie()3Xhvvv@<<vFi zn82ZHZHxCE<{O8J8)>U@9OfY~f5uGcw-XH8uG=lrT{oj^G9P&#6YL$=s~G3=Fo@-N zZ}V*U9i;!Iq!%IeDrqJbdf$$bBFlXavq*Se;Kcnx8F{XAj7n*geqGa$`^~cv=E&=0 z(j(^7w0of6f+UhwJB(+PE%A<$KYql#$;`f99)HAqw0zWP;eLjuJ}~>qG=O=X%ma>O zw<CGWk(_rV(PL~c&zPp?)|!{x=C(0%*ArMbd!hLU+SmJ~G4j+CI0iM3k*S-^A^pB| z6yMm4NM8A0Xxjc?V)n<5l?yhRsY%&mh5J*ijzyR`ee|O8j2<huY%+gtzC2c5C(Y~3 z=CN|QG^bRHal+jJyWVbxNwArusbIdqw@q)NJx-V%kS&DFE{h(nzhJc`)G>#tCX+Zd zP9|<PrwmIdwgaa)Ot#G=`N1&o91M*U__5-q4V%q9hIyn|7H>g<r;6o|wwP0{PZ^Kz ztuPgmGHs>_1$trM_T<_!mhZwiCw%#5B=VX{q-eafwwhD=&2a)OvYBz{SSP@;@lAJZ zH4jIdE62-go-wDS?Ss)}e9M;fvct4HjH^U8K4U&;t}Br_&zf20#u7Q@SsW{NmB=N} z;sANHM1JwCS!13kX&SlPOiwb;l*s9?oA=h8nIPQN$wEBdOV8-xB0U!8c(+27o(X0# znQdTxK<1ny8H-aqWm5}Ash$BtW0CUO8MIS$%Py6}-oUQ!x>3%21DkQ?jl%sC8uWeb zuQ1qX7Grc8Zj|r6VSX>>psnoJa-+QA5RM6%Wpddev(@yM$$7uSteaD&z5Cr)Cb#|0 z%s01{$)mqBuc<o>#S%m{w)N>FMD~}g{4Y;o*1Wp~i}e(=JupW;OH$3_9^UUFWFMfp z--gLLAp0%>Utl5z55llZ9WbfsmN(5jw^=YrKJt#aw0!g=XJO;}H<5N9);&dPum4rL z!}fa&a(uk81Kq;-T?Xb|8LY6Lk>h+gW=x$VC%kK3bFCj@<N)#O6wjm;nK@u8(Nh@< zz}&(v^Zw-@Xx6`fgjh=^$zQ!|UKg_px-F<FYr~|bf4yto7MHRE5`8lHL~l4hgW?U0 zvUiePcGCQZxo?u3`w32g4o+&?`H6Wt!aOudKJWz&d?zN!17F}wrDc*l^#u$rPLh33 zW3uFwH!VAD?y$^?a+&xg2Eku0++QMg!u)bs@uit=E-9Bwpztnt6l=iz6BeS!&N8(A z7m<Gj|4_O7?U&{)i94Zer~7^|Y<WU+xy(I_=^8s(-gMTSlR9>?aPzyn;b>TIH4MFR zF0_7$NUEAF-#cq&m<^L<>scHdH%ylO&f!FI<77Gd947j<$?|5D1N#x-IYju*j&K*^ zR2l^$;T0&-P-o&hV0wb-g|22DcV&x&<F-<G&VkEA&eNgoxv2zgxFzZ^%8&mVt{t}P zRL3=5Bt%x|xFTU2wE3!g&VXYtBruwicwnXaC3((7#O!0RUs5Y%*5AxAv-6>(RpNXw zOzn&ve>vhWg=`S>UIC^EjKLj|eG@MdSJ|@Ojtp&C1DUF-&rLU=s(r>o74mm~GwaM< z6|&z~<{)!lg)INdTpaTu42uyk>0E_8^cBuXTPx&uUzuwY$4(LM$xtNJgHegyJw<N% z+Ds3ufq=bx4R*)S_}m54wa}<Ew}D|BsvHxfw98f|>~)y^U{ntsvYEv9!AyhS!?xf0 zdXey<V|4<|+$4Nkm~aZ5>QOOOM@V#oxdV<zf{tp=)QLpgW^pgYCUeS31-<Bn>_@O} zb!6zp0g!Pixv)lct3*OBWDmkFVK^Aouu)S*filYtGaGB0C6?MTZVXeFPi;DV-aKxa zzNzx1f0%3g?Saus416gz@t)V-h|xLk+Jd1=cnz7oK2^?cH9djjFnSI(C!Pkwp1g`L zJ?sHb_zE(WO^2;aK`5m}H%H#2l?l;cRPTChCTRc|_AX7=Pe+Xp!(WXtb5b3er)|;4 z1>n%zBB2P3(oNSokysCgoxRDfcKvkK*?y6@2%5Lh+0Q!(!GDG0e;=3^8F4ijW|p`X z49DSP$2?mkZh&mdEf|QuJ3@GDf=~^_b}*{x&(I83y?TU(>v`KMalfrB2vfdfE0Yf1 z)b!y$&7HAk^G$L^hdH=J_=Fp~K6c={5wQ2sR_wBwaRuO0{)j_(G}K>sarqu^Gbw6M z!Xf&@DHyy?Gtnpi+F|ZChx_EuI?a^a6|ifA!!#^l+TQIFX{&76Vn^l?$y<E#gHCgj zxzG1Rx|L?W<$Gd`)vx*lEaNhSh{lwl_YZK8Ic>|*ZQ0$BowsGfZP{IkBJF}LyHU%m z<!6xgW#1FOvXV@9<r9Cj(n{hh@u&jAd-B2j3fZJJfawp(F6D%aPM7d3hin+F)`A%g zM)X-+gU0?aVOymfU|3TI?}g$<DAL}v-G|@+i+m%jY#gbC=QD__8R45sx!pkX+*R^5 z!+OL_tdixX)ptxv6;2*t&>L$Iey-(Wc(zE(wxxr#)O6R0<l&HU090Qhl{9~q+-X`9 z%$Ze9XH6^HWiF_a-J`6u)K#!7M;@J6EGn1#YtUMwGQwK7NR~!f{mgAu^7bfesOKOo z^<gqS@!uHlo7@?O5J#)z-Y9FJd7?`GIm)`<JX0lSxvi?o%dj4Rn(xGXN}5-Tj`+CS z0j%*k@1ud<YT@pN$s*F0fMcKB4>Kl<EivsLTlS<a`vC{OS{mJ~zUH}VncmGBVmA2Y z6qExi{lfh<X1(xSh8IUEEfXS!9E4;Ua=AyO<=V0_wv5%3L&ia@RI*A|?P-9FiFvkz z;UIeUfZ?zTZwgOKmb(r@umWXVrSuf?Y&UChb|$(E_d8G<kC?)98YY8~lxF}GFQ65k z{2F<8v~_==2m+sS?vLd&a0H4aC?@@ECSq51k1>Q8*NjuGGAMGO=n1PNwYqNY&eb&o zN>2rps-@Gxu%&H1?asqATm%{OO>O`)f(ugjs_=}i5dodnM5ve+z7yWY^>}^k8b~}S z8{1}~#@^d!DCu*MEMbigL;V;k@oWO4=C*gB4<>I%Z-Zcsa(s>rI)Gw5ib<3FP=6Pl zga$o|2m_BpQ7q)880%BhTPsh*T0>$+)av=3JhoQGcemD<6KmzB?$(&Gbx^QfKTZs$ zpSHx7JrO2b3mHf7IVDpgn7p}G_KdTd%!9S^oj7Z_`C+Z>h_l9+-_*)6J*>V%Ql|;` z&DcoQ%s{4|ZxBSUZfMj<XAUSu@~+sC)0*z@VKrIi#A$MDFDuKOH%-p%Wepj=2bRol zY)UY{<Yvg23+8~jYDquNbD%HcIHYH$$v1mhW0E}6wcjtp{EDZ`-icV4)2BDhOtc=4 z%2^I0v<E{G{Zbu5e6$XNA|;5~Iu(LnVTTfj;g)KRGtW$ywW(I-)N?S>1K7ix1*0rO z;MqW1^2I1f@(d3oUKJ>QNe(2}8b3y9B&1lEsITW052O=~i8JI|sa95^51NTuQ*!|e zewDFthP;|;r6q2G=6N(MaR->EaB|&y{|uR*W+jb$83ImRtd6UkAs2p+LJNet1rNeD zu^q)?GLbWd`wH}l(KDM?rdfRrGjXPTGToYH&YLN}O}EO-12g65e%AES2Vq%(gJjPm zVEzJ^grb`<6OlqZ0`<ZkdY4#^=f`?3fOt9#MdCfzqxxaSikoFK9*^pG018G(c*}NN zsU103J>R*xX|UHi7il)%EPD^MMw#btmX!ms&0M%yt{Q0NVo#NO23qMo<LjKk`7@3K z9#5V8WFU5>>^gaIpp_cPgL)1WN!Sc<>)Lb|h_n&5EZ30@6KP{@*;q$*jY#v^vMNV5 zT%^shW%C_bp-5Y5%kFVx*NU_iS{4wGIl>VlZH;ZX(~(^-(jK#AFFCSNB5jK;d&iND z5ox<@*=LSyv`E`$%f5AF<AmoGTc#R278miocg#h%&p1*i(*~hq&ezFNgRDaHLY=&0 z5c)O#7Wu*;Ymn)=MSg^G#)w;l8wW{|hGUnC;Z4T+xi>P|s4~z`#ka^|xi}D(-y(gv zR@U`CnCsc~A{>$u4q#ReBYPL-gm)&id(r#eIbbYA_09+L83(H27P&VU^{%)@ew=Gf z&s_}#2dWS=U)4KMq^-4OJQG#2LD=tZkv9*vyk_DodGBEOrO(oSe|Bu(mt)Jmc4UKv zXZS4HIoO(%u%<uGjz!iW{BIn1KT^c*Z<?8BElvz1-?YFD*`iml)IC!dq0bge%x2*k z$Ga{|$QzzXC&7P@yy>}t@}=Z0k=$bmo$qX;^WUjhrk%U-PRaMR^An2^bh&o!_YvfG zX=lsj`bmDkEt2;xbPJEM`g&}J9^ZTz|AegYM9l`jhP>Oe5m_4d--~+UJ&VXcz=RWp z<#ug!x$*7OG<X<4oeksYH&LO8z7tW6=sn;~;d-5gM@yhhT4AjFG0?MxqV)mtxY+GL zwDn-)ccSDHu5u>5VF?{_jE(<AheNFP3DzJy|6)gNqLbV6cbZC?cs=zDy7>%FVX{RJ zHuJ9#tC*H>jiBL^+aO8b`bQU@{j;p30M4NM-M%q`rM0l{x1bvm&bD3#FVe4jCQ6up zGp&N4)!$573GXr{bH><*AzzEKu`Lz%Ju?18=~?4ROaOCzUFHF3aWE9i;GPlSkbGs_ zhTX<oUm-Hzf-)W#Wa4K*?bo)}Co(@$S|RoXmFI1xUu1r1E8h+(|86U%i!9fzxaE;0 z#5pLlvGv@I|0_+mHybOdKxCyry%6dM<O_8mB9@P;&}4m`=$~h6LynM&0UxrvO>;D~ zv1q=rtr`cEftz?VG0m6J!a09M3lrJ-mdP$R*Oz5H$Ift>993(5^L;sPsv}Ig{siWO z7A{{Vj6kHxVQPjT=N67nlq#ouiTg6OsO~PLx=*Fbqbb^8cI(W>Gv8>*KB#{Tb+cBp z4(i?Wv_AKB=pThX>jao5!F;QmYz${>mqT&>R-6b?6N8-4WUaYNh}>`C@-%&;>xKK* zU~;qt-Ez|*dyUEhFmHpIWV;t2Fm|ilBFO&>auMm`a1Z{3EuU?cL0qIJ%R6w;-4~dx z`fonkn=zPXb4*S>bN%vMAI!gCHH*Of9n5}RjWw}6TMwz|zZ|MdP;tE0FNf5MK4)RT zQW<Kgxf1GgYQWx1b!uFyDtwR?HZODsgmH&GV#OJS9I*y_#E#sT(}Q2^-D%#2<-8mA zdc>Bg0s4UcvpFrkZ!)&E{?L6HwJa|;kE`;Td$Ts9`UqUo+<}{D$k1AU?q2o~x(UNn zE3$UiqyIU=KT`&k*7_rA2!li1i~w;6@SLMRM7=QzV+u_&G>3I)j0+o&Bt+I{P-R1P zBB&Bs=O8PD?1ByyVezRHh6)T9S>M<WZk&y=BRMrL+78)DhKnFR!a|2Kk(D@GXT`HV zyH-1^RA`vhj9{c-R+&&StM3I>A}en;+RwCp>eRxAWb9bOZHJ$SIgEyk_P=%P`9KZr z$B3*7=-5{uXdU~)j^u}iS$z|X6wGR7z^=vY8*2MJyOwk%L)-bt4r7hLT(s?nhuJT; z?Wa2Se7uMD*NLqApkr1Gv@R^G2cSvL#{Tz{V5nePYwcQOP$jZ9*|q$}sf7;^u@;Qr z4!f53{#z}(RV~;JgOP%j>}4eZ<klY4iL96HT0EG;u#B+6YB_4xGF<Dz+VY`Y%M_*I z3<}nAlC_|c*+G@aI%8LIZz}eGRSO@4Vq1ztRx6aF;qZ)hh_Lv86pU0*tectG-c0uq z?A3S>g!><L>x<zX-1<Zh+-ntFhW6o9l}|h68Dj8EuJotOd2<4Ia6@fLpQbq*#8Ya6 z=yulGk#^ZT(vpn7{~r6nGr{d5k{9#4&0)BJwASwl<Ss!%YQwq*Oc|O`i<nqY5f%=} zUXi;7;%bO<*MgY^CTkn(UkL6&ZD}8@)=y_&V2j@kL)={!&va3%;{erfLCqfcgHi{3 z$UXq{Z-zR!IWFOdsLe6&b2k1BY|PkaG5>Hl%X^VK*XQOLcu;O^^X}vhdcScFl66XQ zHXR)@-~@W$A%jge*U!sX$l_0pyHv40D|#;SLAn(%Rqa+!K;<St{12p<l>+8b=<f{a z18Qv9m=RDu3FYG<r5^Y7Xb(?<bH_Sy{9vAj>FfV#dM~O~rggSy|M_5k4bxyc=mxa` zThZSR$9YWP0z2bvV+HI+s&=OLL#EqNd<|}iC@5D>LXrE79aeZh=CQiT*cWuGq1#6& zz74m@j@vdh@Sg?U{>EONYn+2%x~eVk5&dH4;eZLh)sCN@Fo_VWj!Ome1@zB`>s3oc zZnk5T2j)DCj{XluMYfR`(!j*~8^sXpLIwe2+sj@I>=*B0By)^AaS4INl<_UUj2>k0 zjyR`wMjxJA=Ngl6VrQ*?D3H|v_cqiu6u#&mxQN^pb{$!dfw6GDU!|1{VCTBYG1&{I z2Tbk=*a7avvUthX=Dq@^FSNODff)!U>nNB)FhAGk*eCj*fM^^<teywVN}j!N)rkC` zaZH;A3EXgiQ7h2cHX{?+j%W9`lEvBHPy<~NF#e^BWkW}E4SdIvwf;b0Xd64~k}mED z6eQtvGVV6vj%2hCax#P%mIYBRwh2+tigUa~C}XMoa4MDEpd1V3u&dBj(JJ>ml9|kA zwSwWe=U$kH_0N;*+=~zyn9jNFV7SzB1>$io=DNVB*~RLo!GAB}cbU&q*>G%~BVaHW z27lBBXru1;ET64taTH~?Vo|`>T-F-4+*YlzHNDUw>|?Gi-qp+60L2}sWtdhN!yq@^ zIlA++cG%jRx@cEuZSHPpe*|CA`_4psNq7B1Tz?tY^}{Vfy-5yV!ijeMVQeT77I%-~ zX&i<zb9+(1)iitt$8hXFaT87-8itSKXqWP=F~Z^lx5KwlaHAHq&}BPglu2c=fPx1Z zqdXcZ1R|^x^!Y0Xe=;Qz)+w3<7^FfAKBUF(X)(pNpdgQesakM?E`2DdOj0rUMDOry z)?1|o1r$6)fq#o?%xDM-{}$L2CH@BLHq0n|<(E-{)NO!KxCS?ENIm~;6^_qw3sTPm zW?}k(2tn%A&nom3T7uLo%PQnUb);TitB{Y<k$PoXg~cC52vXvMMq$C*QG(R_S)-7T z1Cj!X4;h8U_&Y69!mo_Nm-a>pQn%qo;ogoYK}z`CDvHOBK)U89Xagzfvulo^k4Sye zM=VF%7lBd*xuUIQZb2&KH}$0Mb0e<ViR)>SXW=zbIHx9g0*kNt-tBHd@+>Lj0}iCv zx6H!pacm*Q9ySa46bLD{$t?T}?gfyNKXVnPeH<l7vA;J9`IH7J_77&^kW*2Dl>Diy z@P}VS2~zi}h{6CK;v&U$nuQyF9VIsWIuIpddYab^{i7*JDR*8|xXuuylx2lq9z{B! zsOKXKU%&=Qih3ck@L$KG1j*ePRmjJ7NKtP@7XIOCq#*T;G73+RiV&o}ql`j{t8G$W z%P9Qj8%vN9?=}jTd>Z8!_)jFi?<(XM^rVC@jl#8;qXenv?U99i2!NFElp*fMtaph5 ze7$VnMM=T^kJX1D!j$3%(@Tt5A&(6(S2bO(vixy9Kg5bFhQ`=dk42UI-EH#L*;cA) z&X@NR<L1k)v#oyliSu#FqRjTdELGi5svtWbTUVO8uD_`jdmoPaeaFt1=Vn`Dj0fd_ zIaYtOZoZr{$12ZXi4YT2hzH{l;-Mp0$-Btz4u*Kv32|V){KFh8GyhP~=g;&}&tAMq z_U)k09~__W=F8r5t?SLN&dQ(7wR+3j=UM}d7+E>jN|L+gT0=8l8xri7TDxCX+5OUr z$AkC&i2d?))93T7y^(<>urNlr@HgLT)82MA3Y$_iir3+4uXh|6eD{rA{TkYp$D@qH z9eOc~Y7dH)V3M-I+ybT#PnC0UP1OfG@pXN0fj$a%Y1C#m=z$2ZYS+sB4Jt|Ile<0{ zyTlsijT{=x_%%D@&348Gy$tbr(=AJ^o6Up=n8TArsH;xp5cjNnXQ`DwChr{1aK~dJ z8ZGOfSk2;y51iuLEUu)h(#HP{#Xkp&<7NLltZVs4jI-{rvQ76Qxdzzh{6c*1<Hsem zxC3O0ODe++O>f*`wd8v94J&R`%=Hlilf5wp673fuv|thn(8}@4F)&v*Sn)$+jGjh9 zB#p9uy4pZtST7c`A6{+XCf@oIT+8=&6u4lQL$_MJi#L@d(`aBQtciOTIYq%*SR90+ zn^{ci#bPd^2!_Xv21ZFW^5ieJS}Dd58T*KpY~;(2wp!_nhT1`5;Dx#i(%``ir^n1t zO&Jy;hN*bNLx$s$X<C>s#wCwVUK*#HDnwC8fCm{u1>}SqzayGvZL_|y()W3V8>d#7 zcs{~$#rg>+K+@P{WynW%Sl<g2WeB$)1Vh3ikW2i_@HLWKp%nx^n5`8U8TFxOy)vjI zIG&ZtbB$II9M8(eaL;mOP!%9Lu2stQZml6Wu2n(T5s?1hRJs;+OgB_1J^y<{lm2^4 z>B<h;5McFNK<FC+&V1aKXfPVd8~{a%Wv<99qmg_wsB8cHzwv(azj^P<5NWCsQxpbU z522D-qFbjNw$DnJKYz-aAlJQM#mMI0SuWYVk86mmALlxl*9ucJlNVG4jYK!dC8F`{ zJGp3EL&Wp*Z|t&uJ8l>F7eHt&Av24tpTNiGyS8mF4EAYT0*&ObyIkoq{+u;THlMI2 z%a&qSOjF%6R%KLR9@L9Kh)h_eSU+JcsB7c}knqua=1p7)f}djy)|o~0-KDjJ(~9*I z&S)ut6hJeGt)Q-zF~qYVLsSxUh}uwyN+*ONYQrOhW)&lBR}rcRhZI{wI1FNKRgD3% z?`RF-{h)?ivsMsTv33ciP!(QpXdP^X>28oIhBXpD0-<kC0(2{UP6!j<&B%Y2yT-{? zzp}c?rTeTr={sU|m%p0f>Lw?}x)j$>zOl^JN7g@$nKWgO6)St}vwj=6h;Z#74h9k5 zqo9^*X9U94W;Xs@LaD3%Cv^(csUSnt5DFAKgMeozAgv{gQfwUo_h8&cK-5eH)+=!h zVX0zk2@Q(%F9Y1CrK<p|HA{F{v2}!XiuDtAD7J>M8)S-x*!{rEN<57at6EV5xY3=e z_*#NjiwOl<N+{A&!bB}4lxiu#50anX=jtsBQe3gJb&u6=QzAOPcE5E`&vj64RJN4_ z{5i-M`>n-+m%$%WVjtlYsO!9?!C_@kNpK88(~<^9ltC52F$m2c8XQ#y)da_&np+J{ zWbk<f;@3eOd*YiQj2_{*VtoYs!3s8y{7tvHCh7*ZJcmivatJf%PkXFha>qDVmRz;W z)laq@u$Bi{&o|neP=P;G!Qv$NL0ub3+g4>;Nzk^n;kKdnhHR^7J3z&)AvkeW(*vqy z6wOi=KEgAK^%Hi3x+W2_tqj@LgxiLa2-#MJY-_`91EB$6RR>hfK0>QvYY5+hx+W2_ ztqj>t3%3m=5wfkKtrJXFtlA&4s18N*heuPhKy}pxgy=qygXAOJtyn){1*mJ5A=^sY zItHQCE)2l^2BAV!5gdz9r!a)645|r^K`0+eex?k3go}#x6E1_g<`c55q%92sv<M|c zi!~raR1usIp?qlYfHJ5iI0m77+98e1QT;<GS8NTT0@O7h*xqOxSB8xJ;l`oVLV>G7 zwzZC}{Ppj#ix+&3|62IpzPnv6+2d6!aZ?}HC|O*J{iXgn%PkA~yGE<xaHca?W#=Q9 zgVe$!xD@LnXx2}_-)4>b+Pb}I-K*AOL#{e*-Q46oXgwPnNQCkx?Ls(^%RtizFDceX zcv(vcuV^XZpq3I|*HXeEEhW6ErGyW)lyC|Z>`A?XLrGLRN$8Pf9*31{CBbnG^(#Hg zRQgo}+S9YDG2~el?ird3^voQD8H@v9CU_@yXfkLE?wITOH_`5FkSV?|h&h^HNu(!j zoKKjaE6mRo<|iD#032QagCkN4R;VhrD|9)I@WYj&{tSR^l}f0fkvI#46;7C~#P<p! zy993YoUY-KAi&N!ZY!L4Y*639Dh6Ryo|+Sc)r$2I)@Ui=0WBpwq@{$1wUn?{O9_u@ zDPac)=W^4CdqBZSq4EeNQRyV1=LGXu2f|4n!SM{u33?`~^s5N8*K;D|S><@D9V9d< z==u!^bAsT+4$TS2fa6VzRuJa|@q*@866r}B=M(1V3iERX!W>1IV{lG{IjYR;3RT5+ zg|0Ba;GFmtNu;Co9Asjy>JT4+-C&5BsyDi;JPR7xAKUYqjvlqPBnO!Mcgn~|xCqi? zL+-Lx5ZZ$ZavfSha1C)hoc1&1X=PAJa6(o#lGC1*j^}^u>I_y6!i*+V1Y?t%sucuZ zP(iLrD+tqr3MU(eEK&xQ1Se!=Be|-8)`Yu;CRZes`5^Wyakw&`Mi`;kD#B>RRuYOq zrnp-W8NR#tfr#mBO~HX{WOjzGQJEC*T#X<3UO!i&^!~#tmIb`7um6WNoLq_Kc06ZA z2O4lIL4Vk~1t4?};b=ZtKjA#6>zb;A!F&*tC$0ct89AY-KA_aajl`D~U(`rEsQ8hM z#B)QiZJMIE@f-^0m7=JT*sA!Ejl^8kP8(vr;)@!I!xcZWkvLKD#f`*rP}sEyb73Qx zs?!)W(M~mhzp2H%Q7%5h)S>jQAxsB#ZFb1EGGsd~+%`16A=@h2I>AC)gfa-InyW+6 zriVuhZ5MREO{L}|99FEK@D`|Rma`yP0Ah=Yt3YTm;U|i%Cg>2?*EnN#1hUVS+DFJO zpp&1Fr&u3BvwlKRK@&~{ei}Ea2!&#8LYN2Yn$HMGMuC_QQ5#ni%0NhsP*EUzUbfZ- z=zl<q2`_<kIC3v*1>u#Tg4{u^AiN$_kUOLmg!4g#)8_e*tOhYN;+g_H`GL6ubZ@cc z#62L0nE@-KIg#<hW*Vch9;%5SDYfqe;G|}qdYQ@n!&K7=I~40DJQdL5rvRs}p@pAt z0i=6DaU+z%1xN*H1-W#k@DUmm>nH32bsdp!QU61zfteB?)|C<hI++^6Ga#A}cY`oe zgoBE$Ng0mnL68zk6kAgT@M|eyftKbJVn%^rOQ=(9%@V*;EhVfbi%a|Mz#UplcuBD} zZvl>IDdCisdWtZgKnP6mE4KDcz+o*VoYK<MfHPW3aI5aE9RV1rSRWxURq-_o0E@Jk zuu@BR0(NOBL61-k;WI5IaELH&9G*xu3O)kI2U3C;#C|2_C~-|5polEmUkvnVF`-Ve zwS;+Ex&)xdw}x=HlKP#=bp}0i5yTpZ?TR1PNbIoXMBV<HP!(z`kR$JMC2z{Wg#xY} zvSj?TRzF#g?#d24gIb;kF)Z=8s<krmTC@igw)@kv*|sE}RhCs>0WN8_9bhS^D#xE; zofa^_2@qvO2Eh4UWhg>rC_*rU|BP_XjzFX*rU>D(EhaJw!~_@8VFV&`g1Ad+`uYOT zyudczwk0Mg+iF4z$P(WVG?HPT{AWfUTSlY}>IgTb%SbJDdV<B5lqldMJ~NVDe!_0W z`UuZ!DPfP66835-VV{-~_G>BOfR++o(o(|9T1q&orG)bV{MU68VQxN^TO~mo*C=D# zHgqr?3xhX7>=EKSAhe!vMzOVoue6llQdQRyq7@tP5l3k;+y4rP;fU{Oaj@5}6Yd{^ zPy^vRyh;F_M##SYKU*;x1}i}fMZ6CLKf(sZ)~3KOb(Ffk^QD3>P~mFN0nTf-6>veb zP6`aW4aBg-msG5(W<aZAtJ?v6lv9-xipEZWGN|i7lo1EktHQ8G;v8E+T%uysFa~qr z-S%G6yWi>)U}N6|p*e)Z!M2loODhORf(ml)Xa(VDP(ki1tsr<tJKabw7lb+pc|k?q zX!O{1T0<Be)R4PLD+pCV1-W{yAj}CW$lak8gk?bmx%;((@K8`eF0e^!2%Cc%a?ff7 z;rXC~+#j@pa3rW8cTy_|r-BM{Uuy;7o1lVRw=sIgbQ^;k#~{6S$n^oCy9g;k1-VqM zAfyKs<h)uz$POyV4bTcgPEbKE7la+tN6ZUq$mN5eAQS`@<c4bnp(v;zH$p22BZCTZ zqqKrBI;bEwRw)8LVsTJIu0&~kgo!}~xl*kllm`{$Dzt(yHK-ux(+WaWP(jYG75)Hl zdQd}drq&SZf(ml8w1Q9{RFIpa6@>Xg1-S)UL0A-2kXxb^fPi~xP(!XkYY5wd3TL?w zz^a-9;&LZ)!QqHUNQW`SM2-i<1jY&9Fc@JMh%(~Q0RF?-DMJ+4wnQDG`hN?-y@4T! z+z#+JF{{?3i$?Mcg|fh$ZX}<Cc}`m*Hv-Hn0^iUAaiEb5S3BeczOaSnM6Pv+34DDE z#Y8S>hzWd|3&lh(XNU>AZ84Ec7GeTl^g?Um5iJf7`Q8`GiCmU2Cq&yFLW~7LOz_xZ zVu}_MoUSHv=wKZ_Zi~<rtb@1#WOsVtBU?^9qvh-#uS%nuTV)Z5o<zM@R<on@?pV#v znGQlc?tqIxsv4l)4XfEtdjG3_2<&4Z7;gsb9F6%$YcTeHR~_2ns@XNiwKaFKFF`aW z>K(0G?_nw)dnSAm=BX}FGian{M+3NuQF%FltI!aEYOXo1B8a(WxCp>HYk?JpcO$!q zGU7Q<6z+yi9iN@j*os1Loh<v$8I5q?FKu7qx61cUF}`d9oG%8QEB`m=c)RsPU5}c^ z4P)e?ey$|x{iPMx^hP(=QFAf}|Cg#2KEnHo^%I&wT~Cj8K(Y_SCK308FmVWU(BF!$ z+iArG==)c#CAh}Y&`*d|td9__rG!{e*SbE0+c^;HB7OxzT?8GihTsO#f~do(Gyak6 zNXE<p!Hck0v3|lnEhT8yPk0$5|GC8FlfGB27+x;~C^`f}h&KU8HS3HLwFf~=fOtfy zgWni8qu8!QK0@j^)dz$k#rg>EYbl{wO9{udG(bEB>e@97+@b<k5_E`~P>9M<h??*S zp>tP8=u{D^2+WC9R5g+t4Z^oXfPjjvHKFiT41X%<;`GKx2$TXTdxOYOxPeVTC?zH? z)nX?ct(^#`po%M2y-mn34yYc>2R~ek2?rJHC%mqughN_NI0EY0VGMj;)murZRkk$* zMxkwGV<=uF<EbElF5jRrN>AllMPORGYsi&o1;L3~6&AB97*ln#)8f+znFkm40+EsM zd;p;Ult?*4F4uCEqkN;EYl8Hi#w|~L9~Rd%uBXdm1(@%L%F0JL3F_JhG-w7fB=I8< zb}lEAQz*78k&jR`{y+U`a6uVV67pey6-}V+f83U)ak8?gA~?}PHws%|a1q38h;hm| zm<=6Dl*mU|3F_J!8jMy3m4v%*QoR3efMXn*?KGaP45|o@K`5J%kQRfO4beZIU-aK7 zy;*qu;i0?ub^l3x(~qZ)GG#-#D@MLujOR!C&UIzT^GU8~dFfA9auc}sq5=&5D-d=J z!m1KApoG<m^$|2%OIQc$+O$xF%20%wP=v}*gqrXOs=fM>o*^DnNmLQWs+#=-hS8HY z6tF5hN~lxTz;i!{okBbSLaPWZik;R05GuBhz=++j;&o&mXr4{q2-#EGgm6f)e!@`@ zciR%#+}~9aVDY%pRuWEtm}h7ZY0wN(^B4Fb2=kXf<FI=*ES^>(AK?tBYY)@lGi6Xo zpg}>`%4l&4#L9>*AXG-6H7b)|d}`ey$DX%hn!K5=r{V*YUsO6D;mi#*t082U{$~Q` zVDKG?;fawGRLlfGi(-A}0erU`Er{_TbUq=|783_(F(BYBu;oObme&E6YW71U!WRG| zh_mFG#Z=T|;)@7kmEwyUiM5I!*+^Wi_~J(51Bx$dBtES8k&VQ|0aYk&JPbUd_@YMQ zQN@pJBz~s&;zorkEk7P(cE@R!ZA;N?Iv`uKY+;UO^8oppWuxxXY(5%QbOYLt-6*_e zUdY*d#2nS|Y68vC2ZYlgT7-LTL{Q3ze77=8343fYai10w-m%3%94fV(&|=Gpd@D1e z5H8wcB45r7F(Ka0gO~_{nBcL+#7r&z-?A=X{Y)E-J>Y(JQFsX5a6f@_f!4&2RAm1N zz)8)X0(_=fP8g?`h<Z{7yZH>p)1}+t4gg~`9}h^?EC(_}vmD4=&2k`_DH_TwAJ8oO zd8=mk0S;=G-FaNI?838}Ww!~HqtjI!e>JLOw3siwuF)*teSNoP9|k<8*`0u=HOqHk zzph!Q#R%q13)hXfDg;49n6KCxLIcRzS@gy$LdKOL<7wf>p&cz`TSZ$ZT4)Cj8B~XY zO%D$i`Z6s*_g6tklTcJf)=wCrSRY}emJ&v3DPgph62@vNp;$`^C0a_DsHKEbEhYHM z0;)P6_$rXoE4mLusZ}yHm-3rNhz42W2Sy_qo$@q783>y!fgy2FaYlo&HmGJ+5opZH zssfE<b<R};Cyh{d()B*&T20V_Yr<0wb>{^b2)ky02|}Lt1^0@T(7z7iG9n%sfdA0- zM*vKOkCHeIp$%Iy6(o&+;LC^RudOLfJN|Bc&j|P-oDG66;h<vugu|e&{Wuenc_0QP z-UEUk;a<g76Lg5+cc2XOiPHKA__+r7_zAh7MEDa)5EJkQO?(NuKlsE|99{tJx|S!L z*UEjbSl?HVUG3O!72Jj&hj5Qjjy?i@PQp%@+$gOe=(lb1IeTXm9Z$BzaYZJMAH|NN zoc%pKYHf{mEg7=}u~zD^1inMFYX{LFpbRPr+Z9_w*fEJun+}sZY7nd-#x+#Nr{OVG z-$g#W{gm~zY`xxfgKXJtMe~8~7(OqYAq)Ow^^u3NaJ`I6<!()Q$oux_>V1gzstW8Q z90GMsf(9=ugGz#95L);9|I<LHhKCpi%Yp+qlk8F9`iT)Z4YO}moZxA(S&qs;xH@wK zay097YCDVvC{b{SrbU?&`3M!DuE|nTtqlmX6zeAh>hYg8CO1cG2#bOWr)EkQXafQb zFq)2b35ws>BEm|=`U&@ebQR=QX$9e-avadQW=in`+JXR!@H$xBu0@31iuDurYAN9z zEhQY)Qo?syO1P+{1b1MvS`ltQG^lGbtnL@exRStnXi(Wm?$=sDU{zW{?oV1lU~O7K z?y^=8oVqFl!NtPLHYkfK0yDxjVt8VqJ?=3W>;!QI5t$E$LL~@4id}Y#!bWHvtniDN zu&g04v=tC{1sa`7x}kBttdWt!QiEB=!f2H8@e#&=OmU|m&QbjOCB*q4)I?Zni=BDF z2wtVGB+wHR+X-M_QHEkvIWcs<IZ=|}wnVuGXFWy5AhwoRq0~OYbj8*Z7#W#470{S9 z=vcK&IR4ByteZxlI8%vg2z4Nfy+pSKTJB`kfZ}6H<RfeZG40R}NQ2eNppvjbv3`PW z8wk7hp=hhJ@DcceS_~B-1=Kb0P8fWsZ2cbr&TH1m>l+l^%H1Cg(2;^2mkQAkrS%O7 z03T4ipYRZ<YegaBO8RKqnsD3DmX`?wCvedAe~HVQc2uYndLPjJ6v!0IM-%sgx@JM^ z?I4^j5NKqH<%dMLbtn&7Q-gUHZV*~OA%j45xJBs9U?1F%s1QEFQN`90-q%vXc`YS; z1L~SGBYdC?Dhb+lTDUC}4(K5Z8CTKRi5ANEBS_DvXg-3D=69ln&E9vQJ*o|vVzXum z4D1pOdqP`IEBk-U6gB$^Q>T*k6MUeq?SZjvTN$#g4Yv&qK*+X=wkCq%RH=>_rT9Aq z5tZ<QW__JAZ|N7U@~I{yD7J=>sHFs*Wlea^p>b<RggO{;ofG*EW1LqKnw5B1BT>h| z>E;w&_1%!I0-+-x18malGk{-e*2$3Z|Mwo_-`LHSzEk)E+Tz)~sWi=XoCo`EP0h8g zo)H1|>Q6zahVa%+s=o>EgSz&2$hI<MTN`d0>hF+k6>VoC7`oL@yjAgc3Sxk@P~o(O zehn(0YQhS|&LG^QrG&#;N_a<03Fozx@Qs!dbc<$$XBirsIRRMg261qR1CR~|hmfN( z8`enFL4wx;FTwIP5bn$n;*`^LrwMZ)`oHbc!Fyr+mI_rvVDi}7jYcw&DsBzK9|rMT z4lmCf`!pT8#r1f%z;_T{R5n#k-8lJiM}jb%1iq3O%ZHEv>N=c>kmM@^AK@90Dee`- zeTrXS?}Vjk9tfKqfhPD)YMNupxS^q^ajvqcA~YzrhQP424Q(Q{9i|Mb33k2n!s}fG zIcA6;KA=qP$%2h)EXpNHR!x`)iWPU^N1Z#Z;n^!iW+Nq~+JL}>4G|ovG8E@%tyANE z6kh^yLJ;3q>frQrSK_56AoOpK0FduLMh6qNfx31uCA*b@kMNda{RDT_|7811Wl%{t zt=JlZV;kyVMz~n14phO!p3yQSQ|mN^j!7WoN|+BqKh}q<la;!XV5@^&Pj9WRa@1Xi z&K(F^RMTP}2up{+STqhTv;mOhD+3>)NU=2|0NO2h)i@KPSs?z&<s2YGp#e_PsVI82 z$eRY#focg121_TVG|F6q^dIOnF2lOn@jYBlslUq{dM9qA<BtXLcXL5m^9$G@)nD@{ zZHQZUj}zs;E7G~8rfauVpIJ#wB}-h(jb41q^j4kBcEB?reJu&=Uh?wyT-^hC)wtXR zp}(dBc5BvY<V+M7D^c(Q>`Mfp6Q?CHU#b0!G29jt4{0&ss4XU*)MCOpvVl;CUO-^& zRZGkFm1S@W#iH0xiGq)#e}!VAUuQy`1;Pp-)Z1d>axLBoc*Yhx&HJhv_iVP<LL!Yg z-o)LuoVXW+&;-7SI&2y+`VOsSbQ;6Zser~`D3OnlUqfvTfv=>-#0-R;4~L8^L&p9v z<FK9WD@4ms(SifRw_XoXqTn2T6IO{3ajb~iBe+F>=@$|1RLD6g2J!Yro~(bvN|vMN zx_U<zLou~Ru5WN9-dqKqZ?;DAPSg1A>Iam_N8lT&yY4wJL6TTYpJ0l79W_NUcm`l% zx`l4?X3F)cu3`Fb*hbyy>ORH`{WZ$XN0<oe8kYtI%Ak@kR<V8pUSzHAaQOacWo){~ zl~+dR=}PY-90YZZRSwBMWe^;)T`2AaaT-uXC%tIarQn{4x<8`+;_mrnuDrm9(Ec5S z89_*&M%GX8f^=o%GPQz`9aNATpcRCipn_bkRuD!86;9_n)y~6Vko6WQ;~Iiv9NMJ$ z?rrA4S-^1G*zXvJP3CVAsxK@Ml@2<EO8M(=tr}Us95;*VFIZ!mz+G<z=D}dMvh@*; zE7ngqsig$X`Uz)1T|0jPB>$fy=xYN8O`NW}pD<CeenP3163VocP_Ctf3N0l})l!0H z{e<bDt_hzDt1STS{}0s_qZ*DIk=1cl5~udC6;7s{qF(;VKbG)o_@kia8LmO0=e>*1 z^Sj%XuDF-(aV16s4#W8^5Qd&`1cVn|tZXFnzLHlHj%)dfMlvUKVR<8&&vc=_k<1xT z*d$``kCdpAa1w;SfO8RP2|nO)=JB=}c&!l#?u7k{4K78`OspsnE>#KnimfD!)>49B zvDJimAX6-Jf{P@Sb3uF$Mr<QF9U@Ro93Iq=(-DI^6+^88Au+;g#a0szXsJ`ld=wXf zB8BDaF1(H8wMj76GKjhaP+t@TH)&eG3PM$c&lKw?w16Uc%OuO)NPgMPv<i05MTlyZ zsAdjeo@SlIE<k%(1<;9+ZwFyJ4s-xhm3ei@Gnj8SG=)m*Bk+~)kwU%b9oOXg^D+V? zLC&d3)M?Zbm<Gi}op3E-1<08sT)QkkuVsYafG`E!jbz?Yh2`!>GR>f_%kUmZR)Y|Z zK%=nZ(*Gc0h*R2ua3O&Ix`w31Ib~5v_!`6u5aI<8jYIn>jZcCwEeVc6=u(1`s5+G( zAr91~x_}q}Q87p@ZD0k+=^b>=1r)_CS_JTbx&%-LvC5#5&;!JLiH>n7Uq<Ut6;u&C zw_yG;Tqt4s3<n_vLInu7n*>qwcbUYgO1_@&YEmD%<$!RwAY7x=-xoyfc5h@@2qPFG zAl5GpkCCrpR1vh_U8-uky6-urd=32!W$GiW0CnvZzFz(zZD7uV5){^{E1_8jGDQG? z&kAO<GWBl(oKkEpy&^#z7N^#|Q0)Un3g6?d%Ew*gX~+I{J_jNDeVC0SXO#lB(PDe> z4{uS%eH~V02Xrb8H)0ZrVKz=c4`h59J`*HngV4mCfL)pmx6Ffxmc$~Z_KyIp3@E;q zUeAESTU&whRFIP#dD?}ywhraFVK(7a?tnbJAuQA1iKpsh{ozJTg70>BjGTa@Z^c0m zgccI`M(?fzUThn%1+=(N8T$zvLAVR*Y9w<~%L(6r@CbbkkpaW@(*+Q10ztbOutl@m z0S7eef_<Fwsfh<9Xf_F;BL&Zm|1&Q}#^o?0G92o!<@?kbmZ=jjfFS-3po0akd|13m zRpleB1a<8NN;YZ(!n`^EX|M*;eIV9F45Y&Zzf?k?b@&9J?Pl9{H!$4q;%wD9mjQGO z+jLo6tVBM-8Bo_8<8H%*2AN`bqbRWlm;$d7hL&4M21CbgKE7uGVIC0bK)jhav}h%` zy;?!w`~A9BOG&FXAh>SVp3|F}A9CGl$byGmIm7pPv5TQ5z9`KLya<d3x-)nSM}JZQ zi6~Q^ogp87*tN+hlD}Q+>KjQFe$Be%5!V3xShZaAh-*XyU&eJnKDq%<$Q^vdRm7jH z{`L{q-W0xAi&go6iNJYw89y)m%34=xCf``K5ibtqC)P&1tyHY(uTxpqUuHh)8ZmP- z%IV6AZ_U#mBH!|pZI_qZ$eot2%UJ>R55V~nkgtR(2lD+ZYk++3$!Z{e<9Yw1Xa|0} z`Q)RnyQBH0iX+J5RBqGE$6T}U0~2{TFNPuBI`-zzT(z0}<8mg<KYCsQIscy7+1i=V zk)cha*15JD{ITJa>s_<T`DefnLBY>T5dUQMWxTSGAC~!H&+w01Hv;+BXa`uqNZkX@ z&(eCXldCtl#wLus4tFZ;o?;96bFv#;?+5rucM;0`aO>s6*rS25WAP*th4{3B`22Db zkWT}%$JJx9RN{lza;nc^ARiq~K#5OvvIF=$Wtmos!!{C9VQY#A*>9uk$D{ZRBAzZ# zpS2orCW^o%TnIw&$-t4eyaLGQ`(lCk)zgz3U7s1l`9NJUUXRGf=USlP(=bbbe2n8X zke?z{z$Yjgz#lG?Uu|-g4(GE448#xT51&3@xeUkz_+e|DU-VouscDXM;rGb#jKH$Z zm;m_g%`KZ<OEdY+J-g=wknbXH0eXNJfd#-E{2=C&uJm$#ht3Jf@42}k_<b!WR4l%0 zn*-!meVmy57ViNdzc^z<_+8Tg;6C73Ab!$u!;`2Vzd-oPldiXhH{+f%>*390Cd`|( z+km_~%VFS6P)-xx-()=ebld(duCajyxR>NdnV&?E^CN0UA!kRNu#tL}`C+@xK<+|^ z^4`>kDD#%g3M%m_BH;#x59s`Gm-9PZ)UN~a-UQk?m}SBF#yb#BfCiL#H-Q!L0)8HF z<TSZut7}B&L|j^WQRY?kDj+Xxmjn5s{q*Vb+pVst0q19`oL{Hn#g-R(ePsm(AKIUT zoap=<mGdK1&d*Lw#FZ8Y)cLWgjVN<~oF9^MemjaG_^AMyVx@dzo2y$&BF_HV3%p1o z@(SiK5I_2KdYfxRfG5Zd#`9qO3WA8oStmy!8@LO21eixXkaj$e90BwJxjpjCj-$*o zAfoeG3C0wjJOi(#<;VFw7@j9^@$yKCQ3?ni5zj%u!_q2cs`p7Am$>kp_sl!*VRv4v zer~RwR>kvlqRtDw?GU04j45_hIthGu8`dXe&iia>SAe$?3m&4pEaBq?@jx{Zcxb*H zzTK5wlrq-|!9!9kG|oF;!Kx4Y#T086J9b64%ZInSQWHCuI+AtpWbe1!E??R18ZeT_ zF&@K6Jcf~Y3?uQ_h5isE^4T^O0p+S4t`%}!qs#4Pk*~3o-bR<_|Md0k@lh06+kKho zNdieXWCGz9CKn(gBoj;!kc0#RatRnP_<;felK??30fI(fb-aKp`*U4z#nN4T1;kz1 z4_Me&9bJ_LMMc+DSfk>43kr&_fT*CLxO~skJ(a1<A75)R_0&0a>eAJHPM=fhc5{5q zB~i#??sT?Ty4jb5U(8RAM;UK1m!B)<Z1Vj+L=8vn#zgJL#CIk#QM*xAzS~%TLMk@d zFZs(dz9^3gZ^&bVbE)v2L6SW3mkN){O=9`WGFRC_!BN>U@zrQlcvN;we7hH4yTw;! zxkGewRCz>A4s(3F4ioiWG`!7MuDg9tBX(b61N}E+usHR&Z*)F&A@v{=^&k`9;vxIQ zH*xT#8ZkLdn|$M4OqIwM%U#h6`FH;O8-Do*{5WIoK{jejDUNw+Nr~kz%cwP(s5P0W zHJSLmb|z{~5!&p_FW}!J^G}WC-x<r+$dPwNTsrgkqWY;n`u;Ybx|RA=w#Yp7Diigo zENA{LB<fb`RVM0DNteGY`!^DGEA=W9z9F9Wr0>_|RH0Otl2`t+>;WXIP^wK?&OCRn zGf{hTVygw_`d+bXi|_O>mQkC!8`7`DNkpPHW#V>8DTf-B+Xk7aO)1A)x5EgjP$et# zRIE(XlyWN9MM&I{w+Sh_X^SsOceC6dM~R^%=BQ-7e)1wLBYY2uI`<PK>RjqurhMpC zChA*xs>0N<NZuA4k+#D(t(x>jNYuyF#Z25*MSaX2J=Dk4#Z25kLw!tL%(N4U`k4DH zxaWXzaIdq>F-k5ll84>ZI_wk_W<HeVAS4;<VdO@3?lUORACP`RGN3$DkoetBvG>1y znZu~wsoGujj$f*Gs&*!-b|$KJCPo377=~kahPg_fid~)v=BePBsNk8X&?Q~|vWyCz zi3*;Hie1u~r-Emqf@h*)mvrW#*NfT<sN|{GB?I$R@Jw{aGf}~_+u{DqQOz?QjV1b; zWo_o0XNa<0z7ejvzZaP5o~oXSs-Ec!Bw2^*o~qte_xPo{r>bWfjYM@n5sB)as-B6e zo{6fSiCSHrHs+z-ySpw`s&^*3?3nPiM&6WNHBS}KL?0K`JXJgsRXh__JQGzs6MZ^V z^HlLnRPjty<+5?+snVIK(wV5ynW)j3pvk%2-P34P>t7&Ity85lQKd6cr87~bGf|~8 zQFY4(nWqY8qUM%znWyHKn0Y=?y3d&l44lwApeM&sg;RYq@wMqvEb~;-vbrqirU2$i zYm24N7X0e|zxty0|JDDe8}$Y;^b+g&r2kr!r1^{2E)o|nvHocM&?x>i(7IetiherK zYBG(}NzthV)-qGC6#I&-OjP=Jk@ZJC9KCahwbInrN6(g6cP5q6D!?~h_3)ZShELOV z&2P{^F#n|M1I*+ZqlOrMuaxG3`9Fr9K1uQ=WsCnQvjzldFqmzI9-L{I9&cWD^i-L3 zeX>!UEvAjPZa44%{IBuWAMgMiT{gkmnq-{Lj%G}=hUj?ojZV1Qs!b`UWnkXt*V8AL z77xlb@S=G3g?57Zm|qWGC;LH*!QAcFOUjBy<y07!$9G?D^!RM6f3k5JFRxi(wRNMF zU~V(@?%^RhhVC(~>ld{aTI-Swm<<m%StZ7^{lwc%))E76tu0$_g^im2qG`D`(0H=H z*tp!vHO}-G`<7ezM#}*4HGlE^o3X;$g6H4pb1SR{zk%0chFYv;1|ERdw^(mD#`ZyC z_F8LPGL^siDCSU9{MzajeQm9^AlZN=5dNKYzj2~K?ERh9&zMmtzWkjv#K2Q<uLrHy zY&-==k3MeoN;c}lLf>Ik8YjZhD|cAG#WW2Shj&_+7{e|X=3lH?{i(IhH<I=ALU}f* zzs+}(^_<7#Ol1y_uKA1g_atN3a53&#OBi`qL_dAjn%~KQroM7N#&fV#EZ=YSFglls z`}SK6J*bh*R=j~eCnx*T;!-(p2g^jtD^|7f(WvOGSFB3Ch#J}aqLUt+G)eMMIh$L2 zddaBkCQq7FII5_0(iGXX;)>{@SFJ}n8PM8`|7Gn=r*<~qO3{1B+7FHvgWs`6bfbDU zH+RxA3yZQP4Ntqby<^?g#W*@TsvqN;$r~q1zOb?l-<4v<7nsMUE2EJwtaRO|8806E z5`_KZqtP#|U6z53`i-Zo{>I1&V*M$rmoa{V*m=sz>qgycey;1;lSYMQJ9x-F4jvyL za{b?1*W)2K+W5V7#$QQ|Yrd`N-O9_ebBZND^{;tc(}V3L)Wqf)O;0yFg|aUz%*|<^ z!E+PD=JQsbkv}o|+Ig$QUqA(HZnpKJaMh69A_Fhw=4z)pHh)S(X_-=bFCL;VS_MYu zN#fdzR#7IEvw1pIFDxr9E3T5=d2o_={GwHC^sW*gT(k!CqN+A`nR-R>W&N_Vrxaf% z8Fy7}=oRRnOx10^<HrY1A2kA5Vz3^tpS~$DQBS58=R$gjgq|C23UrJ9qzAet@hkIb zDS@6nsEy4ny>+u|L8;kiq?C(~$5*5TM&Tpy;;xiHK0ebfwx<M!8~D!pmnne(_-uOA z=@fWV=Qqwj=^Pl@pZeH**w(wZ-%+TU&9@yr^D?<~@cr`g)WAf3zx=+`z#@KV{9J0_ zD&vJ3F(EB*lTkcfyp$Hm=|Np=KA)+Z;gH$Aph{i>8>fq3$cArQ-)N(6*Z~l=1IzkQ z1Dk*Ej?X(7KHVy?3QG&+y$fHa9^(Yc418w#ZYN;ry{V7QyZh)F)m7##1!hV?Kgo&@ zPe0KmP-Ngk(ucbQrt@Rbg<S*NEd%QL<IF(!K~&4;d%E7u=;@tc>Syz$uA8IvysB_n zVXhQ~4@QT21o9(P)TY3_bV_0Sl})8>K8`zY_9PU>Zn2px+>Szb1QRiWaE_d`VWdSt zn<mc<^}D$rC9*mdz4@l0cgw)X0Nk}lm2c)>KvC|f$&*VZBP{@Phfl|nUSDe9YaU#u zZ8M|a^azZ={qI_FX<wXMd>Fc>Zy=8!hQ6h5V6M?}UG$^Af%Qql`KWK^>!mwn-)Ib& zIeOuwN!fDM(=IT}^z518_G=zrZvJC_AS*%>!91+#h2g^I+a<7UkRp<HgZZhZZ<#rB zrj$t=!YtCW3o&JLWK9|r=KpGXacSYqnUAe9TZ~+ct3Zy5c82+LjJ)G+kUM#FYQWvm zDVGEWrdTvS%%kG=%K|;>Xn>e^`t-}P`mJAr^I(qVKRfx)WBkXwC4?W{nqduHg>_R} z_<HvGeuZZ0ND>$EpHlvl6=O0}3kqjWGCF&6OsmFh6PFeTdUc{@W1jTsS53M>Of3%N z>hFtr#esBjZ!xair;7u&bvFe)CY}dz;LNI3MsH6@JuDt`i(fA+En_1U{Kw5rVy;Rg zl?1}sd;GdwC$yBzPve*tletFBED7|>rPXA<Zt6LurG?qq_&+<lsz_dFG^Na_*jy3_ zS~RE3&&Bg4fu0skD*WlthY%2=S!G7C_>&8YiVAU*_zd$A-wg95Z6p@h%hAx#z=)*o zw6@HldcT>o7B0L&F2mq_vAirWn4kCAR2InVMN`Y%s_RA7i%Ti0RvH3(=SM#+3tXEL zq}2s6d4)sd;G6}~$rA#_Nd|l+cTWx6Zme4%%xQtJ(YD}MCDQ^(Nl3{^DM+1=IwPeb zrA14o*<}mMRy5Q#G~U=yIj?!1*1T{<!@T;U+PY<{mNqx6(5`M?v8t{aqy}yNs-<<c zS2rwOxopKW@Mslv%bOdQG>DJ?X6FU~>cJ!~{>@$@TAsIaGg_+Vt!%Doth?d=%)6ms zRg<=`aY$W}_{a11wYlJ&x3ZyGn>?d-TFsc+2}>KBy@uF@>UniHG&GCxFW3=r@CCa- z1YWe)rq(npX<9md)sn{g#^#&FZ(p=0icem&%QB{1Gr4x^s)kh!S3};_4eWOPN>Q-K zUXkK;y#`&3KDNg$(Z$90><n@I@AgO^%|qerwS%w<McH1vTUXkF4y;o;rFg&!oWIu| z*p*hGS`Hg<%U(N8_tR-qFZR7;r;7vo>|)x2|Ji3xVK8LMOZFU?f@0@O_Fw&U6Rj3^ zzHg^TTVA#|>LX+{ge|qg%S~I5ZbBwv86BxeOImH*ue*LtmLpm+<rVw)emamI6yF}V zy9?i|b~(TL?Yhz^?*d{9h?ZRQs(r2Bjh2YrZ`!%3bcybV-_s40h@vmi=X0;xVZR$7 zar-99U$cFF*LNh=|HJO?r|W2<SpRRdQvJH^8!KZb6=}|D-x~8C^sFKca^dxJMax)9 zB3(93ms53nQ-1OBYxZ@1`k)SoiZ|_E(HRHq2Xz{rr(U<SXn3Z*VfXj>-N=i`{(#+h z3q7O(S|cimo8GcF()LVy+wMu*bKu){4sFjVZ`%WDd*1Rk1TX@#<sJJOnx5CTf^Z@% z?rF8B^puenb(R<76u=Ta)oS+~OiPqA%Co|98G(`fvYdXUkeK~0I#l(pJ<CrI(h2cx zE2enwyI5Z^PTzaieo6Pcp&6kc2IEuj+m7E2&2U1x``ze_n-v${w|i&E=nUs}Q1@7r zM(oD9NG5cHH9Sk{V(wwPGJ|F-qXe94mkvC`lkCQ8+F6sLrw`jN=(JaN{@b3|RR&}@ zmT(USW<<(|_K>bJAj9#q9H#1&5AAM#%L~kivXAYaU1e}41g3T9DXdnUfu3Slo1Nr$ zBQ;{*+Zb$Xo1I4s_NO+xr=NbM#p2E*C=Va8@1r5R=ZKxvRYq#q6L?$^u@R?^*ab$- z1d;U_TBb9pnDWx2RiD|FrhgL(9I^Z}yHM;uW>@-L*V4hy>_MXU=XPgN`Gx)L5Zbql z;&2$wfOs@VV%oKwGbYku%@%x#PSVqqC-%L?`TY`up;4P9vj5jk??X$LXGN|8R=pKf z>1evko9A6$Vwt)DAh81%k~j$5QwD+(>%qD`#U|arkofjXECx3=q=<53L}K2DoU*SV zng;G%afDNQ>v6jYF{9|I<Mwy@Kp8aR9JUU`Kd@)HEM%K>t+N~kZOYenf4>_{65k%S z(;qsGQMxfDQE}2v_tEbpn!d3!Vcd#)zP3N1Z9D&jU63OKN}NK<l7S_OVb?wbKEE4K za#!p_C(&m&t|Ypg!0_DAlDP9_OzyCgc5lBMT5@qR1-cO?apY?|-R}mO#J-al=+=|y z3yj@8C+#7AH?~A!y@Yeh&diXpC7uh4aAQoO%PG4%j9qcfDSKxIZQT&al7&8~JG}nT z71iu=i>hyI2ga_L^Nszl5i;V$kyVDV#9_e}BhT3-rpX&ZUe2!MgT=e(w4LQzylhUE zyDlmP)6ivoNvCm}qF@=Rl5`odlI_dLm26*@)3D9QNAub{CJFR)6^qShp#sa!+9|_p ziZB?sx2n;oDum@S!X?W&5SG&&w%@&pTZ9OF-T$q9twGP&cUZ-4;7hFkr=6aC0c08f zQl+rmjfZ(lp!z#p95OCek>;aP39&Wuotfo|H8N+5UqgIP87GtScp;LnWwzM!9h63J zj`-v|+%$I05ozDsSvfL3)<GrVi=~{A&}EF9i7DUX=0Y>{xajhRojz@?Rgty{p)!gl z3k}UXknbR3hIiIT=fTJt&k`{WO=8)^@$1D~Xu@cz6aV4wF7MaxM%;vc#!ffN>qWsC zkdD@iac6Mp&`vBDUCx38>+pUQ(K_67#?JE7I;<4yQOi$XoSV%R2anl45jtxRGJFff zl(QHRJ#u;8slNTJokqj({<HQJvFTmgmwc`SGiJceDE7T#_Z7Q-uze|c2tz)FvfFjB z=Lg)weLvVim*SrbO0lT;!M@zT5!w61ZOq~|#@e&uIb>6UmuuSg41}62ar+0T8vM}? zW>lfDrZ;Z&n2OP9omZP{U@mxfRQAE&0{UJt_(yv{@>XOk`@l8tb|;NDse>q5oyCcF zdy~b<rSlNqG`uyfbE-xjZXodWh4t|N;VB0XzSE3|wl}JE(8nn)C_IY!snW!pAMGqr z-D>-?x1un-5c_1^{(5E?Pa(_apgbvl-J~8x*?g4o);d~je%bDo+<7>r6h)3VM2fTq zq3qs;V#GN+C#MGat)MrfN<~_5wSSH89`jeO1y#*vYKDv3&)L|&(CB$lO%3KAj#)QI z>~nE_JNCAYEWAPdaL)cugdSCw0c$Y_nN14jHiL&1%tiZ@f-%?HP6dwvepSI&0n=NH z9~_3(7yqhwHooMn9atc4{0UcJW}|rMCwofQg|Uumnx#FC3hXG$<pA&jVC^%M*WVzn z`Pu%Y&n~PzKpY14f8y+7eR)R^bA0F*J2)tTLrx7=fm;J_8*i^sC3gR82djJ?WgZN~ zF$eLHg4yQklsKKZNs%~REdLn_tM!8IOm-GYKGSV^VP}cG$+=a*l=Gw$rxR~i<j!&B z&VDw5r8=RB2fM~au<K7Mm?Agg`oj+nZ~E|#@YoU57Pw7J<|XQtc`QzkIHt(n3Z}>^ zT)irP9@mL`1hpn_HiG}Lojy+{@Xb>AZV~f%<`OuHaj|=nyq?^v)VRl$Jec<bm1S!J zeoCqGpu0ReD;!%~A$`KQgQ!AgDR{fflDb$add3@6%|#3fi@ZbCHl@8iUKe@qQKcV9 zz?ry9ct=os)vLl=ky>SAs3Wdcs=VcOaFfFFv0D_`r4;c*wJMk=^00zQKcisM&ncL6 zA0A`zgTq_C+%_RG>5hU?e~P=0LS+bbWWYYbjsn67m=Dw55!6n)SL)&fj&%xVm$@~= ztKqGf{R$=>4-6gXClYWgBT?=V)O;Jhb<$^_RycY>Uw;ey6gZ671++0IE|D$p8QzoN z^&k(A;3_^yo$nq&Z7^Gyz=wRV#H&%MU`pgeze=C0VAAOXaOtAdaJmoXJ`$Dvcmh7^ zDGaa#wQ=mgWO@nI8VlhikeCh7YoKCoJCT^@y)(B-xkpgDjuIpECwL`>whRM)1elxO zIBAqf=Ypi)4*GMzRMm1)4=Z%?)A=Cz*Mt9K;1-3y8XgEq2Y<xf#wiQ7p~7@9)Wj-K zAYB%cegO1sz!McZT^N%7Ip}ABS1WY7FeLpa&~FC5tDPR<KG8UXgBkw?nC7#b0lG7! z0M233C2`CSa%+uBKRhswN#~XumHy-)1@pRTRZdEwSZ_M%$#jsob;N9+lbg+EYv3bM z#mwMdNcX_vV67lO<>ZwZ+I1MnOyCD`mB>>i4H4>gN<4_YJ(8at<z63&7oq-1VA^`J zehv2gNILnsCrILZz+XBO1>7(zXO5eMBm)}^hdW};_NZLnzjp^dn0t!UDzg%BWqQ2I zPPfWb?j@2{UP3n-fbT_t?Dj_r-5sWa*{j~g@%p5fizoa}Uvbp$I1wnwcG;wH9}<3W zcsGE9@Fz*^%2qICpHVRB^fyU<(w*UPOgjBe3O!2;cP!9urDf?JLG3el{FCXM@`}7Z zof{Fyl*!#rD!sY1BYrc(qw*}AcSX7zj%5{!pjS)9bZtq@VLYW^^3&BN>27@mlfQLT zM>>69k{|S?+Wzu*0R<dLzzpCj6|`_g9Fw0OGL_zvfJb)ss2p>unAZsxPXfp4(Qyfs zNUxfdNX)%j5_3rV6-+w4ZIVvRJzNr#zr2Ts*n>Pg2nb)Y<IJWjPUWhJJv+!t_W0O1 zol@zpQ~BEzOgeXjwbRAEWN1k`@njKMxH(K>c5JVLNvCs9r4O3W5pUvCwR;4$;X+3f z5pF8;iVUq1V=DsY<DR@P&@U+IGeIv+pmXz?q`O^A!1Nocbh-@{oTbrkC<{2IHaH)> zgQhe4IGb)nugKGL43MjsZbTJx!<vfePL!BUgy1jqj-a;Gn+AFqy&`-P55t@ctg2SJ z9VLAY=u3b(nR1%wew6eLpsxjvYc42rgw`efNzhY)uaDP{xEs|a!^>b;4u-rqgS&xU z(hq~a0rYzmI{lZD&htPgro>-@e=Tr-g`ZAMN$;x_atFLx0Q(5hdda{^yHA<4U%W|k zchR{#_{#%45FfhA+cYol<`;ma2=>X{aTnvy2EShIJ;cjN<SsnPUjTXr@J19!dD|5_ z<VD=w__D$nRM-uM8A=6wL9ksQJ3tSs<i8gD$-oaP{Oc4t`RRt0{42r#C~#cMLcLv3 z7~BTL^i-#BWIMJS$a)W;-WqHo$c(i^Hac-7opXCY!KBlvtI}H)Ogc9hs`NGmgC24J zoIqvxsC{RocLmWMtkQR3C!)k|2Nlc?hA{w@PM@*F|BV5b082Y;Hrm&2RTwCcUS(N< z0v}c|>2x)#^i1rdkeGCCeUzB>%N0yIUDEAznxs!D1!SO)x}5=;g9;{{K5La;46n4r zqz@CXba4tJa}$c`$ChmD*GCFwH9EIddi9JrCY^gOReDnbUbjfnT{|#B*IUS|kfiOw z%oEej(7|^I7>}^+_;cVYU|jw#{VXufQaet8F^jnh-4~<x25tkE@(O^@D7f5;;2P57 z3^T!iKRjv|xDq&|;9mphD|jO?{)nQTe;aUE!7l*g&x+dVuK^EJ@X>M<j8qEF1D7i} zIe?|0;2yx^6+A%9bDX|<iMZ2&?qh@jL&srgBf+@}m}8gso7D=PCyNmXa+6~+_}2p$ zyU5Vy0q<4lTns8^eMT(sgTuA{B3heLK!&3U*xg+lub^E>pfjZ5l0AW1P{EYP5Qj=H zR&ZZlri^(=23BCqL&c1FNZgDOu2V2asAAS<OhodN{*;1AXKbXMUXEO=Qa}dANZJ{Y z>5O=Xijfa_IH27lrgp{2eAqjgjHF1;&FE?daQv18SFS>5ON_8c{vF_NNZ{Y4(8<rp zi{$6fnz7$VV$dV*iv?r>8QxSFh^w&<J$jOM01dhrrWUW<w~6r<2TCM<4|oQ!ymH|x z)n+O9XW+RCwv*6>dZmC3)*~|G9YHNe6lGw=bJvttWN4QncL*4FkoFaSTA_2$j3-I{ zE08-2%s;G>8k+$oNuP#X7hrh>u|5M$lD;qrlhh9dTVn#)$NdTeD=-ozE8LFU>%fB) z{?iKG?Vy4m0RLHFbwI({ae3~F=bkRv00l6lB{4hHtYFf)wM(UUo)gEUb8nYQ-=2Uw z5Ampcc6i)73GprGhW2Mv-i<1}1<Tt`xHc}5O)!e4HZg2&9FxusT`Ijr!KB}+U<@&$ zg|ClSAOmA;s(@Anlg^l$q!V-Vmc&uyz5-r{0y%)ib#XfRxxq{FznpXh{5mLrqH3@3 zq{6@o-1H?YypP;&$uDl}?sShZb|=YSBli`sYW5AoelSU=IPMjbnCJK-1(VMGV=8@n zLr1)^QDRpKo7%&RM7QqFK>eI|LK!er>pSz~nDV*3U!_+onDki+cGsYSNoUkit^cfo zK`+2x_jP2rkbobimU54v)>-V!gm;p=*t{aoB4or;V)h|F5#J!`o<ph$K}_!mYQ4mv z9!@Yjp+-vrK7r6wCMK=G?Z9A$06hVoD<rhABfggl#65yqiC2XILa)f{GXsMXv(NbQ zXzU1T2(Dt7eHbTHS>WVpXPM}+Fm9-_^hT`EJA&HP9?QK6EF%?`Szg~5T~wt6+t-XY zyn3Zdo!E@|>aB3_EaxfsqAN6#$da$H#QNy|__S{?{sDUz(1Vayo}_K#UIyiOJ^{Z8 z+?E#SKb%1SDg}26^|+A0(76-CigMI`tq-tzgcI=Pz-st$QUd+z1YF+<nnbN|lPf^X z@8x7girX7DwcnsT33f8)zYF}Oe*iw)$9uHwiha9(2HptWIMSsjX}f{fWO>^PNPiBv z2kedz=v{G7`Umg_qdhkW@h8CNhsEjNcf!n+WMlJTtO6Y-J%+~_`T!rn@`eW+(O^Rx zlz_{C566^s7fj%k1bQ8?=0n2a;MA@J_Cp?v*`d2T<IJpqvtAZ#Kt^qFEAZmj3{k*# z;FB1E<ll=-DYOdzc9{YX0Z+vYRK^-;16Jjo0G4OMLC?-bQ1HZ1@8OvOoYamLLcj|# zLdeG{Nzw{{{e8Jv01aZwhXPN|k73jw1N@OPBU6F%Vs<<0&jJ2TZhXcgx1r!&+;+=j zJzfjE9y7u<zz*SjYto1A06z{auMP*fZNRT!jX1FmJqLUn^yKl_j2r;|77fxTPkHYF zx5Yac(LP7PQ4~}`0DJfq@DWTQ@3gG&3-AKm6Szr%*oP3n?g_C5fx7@_<C&Aj3h4uY zpGJp5#F(LBz|TQmJ}}qNRN#MN23uWv#L#A<U;`MWfF;1{IlBXRxZ%CsfCAS8-wgAO zijocf0T^q{H8Hzr0qy?+XT$bP;fTTiH1Nlxu$3~#{|f6v9<QRV5itA<1xGNV%osxm zL#@S#<taD<`dEypiFELv0>%;IKMoo^%lgVy;zxwxX*6(qtOH$v50%9iX%4XDk8nzc zqTm>=({cn7IHIw@AD}~cCUo&kR#5H(3xO-3>bJ(|{{_4_eonQ!fFHqSO%*|T8-Rb4 z0{asJIe;y|P2k6XBknohh61?_f|o@U_&KbuGniLa*bjURBjg&P!1sU;mBywJ_&Bf} z5eM`$@Y8tA*dOEP>fC?<$`0iN--`~U@y^UeHyi~$Vmg5hi~?2#UIn}lGtw<4uon1H zbU-fB8-e>_#Q1R+*&1a2311SfZnwh%_*?h|=f<vrZNObHpgd{@Hi&%_?Mj4~)gIuF z2jVX^V-?;8UXKbK0Y~^T@CkG{8JM@~uYjj39Xt<w3@(%AnEWnXIu0lV>_@09QWIk+ zLqP`YXSxa5p&H;1Lh)PiY*x6^^V*SqGw@hkb}cdf2Y}TX+YMae!&MSH=X-$H;}pnS z`4M1ThLPBHXlP%dU@cZXpNiPPY2be2@b{H5Z1DyVJ3{!)0xkl70rKSU2Yd-`G`!A< z#{h?+ma&A~Q#>7b0%nNHm-IT|=gK1SbGiZrGvOEL9b;GroDA)TA9oQxhD;H#d);DD zV(W_bE@q%U#{VL)Is=D*$Kt*suc8yceH3{=18cbdxCfO>3jCm|fL!1m8QhQNbs!AP z{YtFDTX8vXu{uKF7qRGY>fI4G0H4DeA?6xc3H*VwDDMM~WGJh4BMP3#@gm8bqA2k6 z@v$2Z@IQcYJ8hrR4}mY47{7BK2Og==&jJs>+<W~G<s}E<9l)ZzBi6yJAg;fMl^aJP z7#@WKb9IbiH1Nme@muXQV0DJ-fN!21U$i#@@9Q0_k5hD40{?~tyfujHuf&M0N>unO z7|Jn%Ja@{Hv?%a$toqMl9eN%3E3A>s7;Xhl#tia0=VjRjtak7;@Do_1%`yHTfg7%m z&p;r8IOJ^=c-D_y=efW)qk=q#1A&j>R(m=opb+?<xQyhDWeo7^m?5quPVqG0^H}BK z7@h-6Wd!Ih;>EznFaWM0@<&=w(C-Rd$0%XJ?|@%~(^_8Fj{~bCdJ1?q?qp>#0SACn z%e+@IvHrWjC0L}hV)Qm()kZuH+z*QqWVRR4PNCo{c+p#96@CHUhsUnU7*4}IcgLXk z8n_g=5v#Z+Mjr)S5{{4f8sOcyaq&LDQ&I<f9+)#qybL%#AY6YD6l9>m@iBqF1s;x7 zDyMi8@Kh`^3gig4cMxD`F97!deQ1n+ko<`Gxat@D$AH`QJ=WOw!0jD~fFTWW*<%<H zUt7cmvVjj_QH5dxOBuHf;XfR_PmBc~j77^iq;|Xp_}xCS4g)s;_rWPzOgiMX0E0IK z=-LYr;3Zfi#lR6V+>e5KtokMtP#bOlejVEwq=3hPlhMIBpp*YE!0jUd-UoaVr+}{k zBmEuV;kfh3TkT2U5-f5#!@mIIVE?KAbu9(g({x<7Zi5&>ci`c}VKT*LqzHH{PDuzg z*uZ#T^|HMNxK+9F%m-FGcvAvi+m3Plb5U$U!DcKHT2^e}Pr$F>GLa3wNIIsBi-`2M zNXL}B7#;ouST)PP0M57sW_fG?=g5ycshm*@f$$fhJ2IvI?}Y*#QwBb_fdb&e%7`j} z)e&6{ERPT}3xID^u9_C$B~Uh4YwjAk6L>1LBkn)0{6~R5g8V5y6!4tyM1ed)$m|Dh zP}J!W;0bf%7SA`p$8aZ;H<Dj~XU~s5lkZ%ki*5s*ezO`|>gTU)EU44wFJ3mUd1Yh$ ze3@UhG=^&Dtyof9x1_0l{*Z!YT5a9pTUIv8T)mrXSWa4<wxGfLUF`iv=MQw=O72rz zJFj8h^^LXlkg>P{f0nnReqNDQTkF<}jwp6+)C0A(3z|_^{H4Tcwq=DnuZGAO>MV2O zg)3Y+V%<=uC+aPB>unqAEE!N+JHN37-R6k28><>uHcwc(vSCH@*roMo&g;ag#vvm2 za%V}JEO6Usj{f#?Crgh$H_VyE&bR{*!4b}%JH`8s_dktrs#BHGENF-(UE$>E(cvSV zmvyUlDaS2-Ds}#o+Ae;`s>WNyk7Z7MhZY-_i_H&V&->C*&I6s}ykNaJ%6YcCEOBR` z0Uu7Ob*DD^Ot~}35WX?a$o@?W<wD^7!aD}z2WuHi-+LSkH;VaVoE(c*`>Y$p{mk>h z7Tcgd8RK*lZ;o*~TXbq*zcdQo&{v3Ul}@gI%Q92zBn~mV<1tfPFU})tl&=+8W1arS z;YY<d{Q95V?bBw7<zvC+E3vc;@d&b3kEsEzZLxT1tdnD$e^Gn^PHW*FTiZBXbRFm9 w_~%tR+Rx(7N+(@ZjdPq--#Hs^!__q2ZAOd6aZazynt_g%N((b~a7aA<A9F0HWdHyG diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index c20f321..a594e84 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -6,10 +6,10 @@ c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) (__aeabi_idiv0) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o (__aeabi_uldivmod) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) - Src/main.o (__aeabi_d2uiz) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) + Src/main.o (__aeabi_f2iz) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) Src/HTS221.o (__aeabi_dadd) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) @@ -18,24 +18,14 @@ c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.20 Src/HTS221.o (__aeabi_dmul) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) Src/HTS221.o (__aeabi_dsub) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) - Src/main.o (__aeabi_d2iz) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) Src/HTS221.o (__aeabi_i2d) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) - Src/main.o (__aeabi_ui2d) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) (__aeabi_dcmpge) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) + Src/main.o (__aeabi_d2f) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) (__clzsi2) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) (__clzdi2) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) (__eqdf2) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) (__gedf2) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) (__ledf2) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (exit) c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) @@ -5108,11 +5098,11 @@ Discarded input sections .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) @@ -5121,24 +5111,14 @@ Discarded input sections .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) @@ -5272,7 +5252,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000000 g_pfnVectors 0x080000c0 . = ALIGN (0x4) -.text 0x080000c0 0x6870 +.text 0x080000c0 0x6600 0x080000c0 . = ALIGN (0x4) *(.text) .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o @@ -5285,628 +5265,607 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000234 __aeabi_ldiv0 .text 0x08000238 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) 0x08000238 __aeabi_uldivmod - .text 0x08000278 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) - 0x08000278 __aeabi_d2uiz - 0x08000278 __fixunsdfsi - .text 0x080002b4 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x080002b4 __udivmoddi4 - .text 0x08000434 0x658 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - 0x08000434 __aeabi_dadd - .text 0x08000a8c 0x62c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - 0x08000a8c __aeabi_ddiv - .text 0x080010b8 0x4f4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - 0x080010b8 __aeabi_dmul - .text 0x080015ac 0x6a8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - 0x080015ac __aeabi_dsub - .text 0x08001c54 0x6c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) - 0x08001c54 __aeabi_d2iz - .text 0x08001cc0 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - 0x08001cc0 __aeabi_i2d - .text 0x08001d44 0x70 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) - 0x08001d44 __aeabi_ui2d - .text 0x08001db4 0x7c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) - 0x08001db4 __aeabi_cdrcmple - 0x08001dc4 __aeabi_cdcmple - 0x08001dc4 __aeabi_cdcmpeq - 0x08001dd4 __aeabi_dcmpeq - 0x08001de0 __aeabi_dcmplt - 0x08001df4 __aeabi_dcmple - 0x08001e08 __aeabi_dcmpgt - 0x08001e1c __aeabi_dcmpge - .text 0x08001e30 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - 0x08001e30 __clzsi2 - .text 0x08001e6c 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - 0x08001e6c __clzdi2 - .text 0x08001e84 0x80 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) - 0x08001e84 __nedf2 - 0x08001e84 __eqdf2 - .text 0x08001f04 0xc8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) - 0x08001f04 __gedf2 - 0x08001f04 __gtdf2 - .text 0x08001fcc 0xd4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) - 0x08001fcc __ledf2 - 0x08001fcc __ltdf2 - .text 0x080020a0 0xe c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - 0x080020a0 strlen + .text 0x08000278 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x08000278 __udivmoddi4 + .text 0x080003f8 0x44 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) + 0x080003f8 __aeabi_f2iz + .text 0x0800043c 0x658 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + 0x0800043c __aeabi_dadd + .text 0x08000a94 0x62c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + 0x08000a94 __aeabi_ddiv + .text 0x080010c0 0x4f4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + 0x080010c0 __aeabi_dmul + .text 0x080015b4 0x6a8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + 0x080015b4 __aeabi_dsub + .text 0x08001c5c 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x08001c5c __aeabi_i2d + .text 0x08001ce0 0x118 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) + 0x08001ce0 __aeabi_d2f + .text 0x08001df8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x08001df8 __clzsi2 + .text 0x08001e34 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x08001e34 __clzdi2 + .text 0x08001e4c 0xe c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + 0x08001e4c strlen *(.text*) - *fill* 0x080020ae 0x2 + *fill* 0x08001e5a 0x2 .text.HAL_InitTick - 0x080020b0 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x080020b0 HAL_InitTick + 0x08001e5c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001e5c HAL_InitTick .text.HAL_Init - 0x080020d8 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x080020d8 HAL_Init + 0x08001e84 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001e84 HAL_Init .text.HAL_IncTick - 0x080020f8 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x080020f8 HAL_IncTick + 0x08001ea4 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001ea4 HAL_IncTick .text.HAL_GetTick - 0x08002108 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08002108 HAL_GetTick + 0x08001eb4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001eb4 HAL_GetTick .text.HAL_SuspendTick - 0x08002114 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08002114 HAL_SuspendTick + 0x08001ec0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001ec0 HAL_SuspendTick .text.HAL_ResumeTick - 0x08002124 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08002124 HAL_ResumeTick + 0x08001ed0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001ed0 HAL_ResumeTick .text.HAL_NVIC_SetPriority - 0x08002134 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08002134 HAL_NVIC_SetPriority + 0x08001ee0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001ee0 HAL_NVIC_SetPriority .text.HAL_SYSTICK_Config - 0x08002198 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08002198 HAL_SYSTICK_Config + 0x08001f44 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001f44 HAL_SYSTICK_Config .text.HAL_SYSTICK_CLKSourceConfig - 0x080021d0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x080021d0 HAL_SYSTICK_CLKSourceConfig + 0x08001f7c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001f7c HAL_SYSTICK_CLKSourceConfig .text.FLASH_SetErrorCode - 0x080021f0 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x08001f9c 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text.FLASH_WaitForLastOperation - 0x080022a4 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - 0x080022a4 FLASH_WaitForLastOperation + 0x08002050 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x08002050 FLASH_WaitForLastOperation .text.HAL_FLASHEx_DATAEEPROM_Unlock - 0x08002328 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x08002328 HAL_FLASHEx_DATAEEPROM_Unlock + 0x080020d4 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x080020d4 HAL_FLASHEx_DATAEEPROM_Unlock .text.HAL_FLASHEx_DATAEEPROM_Lock - 0x08002350 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x08002350 HAL_FLASHEx_DATAEEPROM_Lock + 0x080020fc 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x080020fc HAL_FLASHEx_DATAEEPROM_Lock .text.HAL_FLASHEx_DATAEEPROM_Erase - 0x08002364 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x08002364 HAL_FLASHEx_DATAEEPROM_Erase + 0x08002110 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002110 HAL_FLASHEx_DATAEEPROM_Erase .text.HAL_FLASHEx_DATAEEPROM_Program - 0x0800238c 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x0800238c HAL_FLASHEx_DATAEEPROM_Program + 0x08002138 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002138 HAL_FLASHEx_DATAEEPROM_Program .text.HAL_GPIO_Init - 0x080023f0 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x080023f0 HAL_GPIO_Init + 0x0800219c 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800219c HAL_GPIO_Init .text.HAL_GPIO_WritePin - 0x08002584 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08002584 HAL_GPIO_WritePin + 0x08002330 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08002330 HAL_GPIO_WritePin .text.HAL_GPIO_TogglePin - 0x08002590 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08002590 HAL_GPIO_TogglePin + 0x0800233c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800233c HAL_GPIO_TogglePin .text.I2C_Flush_TXDR - 0x08002598 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002344 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_TransferConfig - 0x080025b8 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002364 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x080025dc 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002388 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnTXISFlagUntilTimeout - 0x08002654 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002400 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x080026a8 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002454 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryWrite - 0x080026f4 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080024a0 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x08002778 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002524 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x080027fc 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080025a8 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.HAL_I2C_Init - 0x0800284c 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x0800284c HAL_I2C_Init + 0x080025f8 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080025f8 HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x08002914 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002914 HAL_I2C_Mem_Write + 0x080026c0 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080026c0 HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x08002adc 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002adc HAL_I2C_Mem_Read + 0x08002888 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002888 HAL_I2C_Mem_Read .text.HAL_I2CEx_ConfigAnalogFilter - 0x08002cac 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002cac HAL_I2CEx_ConfigAnalogFilter + 0x08002a58 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002a58 HAL_I2CEx_ConfigAnalogFilter .text.HAL_I2CEx_ConfigDigitalFilter - 0x08002d04 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002d04 HAL_I2CEx_ConfigDigitalFilter + 0x08002ab0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002ab0 HAL_I2CEx_ConfigDigitalFilter .text.IRDA_SetConfig - 0x08002d58 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002b04 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_WaitOnFlagUntilTimeout - 0x08002eec 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002c98 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_CheckIdleState - 0x08002f58 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002d04 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.HAL_IRDA_Init - 0x08002fc8 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x08002fc8 HAL_IRDA_Init + 0x08002d74 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002d74 HAL_IRDA_Init .text.HAL_PWR_EnterSLEEPMode - 0x08003034 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x08003034 HAL_PWR_EnterSLEEPMode + 0x08002de0 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x08002de0 HAL_PWR_EnterSLEEPMode .text.RCC_SetFlashLatencyFromMSIRange - 0x08003064 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002e10 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .text.HAL_RCC_OscConfig - 0x080030ec 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080030ec HAL_RCC_OscConfig + 0x08002e98 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002e98 HAL_RCC_OscConfig .text.HAL_RCC_GetSysClockFreq - 0x080036a4 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080036a4 HAL_RCC_GetSysClockFreq + 0x08003450 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003450 HAL_RCC_GetSysClockFreq .text.HAL_RCC_ClockConfig - 0x08003738 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003738 HAL_RCC_ClockConfig + 0x080034e4 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080034e4 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x080038ec 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080038ec HAL_RCC_GetHCLKFreq + 0x08003698 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003698 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x080038f8 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080038f8 HAL_RCC_GetPCLK1Freq + 0x080036a4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080036a4 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x08003918 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003918 HAL_RCC_GetPCLK2Freq + 0x080036c4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080036c4 HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x08003938 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x08003938 HAL_RCCEx_PeriphCLKConfig + 0x080036e4 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080036e4 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCCEx_GetPeriphCLKFreq - 0x08003b24 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x08003b24 HAL_RCCEx_GetPeriphCLKFreq + 0x080038d0 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080038d0 HAL_RCCEx_GetPeriphCLKFreq .text.HAL_RTC_WaitForSynchro - 0x08003d9c 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003d9c HAL_RTC_WaitForSynchro + 0x08003b48 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b48 HAL_RTC_WaitForSynchro .text.RTC_EnterInitMode - 0x08003dd0 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003dd0 RTC_EnterInitMode + 0x08003b7c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b7c RTC_EnterInitMode .text.HAL_RTC_Init - 0x08003e0c 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003e0c HAL_RTC_Init + 0x08003bb8 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003bb8 HAL_RTC_Init .text.RTC_ByteToBcd2 - 0x08003eb8 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003eb8 RTC_ByteToBcd2 + 0x08003c64 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003c64 RTC_ByteToBcd2 .text.HAL_RTC_SetTime - 0x08003ed0 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003ed0 HAL_RTC_SetTime + 0x08003c7c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003c7c HAL_RTC_SetTime .text.HAL_RTC_SetDate - 0x08003fdc 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003fdc HAL_RTC_SetDate + 0x08003d88 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003d88 HAL_RTC_SetDate .text.RTC_Bcd2ToByte - 0x080040c8 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080040c8 RTC_Bcd2ToByte + 0x08003e74 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003e74 RTC_Bcd2ToByte .text.HAL_RTC_GetTime - 0x080040dc 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x080040dc HAL_RTC_GetTime + 0x08003e88 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003e88 HAL_RTC_GetTime .text.HAL_RTC_GetDate - 0x08004134 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08004134 HAL_RTC_GetDate + 0x08003ee0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003ee0 HAL_RTC_GetDate .text.HAL_RTCEx_SetWakeUpTimer_IT - 0x0800417c 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x0800417c HAL_RTCEx_SetWakeUpTimer_IT + 0x08003f28 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003f28 HAL_RTCEx_SetWakeUpTimer_IT .text.HAL_RTCEx_WakeUpTimerEventCallback - 0x08004290 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08004290 HAL_RTCEx_WakeUpTimerEventCallback + 0x0800403c 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x0800403c HAL_RTCEx_WakeUpTimerEventCallback .text.HAL_RTCEx_WakeUpTimerIRQHandler - 0x08004294 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08004294 HAL_RTCEx_WakeUpTimerIRQHandler + 0x08004040 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004040 HAL_RTCEx_WakeUpTimerIRQHandler .text.HAL_RTCEx_BKUPWrite - 0x080042cc 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x080042cc HAL_RTCEx_BKUPWrite + 0x08004078 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004078 HAL_RTCEx_BKUPWrite .text.HAL_RTCEx_BKUPRead - 0x080042d8 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x080042d8 HAL_RTCEx_BKUPRead + 0x08004084 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004084 HAL_RTCEx_BKUPRead .text.UART_SetConfig - 0x080042e4 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080042e4 UART_SetConfig + 0x08004090 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004090 UART_SetConfig .text.UART_AdvFeatureConfig - 0x08004624 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004624 UART_AdvFeatureConfig + 0x080043d0 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080043d0 UART_AdvFeatureConfig .text.UART_WaitOnFlagUntilTimeout - 0x08004704 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004704 UART_WaitOnFlagUntilTimeout + 0x080044b0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080044b0 UART_WaitOnFlagUntilTimeout .text.HAL_UART_Transmit - 0x08004770 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004770 HAL_UART_Transmit + 0x0800451c 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800451c HAL_UART_Transmit .text.UART_CheckIdleState - 0x08004854 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004854 UART_CheckIdleState + 0x08004600 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004600 UART_CheckIdleState .text.HAL_UART_Init - 0x080048c4 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080048c4 HAL_UART_Init + 0x08004670 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004670 HAL_UART_Init .text.makeFreeRtosPriority - 0x08004930 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080046dc 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.inHandlerMode - 0x0800493c 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080046e8 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osKernelStart - 0x08004948 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004948 osKernelStart + 0x080046f4 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080046f4 osKernelStart .text.osKernelSysTick - 0x08004954 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004954 osKernelSysTick + 0x08004700 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004700 osKernelSysTick .text.osThreadCreate - 0x0800496c 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800496c osThreadCreate + 0x08004718 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004718 osThreadCreate .text.osSystickHandler - 0x080049a0 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080049a0 osSystickHandler + 0x0800474c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800474c osSystickHandler .text.osDelayUntil - 0x080049b0 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080049b0 osDelayUntil + 0x0800475c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800475c osDelayUntil .text.vListInitialise - 0x080049c0 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080049c0 vListInitialise + 0x0800476c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0800476c vListInitialise .text.vListInitialiseItem - 0x080049d8 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080049d8 vListInitialiseItem + 0x08004784 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004784 vListInitialiseItem .text.vListInsertEnd - 0x080049e0 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080049e0 vListInsertEnd + 0x0800478c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0800478c vListInsertEnd .text.vListInsert - 0x080049f8 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080049f8 vListInsert + 0x080047a4 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080047a4 vListInsert .text.uxListRemove - 0x08004a28 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004a28 uxListRemove + 0x080047d4 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080047d4 uxListRemove .text.prvIsQueueFull - 0x08004a4c 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080047f8 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x08004a6c 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004818 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataToQueue - 0x08004a88 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004834 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvNotifyQueueSetContainer - 0x08004b0c 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080048b8 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x08004b70 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800491c 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x08004b94 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004940 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericReset - 0x08004c1c 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004c1c xQueueGenericReset + 0x080049c8 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080049c8 xQueueGenericReset .text.prvInitialiseNewQueue - 0x08004c88 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a34 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericCreate - 0x08004cb0 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004cb0 xQueueGenericCreate + 0x08004a5c 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a5c xQueueGenericCreate .text.xQueueGenericSend - 0x08004cf0 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004cf0 xQueueGenericSend + 0x08004a9c 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a9c xQueueGenericSend .text.xQueueGenericReceive - 0x08004e50 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004e50 xQueueGenericReceive + 0x08004bfc 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004bfc xQueueGenericReceive .text.prvResetNextTaskUnblockTime - 0x08004fd0 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004d7c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x08005000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004dac 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseNewTask - 0x08005014 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004dc0 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x080050b0 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004e5c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x08005108 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004eb4 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddCurrentTaskToDelayedList - 0x0800519c 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004f48 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskCreate - 0x08005208 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005208 xTaskCreate + 0x08004fb4 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08004fb4 xTaskCreate .text.vTaskStartScheduler - 0x08005268 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005268 vTaskStartScheduler + 0x08005014 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005014 vTaskStartScheduler .text.vTaskSuspendAll - 0x080052bc 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080052bc vTaskSuspendAll + 0x08005068 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005068 vTaskSuspendAll .text.xTaskGetTickCount - 0x080052cc 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080052cc xTaskGetTickCount + 0x08005078 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005078 xTaskGetTickCount .text.xTaskGetTickCountFromISR - 0x080052d8 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080052d8 xTaskGetTickCountFromISR + 0x08005084 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005084 xTaskGetTickCountFromISR .text.xTaskIncrementTick - 0x080052e4 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080052e4 xTaskIncrementTick + 0x08005090 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005090 xTaskIncrementTick .text.xTaskResumeAll - 0x080053e8 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080053e8 xTaskResumeAll + 0x08005194 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005194 xTaskResumeAll .text.vTaskDelayUntil - 0x080054bc 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080054bc vTaskDelayUntil + 0x08005268 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005268 vTaskDelayUntil .text.prvCheckTasksWaitingTermination - 0x08005534 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080052e0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvIdleTask - 0x08005584 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005330 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskSwitchContext - 0x0800559c 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0800559c vTaskSwitchContext + 0x08005348 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005348 vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x08005620 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005620 vTaskPlaceOnEventList + 0x080053cc 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080053cc vTaskPlaceOnEventList .text.xTaskRemoveFromEventList - 0x08005644 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005644 xTaskRemoveFromEventList + 0x080053f0 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080053f0 xTaskRemoveFromEventList .text.vTaskSetTimeOutState - 0x080056bc 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080056bc vTaskSetTimeOutState + 0x08005468 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005468 vTaskSetTimeOutState .text.xTaskCheckForTimeOut - 0x080056d4 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080056d4 xTaskCheckForTimeOut + 0x08005480 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005480 xTaskCheckForTimeOut .text.vTaskMissedYield - 0x08005738 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005738 vTaskMissedYield + 0x080054e4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080054e4 vTaskMissedYield .text.xTaskGetSchedulerState - 0x08005744 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005744 xTaskGetSchedulerState + 0x080054f0 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080054f0 xTaskGetSchedulerState .text.vTaskPriorityInherit - 0x08005764 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005764 vTaskPriorityInherit + 0x08005510 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005510 vTaskPriorityInherit .text.xTaskPriorityDisinherit - 0x080057e4 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080057e4 xTaskPriorityDisinherit + 0x08005590 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005590 xTaskPriorityDisinherit .text.pvTaskIncrementMutexHeldCount - 0x08005858 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005858 pvTaskIncrementMutexHeldCount + 0x08005604 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005604 pvTaskIncrementMutexHeldCount .text.prvTaskExitError - 0x08005874 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - *fill* 0x08005888 0x8 + 0x08005620 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x08005634 0xc .text.vPortStartFirstTask - 0x08005890 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005640 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text.pxPortInitialiseStack - 0x080058c4 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080058c4 pxPortInitialiseStack + 0x08005674 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005674 pxPortInitialiseStack .text.SVC_Handler - 0x080058e4 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080058e4 SVC_Handler + 0x08005694 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005694 SVC_Handler .text.vPortYield - 0x080058e8 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080058e8 vPortYield + 0x08005698 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005698 vPortYield .text.vPortEnterCritical - 0x08005900 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005900 vPortEnterCritical + 0x080056b0 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080056b0 vPortEnterCritical .text.vPortExitCritical - 0x08005918 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005918 vPortExitCritical + 0x080056c8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080056c8 vPortExitCritical .text.ulSetInterruptMaskFromISR - 0x08005938 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005938 ulSetInterruptMaskFromISR + 0x080056e8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080056e8 ulSetInterruptMaskFromISR .text.vClearInterruptMaskFromISR - 0x08005944 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005944 vClearInterruptMaskFromISR - *fill* 0x0800594c 0x4 + 0x080056f4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080056f4 vClearInterruptMaskFromISR + *fill* 0x080056fc 0x4 .text.PendSV_Handler - 0x08005950 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005950 PendSV_Handler + 0x08005700 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005700 PendSV_Handler .text.xPortSysTickHandler - 0x08005994 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005994 xPortSysTickHandler + 0x08005744 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005744 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x080059b8 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080059b8 vPortSetupTimerInterrupt + 0x08005768 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005768 vPortSetupTimerInterrupt .text.xPortStartScheduler - 0x080059e0 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080059e0 xPortStartScheduler + 0x08005790 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005790 xPortStartScheduler .text.prvHeapInit - 0x08005a14 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x080057c4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x08005a64 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005814 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.pvPortMalloc - 0x08005ab4 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005ab4 pvPortMalloc + 0x08005864 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005864 pvPortMalloc .text.vPortFree - 0x08005b78 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005b78 vPortFree + 0x08005928 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005928 vPortFree .text.HTS221_I2C_Read - 0x08005bd0 0x24 Src/HTS221.o + 0x08005980 0x24 Src/HTS221.o .text.HTS221_I2C_Read_return - 0x08005bf4 0x1c Src/HTS221.o + 0x080059a4 0x1c Src/HTS221.o .text.HTS221_CheckAvailable - 0x08005c10 0x14 Src/HTS221.o + 0x080059c0 0x14 Src/HTS221.o .text.HTS221_GetCoefficient - 0x08005c24 0xa4 Src/HTS221.o + 0x080059d4 0xa4 Src/HTS221.o .text.HTS221_EnableDevice - 0x08005cc8 0x2c Src/HTS221.o + 0x08005a78 0x2c Src/HTS221.o .text.HTS221_I2C_Write - 0x08005cf4 0x24 Src/HTS221.o + 0x08005aa4 0x24 Src/HTS221.o .text.HTS221_ConfigDevice - 0x08005d18 0x38 Src/HTS221.o - 0x08005d18 HTS221_ConfigDevice + 0x08005ac8 0x38 Src/HTS221.o + 0x08005ac8 HTS221_ConfigDevice .text.HTS221_Init - 0x08005d50 0x28 Src/HTS221.o - 0x08005d50 HTS221_Init + 0x08005b00 0x28 Src/HTS221.o + 0x08005b00 HTS221_Init .text.HTS221_GetHumidity - 0x08005d78 0x9c Src/HTS221.o - 0x08005d78 HTS221_GetHumidity + 0x08005b28 0x9c Src/HTS221.o + 0x08005b28 HTS221_GetHumidity .text.HTS221_GetTemperature - 0x08005e14 0x9c Src/HTS221.o - 0x08005e14 HTS221_GetTemperature + 0x08005bc4 0x9c Src/HTS221.o + 0x08005bc4 HTS221_GetTemperature .text.MX_GPIO_Init - 0x08005eb0 0x8c Src/main.o + 0x08005c60 0x8c Src/main.o .text.func_NVM_Manager - 0x08005f3c 0x10c Src/main.o - 0x08005f3c func_NVM_Manager + 0x08005cec 0x100 Src/main.o + 0x08005cec func_NVM_Manager .text.func_LEDBlink - 0x08006048 0x34 Src/main.o - 0x08006048 func_LEDBlink + 0x08005dec 0x34 Src/main.o + 0x08005dec func_LEDBlink .text.func_UartPrint - 0x0800607c 0x1e8 Src/main.o - 0x0800607c func_UartPrint + 0x08005e20 0x1d0 Src/main.o + 0x08005e20 func_UartPrint .text.func_SensorRead - 0x08006264 0x80 Src/main.o - 0x08006264 func_SensorRead + 0x08005ff0 0x84 Src/main.o + 0x08005ff0 func_SensorRead .text.Error_Handler - 0x080062e4 0x4 Src/main.o - 0x080062e4 Error_Handler + 0x08006074 0x4 Src/main.o + 0x08006074 Error_Handler .text.MX_RTC_Init - 0x080062e8 0x90 Src/main.o + 0x08006078 0x90 Src/main.o .text.MX_USART2_UART_Init - 0x08006378 0x38 Src/main.o + 0x08006108 0x38 Src/main.o .text.MX_USART1_IRDA_Init - 0x080063b0 0x38 Src/main.o + 0x08006140 0x38 Src/main.o .text.MX_I2C1_Init - 0x080063e8 0x58 Src/main.o + 0x08006178 0x58 Src/main.o .text.SystemClock_Config - 0x08006440 0xa4 Src/main.o - 0x08006440 SystemClock_Config - .text.main 0x080064e4 0xf0 Src/main.o - 0x080064e4 main + 0x080061d0 0xa4 Src/main.o + 0x080061d0 SystemClock_Config + .text.main 0x08006274 0xf0 Src/main.o + 0x08006274 main .text.HAL_MspInit - 0x080065d4 0x40 Src/stm32l0xx_hal_msp.o - 0x080065d4 HAL_MspInit + 0x08006364 0x40 Src/stm32l0xx_hal_msp.o + 0x08006364 HAL_MspInit .text.HAL_I2C_MspInit - 0x08006614 0x48 Src/stm32l0xx_hal_msp.o - 0x08006614 HAL_I2C_MspInit + 0x080063a4 0x48 Src/stm32l0xx_hal_msp.o + 0x080063a4 HAL_I2C_MspInit .text.HAL_RTC_MspInit - 0x0800665c 0x20 Src/stm32l0xx_hal_msp.o - 0x0800665c HAL_RTC_MspInit + 0x080063ec 0x20 Src/stm32l0xx_hal_msp.o + 0x080063ec HAL_RTC_MspInit .text.HAL_IRDA_MspInit - 0x0800667c 0x44 Src/stm32l0xx_hal_msp.o - 0x0800667c HAL_IRDA_MspInit + 0x0800640c 0x44 Src/stm32l0xx_hal_msp.o + 0x0800640c HAL_IRDA_MspInit .text.HAL_UART_MspInit - 0x080066c0 0x44 Src/stm32l0xx_hal_msp.o - 0x080066c0 HAL_UART_MspInit + 0x08006450 0x44 Src/stm32l0xx_hal_msp.o + 0x08006450 HAL_UART_MspInit .text.SysTick_Handler - 0x08006704 0xc Src/stm32l0xx_it.o - 0x08006704 SysTick_Handler + 0x08006494 0xc Src/stm32l0xx_it.o + 0x08006494 SysTick_Handler .text.RTC_IRQHandler - 0x08006710 0x24 Src/stm32l0xx_it.o - 0x08006710 RTC_IRQHandler + 0x080064a0 0x24 Src/stm32l0xx_it.o + 0x080064a0 RTC_IRQHandler .text.SystemInit - 0x08006734 0x5c Src/system_stm32l0xx.o - 0x08006734 SystemInit + 0x080064c4 0x5c Src/system_stm32l0xx.o + 0x080064c4 SystemInit .text.Reset_Handler - 0x08006790 0x50 startup/startup_stm32l053xx.o - 0x08006790 Reset_Handler + 0x08006520 0x50 startup/startup_stm32l053xx.o + 0x08006520 Reset_Handler .text.Default_Handler - 0x080067e0 0x2 startup/startup_stm32l053xx.o - 0x080067e0 TSC_IRQHandler - 0x080067e0 HardFault_Handler - 0x080067e0 ADC1_COMP_IRQHandler - 0x080067e0 PVD_IRQHandler - 0x080067e0 NMI_Handler - 0x080067e0 I2C1_IRQHandler - 0x080067e0 RCC_CRS_IRQHandler - 0x080067e0 SPI1_IRQHandler - 0x080067e0 TIM6_DAC_IRQHandler - 0x080067e0 EXTI2_3_IRQHandler - 0x080067e0 I2C2_IRQHandler - 0x080067e0 LCD_IRQHandler - 0x080067e0 DMA1_Channel4_5_6_7_IRQHandler - 0x080067e0 EXTI4_15_IRQHandler - 0x080067e0 DMA1_Channel1_IRQHandler - 0x080067e0 Default_Handler - 0x080067e0 TIM22_IRQHandler - 0x080067e0 EXTI0_1_IRQHandler - 0x080067e0 USB_IRQHandler - 0x080067e0 SPI2_IRQHandler - 0x080067e0 TIM21_IRQHandler - 0x080067e0 WWDG_IRQHandler - 0x080067e0 TIM2_IRQHandler - 0x080067e0 DMA1_Channel2_3_IRQHandler - 0x080067e0 USART2_IRQHandler - 0x080067e0 FLASH_IRQHandler - 0x080067e0 USART1_IRQHandler - 0x080067e0 RNG_LPUART1_IRQHandler - 0x080067e0 LPTIM1_IRQHandler - *fill* 0x080067e2 0x2 + 0x08006570 0x2 startup/startup_stm32l053xx.o + 0x08006570 TSC_IRQHandler + 0x08006570 HardFault_Handler + 0x08006570 ADC1_COMP_IRQHandler + 0x08006570 PVD_IRQHandler + 0x08006570 NMI_Handler + 0x08006570 I2C1_IRQHandler + 0x08006570 RCC_CRS_IRQHandler + 0x08006570 SPI1_IRQHandler + 0x08006570 TIM6_DAC_IRQHandler + 0x08006570 EXTI2_3_IRQHandler + 0x08006570 I2C2_IRQHandler + 0x08006570 LCD_IRQHandler + 0x08006570 DMA1_Channel4_5_6_7_IRQHandler + 0x08006570 EXTI4_15_IRQHandler + 0x08006570 DMA1_Channel1_IRQHandler + 0x08006570 Default_Handler + 0x08006570 TIM22_IRQHandler + 0x08006570 EXTI0_1_IRQHandler + 0x08006570 USB_IRQHandler + 0x08006570 SPI2_IRQHandler + 0x08006570 TIM21_IRQHandler + 0x08006570 WWDG_IRQHandler + 0x08006570 TIM2_IRQHandler + 0x08006570 DMA1_Channel2_3_IRQHandler + 0x08006570 USART2_IRQHandler + 0x08006570 FLASH_IRQHandler + 0x08006570 USART1_IRQHandler + 0x08006570 RNG_LPUART1_IRQHandler + 0x08006570 LPTIM1_IRQHandler + *fill* 0x08006572 0x2 .text.__libc_init_array - 0x080067e4 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - 0x080067e4 __libc_init_array - .text.__itoa 0x08006830 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x08006830 __itoa - .text.itoa 0x0800685e 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x0800685e itoa - .text.memcpy 0x08006866 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - 0x08006866 memcpy - .text.memset 0x08006878 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - 0x08006878 memset - .text.strcat 0x08006888 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - 0x08006888 strcat - *fill* 0x080068a2 0x2 - .text.__utoa 0x080068a4 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x080068a4 __utoa + 0x08006574 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x08006574 __libc_init_array + .text.__itoa 0x080065c0 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x080065c0 __itoa + .text.itoa 0x080065ee 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x080065ee itoa + .text.memcpy 0x080065f6 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x080065f6 memcpy + .text.memset 0x08006608 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x08006608 memset + .text.strcat 0x08006618 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + 0x08006618 strcat + *fill* 0x08006632 0x2 + .text.__utoa 0x08006634 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x08006634 __utoa *(.glue_7) - .glue_7 0x08006918 0x0 linker stubs + .glue_7 0x080066a8 0x0 linker stubs *(.glue_7t) - .glue_7t 0x08006918 0x0 linker stubs + .glue_7t 0x080066a8 0x0 linker stubs *(.eh_frame) - .eh_frame 0x08006918 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .eh_frame 0x080066a8 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o *(.init) - .init 0x08006918 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006918 _init - .init 0x0800691c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .init 0x080066a8 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x080066a8 _init + .init 0x080066ac 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o *(.fini) - .fini 0x08006924 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006924 _fini - .fini 0x08006928 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x08006930 . = ALIGN (0x4) - 0x08006930 _etext = . + .fini 0x080066b4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x080066b4 _fini + .fini 0x080066b8 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x080066c0 . = ALIGN (0x4) + 0x080066c0 _etext = . -.vfp11_veneer 0x08006930 0x0 - .vfp11_veneer 0x08006930 0x0 linker stubs +.vfp11_veneer 0x080066c0 0x0 + .vfp11_veneer 0x080066c0 0x0 linker stubs -.v4_bx 0x08006930 0x0 - .v4_bx 0x08006930 0x0 linker stubs +.v4_bx 0x080066c0 0x0 + .v4_bx 0x080066c0 0x0 linker stubs -.iplt 0x08006930 0x0 - .iplt 0x08006930 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.iplt 0x080066c0 0x0 + .iplt 0x080066c0 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.rodata 0x08006930 0x22c - 0x08006930 . = ALIGN (0x4) +.rodata 0x080066c0 0x22c + 0x080066c0 . = ALIGN (0x4) *(.rodata) - .rodata 0x08006930 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .rodata 0x08006954 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .rodata 0x0800699c 0x50 Src/main.o - .rodata 0x080069ec 0x24 Src/system_stm32l0xx.o - 0x080069ec PLLMulTable - 0x080069f8 AHBPrescTable - 0x08006a08 APBPrescTable - .rodata 0x08006a10 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .rodata 0x08006a50 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .rodata 0x080066c0 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x080066e4 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x0800672c 0x50 Src/main.o + .rodata 0x0800677c 0x24 Src/system_stm32l0xx.o + 0x0800677c PLLMulTable + 0x08006788 AHBPrescTable + 0x08006798 APBPrescTable + .rodata 0x080067a0 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .rodata 0x080067e0 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) *(.rodata*) .rodata.str1.4 - 0x08006a90 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x08006a95 0x3 + 0x08006820 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x08006825 0x3 .rodata.str1.4 - 0x08006a98 0x8e Src/main.o + 0x08006828 0x8e Src/main.o 0x92 (size before relaxing) - *fill* 0x08006b26 0x2 + *fill* 0x080068b6 0x2 .rodata.str1.4 - 0x08006b28 0xc Src/stm32l0xx_it.o + 0x080068b8 0xc Src/stm32l0xx_it.o 0xa (size before relaxing) .rodata.str1.1 - 0x08006b34 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x08006b5c . = ALIGN (0x4) - *fill* 0x08006b59 0x3 + 0x080068c4 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x080068ec . = ALIGN (0x4) + *fill* 0x080068e9 0x3 .ARM.extab *(.ARM.extab* .gnu.linkonce.armextab.*) -.ARM 0x08006b5c 0x8 - 0x08006b5c __exidx_start = . +.ARM 0x080068ec 0x8 + 0x080068ec __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x08006b5c 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x08006b64 __exidx_end = . + .ARM.exidx 0x080068ec 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x080068f4 __exidx_end = . -.rel.dyn 0x08006b64 0x0 - .rel.iplt 0x08006b64 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.rel.dyn 0x080068f4 0x0 + .rel.iplt 0x080068f4 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.preinit_array 0x08006b64 0x0 - 0x08006b64 PROVIDE (__preinit_array_start, .) +.preinit_array 0x080068f4 0x0 + 0x080068f4 PROVIDE (__preinit_array_start, .) *(.preinit_array*) - 0x08006b64 PROVIDE (__preinit_array_end, .) + 0x080068f4 PROVIDE (__preinit_array_end, .) -.init_array 0x08006b64 0x4 - 0x08006b64 PROVIDE (__init_array_start, .) +.init_array 0x080068f4 0x4 + 0x080068f4 PROVIDE (__init_array_start, .) *(SORT(.init_array.*)) *(.init_array*) - .init_array 0x08006b64 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x08006b68 PROVIDE (__init_array_end, .) + .init_array 0x080068f4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x080068f8 PROVIDE (__init_array_end, .) -.fini_array 0x08006b68 0x4 +.fini_array 0x080068f8 0x4 [!provide] PROVIDE (__fini_array_start, .) *(SORT(.fini_array.*)) *(.fini_array*) - .fini_array 0x08006b68 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .fini_array 0x080068f8 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o [!provide] PROVIDE (__fini_array_end, .) - 0x08006b6c _sidata = LOADADDR (.data) + 0x080068fc _sidata = LOADADDR (.data) -.data 0x20000000 0x8 load address 0x08006b6c +.data 0x20000000 0x8 load address 0x080068fc 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -5917,14 +5876,14 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000008 . = ALIGN (0x4) 0x20000008 _edata = . -.jcr 0x20000008 0x0 load address 0x08006b74 +.jcr 0x20000008 0x0 load address 0x08006904 .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.igot.plt 0x20000008 0x0 load address 0x08006b74 +.igot.plt 0x20000008 0x0 load address 0x08006904 .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o 0x20000008 . = ALIGN (0x4) -.bss 0x20000008 0xed8 load address 0x08006b74 +.bss 0x20000008 0xed8 load address 0x08006904 0x20000008 _sbss = . 0x20000008 __bss_start__ = _sbss *(.bss) @@ -5964,7 +5923,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000ee0 __bss_end__ = _ebss ._user_heap_stack - 0x20000ee0 0x600 load address 0x08006b74 + 0x20000ee0 0x600 load address 0x08006904 0x20000ee0 . = ALIGN (0x8) [!provide] PROVIDE (end, .) [!provide] PROVIDE (_end, .) @@ -6045,9 +6004,9 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .ARM.attributes 0x0000058a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) .ARM.attributes - 0x000005a8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) + 0x000005a8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .ARM.attributes - 0x000005d4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x000005d4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) .ARM.attributes 0x00000600 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) .ARM.attributes @@ -6057,42 +6016,32 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .ARM.attributes 0x00000684 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) .ARM.attributes - 0x000006b0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) + 0x000006b0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .ARM.attributes - 0x000006dc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x000006dc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) .ARM.attributes - 0x00000708 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) + 0x00000708 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .ARM.attributes - 0x00000734 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_arm_cmpdf2.o) + 0x00000726 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) .ARM.attributes - 0x00000752 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x00000744 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) .ARM.attributes - 0x00000770 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x00000770 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) .ARM.attributes - 0x0000078e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) + 0x0000079c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) .ARM.attributes - 0x000007ba 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) + 0x000007c8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) .ARM.attributes - 0x000007e6 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) + 0x000007f4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) .ARM.attributes - 0x00000812 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x00000820 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) .ARM.attributes - 0x0000083e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x0000083c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) .ARM.attributes - 0x0000086a 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .ARM.attributes - 0x00000896 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .ARM.attributes - 0x000008c2 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .ARM.attributes - 0x000008ee 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - .ARM.attributes - 0x0000090a 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - .ARM.attributes - 0x00000936 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x00000868 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o OUTPUT(RTOS_IOT.elf elf32-littlearm) -.debug_info 0x00000000 0x16f72 +.debug_info 0x00000000 0x16ff5 .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_info 0x00000fea 0x4ee Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6114,13 +6063,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_info 0x00011acc 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_info 0x00011d7c 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_info 0x000120e1 0xb37 Src/HTS221.o - .debug_info 0x00012c18 0x2588 Src/main.o - .debug_info 0x000151a0 0x117a Src/stm32l0xx_hal_msp.o - .debug_info 0x0001631a 0x86a Src/stm32l0xx_it.o - .debug_info 0x00016b84 0x37b Src/system_stm32l0xx.o - .debug_info 0x00016eff 0x73 startup/startup_stm32l053xx.o + .debug_info 0x00012c18 0x260b Src/main.o + .debug_info 0x00015223 0x117a Src/stm32l0xx_hal_msp.o + .debug_info 0x0001639d 0x86a Src/stm32l0xx_it.o + .debug_info 0x00016c07 0x37b Src/system_stm32l0xx.o + .debug_info 0x00016f82 0x73 startup/startup_stm32l053xx.o -.debug_abbrev 0x00000000 0x300b +.debug_abbrev 0x00000000 0x3027 .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_abbrev 0x0000046d 0x1f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6142,13 +6091,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_abbrev 0x00002390 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_abbrev 0x0000255f 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_abbrev 0x0000271c 0x207 Src/HTS221.o - .debug_abbrev 0x00002923 0x30d Src/main.o - .debug_abbrev 0x00002c30 0x18d Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x00002dbd 0x149 Src/stm32l0xx_it.o - .debug_abbrev 0x00002f06 0xf3 Src/system_stm32l0xx.o - .debug_abbrev 0x00002ff9 0x12 startup/startup_stm32l053xx.o + .debug_abbrev 0x00002923 0x329 Src/main.o + .debug_abbrev 0x00002c4c 0x18d Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x00002dd9 0x149 Src/stm32l0xx_it.o + .debug_abbrev 0x00002f22 0xf3 Src/system_stm32l0xx.o + .debug_abbrev 0x00003015 0x12 startup/startup_stm32l053xx.o -.debug_loc 0x00000000 0xe991 +.debug_loc 0x00000000 0xe9e1 .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_loc 0x00000447 0x223 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6170,9 +6119,9 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_loc 0x0000dec8 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_loc 0x0000df6e 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_loc 0x0000e1b2 0x3b0 Src/HTS221.o - .debug_loc 0x0000e562 0x204 Src/main.o - .debug_loc 0x0000e766 0xc6 Src/stm32l0xx_hal_msp.o - .debug_loc 0x0000e82c 0x165 Src/system_stm32l0xx.o + .debug_loc 0x0000e562 0x254 Src/main.o + .debug_loc 0x0000e7b6 0xc6 Src/stm32l0xx_hal_msp.o + .debug_loc 0x0000e87c 0x165 Src/system_stm32l0xx.o .debug_aranges 0x00000000 0x1498 .debug_aranges @@ -6256,7 +6205,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_ranges 0x00001398 0x18 Src/system_stm32l0xx.o .debug_ranges 0x000013b0 0x20 startup/startup_stm32l053xx.o -.debug_macro 0x00000000 0x1835c +.debug_macro 0x00000000 0x18362 .debug_macro 0x00000000 0x395 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000395 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000bc7 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o @@ -6360,13 +6309,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_macro 0x00017160 0x22 Src/HTS221.o .debug_macro 0x00017182 0x3a Src/HTS221.o .debug_macro 0x000171bc 0x15a Src/HTS221.o - .debug_macro 0x00017316 0x44f Src/main.o - .debug_macro 0x00017765 0xd8 Src/main.o - .debug_macro 0x0001783d 0x371 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00017bae 0x431 Src/stm32l0xx_it.o - .debug_macro 0x00017fdf 0x37d Src/system_stm32l0xx.o + .debug_macro 0x00017316 0x455 Src/main.o + .debug_macro 0x0001776b 0xd8 Src/main.o + .debug_macro 0x00017843 0x371 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00017bb4 0x431 Src/stm32l0xx_it.o + .debug_macro 0x00017fe5 0x37d Src/system_stm32l0xx.o -.debug_line 0x00000000 0x11c15 +.debug_line 0x00000000 0x11c46 .debug_line 0x00000000 0xa0f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_line 0x00000a0f 0x9c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_line 0x000013d3 0x9f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6388,13 +6337,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_line 0x0000ddb6 0x650 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_line 0x0000e406 0x638 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_line 0x0000ea3e 0x915 Src/HTS221.o - .debug_line 0x0000f353 0xcb5 Src/main.o - .debug_line 0x00010008 0x8e8 Src/stm32l0xx_hal_msp.o - .debug_line 0x000108f0 0xa40 Src/stm32l0xx_it.o - .debug_line 0x00011330 0x862 Src/system_stm32l0xx.o - .debug_line 0x00011b92 0x83 startup/startup_stm32l053xx.o + .debug_line 0x0000f353 0xce6 Src/main.o + .debug_line 0x00010039 0x8e8 Src/stm32l0xx_hal_msp.o + .debug_line 0x00010921 0xa40 Src/stm32l0xx_it.o + .debug_line 0x00011361 0x862 Src/system_stm32l0xx.o + .debug_line 0x00011bc3 0x83 startup/startup_stm32l053xx.o -.debug_str 0x00000000 0x86ce0 +.debug_str 0x00000000 0x86d26 .debug_str 0x00000000 0x7a448 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x7a861 (size before relaxing) .debug_str 0x0007a448 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o @@ -6437,13 +6386,13 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) 0x93e8 (size before relaxing) .debug_str 0x000860f1 0x742 Src/HTS221.o 0x7ada5 (size before relaxing) - .debug_str 0x00086833 0x3e7 Src/main.o - 0x80dbc (size before relaxing) - .debug_str 0x00086c1a 0x1b Src/stm32l0xx_hal_msp.o + .debug_str 0x00086833 0x42d Src/main.o + 0x80e02 (size before relaxing) + .debug_str 0x00086c60 0x1b Src/stm32l0xx_hal_msp.o 0x7ae4e (size before relaxing) - .debug_str 0x00086c35 0x47 Src/stm32l0xx_it.o + .debug_str 0x00086c7b 0x47 Src/stm32l0xx_it.o 0x7f63c (size before relaxing) - .debug_str 0x00086c7c 0x64 Src/system_stm32l0xx.o + .debug_str 0x00086cc2 0x64 Src/system_stm32l0xx.o 0x7a29b (size before relaxing) .comment 0x00000000 0x6e @@ -6474,7 +6423,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Src/stm32l0xx_it.o .comment 0x0000006e 0x6f Src/system_stm32l0xx.o -.debug_frame 0x00000000 0x399c +.debug_frame 0x00000000 0x38bc .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_frame 0x000002c0 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6501,21 +6450,17 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_frame 0x00003560 0x40 Src/stm32l0xx_it.o .debug_frame 0x000035a0 0x38 Src/system_stm32l0xx.o .debug_frame 0x000035d8 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .debug_frame 0x000035f8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_fixunsdfsi.o) - .debug_frame 0x00003624 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .debug_frame 0x00003660 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .debug_frame 0x0000369c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .debug_frame 0x000036d8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .debug_frame 0x00003714 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .debug_frame 0x0000374c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixdfsi.o) - .debug_frame 0x00003778 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .debug_frame 0x000037a4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatunsidf.o) - .debug_frame 0x000037d0 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(eqdf2.o) - .debug_frame 0x00003808 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(gedf2.o) - .debug_frame 0x00003840 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(ledf2.o) - .debug_frame 0x00003878 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .debug_frame 0x000038a4 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .debug_frame 0x000038e4 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x0000390c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .debug_frame 0x0000392c 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .debug_frame 0x00003954 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .debug_frame 0x000035f8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x00003634 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) + .debug_frame 0x00003654 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .debug_frame 0x00003690 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .debug_frame 0x000036cc 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .debug_frame 0x00003708 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .debug_frame 0x00003740 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .debug_frame 0x0000376c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) + .debug_frame 0x00003798 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x000037c4 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + .debug_frame 0x00003804 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x0000382c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x0000384c 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .debug_frame 0x00003874 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) diff --git a/RTOS_IOT/Src/main.c b/RTOS_IOT/Src/main.c index 547db89..f951bb9 100644 --- a/RTOS_IOT/Src/main.c +++ b/RTOS_IOT/Src/main.c @@ -50,6 +50,7 @@ #define USING_EEPROM //#define CodeTesting #define EEPROM_START_ADDRESS (uint32_t *)0x08080000 +#define NUMBER_OF_SAMPLING (uint8_t)0x5 /* USER CODE END Includes */ @@ -98,11 +99,21 @@ union uTime{ struct { uint8_t Hours; uint8_t Minutes; - uint8_t Secounds; + uint8_t Seconds; uint8_t TimeFormat; }uStructTime; }; +union uDataPacket{ + uint32_t datPacket[4]; + struct { + float temperature; + float humidity; + union uDate Date; + union uTime Time; + }uStructDataPacket; +}; + struct StructDate{ uint8_t Weekday; uint8_t Month; @@ -117,16 +128,6 @@ struct StructTime{ uint8_t TimeFormat; }; -union uDataPacket{ - uint32_t datPacket[4]; - struct { - float temperature; - float humidity; - union uDate Date; - union uTime Time; - }uStructDataPacket; -}; - struct StrucDataPacket{ double temperature; double humidity; @@ -142,12 +143,14 @@ typedef enum{ typedef struct{ - struct StrucDataPacket dataset[5]; +// struct StrucDataPacket dataset[5]; + union uDataPacket udataset[5]; }QMessageData_USART; typedef struct{ EventId_NVM_Check EventId; - struct StrucDataPacket TempnHumidity; +// struct StrucDataPacket TempnHumidity; + union uDataPacket uTempnHumidity; uint8_t dataArray[4]; uint8_t* ptr_sent_Success; }QMessageData_ForNVM; @@ -515,8 +518,17 @@ void func_NVM_Manager(void const* argument){ QMessageData_ForNVM Rawdata; QMessageData_USART Uartdata; volatile uint32_t* Ptr_address=0; - uint8_t itr; + uint8_t itr, itrx; uint8_t Uart_Updatecounter = 0; + + Ptr_address = EEPROM_START_ADDRESS; + HAL_FLASHEx_DATAEEPROM_Unlock(); + for(itr=0; itr<50; itr++){ + HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); + Ptr_address++; + } + HAL_FLASHEx_DATAEEPROM_Lock(); + for(;;){ // TODO: Copy data from Queue then write into the EEPROM. xQueueReceive(Queue_SendTo_TaskNVM,&Rawdata,portMAX_DELAY); @@ -527,16 +539,14 @@ void func_NVM_Manager(void const* argument){ case EV_ReadsFromTempSensor: // TODO: Receive the data from Temperature Sensor, then Save it into the NVM // write to EEPROM; start Counter - if (Uart_Updatecounter >= 5){ + if (Uart_Updatecounter >= NUMBER_OF_SAMPLING){ #ifdef USING_EEPROM Ptr_address = EEPROM_START_ADDRESS; - for (itr=0; itr <5; itr++){ -// Uartdata.dataset[itr] = (QMessageData_USART)(*Ptr_address); -// Ptr_address +=(sizeof(QMessageData_USART)/sizeof(Ptr_address)); - Uartdata.dataset[itr].temperature = (double)(*Ptr_address); - Ptr_address++; - Uartdata.dataset[itr].humidity = (double)(*Ptr_address); - Ptr_address++; + for (itr=0; itr < NUMBER_OF_SAMPLING; itr++){ + for (itrx=0; itrx < 4; itrx++ ){ + Uartdata.udataset[itr].datPacket[itrx] = *Ptr_address; + Ptr_address++; + } } xQueueSend(Queue_SendTo_Uart,&Uartdata,100); Uart_Updatecounter = 0; @@ -551,14 +561,10 @@ void func_NVM_Manager(void const* argument){ #ifdef USING_EEPROM if (Uart_Updatecounter == 0) Ptr_address = EEPROM_START_ADDRESS; HAL_FLASHEx_DATAEEPROM_Unlock(); - HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, Rawdata.TempnHumidity.temperature); - Ptr_address++; - HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, Rawdata.TempnHumidity.humidity); - Ptr_address++; -// HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, (uint32_t)Rawdata.TempnHumidity.Acqdate); -// Ptr_address++; -// HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, (uint32_t)Rawdata.TempnHumidity.Acqtime); -// Ptr_address++; + for (itr=0; itr < sizeof(Rawdata.uTempnHumidity)/sizeof(Rawdata.uTempnHumidity.datPacket[0]) ;itr++){ + HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, Rawdata.uTempnHumidity.datPacket[itr]); + Ptr_address+=(sizeof(Rawdata.uTempnHumidity.datPacket[itr])/sizeof(Ptr_address)); + } HAL_FLASHEx_DATAEEPROM_Lock(); Uart_Updatecounter++; #else @@ -572,7 +578,6 @@ void func_NVM_Manager(void const* argument){ // TODO: After confirm receive successful (0x01), // delete data in NVM. // else resend the data in NVM to UART. - if (Rawdata.dataArray[0]==0x01){ #ifdef USING_EEPROM Ptr_address = EEPROM_START_ADDRESS; @@ -626,12 +631,10 @@ void func_UartPrint (void const* argument){ uint8_t itr = 0; char tempText[5] = ""; char OutputText[90]=""; - - for(;;) { xQueueReceive(Queue_SendTo_Uart,&receiveData,portMAX_DELAY); - for(itr=0; itr< 5; itr++){ + for(itr=0; itr< NUMBER_OF_SAMPLING; itr++){ strcpy(OutputText,"Thread counter: "); itoa(thread1_counter,tempText,10); @@ -639,24 +642,24 @@ void func_UartPrint (void const* argument){ strcat(OutputText,"\n"); strcat(OutputText,"Current Temperature is "); - itoa(receiveData.dataset[itr].temperature,tempText,10); + itoa(receiveData.udataset[itr].uStructDataPacket.temperature,tempText,10); strcat(OutputText,tempText); strcat(OutputText, " Celsius\n"); strcat(OutputText, "Humidity is "); - itoa(receiveData.dataset[itr].humidity,tempText,10); + itoa(receiveData.udataset[itr].uStructDataPacket.humidity,tempText,10); strcat(OutputText,tempText); strcat(OutputText, " %rh\n"); strcat(OutputText, " @ Time "); - itoa(receiveData.dataset[itr].Acqtime.Hours,tempText,10); + itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Hours,tempText,10); strcat(OutputText,tempText); strcat(OutputText,":"); - itoa(receiveData.dataset[itr].Acqtime.Minutes,tempText,10); + itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Minutes,tempText,10); strcat(OutputText,tempText); strcat(OutputText,":"); - itoa(receiveData.dataset[itr].Acqtime.Secounds,tempText,10); + itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Seconds,tempText,10); strcat(OutputText,tempText); strcat(OutputText, "\n \n"); @@ -683,15 +686,15 @@ void func_SensorRead (void const* argument){ // TODO: Need to verify the integrity of readout values from sensor data.EventId = EV_ReadsFromTempSensor; // osThreadSetPriority(Task_SensorRead,osPriorityAboveNormal); - data.TempnHumidity.temperature = HTS221_GetTemperature(); - data.TempnHumidity.humidity = HTS221_GetHumidity(); + data.uTempnHumidity.uStructDataPacket.temperature = (float)HTS221_GetTemperature(); + data.uTempnHumidity.uStructDataPacket.humidity = (float)HTS221_GetHumidity(); // osThreadSetPriority(Task_SensorRead,osPriorityNormal); - HAL_RTC_GetDate(&hrtc,(RTC_DateTypeDef *)(&data.TempnHumidity.Acqdate.Weekday),RTC_FORMAT_BIN); + HAL_RTC_GetDate(&hrtc,(RTC_DateTypeDef *)(&data.uTempnHumidity.uStructDataPacket.Date.uStructDate.Weekday),RTC_FORMAT_BIN); HAL_RTC_GetTime(&hrtc,&Time,RTC_FORMAT_BIN ); - data.TempnHumidity.Acqtime.Hours = Time.Hours; - data.TempnHumidity.Acqtime.Minutes = Time.Minutes; - data.TempnHumidity.Acqtime.Secounds= Time.Seconds; - data.TempnHumidity.Acqtime.TimeFormat= Time.TimeFormat; + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Hours = Time.Hours; + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Minutes = Time.Minutes; + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Seconds= Time.Seconds; + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.TimeFormat= Time.TimeFormat; xQueueSend(Queue_SendTo_TaskNVM,&data,100); //TODO: Need to comment the osDelay(1000) after implementation of autowakeup function event From fb527145410ebf23f363ff0ca747dd865d6ab694 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 <tiongpatrick1014@gmail.com> Date: Sun, 7 Jan 2018 16:54:52 +0800 Subject: [PATCH 16/18] sad --- RTOS_IOT/.cproject | 12 +- RTOS_IOT/.settings/language.settings.xml | 4 +- RTOS_IOT/Debug/RTOS_IOT.bin | Bin 26884 -> 27964 bytes RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1066652 -> 1076252 bytes RTOS_IOT/Debug/makefile | 1 + RTOS_IOT/Debug/objects.list | 1 + RTOS_IOT/Debug/output.map | 1553 ++++++++++------- RTOS_IOT/Debug/sources.mk | 1 + RTOS_IOT/Inc/NVM_Manager.h | 32 + .../Middlewares/MemoryManager/NVM_Manager.c | 121 ++ RTOS_IOT/Src/main.c | 9 +- 11 files changed, 1050 insertions(+), 684 deletions(-) create mode 100644 RTOS_IOT/Inc/NVM_Manager.h create mode 100644 RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c diff --git a/RTOS_IOT/.cproject b/RTOS_IOT/.cproject index 15d9efd..5b1d2cd 100644 --- a/RTOS_IOT/.cproject +++ b/RTOS_IOT/.cproject @@ -79,11 +79,11 @@ </toolChain> </folderInfo> <sourceEntries> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Drivers"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Inc"/> + <entry excluding="Memory Manager" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> </sourceEntries> </configuration> </storageModule> @@ -167,11 +167,11 @@ </toolChain> </folderInfo> <sourceEntries> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Drivers"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Inc"/> + <entry excluding="Memory Manager" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> </sourceEntries> </configuration> </storageModule> diff --git a/RTOS_IOT/.settings/language.settings.xml b/RTOS_IOT/.settings/language.settings.xml index 9c993b9..2b472af 100644 --- a/RTOS_IOT/.settings/language.settings.xml +++ b/RTOS_IOT/.settings/language.settings.xml @@ -6,7 +6,7 @@ <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> <provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/> - <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1691969430342135793" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> + <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1108563508876615316" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> <language-scope id="org.eclipse.cdt.core.gcc"/> <language-scope id="org.eclipse.cdt.core.g++"/> </provider> @@ -18,7 +18,7 @@ <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> <provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/> - <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1691969430342135793" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> + <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1108563508876615316" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> <language-scope id="org.eclipse.cdt.core.gcc"/> <language-scope id="org.eclipse.cdt.core.g++"/> </provider> diff --git a/RTOS_IOT/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin index bc8d5270f1cd2e49053c01e45479ec478b8688ca..cbdb2b3d27fc6360d2c0fde484dd18882e4f1d32 100644 GIT binary patch delta 5396 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 EAFEt}o&W#< delta 4213 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 GbodwZ+s^X< diff --git a/RTOS_IOT/Debug/RTOS_IOT.elf b/RTOS_IOT/Debug/RTOS_IOT.elf index fd5a994027c311f114ce407307959adebb2b7886..7cab063669f1dd8ddcc471ccf4fbb39086ccbd20 100644 GIT binary patch delta 202853 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 delta 192899 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 a33eqV@r#SJ-l0e1HK{MOE?zWhdi_5v!~KT< diff --git a/RTOS_IOT/Debug/makefile b/RTOS_IOT/Debug/makefile index 5d828eb..6a68cac 100644 --- a/RTOS_IOT/Debug/makefile +++ b/RTOS_IOT/Debug/makefile @@ -14,6 +14,7 @@ RM := rm -rf -include Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/subdir.mk -include Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/subdir.mk -include Middlewares/Third_Party/FreeRTOS/Source/subdir.mk +-include Middlewares/MemoryManager/subdir.mk -include Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk -include subdir.mk -include objects.mk diff --git a/RTOS_IOT/Debug/objects.list b/RTOS_IOT/Debug/objects.list index 4dda395..68b071c 100644 --- a/RTOS_IOT/Debug/objects.list +++ b/RTOS_IOT/Debug/objects.list @@ -18,6 +18,7 @@ "Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o" "Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o" "Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o" +"Middlewares/MemoryManager/NVM_Manager.o" "Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o" "Middlewares/Third_Party/FreeRTOS/Source/croutine.o" "Middlewares/Third_Party/FreeRTOS/Source/event_groups.o" diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index a594e84..709eff1 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -55,17 +55,20 @@ Task_ErrorCheck 0x4 Src/main.o Task_UartSend 0x4 Src/main.o Queue_number 0x4 Src/main.o hi2c1 0x4c Src/main.o +Task_ManagEeprom 0x4 Middlewares/MemoryManager/NVM_Manager.o uwTick 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o xQueueRegistry 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o pFlash 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o HTS221_CoefStruc 0xe Src/HTS221.o Queue_SendTo_Uart 0x4 Src/main.o +SemaEepromManager 0x4 Middlewares/MemoryManager/NVM_Manager.o Queue_SendTo_TaskNVM 0x4 Src/main.o thread1_counter 0x4 Src/main.o NVM_QueueSet 0x4 Src/main.o HTS221_I2CHander 0x4 Src/HTS221.o hrtc 0x24 Src/main.o +MutexEeprom 0x4 Middlewares/MemoryManager/NVM_Manager.o huart2 0x70 Src/main.o Task_SensorRead 0x4 Src/main.o Task_NVM_ReadWrite 0x4 Src/main.o @@ -158,8 +161,6 @@ Discarded input sections 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .text.HAL_DeInit 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_Delay - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .text.HAL_GetHalVersion 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .text.HAL_GetREVID @@ -505,8 +506,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_line 0x00000000 0xcb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_str 0x00000000 0x7a4ff Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_line 0x00000000 0xcef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_str 0x00000000 0x7a50a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .debug_frame 0x00000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o .ARM.attributes @@ -982,8 +983,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_line 0x00000000 0x8d9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_str 0x00000000 0x7a384 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_line 0x00000000 0x910 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_str 0x00000000 0x7a38f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .debug_frame 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o .ARM.attributes @@ -2069,8 +2070,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_line 0x00000000 0x8d2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_str 0x00000000 0x7a2aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_line 0x00000000 0x909 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_str 0x00000000 0x7a2b5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .debug_frame 0x00000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o .ARM.attributes @@ -2871,8 +2872,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_line 0x00000000 0x841 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_str 0x00000000 0x7a13c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_line 0x00000000 0x878 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_str 0x00000000 0x7a147 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o .ARM.attributes 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o @@ -3014,8 +3015,8 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_line 0x00000000 0x844 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_str 0x00000000 0x7a13f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_line 0x00000000 0x87b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_str 0x00000000 0x7a14a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o .ARM.attributes 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o @@ -3414,12 +3415,157 @@ Discarded input sections .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_line 0x00000000 0x9c9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_str 0x00000000 0x7a806 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_line 0x00000000 0xa00 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_str 0x00000000 0x7a811 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .debug_frame 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o .ARM.attributes 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .text 0x00000000 0x0 Middlewares/MemoryManager/NVM_Manager.o + .data 0x00000000 0x0 Middlewares/MemoryManager/NVM_Manager.o + .bss 0x00000000 0x4 Middlewares/MemoryManager/NVM_Manager.o + .text.HAL_GPIO_EXTI_Callback + 0x00000000 0x44 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x832 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x22 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x4c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x8d Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x35 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x9c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x174 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x4a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x52 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1f Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x43 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x20 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x187 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x30d Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x35 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x29 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x4c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0xfd Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x5e Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1df Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x2e Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x28 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x26 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x44f Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x9cc0 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x3c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x34a2 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x52 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x40 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x40 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0xd7 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x18b Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x50 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x8e0 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x9d4 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x14d Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x184 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x279 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1ef Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x12a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x2b6 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x202 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x5b Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x90 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x189 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x30c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x3f1 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0xdd Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x54a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x44 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x280 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x165 Middlewares/MemoryManager/NVM_Manager.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o @@ -3486,18 +3632,8 @@ Discarded input sections 0x00000000 0x60 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osSignalWait 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMutexCreate - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMutexWait - 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMutexRelease - 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osMutexDelete 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osSemaphoreCreate - 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osSemaphoreWait - 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osSemaphoreRelease 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osSemaphoreDelete @@ -3579,6 +3715,17 @@ Discarded input sections .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_macro 0x00000000 0x26 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3652,8 +3799,8 @@ Discarded input sections .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/croutine.o .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_line 0x00000000 0x525 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_str 0x00000000 0x971d Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_line 0x00000000 0x546 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_str 0x00000000 0x9728 Middlewares/Third_Party/FreeRTOS/Source/croutine.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/croutine.o .ARM.attributes 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/croutine.o @@ -3755,8 +3902,8 @@ Discarded input sections .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_line 0x00000000 0x711 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_str 0x00000000 0x9ee8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_line 0x00000000 0x732 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_str 0x00000000 0x9ef3 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .debug_frame 0x00000000 0x12c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o .ARM.attributes @@ -3862,16 +4009,8 @@ Discarded input sections .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.prvInitialiseMutex - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueCreateMutex - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericSendFromISR 0x00000000 0xdc Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueGiveFromISR - 0x00000000 0xbc Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueReceiveFromISR - 0x00000000 0x98 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueuePeekFromISR 0x00000000 0x5c Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.uxQueueMessagesWaiting @@ -4144,8 +4283,8 @@ Discarded input sections .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/timers.o .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_line 0x00000000 0x52c Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_str 0x00000000 0xa131 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_line 0x00000000 0x54d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_str 0x00000000 0xa13c Middlewares/Third_Party/FreeRTOS/Source/timers.o .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/timers.o .ARM.attributes 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/timers.o @@ -4383,6 +4522,7 @@ Discarded input sections .debug_macro 0x00000000 0xa3 Src/HTS221.o .debug_macro 0x00000000 0x2e Src/HTS221.o .debug_macro 0x00000000 0x28 Src/HTS221.o + .debug_macro 0x00000000 0x3a Src/HTS221.o .debug_macro 0x00000000 0x26 Src/HTS221.o .debug_macro 0x00000000 0x44f Src/HTS221.o .debug_macro 0x00000000 0x9cc0 Src/HTS221.o @@ -4491,8 +4631,8 @@ Discarded input sections .debug_macro 0x00000000 0x416 Src/freertos.o .debug_macro 0x00000000 0xc0 Src/freertos.o .debug_macro 0x00000000 0x8c Src/freertos.o - .debug_line 0x00000000 0x4f3 Src/freertos.o - .debug_str 0x00000000 0x9114 Src/freertos.o + .debug_line 0x00000000 0x514 Src/freertos.o + .debug_str 0x00000000 0x911f Src/freertos.o .comment 0x00000000 0x6f Src/freertos.o .ARM.attributes 0x00000000 0x32 Src/freertos.o @@ -5208,6 +5348,7 @@ 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_hal_uart.o LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o +LOAD Middlewares/MemoryManager/NVM_Manager.o LOAD Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o LOAD Middlewares/Third_Party/FreeRTOS/Source/croutine.o LOAD Middlewares/Third_Party/FreeRTOS/Source/event_groups.o @@ -5252,7 +5393,7 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x08000000 g_pfnVectors 0x080000c0 . = ALIGN (0x4) -.text 0x080000c0 0x6600 +.text 0x080000c0 0x6a14 0x080000c0 . = ALIGN (0x4) *(.text) .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o @@ -5301,571 +5442,612 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .text.HAL_GetTick 0x08001eb4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o 0x08001eb4 HAL_GetTick + .text.HAL_Delay + 0x08001ec0 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001ec0 HAL_Delay .text.HAL_SuspendTick - 0x08001ec0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001ec0 HAL_SuspendTick + 0x08001edc 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001edc HAL_SuspendTick .text.HAL_ResumeTick - 0x08001ed0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001ed0 HAL_ResumeTick + 0x08001eec 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001eec HAL_ResumeTick .text.HAL_NVIC_SetPriority - 0x08001ee0 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001ee0 HAL_NVIC_SetPriority + 0x08001efc 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001efc HAL_NVIC_SetPriority .text.HAL_SYSTICK_Config - 0x08001f44 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001f44 HAL_SYSTICK_Config + 0x08001f60 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001f60 HAL_SYSTICK_Config .text.HAL_SYSTICK_CLKSourceConfig - 0x08001f7c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001f7c HAL_SYSTICK_CLKSourceConfig + 0x08001f98 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001f98 HAL_SYSTICK_CLKSourceConfig .text.FLASH_SetErrorCode - 0x08001f9c 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x08001fb8 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o .text.FLASH_WaitForLastOperation - 0x08002050 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - 0x08002050 FLASH_WaitForLastOperation + 0x0800206c 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x0800206c FLASH_WaitForLastOperation .text.HAL_FLASHEx_DATAEEPROM_Unlock - 0x080020d4 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x080020d4 HAL_FLASHEx_DATAEEPROM_Unlock + 0x080020f0 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x080020f0 HAL_FLASHEx_DATAEEPROM_Unlock .text.HAL_FLASHEx_DATAEEPROM_Lock - 0x080020fc 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x080020fc HAL_FLASHEx_DATAEEPROM_Lock + 0x08002118 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002118 HAL_FLASHEx_DATAEEPROM_Lock .text.HAL_FLASHEx_DATAEEPROM_Erase - 0x08002110 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x08002110 HAL_FLASHEx_DATAEEPROM_Erase + 0x0800212c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x0800212c HAL_FLASHEx_DATAEEPROM_Erase .text.HAL_FLASHEx_DATAEEPROM_Program - 0x08002138 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x08002138 HAL_FLASHEx_DATAEEPROM_Program + 0x08002154 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002154 HAL_FLASHEx_DATAEEPROM_Program .text.HAL_GPIO_Init - 0x0800219c 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x0800219c HAL_GPIO_Init + 0x080021b8 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x080021b8 HAL_GPIO_Init .text.HAL_GPIO_WritePin - 0x08002330 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08002330 HAL_GPIO_WritePin + 0x0800234c 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800234c HAL_GPIO_WritePin .text.HAL_GPIO_TogglePin - 0x0800233c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x0800233c HAL_GPIO_TogglePin + 0x08002358 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08002358 HAL_GPIO_TogglePin .text.I2C_Flush_TXDR - 0x08002344 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002360 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_TransferConfig - 0x08002364 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002380 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x08002388 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080023a4 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnTXISFlagUntilTimeout - 0x08002400 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x0800241c 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x08002454 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002470 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryWrite - 0x080024a0 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080024bc 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x08002524 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002540 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x080025a8 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080025c4 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o .text.HAL_I2C_Init - 0x080025f8 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080025f8 HAL_I2C_Init + 0x08002614 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002614 HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x080026c0 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080026c0 HAL_I2C_Mem_Write + 0x080026dc 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080026dc HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x08002888 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002888 HAL_I2C_Mem_Read + 0x080028a4 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080028a4 HAL_I2C_Mem_Read .text.HAL_I2CEx_ConfigAnalogFilter - 0x08002a58 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002a58 HAL_I2CEx_ConfigAnalogFilter + 0x08002a74 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002a74 HAL_I2CEx_ConfigAnalogFilter .text.HAL_I2CEx_ConfigDigitalFilter - 0x08002ab0 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002ab0 HAL_I2CEx_ConfigDigitalFilter + 0x08002acc 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002acc HAL_I2CEx_ConfigDigitalFilter .text.IRDA_SetConfig - 0x08002b04 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002b20 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_WaitOnFlagUntilTimeout - 0x08002c98 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002cb4 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.IRDA_CheckIdleState - 0x08002d04 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002d20 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o .text.HAL_IRDA_Init - 0x08002d74 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x08002d74 HAL_IRDA_Init + 0x08002d90 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002d90 HAL_IRDA_Init .text.HAL_PWR_EnterSLEEPMode - 0x08002de0 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x08002de0 HAL_PWR_EnterSLEEPMode + 0x08002dfc 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x08002dfc HAL_PWR_EnterSLEEPMode .text.RCC_SetFlashLatencyFromMSIRange - 0x08002e10 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002e2c 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o .text.HAL_RCC_OscConfig - 0x08002e98 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08002e98 HAL_RCC_OscConfig + 0x08002eb4 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002eb4 HAL_RCC_OscConfig .text.HAL_RCC_GetSysClockFreq - 0x08003450 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003450 HAL_RCC_GetSysClockFreq + 0x0800346c 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x0800346c HAL_RCC_GetSysClockFreq .text.HAL_RCC_ClockConfig - 0x080034e4 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080034e4 HAL_RCC_ClockConfig + 0x08003500 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003500 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x08003698 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003698 HAL_RCC_GetHCLKFreq + 0x080036b4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080036b4 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x080036a4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080036a4 HAL_RCC_GetPCLK1Freq + 0x080036c0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080036c0 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x080036c4 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080036c4 HAL_RCC_GetPCLK2Freq + 0x080036e0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080036e0 HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x080036e4 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x080036e4 HAL_RCCEx_PeriphCLKConfig + 0x08003700 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x08003700 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCCEx_GetPeriphCLKFreq - 0x080038d0 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x080038d0 HAL_RCCEx_GetPeriphCLKFreq + 0x080038ec 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080038ec HAL_RCCEx_GetPeriphCLKFreq .text.HAL_RTC_WaitForSynchro - 0x08003b48 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b48 HAL_RTC_WaitForSynchro + 0x08003b64 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b64 HAL_RTC_WaitForSynchro .text.RTC_EnterInitMode - 0x08003b7c 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b7c RTC_EnterInitMode + 0x08003b98 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b98 RTC_EnterInitMode .text.HAL_RTC_Init - 0x08003bb8 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003bb8 HAL_RTC_Init + 0x08003bd4 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003bd4 HAL_RTC_Init .text.RTC_ByteToBcd2 - 0x08003c64 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003c64 RTC_ByteToBcd2 + 0x08003c80 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003c80 RTC_ByteToBcd2 .text.HAL_RTC_SetTime - 0x08003c7c 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003c7c HAL_RTC_SetTime + 0x08003c98 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003c98 HAL_RTC_SetTime .text.HAL_RTC_SetDate - 0x08003d88 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003d88 HAL_RTC_SetDate + 0x08003da4 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003da4 HAL_RTC_SetDate .text.RTC_Bcd2ToByte - 0x08003e74 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003e74 RTC_Bcd2ToByte + 0x08003e90 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003e90 RTC_Bcd2ToByte .text.HAL_RTC_GetTime - 0x08003e88 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003e88 HAL_RTC_GetTime + 0x08003ea4 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003ea4 HAL_RTC_GetTime .text.HAL_RTC_GetDate - 0x08003ee0 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003ee0 HAL_RTC_GetDate + 0x08003efc 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003efc HAL_RTC_GetDate .text.HAL_RTCEx_SetWakeUpTimer_IT - 0x08003f28 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003f28 HAL_RTCEx_SetWakeUpTimer_IT + 0x08003f44 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003f44 HAL_RTCEx_SetWakeUpTimer_IT .text.HAL_RTCEx_WakeUpTimerEventCallback - 0x0800403c 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x0800403c HAL_RTCEx_WakeUpTimerEventCallback + 0x08004058 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004058 HAL_RTCEx_WakeUpTimerEventCallback .text.HAL_RTCEx_WakeUpTimerIRQHandler - 0x08004040 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08004040 HAL_RTCEx_WakeUpTimerIRQHandler + 0x0800405c 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x0800405c HAL_RTCEx_WakeUpTimerIRQHandler .text.HAL_RTCEx_BKUPWrite - 0x08004078 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08004078 HAL_RTCEx_BKUPWrite + 0x08004094 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004094 HAL_RTCEx_BKUPWrite .text.HAL_RTCEx_BKUPRead - 0x08004084 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08004084 HAL_RTCEx_BKUPRead + 0x080040a0 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x080040a0 HAL_RTCEx_BKUPRead .text.UART_SetConfig - 0x08004090 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004090 UART_SetConfig + 0x080040ac 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080040ac UART_SetConfig .text.UART_AdvFeatureConfig - 0x080043d0 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080043d0 UART_AdvFeatureConfig + 0x080043ec 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080043ec UART_AdvFeatureConfig .text.UART_WaitOnFlagUntilTimeout - 0x080044b0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080044b0 UART_WaitOnFlagUntilTimeout + 0x080044cc 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080044cc UART_WaitOnFlagUntilTimeout .text.HAL_UART_Transmit - 0x0800451c 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800451c HAL_UART_Transmit + 0x08004538 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004538 HAL_UART_Transmit .text.UART_CheckIdleState - 0x08004600 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004600 UART_CheckIdleState + 0x0800461c 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800461c UART_CheckIdleState .text.HAL_UART_Init - 0x08004670 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004670 HAL_UART_Init + 0x0800468c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800468c HAL_UART_Init + .text.EEPROM_Clean + 0x080046f8 0x28 Middlewares/MemoryManager/NVM_Manager.o + .text.task_EepromManager + 0x08004720 0x78 Middlewares/MemoryManager/NVM_Manager.o + 0x08004720 task_EepromManager + .text.EEPROM_Initialize + 0x08004798 0x58 Middlewares/MemoryManager/NVM_Manager.o + 0x08004798 EEPROM_Initialize .text.makeFreeRtosPriority - 0x080046dc 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080047f0 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.inHandlerMode - 0x080046e8 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080047fc 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .text.osKernelStart - 0x080046f4 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080046f4 osKernelStart + 0x08004808 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004808 osKernelStart .text.osKernelSysTick - 0x08004700 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004700 osKernelSysTick + 0x08004814 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004814 osKernelSysTick .text.osThreadCreate - 0x08004718 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004718 osThreadCreate + 0x0800482c 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800482c osThreadCreate + .text.osMutexCreate + 0x08004860 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004860 osMutexCreate + .text.osMutexWait + 0x0800486c 0x70 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800486c osMutexWait + .text.osMutexRelease + 0x080048dc 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080048dc osMutexRelease + .text.osSemaphoreCreate + 0x08004934 0x28 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004934 osSemaphoreCreate + .text.osSemaphoreWait + 0x0800495c 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x0800495c osSemaphoreWait .text.osSystickHandler - 0x0800474c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800474c osSystickHandler + 0x080049c8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080049c8 osSystickHandler .text.osDelayUntil - 0x0800475c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800475c osDelayUntil + 0x080049d8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x080049d8 osDelayUntil .text.vListInitialise - 0x0800476c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0800476c vListInitialise + 0x080049e8 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x080049e8 vListInitialise .text.vListInitialiseItem - 0x08004784 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004784 vListInitialiseItem + 0x08004a00 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004a00 vListInitialiseItem .text.vListInsertEnd - 0x0800478c 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0800478c vListInsertEnd + 0x08004a08 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004a08 vListInsertEnd .text.vListInsert - 0x080047a4 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080047a4 vListInsert + 0x08004a20 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004a20 vListInsert .text.uxListRemove - 0x080047d4 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080047d4 uxListRemove + 0x08004a50 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004a50 uxListRemove .text.prvIsQueueFull - 0x080047f8 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a74 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x08004818 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004a94 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataToQueue - 0x08004834 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004ab0 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvNotifyQueueSetContainer - 0x080048b8 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004b34 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x0800491c 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004b98 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x08004940 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004bbc 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericReset - 0x080049c8 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x080049c8 xQueueGenericReset + 0x08004c44 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004c44 xQueueGenericReset .text.prvInitialiseNewQueue - 0x08004a34 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004cb0 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.xQueueGenericCreate - 0x08004a5c 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004a5c xQueueGenericCreate + 0x08004cd8 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004cd8 xQueueGenericCreate .text.xQueueGenericSend - 0x08004a9c 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004a9c xQueueGenericSend + 0x08004d18 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004d18 xQueueGenericSend + .text.prvInitialiseMutex + 0x08004e78 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueCreateMutex + 0x08004e90 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004e90 xQueueCreateMutex + .text.xQueueGiveFromISR + 0x08004ea8 0xbc Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004ea8 xQueueGiveFromISR .text.xQueueGenericReceive - 0x08004bfc 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004bfc xQueueGenericReceive + 0x08004f64 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08004f64 xQueueGenericReceive + .text.xQueueReceiveFromISR + 0x080050e4 0x98 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080050e4 xQueueReceiveFromISR .text.prvResetNextTaskUnblockTime - 0x08004d7c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800517c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x08004dac 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080051ac 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseNewTask - 0x08004dc0 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080051c0 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x08004e5c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800525c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x08004eb4 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080052b4 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddCurrentTaskToDelayedList - 0x08004f48 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005348 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskCreate - 0x08004fb4 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08004fb4 xTaskCreate + 0x080053b4 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080053b4 xTaskCreate .text.vTaskStartScheduler - 0x08005014 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005014 vTaskStartScheduler + 0x08005414 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005414 vTaskStartScheduler .text.vTaskSuspendAll - 0x08005068 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005068 vTaskSuspendAll + 0x08005468 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005468 vTaskSuspendAll .text.xTaskGetTickCount - 0x08005078 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005078 xTaskGetTickCount + 0x08005478 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005478 xTaskGetTickCount .text.xTaskGetTickCountFromISR - 0x08005084 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005084 xTaskGetTickCountFromISR + 0x08005484 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005484 xTaskGetTickCountFromISR .text.xTaskIncrementTick - 0x08005090 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005090 xTaskIncrementTick + 0x08005490 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005490 xTaskIncrementTick .text.xTaskResumeAll - 0x08005194 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005194 xTaskResumeAll + 0x08005594 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005594 xTaskResumeAll .text.vTaskDelayUntil - 0x08005268 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005268 vTaskDelayUntil + 0x08005668 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005668 vTaskDelayUntil .text.prvCheckTasksWaitingTermination - 0x080052e0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080056e0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvIdleTask - 0x08005330 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005730 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskSwitchContext - 0x08005348 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005348 vTaskSwitchContext + 0x08005748 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005748 vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x080053cc 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080053cc vTaskPlaceOnEventList + 0x080057cc 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080057cc vTaskPlaceOnEventList .text.xTaskRemoveFromEventList - 0x080053f0 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080053f0 xTaskRemoveFromEventList + 0x080057f0 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080057f0 xTaskRemoveFromEventList .text.vTaskSetTimeOutState - 0x08005468 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005468 vTaskSetTimeOutState + 0x08005868 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005868 vTaskSetTimeOutState .text.xTaskCheckForTimeOut - 0x08005480 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005480 xTaskCheckForTimeOut + 0x08005880 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005880 xTaskCheckForTimeOut .text.vTaskMissedYield - 0x080054e4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080054e4 vTaskMissedYield + 0x080058e4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080058e4 vTaskMissedYield .text.xTaskGetSchedulerState - 0x080054f0 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080054f0 xTaskGetSchedulerState + 0x080058f0 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080058f0 xTaskGetSchedulerState .text.vTaskPriorityInherit - 0x08005510 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005510 vTaskPriorityInherit + 0x08005910 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005910 vTaskPriorityInherit .text.xTaskPriorityDisinherit - 0x08005590 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005590 xTaskPriorityDisinherit + 0x08005990 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005990 xTaskPriorityDisinherit .text.pvTaskIncrementMutexHeldCount - 0x08005604 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005604 pvTaskIncrementMutexHeldCount + 0x08005a04 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005a04 pvTaskIncrementMutexHeldCount .text.prvTaskExitError - 0x08005620 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - *fill* 0x08005634 0xc + 0x08005a20 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x08005a34 0xc .text.vPortStartFirstTask - 0x08005640 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005a40 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .text.pxPortInitialiseStack - 0x08005674 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005674 pxPortInitialiseStack + 0x08005a74 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005a74 pxPortInitialiseStack .text.SVC_Handler - 0x08005694 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005694 SVC_Handler + 0x08005a94 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005a94 SVC_Handler .text.vPortYield - 0x08005698 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005698 vPortYield + 0x08005a98 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005a98 vPortYield .text.vPortEnterCritical - 0x080056b0 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080056b0 vPortEnterCritical + 0x08005ab0 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005ab0 vPortEnterCritical .text.vPortExitCritical - 0x080056c8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080056c8 vPortExitCritical + 0x08005ac8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005ac8 vPortExitCritical .text.ulSetInterruptMaskFromISR - 0x080056e8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080056e8 ulSetInterruptMaskFromISR + 0x08005ae8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005ae8 ulSetInterruptMaskFromISR .text.vClearInterruptMaskFromISR - 0x080056f4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x080056f4 vClearInterruptMaskFromISR - *fill* 0x080056fc 0x4 + 0x08005af4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005af4 vClearInterruptMaskFromISR + *fill* 0x08005afc 0x4 .text.PendSV_Handler - 0x08005700 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005700 PendSV_Handler + 0x08005b00 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005b00 PendSV_Handler .text.xPortSysTickHandler - 0x08005744 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005744 xPortSysTickHandler + 0x08005b44 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005b44 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x08005768 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005768 vPortSetupTimerInterrupt + 0x08005b68 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005b68 vPortSetupTimerInterrupt .text.xPortStartScheduler - 0x08005790 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005790 xPortStartScheduler + 0x08005b90 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08005b90 xPortStartScheduler .text.prvHeapInit - 0x080057c4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005bc4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x08005814 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005c14 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.pvPortMalloc - 0x08005864 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005864 pvPortMalloc + 0x08005c64 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005c64 pvPortMalloc .text.vPortFree - 0x08005928 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005928 vPortFree + 0x08005d28 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08005d28 vPortFree .text.HTS221_I2C_Read - 0x08005980 0x24 Src/HTS221.o + 0x08005d80 0x24 Src/HTS221.o .text.HTS221_I2C_Read_return - 0x080059a4 0x1c Src/HTS221.o + 0x08005da4 0x1c Src/HTS221.o .text.HTS221_CheckAvailable - 0x080059c0 0x14 Src/HTS221.o + 0x08005dc0 0x14 Src/HTS221.o .text.HTS221_GetCoefficient - 0x080059d4 0xa4 Src/HTS221.o + 0x08005dd4 0xa4 Src/HTS221.o .text.HTS221_EnableDevice - 0x08005a78 0x2c Src/HTS221.o + 0x08005e78 0x2c Src/HTS221.o .text.HTS221_I2C_Write - 0x08005aa4 0x24 Src/HTS221.o + 0x08005ea4 0x24 Src/HTS221.o .text.HTS221_ConfigDevice - 0x08005ac8 0x38 Src/HTS221.o - 0x08005ac8 HTS221_ConfigDevice + 0x08005ec8 0x38 Src/HTS221.o + 0x08005ec8 HTS221_ConfigDevice .text.HTS221_Init - 0x08005b00 0x28 Src/HTS221.o - 0x08005b00 HTS221_Init + 0x08005f00 0x28 Src/HTS221.o + 0x08005f00 HTS221_Init .text.HTS221_GetHumidity - 0x08005b28 0x9c Src/HTS221.o - 0x08005b28 HTS221_GetHumidity + 0x08005f28 0x9c Src/HTS221.o + 0x08005f28 HTS221_GetHumidity .text.HTS221_GetTemperature - 0x08005bc4 0x9c Src/HTS221.o - 0x08005bc4 HTS221_GetTemperature + 0x08005fc4 0x9c Src/HTS221.o + 0x08005fc4 HTS221_GetTemperature .text.MX_GPIO_Init - 0x08005c60 0x8c Src/main.o + 0x08006060 0x8c Src/main.o .text.func_NVM_Manager - 0x08005cec 0x100 Src/main.o - 0x08005cec func_NVM_Manager + 0x080060ec 0x110 Src/main.o + 0x080060ec func_NVM_Manager .text.func_LEDBlink - 0x08005dec 0x34 Src/main.o - 0x08005dec func_LEDBlink + 0x080061fc 0x34 Src/main.o + 0x080061fc func_LEDBlink .text.func_UartPrint - 0x08005e20 0x1d0 Src/main.o - 0x08005e20 func_UartPrint + 0x08006230 0x1d0 Src/main.o + 0x08006230 func_UartPrint .text.func_SensorRead - 0x08005ff0 0x84 Src/main.o - 0x08005ff0 func_SensorRead + 0x08006400 0x84 Src/main.o + 0x08006400 func_SensorRead .text.Error_Handler - 0x08006074 0x4 Src/main.o - 0x08006074 Error_Handler + 0x08006484 0x4 Src/main.o + 0x08006484 Error_Handler .text.MX_RTC_Init - 0x08006078 0x90 Src/main.o + 0x08006488 0x90 Src/main.o .text.MX_USART2_UART_Init - 0x08006108 0x38 Src/main.o + 0x08006518 0x38 Src/main.o .text.MX_USART1_IRDA_Init - 0x08006140 0x38 Src/main.o + 0x08006550 0x38 Src/main.o .text.MX_I2C1_Init - 0x08006178 0x58 Src/main.o + 0x08006588 0x58 Src/main.o .text.SystemClock_Config - 0x080061d0 0xa4 Src/main.o - 0x080061d0 SystemClock_Config - .text.main 0x08006274 0xf0 Src/main.o - 0x08006274 main + 0x080065e0 0xa4 Src/main.o + 0x080065e0 SystemClock_Config + .text.main 0x08006684 0xf4 Src/main.o + 0x08006684 main .text.HAL_MspInit - 0x08006364 0x40 Src/stm32l0xx_hal_msp.o - 0x08006364 HAL_MspInit + 0x08006778 0x40 Src/stm32l0xx_hal_msp.o + 0x08006778 HAL_MspInit .text.HAL_I2C_MspInit - 0x080063a4 0x48 Src/stm32l0xx_hal_msp.o - 0x080063a4 HAL_I2C_MspInit + 0x080067b8 0x48 Src/stm32l0xx_hal_msp.o + 0x080067b8 HAL_I2C_MspInit .text.HAL_RTC_MspInit - 0x080063ec 0x20 Src/stm32l0xx_hal_msp.o - 0x080063ec HAL_RTC_MspInit + 0x08006800 0x20 Src/stm32l0xx_hal_msp.o + 0x08006800 HAL_RTC_MspInit .text.HAL_IRDA_MspInit - 0x0800640c 0x44 Src/stm32l0xx_hal_msp.o - 0x0800640c HAL_IRDA_MspInit + 0x08006820 0x44 Src/stm32l0xx_hal_msp.o + 0x08006820 HAL_IRDA_MspInit .text.HAL_UART_MspInit - 0x08006450 0x44 Src/stm32l0xx_hal_msp.o - 0x08006450 HAL_UART_MspInit + 0x08006864 0x44 Src/stm32l0xx_hal_msp.o + 0x08006864 HAL_UART_MspInit .text.SysTick_Handler - 0x08006494 0xc Src/stm32l0xx_it.o - 0x08006494 SysTick_Handler + 0x080068a8 0xc Src/stm32l0xx_it.o + 0x080068a8 SysTick_Handler .text.RTC_IRQHandler - 0x080064a0 0x24 Src/stm32l0xx_it.o - 0x080064a0 RTC_IRQHandler + 0x080068b4 0x24 Src/stm32l0xx_it.o + 0x080068b4 RTC_IRQHandler .text.SystemInit - 0x080064c4 0x5c Src/system_stm32l0xx.o - 0x080064c4 SystemInit + 0x080068d8 0x5c Src/system_stm32l0xx.o + 0x080068d8 SystemInit .text.Reset_Handler - 0x08006520 0x50 startup/startup_stm32l053xx.o - 0x08006520 Reset_Handler + 0x08006934 0x50 startup/startup_stm32l053xx.o + 0x08006934 Reset_Handler .text.Default_Handler - 0x08006570 0x2 startup/startup_stm32l053xx.o - 0x08006570 TSC_IRQHandler - 0x08006570 HardFault_Handler - 0x08006570 ADC1_COMP_IRQHandler - 0x08006570 PVD_IRQHandler - 0x08006570 NMI_Handler - 0x08006570 I2C1_IRQHandler - 0x08006570 RCC_CRS_IRQHandler - 0x08006570 SPI1_IRQHandler - 0x08006570 TIM6_DAC_IRQHandler - 0x08006570 EXTI2_3_IRQHandler - 0x08006570 I2C2_IRQHandler - 0x08006570 LCD_IRQHandler - 0x08006570 DMA1_Channel4_5_6_7_IRQHandler - 0x08006570 EXTI4_15_IRQHandler - 0x08006570 DMA1_Channel1_IRQHandler - 0x08006570 Default_Handler - 0x08006570 TIM22_IRQHandler - 0x08006570 EXTI0_1_IRQHandler - 0x08006570 USB_IRQHandler - 0x08006570 SPI2_IRQHandler - 0x08006570 TIM21_IRQHandler - 0x08006570 WWDG_IRQHandler - 0x08006570 TIM2_IRQHandler - 0x08006570 DMA1_Channel2_3_IRQHandler - 0x08006570 USART2_IRQHandler - 0x08006570 FLASH_IRQHandler - 0x08006570 USART1_IRQHandler - 0x08006570 RNG_LPUART1_IRQHandler - 0x08006570 LPTIM1_IRQHandler - *fill* 0x08006572 0x2 + 0x08006984 0x2 startup/startup_stm32l053xx.o + 0x08006984 TSC_IRQHandler + 0x08006984 HardFault_Handler + 0x08006984 ADC1_COMP_IRQHandler + 0x08006984 PVD_IRQHandler + 0x08006984 NMI_Handler + 0x08006984 I2C1_IRQHandler + 0x08006984 RCC_CRS_IRQHandler + 0x08006984 SPI1_IRQHandler + 0x08006984 TIM6_DAC_IRQHandler + 0x08006984 EXTI2_3_IRQHandler + 0x08006984 I2C2_IRQHandler + 0x08006984 LCD_IRQHandler + 0x08006984 DMA1_Channel4_5_6_7_IRQHandler + 0x08006984 EXTI4_15_IRQHandler + 0x08006984 DMA1_Channel1_IRQHandler + 0x08006984 Default_Handler + 0x08006984 TIM22_IRQHandler + 0x08006984 EXTI0_1_IRQHandler + 0x08006984 USB_IRQHandler + 0x08006984 SPI2_IRQHandler + 0x08006984 TIM21_IRQHandler + 0x08006984 WWDG_IRQHandler + 0x08006984 TIM2_IRQHandler + 0x08006984 DMA1_Channel2_3_IRQHandler + 0x08006984 USART2_IRQHandler + 0x08006984 FLASH_IRQHandler + 0x08006984 USART1_IRQHandler + 0x08006984 RNG_LPUART1_IRQHandler + 0x08006984 LPTIM1_IRQHandler + *fill* 0x08006986 0x2 .text.__libc_init_array - 0x08006574 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - 0x08006574 __libc_init_array - .text.__itoa 0x080065c0 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x080065c0 __itoa - .text.itoa 0x080065ee 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x080065ee itoa - .text.memcpy 0x080065f6 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - 0x080065f6 memcpy - .text.memset 0x08006608 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - 0x08006608 memset - .text.strcat 0x08006618 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - 0x08006618 strcat - *fill* 0x08006632 0x2 - .text.__utoa 0x08006634 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x08006634 __utoa + 0x08006988 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x08006988 __libc_init_array + .text.__itoa 0x080069d4 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x080069d4 __itoa + .text.itoa 0x08006a02 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x08006a02 itoa + .text.memcpy 0x08006a0a 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x08006a0a memcpy + .text.memset 0x08006a1c 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x08006a1c memset + .text.strcat 0x08006a2c 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + 0x08006a2c strcat + *fill* 0x08006a46 0x2 + .text.__utoa 0x08006a48 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x08006a48 __utoa *(.glue_7) - .glue_7 0x080066a8 0x0 linker stubs + .glue_7 0x08006abc 0x0 linker stubs *(.glue_7t) - .glue_7t 0x080066a8 0x0 linker stubs + .glue_7t 0x08006abc 0x0 linker stubs *(.eh_frame) - .eh_frame 0x080066a8 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .eh_frame 0x08006abc 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o *(.init) - .init 0x080066a8 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x080066a8 _init - .init 0x080066ac 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + .init 0x08006abc 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006abc _init + .init 0x08006ac0 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o *(.fini) - .fini 0x080066b4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x080066b4 _fini - .fini 0x080066b8 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x080066c0 . = ALIGN (0x4) - 0x080066c0 _etext = . + .fini 0x08006ac8 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o + 0x08006ac8 _fini + .fini 0x08006acc 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x08006ad4 . = ALIGN (0x4) + 0x08006ad4 _etext = . -.vfp11_veneer 0x080066c0 0x0 - .vfp11_veneer 0x080066c0 0x0 linker stubs +.vfp11_veneer 0x08006ad4 0x0 + .vfp11_veneer 0x08006ad4 0x0 linker stubs -.v4_bx 0x080066c0 0x0 - .v4_bx 0x080066c0 0x0 linker stubs +.v4_bx 0x08006ad4 0x0 + .v4_bx 0x08006ad4 0x0 linker stubs -.iplt 0x080066c0 0x0 - .iplt 0x080066c0 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.iplt 0x08006ad4 0x0 + .iplt 0x08006ad4 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.rodata 0x080066c0 0x22c - 0x080066c0 . = ALIGN (0x4) +.rodata 0x08006ad4 0x250 + 0x08006ad4 . = ALIGN (0x4) *(.rodata) - .rodata 0x080066c0 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .rodata 0x080066e4 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .rodata 0x0800672c 0x50 Src/main.o - .rodata 0x0800677c 0x24 Src/system_stm32l0xx.o - 0x0800677c PLLMulTable - 0x08006788 AHBPrescTable - 0x08006798 APBPrescTable - .rodata 0x080067a0 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .rodata 0x080067e0 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .rodata 0x08006ad4 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x08006af8 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x08006b40 0x14 Middlewares/MemoryManager/NVM_Manager.o + .rodata 0x08006b54 0x50 Src/main.o + .rodata 0x08006ba4 0x24 Src/system_stm32l0xx.o + 0x08006ba4 PLLMulTable + 0x08006bb0 AHBPrescTable + 0x08006bc0 APBPrescTable + .rodata 0x08006bc8 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .rodata 0x08006c08 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) *(.rodata*) .rodata.str1.4 - 0x08006820 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x08006825 0x3 + 0x08006c48 0xe Middlewares/MemoryManager/NVM_Manager.o + *fill* 0x08006c56 0x2 .rodata.str1.4 - 0x08006828 0x8e Src/main.o + 0x08006c58 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x08006c5d 0x3 + .rodata.str1.4 + 0x08006c60 0x8e Src/main.o 0x92 (size before relaxing) - *fill* 0x080068b6 0x2 + *fill* 0x08006cee 0x2 .rodata.str1.4 - 0x080068b8 0xc Src/stm32l0xx_it.o + 0x08006cf0 0xc Src/stm32l0xx_it.o 0xa (size before relaxing) .rodata.str1.1 - 0x080068c4 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x080068ec . = ALIGN (0x4) - *fill* 0x080068e9 0x3 + 0x08006cfc 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x08006d24 . = ALIGN (0x4) + *fill* 0x08006d21 0x3 .ARM.extab *(.ARM.extab* .gnu.linkonce.armextab.*) -.ARM 0x080068ec 0x8 - 0x080068ec __exidx_start = . +.ARM 0x08006d24 0x8 + 0x08006d24 __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x080068ec 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x080068f4 __exidx_end = . + .ARM.exidx 0x08006d24 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x08006d2c __exidx_end = . -.rel.dyn 0x080068f4 0x0 - .rel.iplt 0x080068f4 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o +.rel.dyn 0x08006d2c 0x0 + .rel.iplt 0x08006d2c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.preinit_array 0x080068f4 0x0 - 0x080068f4 PROVIDE (__preinit_array_start, .) +.preinit_array 0x08006d2c 0x0 + 0x08006d2c PROVIDE (__preinit_array_start, .) *(.preinit_array*) - 0x080068f4 PROVIDE (__preinit_array_end, .) + 0x08006d2c PROVIDE (__preinit_array_end, .) -.init_array 0x080068f4 0x4 - 0x080068f4 PROVIDE (__init_array_start, .) +.init_array 0x08006d2c 0x4 + 0x08006d2c PROVIDE (__init_array_start, .) *(SORT(.init_array.*)) *(.init_array*) - .init_array 0x080068f4 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x080068f8 PROVIDE (__init_array_end, .) + .init_array 0x08006d2c 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + 0x08006d30 PROVIDE (__init_array_end, .) -.fini_array 0x080068f8 0x4 +.fini_array 0x08006d30 0x4 [!provide] PROVIDE (__fini_array_start, .) *(SORT(.fini_array.*)) *(.fini_array*) - .fini_array 0x080068f8 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o + .fini_array 0x08006d30 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o [!provide] PROVIDE (__fini_array_end, .) - 0x080068fc _sidata = LOADADDR (.data) + 0x08006d34 _sidata = LOADADDR (.data) -.data 0x20000000 0x8 load address 0x080068fc +.data 0x20000000 0x8 load address 0x08006d34 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -5876,14 +6058,14 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000008 . = ALIGN (0x4) 0x20000008 _edata = . -.jcr 0x20000008 0x0 load address 0x08006904 +.jcr 0x20000008 0x0 load address 0x08006d3c .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -.igot.plt 0x20000008 0x0 load address 0x08006904 +.igot.plt 0x20000008 0x0 load address 0x08006d3c .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o 0x20000008 . = ALIGN (0x4) -.bss 0x20000008 0xed8 load address 0x08006904 +.bss 0x20000008 0xee4 load address 0x08006d3c 0x20000008 _sbss = . 0x20000008 __bss_start__ = _sbss *(.bss) @@ -5900,38 +6082,43 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 0x20000d6c uwTick COMMON 0x20000d70 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o 0x20000d70 pFlash - COMMON 0x20000d88 0x14 Src/HTS221.o - 0x20000d88 HTS221_CoefStruc - 0x20000d98 HTS221_I2CHander - COMMON 0x20000d9c 0x144 Src/main.o - 0x20000d9c hirda1 - 0x20000dd8 Task_ErrorCheck - 0x20000ddc Task_UartSend - 0x20000de0 Queue_number - 0x20000de4 hi2c1 - 0x20000e30 Queue_SendTo_Uart - 0x20000e34 Queue_SendTo_TaskNVM - 0x20000e38 thread1_counter - 0x20000e3c NVM_QueueSet - 0x20000e40 hrtc - 0x20000e64 huart2 - 0x20000ed4 Task_SensorRead - 0x20000ed8 Task_NVM_ReadWrite - 0x20000edc Task_HearBeatLED - 0x20000ee0 . = ALIGN (0x4) - 0x20000ee0 _ebss = . - 0x20000ee0 __bss_end__ = _ebss + COMMON 0x20000d88 0xc Middlewares/MemoryManager/NVM_Manager.o + 0x20000d88 Task_ManagEeprom + 0x20000d8c SemaEepromManager + 0x20000d90 MutexEeprom + COMMON 0x20000d94 0x14 Src/HTS221.o + 0x20000d94 HTS221_CoefStruc + 0x20000da4 HTS221_I2CHander + COMMON 0x20000da8 0x144 Src/main.o + 0x20000da8 hirda1 + 0x20000de4 Task_ErrorCheck + 0x20000de8 Task_UartSend + 0x20000dec Queue_number + 0x20000df0 hi2c1 + 0x20000e3c Queue_SendTo_Uart + 0x20000e40 Queue_SendTo_TaskNVM + 0x20000e44 thread1_counter + 0x20000e48 NVM_QueueSet + 0x20000e4c hrtc + 0x20000e70 huart2 + 0x20000ee0 Task_SensorRead + 0x20000ee4 Task_NVM_ReadWrite + 0x20000ee8 Task_HearBeatLED + 0x20000eec . = ALIGN (0x4) + 0x20000eec _ebss = . + 0x20000eec __bss_end__ = _ebss ._user_heap_stack - 0x20000ee0 0x600 load address 0x08006904 - 0x20000ee0 . = ALIGN (0x8) + 0x20000eec 0x604 load address 0x08006d3c + 0x20000ef0 . = ALIGN (0x8) + *fill* 0x20000eec 0x4 [!provide] PROVIDE (end, .) [!provide] PROVIDE (_end, .) - 0x200010e0 . = (. + _Min_Heap_Size) - *fill* 0x20000ee0 0x200 - 0x200014e0 . = (. + _Min_Stack_Size) - *fill* 0x200010e0 0x400 - 0x200014e0 . = ALIGN (0x8) + 0x200010f0 . = (. + _Min_Heap_Size) + *fill* 0x20000ef0 0x200 + 0x200014f0 . = (. + _Min_Stack_Size) + *fill* 0x200010f0 0x400 + 0x200014f0 . = ALIGN (0x8) /DISCARD/ libc.a(*) @@ -5974,74 +6161,76 @@ LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13 .ARM.attributes 0x000002d4 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .ARM.attributes - 0x00000306 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x00000306 0x32 Middlewares/MemoryManager/NVM_Manager.o + .ARM.attributes + 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .ARM.attributes - 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o .ARM.attributes - 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000039c 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o .ARM.attributes - 0x0000039c 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000003ce 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .ARM.attributes - 0x000003ce 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x00000400 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .ARM.attributes - 0x00000400 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x00000432 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .ARM.attributes - 0x00000432 0x32 Src/HTS221.o + 0x00000464 0x32 Src/HTS221.o .ARM.attributes - 0x00000464 0x32 Src/main.o + 0x00000496 0x32 Src/main.o .ARM.attributes - 0x00000496 0x32 Src/stm32l0xx_hal_msp.o + 0x000004c8 0x32 Src/stm32l0xx_hal_msp.o .ARM.attributes - 0x000004c8 0x32 Src/stm32l0xx_it.o + 0x000004fa 0x32 Src/stm32l0xx_it.o .ARM.attributes - 0x000004fa 0x32 Src/system_stm32l0xx.o + 0x0000052c 0x32 Src/system_stm32l0xx.o .ARM.attributes - 0x0000052c 0x22 startup/startup_stm32l053xx.o + 0x0000055e 0x22 startup/startup_stm32l053xx.o .ARM.attributes - 0x0000054e 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + 0x00000580 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) .ARM.attributes - 0x0000056c 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) + 0x0000059e 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) .ARM.attributes - 0x0000058a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) + 0x000005bc 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) .ARM.attributes - 0x000005a8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + 0x000005da 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) .ARM.attributes - 0x000005d4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) + 0x00000606 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) .ARM.attributes - 0x00000600 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + 0x00000632 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) .ARM.attributes - 0x0000062c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + 0x0000065e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) .ARM.attributes - 0x00000658 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + 0x0000068a 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) .ARM.attributes - 0x00000684 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + 0x000006b6 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) .ARM.attributes - 0x000006b0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + 0x000006e2 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) .ARM.attributes - 0x000006dc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) + 0x0000070e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) .ARM.attributes - 0x00000708 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) + 0x0000073a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) .ARM.attributes - 0x00000726 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) + 0x00000758 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) .ARM.attributes - 0x00000744 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + 0x00000776 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) .ARM.attributes - 0x00000770 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + 0x000007a2 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) .ARM.attributes - 0x0000079c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x000007ce 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) .ARM.attributes - 0x000007c8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + 0x000007fa 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) .ARM.attributes - 0x000007f4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + 0x00000826 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) .ARM.attributes - 0x00000820 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) + 0x00000852 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) .ARM.attributes - 0x0000083c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + 0x0000086e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) .ARM.attributes - 0x00000868 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o + 0x0000089a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o OUTPUT(RTOS_IOT.elf elf32-littlearm) -.debug_info 0x00000000 0x16ff5 +.debug_info 0x00000000 0x176cf .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_info 0x00000fea 0x4ee Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6056,20 +6245,21 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_info 0x00008efd 0xd08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_info 0x00009c05 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_info 0x0000ab24 0x1990 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_info 0x0000c4b4 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_info 0x0000dfc3 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_info 0x0000e268 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_info 0x0000f935 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_info 0x00011acc 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_info 0x00011d7c 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_info 0x000120e1 0xb37 Src/HTS221.o - .debug_info 0x00012c18 0x260b Src/main.o - .debug_info 0x00015223 0x117a Src/stm32l0xx_hal_msp.o - .debug_info 0x0001639d 0x86a Src/stm32l0xx_it.o - .debug_info 0x00016c07 0x37b Src/system_stm32l0xx.o - .debug_info 0x00016f82 0x73 startup/startup_stm32l053xx.o + .debug_info 0x0000c4b4 0x679 Middlewares/MemoryManager/NVM_Manager.o + .debug_info 0x0000cb2d 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_info 0x0000e63c 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_info 0x0000e8e1 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_info 0x0000ffae 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_info 0x00012145 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_info 0x000123f5 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_info 0x0001275a 0xb37 Src/HTS221.o + .debug_info 0x00013291 0x2661 Src/main.o + .debug_info 0x000158f2 0x117a Src/stm32l0xx_hal_msp.o + .debug_info 0x00016a6c 0x86a Src/stm32l0xx_it.o + .debug_info 0x000172d6 0x37b Src/system_stm32l0xx.o + .debug_info 0x00017651 0x7e startup/startup_stm32l053xx.o -.debug_abbrev 0x00000000 0x3027 +.debug_abbrev 0x00000000 0x3226 .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_abbrev 0x0000046d 0x1f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6084,20 +6274,21 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_abbrev 0x000015d9 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_abbrev 0x00001775 0x1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_abbrev 0x00001920 0x24a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_abbrev 0x00001b6a 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_abbrev 0x00001e3f 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_abbrev 0x00001f1e 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_abbrev 0x00002120 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_abbrev 0x00002390 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_abbrev 0x0000255f 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_abbrev 0x0000271c 0x207 Src/HTS221.o - .debug_abbrev 0x00002923 0x329 Src/main.o - .debug_abbrev 0x00002c4c 0x18d Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x00002dd9 0x149 Src/stm32l0xx_it.o - .debug_abbrev 0x00002f22 0xf3 Src/system_stm32l0xx.o - .debug_abbrev 0x00003015 0x12 startup/startup_stm32l053xx.o + .debug_abbrev 0x00001b6a 0x1ee Middlewares/MemoryManager/NVM_Manager.o + .debug_abbrev 0x00001d58 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_abbrev 0x0000202d 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_abbrev 0x0000210c 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_abbrev 0x0000230e 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_abbrev 0x0000257e 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_abbrev 0x0000274d 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_abbrev 0x0000290a 0x207 Src/HTS221.o + .debug_abbrev 0x00002b11 0x33a Src/main.o + .debug_abbrev 0x00002e4b 0x18d Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x00002fd8 0x149 Src/stm32l0xx_it.o + .debug_abbrev 0x00003121 0xf3 Src/system_stm32l0xx.o + .debug_abbrev 0x00003214 0x12 startup/startup_stm32l053xx.o -.debug_loc 0x00000000 0xe9e1 +.debug_loc 0x00000000 0xea89 .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_loc 0x00000447 0x223 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6112,18 +6303,19 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_loc 0x00006a9a 0xc10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_loc 0x000076aa 0xf1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_loc 0x000085c6 0x176e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_loc 0x00009d34 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_loc 0x0000ad46 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_loc 0x0000adab 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_loc 0x0000c5d3 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_loc 0x0000dec8 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_loc 0x0000df6e 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_loc 0x0000e1b2 0x3b0 Src/HTS221.o - .debug_loc 0x0000e562 0x254 Src/main.o - .debug_loc 0x0000e7b6 0xc6 Src/stm32l0xx_hal_msp.o - .debug_loc 0x0000e87c 0x165 Src/system_stm32l0xx.o + .debug_loc 0x00009d34 0xa8 Middlewares/MemoryManager/NVM_Manager.o + .debug_loc 0x00009ddc 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_loc 0x0000adee 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_loc 0x0000ae53 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_loc 0x0000c67b 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_loc 0x0000df70 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_loc 0x0000e016 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_loc 0x0000e25a 0x3b0 Src/HTS221.o + .debug_loc 0x0000e60a 0x254 Src/main.o + .debug_loc 0x0000e85e 0xc6 Src/stm32l0xx_hal_msp.o + .debug_loc 0x0000e924 0x165 Src/system_stm32l0xx.o -.debug_aranges 0x00000000 0x1498 +.debug_aranges 0x00000000 0x14d0 .debug_aranges 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_aranges @@ -6153,31 +6345,33 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_aranges 0x00000b08 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o .debug_aranges - 0x00000cf0 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x00000cf0 0x38 Middlewares/MemoryManager/NVM_Manager.o + .debug_aranges + 0x00000d28 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .debug_aranges - 0x00000ec8 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x00000f00 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o .debug_aranges - 0x00000f08 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000f40 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o .debug_aranges - 0x00001030 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00001068 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o .debug_aranges - 0x00001200 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x00001238 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o .debug_aranges - 0x00001288 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x000012c0 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_aranges - 0x000012d8 0x68 Src/HTS221.o + 0x00001310 0x68 Src/HTS221.o .debug_aranges - 0x00001340 0x80 Src/main.o + 0x00001378 0x80 Src/main.o .debug_aranges - 0x000013c0 0x60 Src/stm32l0xx_hal_msp.o + 0x000013f8 0x60 Src/stm32l0xx_hal_msp.o .debug_aranges - 0x00001420 0x28 Src/stm32l0xx_it.o + 0x00001458 0x28 Src/stm32l0xx_it.o .debug_aranges - 0x00001448 0x28 Src/system_stm32l0xx.o + 0x00001480 0x28 Src/system_stm32l0xx.o .debug_aranges - 0x00001470 0x28 startup/startup_stm32l053xx.o + 0x000014a8 0x28 startup/startup_stm32l053xx.o -.debug_ranges 0x00000000 0x13d0 +.debug_ranges 0x00000000 0x13f8 .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_ranges 0x000000d0 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_ranges 0x00000140 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6192,20 +6386,21 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_ranges 0x000008b0 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_ranges 0x00000958 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_ranges 0x00000a68 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_ranges 0x00000c40 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_ranges 0x00000e08 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_ranges 0x00000e38 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_ranges 0x00000fb0 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_ranges 0x000011b0 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_ranges 0x00001228 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_ranges 0x00001268 0x58 Src/HTS221.o - .debug_ranges 0x000012c0 0x70 Src/main.o - .debug_ranges 0x00001330 0x50 Src/stm32l0xx_hal_msp.o - .debug_ranges 0x00001380 0x18 Src/stm32l0xx_it.o - .debug_ranges 0x00001398 0x18 Src/system_stm32l0xx.o - .debug_ranges 0x000013b0 0x20 startup/startup_stm32l053xx.o + .debug_ranges 0x00000c40 0x28 Middlewares/MemoryManager/NVM_Manager.o + .debug_ranges 0x00000c68 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_ranges 0x00000e30 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_ranges 0x00000e60 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_ranges 0x00000fd8 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_ranges 0x000011d8 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_ranges 0x00001250 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_ranges 0x00001290 0x58 Src/HTS221.o + .debug_ranges 0x000012e8 0x70 Src/main.o + .debug_ranges 0x00001358 0x50 Src/stm32l0xx_hal_msp.o + .debug_ranges 0x000013a8 0x18 Src/stm32l0xx_it.o + .debug_ranges 0x000013c0 0x18 Src/system_stm32l0xx.o + .debug_ranges 0x000013d8 0x20 startup/startup_stm32l053xx.o -.debug_macro 0x00000000 0x18362 +.debug_macro 0x00000000 0x1892e .debug_macro 0x00000000 0x395 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000395 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_macro 0x00000bc7 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o @@ -6285,115 +6480,121 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_macro 0x00014bc8 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_macro 0x00014f39 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_macro 0x000152aa 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x0001562d 0x22f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001585c 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001592e 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015a96 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015b4c 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015b5c 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015b7b 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00015f91 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00016051 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x000160dd 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001616e 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00016202 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00016265 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00016334 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x000164e6 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x000166ed 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x0001673f 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x000169b0 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x000169c1 0x239 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00016bfa 0x1d9 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00016dd3 0x38d Src/HTS221.o - .debug_macro 0x00017160 0x22 Src/HTS221.o - .debug_macro 0x00017182 0x3a Src/HTS221.o - .debug_macro 0x000171bc 0x15a Src/HTS221.o - .debug_macro 0x00017316 0x455 Src/main.o - .debug_macro 0x0001776b 0xd8 Src/main.o - .debug_macro 0x00017843 0x371 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00017bb4 0x431 Src/stm32l0xx_it.o - .debug_macro 0x00017fe5 0x37d Src/system_stm32l0xx.o + .debug_macro 0x0001562d 0x43d Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00015a6a 0xd8 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00015b42 0x168 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00015caa 0xb6 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00015d60 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00015d70 0x1f Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00015d8f 0x416 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x000161a5 0xc0 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016265 0x8c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x000162f1 0x91 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016382 0x94 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016416 0x63 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016479 0xcf Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016548 0xa9 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x000165f1 0x3a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x0001662b 0x22f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001685a 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x0001692c 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00016ade 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00016ce5 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00016d37 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00016fa8 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00016fb9 0x239 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x000171f2 0x1d9 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x000173cb 0x38d Src/HTS221.o + .debug_macro 0x00017758 0x22 Src/HTS221.o + .debug_macro 0x0001777a 0x15a Src/HTS221.o + .debug_macro 0x000178d4 0x463 Src/main.o + .debug_macro 0x00017d37 0xd8 Src/main.o + .debug_macro 0x00017e0f 0x371 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00018180 0x431 Src/stm32l0xx_it.o + .debug_macro 0x000185b1 0x37d Src/system_stm32l0xx.o -.debug_line 0x00000000 0x11c46 - .debug_line 0x00000000 0xa0f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_line 0x00000a0f 0x9c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_line 0x000013d3 0x9f7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_line 0x00001dca 0xb05 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_line 0x000028cf 0x989 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_line 0x00003258 0x18c2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_line 0x00004b1a 0x98a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_line 0x000054a4 0x1063 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_line 0x00006507 0x9ba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_line 0x00006ec1 0xb42 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_line 0x00007a03 0xb41 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_line 0x00008544 0xbd5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_line 0x00009119 0xeba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_line 0x00009fd3 0x12e5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_line 0x0000b2b8 0xb9f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_line 0x0000be57 0x589 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x0000c3e0 0xab4 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x0000ce94 0xf22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x0000ddb6 0x650 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_line 0x0000e406 0x638 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_line 0x0000ea3e 0x915 Src/HTS221.o - .debug_line 0x0000f353 0xce6 Src/main.o - .debug_line 0x00010039 0x8e8 Src/stm32l0xx_hal_msp.o - .debug_line 0x00010921 0xa40 Src/stm32l0xx_it.o - .debug_line 0x00011361 0x862 Src/system_stm32l0xx.o - .debug_line 0x00011bc3 0x83 startup/startup_stm32l053xx.o +.debug_line 0x00000000 0x12c85 + .debug_line 0x00000000 0xa46 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_line 0x00000a46 0x9fb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_line 0x00001441 0xa2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_line 0x00001e6f 0xb3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_line 0x000029ab 0x9c0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_line 0x0000336b 0x18f9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_line 0x00004c64 0x9c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_line 0x00005625 0x109a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_line 0x000066bf 0x9f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_line 0x000070b0 0xb79 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_line 0x00007c29 0xb78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_line 0x000087a1 0xc0c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_line 0x000093ad 0xef1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_line 0x0000a29e 0x131c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_line 0x0000b5ba 0xb04 Middlewares/MemoryManager/NVM_Manager.o + .debug_line 0x0000c0be 0xbcb Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_line 0x0000cc89 0x5aa Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x0000d233 0xad5 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000dd08 0xf43 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000ec4b 0x671 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_line 0x0000f2bc 0x659 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_line 0x0000f915 0x94c Src/HTS221.o + .debug_line 0x00010261 0xd51 Src/main.o + .debug_line 0x00010fb2 0x91f Src/stm32l0xx_hal_msp.o + .debug_line 0x000118d1 0xa98 Src/stm32l0xx_it.o + .debug_line 0x00012369 0x899 Src/system_stm32l0xx.o + .debug_line 0x00012c02 0x83 startup/startup_stm32l053xx.o -.debug_str 0x00000000 0x86d26 - .debug_str 0x00000000 0x7a448 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x7a861 (size before relaxing) - .debug_str 0x0007a448 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x7a673 (size before relaxing) - .debug_str 0x0007a6d7 0x23e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - 0x7a416 (size before relaxing) - .debug_str 0x0007a915 0x39f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x7a6f6 (size before relaxing) - .debug_str 0x0007acb4 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x7a506 (size before relaxing) - .debug_str 0x0007af6a 0x1170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x7b3cc (size before relaxing) - .debug_str 0x0007c0da 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x7a7d3 (size before relaxing) - .debug_str 0x0007c192 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x7ac14 (size before relaxing) - .debug_str 0x0007c907 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x7a4de (size before relaxing) - .debug_str 0x0007cbb3 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x7a87e (size before relaxing) - .debug_str 0x0007d096 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x7a7c7 (size before relaxing) - .debug_str 0x0007d53f 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x7a65c (size before relaxing) - .debug_str 0x0007d978 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x7a981 (size before relaxing) - .debug_str 0x0007de92 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x7af3b (size before relaxing) - .debug_str 0x0007e7b6 0x5977 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0xb993 (size before relaxing) - .debug_str 0x0008412d 0x148 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x8cdb (size before relaxing) - .debug_str 0x00084275 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0xa3ff (size before relaxing) - .debug_str 0x00084a35 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0xaef7 (size before relaxing) - .debug_str 0x00085acd 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x9652 (size before relaxing) - .debug_str 0x00085eae 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x93e8 (size before relaxing) - .debug_str 0x000860f1 0x742 Src/HTS221.o - 0x7ada5 (size before relaxing) - .debug_str 0x00086833 0x42d Src/main.o - 0x80e02 (size before relaxing) - .debug_str 0x00086c60 0x1b Src/stm32l0xx_hal_msp.o - 0x7ae4e (size before relaxing) - .debug_str 0x00086c7b 0x47 Src/stm32l0xx_it.o - 0x7f63c (size before relaxing) - .debug_str 0x00086cc2 0x64 Src/system_stm32l0xx.o - 0x7a29b (size before relaxing) +.debug_str 0x00000000 0x86ebf + .debug_str 0x00000000 0x7a453 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x7a86c (size before relaxing) + .debug_str 0x0007a453 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x7a67e (size before relaxing) + .debug_str 0x0007a6e2 0x23e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x7a421 (size before relaxing) + .debug_str 0x0007a920 0x39f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x7a701 (size before relaxing) + .debug_str 0x0007acbf 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x7a511 (size before relaxing) + .debug_str 0x0007af75 0x1170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x7b3d7 (size before relaxing) + .debug_str 0x0007c0e5 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x7a7de (size before relaxing) + .debug_str 0x0007c19d 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x7ac1f (size before relaxing) + .debug_str 0x0007c912 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + 0x7a4e9 (size before relaxing) + .debug_str 0x0007cbbe 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x7a889 (size before relaxing) + .debug_str 0x0007d0a1 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x7a7d2 (size before relaxing) + .debug_str 0x0007d54a 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x7a667 (size before relaxing) + .debug_str 0x0007d983 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x7a98c (size before relaxing) + .debug_str 0x0007de9d 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x7af46 (size before relaxing) + .debug_str 0x0007e7c1 0x5217 Middlewares/MemoryManager/NVM_Manager.o + 0x7f4a9 (size before relaxing) + .debug_str 0x000839d8 0x926 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0xb99e (size before relaxing) + .debug_str 0x000842fe 0x148 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x8ce6 (size before relaxing) + .debug_str 0x00084446 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0xa40a (size before relaxing) + .debug_str 0x00084c06 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0xaf02 (size before relaxing) + .debug_str 0x00085c9e 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x965d (size before relaxing) + .debug_str 0x0008607f 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x93f3 (size before relaxing) + .debug_str 0x000862c2 0x742 Src/HTS221.o + 0x7adb0 (size before relaxing) + .debug_str 0x00086a04 0x3f5 Src/main.o + 0x80e63 (size before relaxing) + .debug_str 0x00086df9 0x1b Src/stm32l0xx_hal_msp.o + 0x7ae59 (size before relaxing) + .debug_str 0x00086e14 0x47 Src/stm32l0xx_it.o + 0x7f647 (size before relaxing) + .debug_str 0x00086e5b 0x64 Src/system_stm32l0xx.o + 0x7a2a6 (size before relaxing) .comment 0x00000000 0x6e .comment 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o @@ -6411,6 +6612,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .comment 0x0000006e 0x6f Middlewares/MemoryManager/NVM_Manager.o .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/list.o .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/queue.o @@ -6423,7 +6625,7 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .comment 0x0000006e 0x6f Src/stm32l0xx_it.o .comment 0x0000006e 0x6f Src/system_stm32l0xx.o -.debug_frame 0x00000000 0x38bc +.debug_frame 0x00000000 0x3938 .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o .debug_frame 0x000002c0 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o @@ -6438,29 +6640,30 @@ OUTPUT(RTOS_IOT.elf elf32-littlearm) .debug_frame 0x0000172c 0x204 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o .debug_frame 0x00001930 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o .debug_frame 0x00001c90 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_frame 0x000021d0 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_frame 0x00002710 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_frame 0x0000277c 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_frame 0x00002ad4 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_frame 0x00003044 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_frame 0x00003154 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_frame 0x000031fc 0x124 Src/HTS221.o - .debug_frame 0x00003320 0x168 Src/main.o - .debug_frame 0x00003488 0xd8 Src/stm32l0xx_hal_msp.o - .debug_frame 0x00003560 0x40 Src/stm32l0xx_it.o - .debug_frame 0x000035a0 0x38 Src/system_stm32l0xx.o - .debug_frame 0x000035d8 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .debug_frame 0x000035f8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .debug_frame 0x00003634 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) - .debug_frame 0x00003654 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .debug_frame 0x00003690 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .debug_frame 0x000036cc 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .debug_frame 0x00003708 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .debug_frame 0x00003740 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .debug_frame 0x0000376c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) - .debug_frame 0x00003798 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .debug_frame 0x000037c4 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .debug_frame 0x00003804 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x0000382c 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .debug_frame 0x0000384c 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .debug_frame 0x00003874 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) + .debug_frame 0x000021d0 0x78 Middlewares/MemoryManager/NVM_Manager.o + .debug_frame 0x00002248 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_frame 0x00002788 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_frame 0x000027f4 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_frame 0x00002b4c 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_frame 0x000030bc 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_frame 0x000031cc 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_frame 0x00003274 0x124 Src/HTS221.o + .debug_frame 0x00003398 0x16c Src/main.o + .debug_frame 0x00003504 0xd8 Src/stm32l0xx_hal_msp.o + .debug_frame 0x000035dc 0x40 Src/stm32l0xx_it.o + .debug_frame 0x0000361c 0x38 Src/system_stm32l0xx.o + .debug_frame 0x00003654 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) + .debug_frame 0x00003674 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x000036b0 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) + .debug_frame 0x000036d0 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) + .debug_frame 0x0000370c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) + .debug_frame 0x00003748 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) + .debug_frame 0x00003784 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) + .debug_frame 0x000037bc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) + .debug_frame 0x000037e8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) + .debug_frame 0x00003814 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x00003840 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) + .debug_frame 0x00003880 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x000038a8 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x000038c8 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) + .debug_frame 0x000038f0 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) diff --git a/RTOS_IOT/Debug/sources.mk b/RTOS_IOT/Debug/sources.mk index 8233832..5b9f67b 100644 --- a/RTOS_IOT/Debug/sources.mk +++ b/RTOS_IOT/Debug/sources.mk @@ -16,6 +16,7 @@ C_DEPS := # Every subdirectory with source files must be described here SUBDIRS := \ Drivers/STM32L0xx_HAL_Driver/Src \ +Middlewares/MemoryManager \ Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS \ Middlewares/Third_Party/FreeRTOS/Source \ Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0 \ diff --git a/RTOS_IOT/Inc/NVM_Manager.h b/RTOS_IOT/Inc/NVM_Manager.h new file mode 100644 index 0000000..8fd5906 --- /dev/null +++ b/RTOS_IOT/Inc/NVM_Manager.h @@ -0,0 +1,32 @@ +/* + * NVM_Manager.h + * + * Created on: Jan 6, 2018 + * Author: pt + */ + +#ifndef NVM_MANAGER_H_ +#define NVM_MANAGER_H_ + +#include "main.h" +#include "cmsis_os.h" +#include "stm32l0xx_hal.h" + +typedef struct { + uint32_t Cons; + uint32_t Produce; + uint32_t Flag; +}EEPROM_FIFO; + +enum eEEPROM_METHOD { + CONTINUE_WITH_FIFO, + USE_ADDRESS, +}; + + + +void EEPROM_Initialize ( void ); + + + +#endif /* NVM_MANAGER_H_ */ diff --git a/RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c b/RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c new file mode 100644 index 0000000..4e39492 --- /dev/null +++ b/RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c @@ -0,0 +1,121 @@ +#include "NVM_Manager.h" + +#define EEPROM_START_ADDRESS (uint32_t *)0x08080000 +#define EEPROM_END_ADDRESS (uint32_t *)0x080807CF // only have 2kBytes + +#define EEPROM_FIFO_DATASTORE_ADDRESS (uint32_t *)0x08080000 // EEPROM + +#define BUTTON_TIMEOUT (uint32_t)0x1388 // 5 seconds timeout + + +extern osSemaphoreId SemaBlockClearEEPROM; + +static int32_t timeout = 0; +static EEPROM_FIFO *FIFO_DATA = (EEPROM_FIFO *)EEPROM_FIFO_DATASTORE_ADDRESS; + + + +osThreadId Task_ManagEeprom; +osMutexId MutexEeprom; +osSemaphoreId SemaEepromManager; + + + +static void EEPROM_Clean(void){ + volatile uint32_t* Ptr_address=0; + Ptr_address = EEPROM_START_ADDRESS; + HAL_FLASHEx_DATAEEPROM_Unlock(); + + while (Ptr_address<=EEPROM_END_ADDRESS){ + HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); + Ptr_address++; + } + + HAL_FLASHEx_DATAEEPROM_Lock(); +} + +static void EEPROM_Read (void){ + +} + + +static void EEPROM_Write (enum eEEPROM_METHOD method, uint32_t Address, uint32_t* Data, uint32_t len){ + if (method == CONTINUE_WITH_FIFO){ + + } + else { //USE_ADDRESS + + } +} + +/* + * The task 'task_EepromManager' will automatically goes into the block status and waiting for the semaphore 'SemaEepromManager' + * to be Released by NVIC interrupt. The NVIC interrupt required to be pressed for 'BUTTON_TIMEOUT' interval. + * + * If task is activated the LED is blink for 3 times and then will wait for MUTEX 'MutexEeprom' to be released before flushing out + * all the data from the eeprom. + */ + + +void task_EepromManager ( void const* argument ){ + uint8_t i; + + for (;;){ + + osSemaphoreWait(SemaEepromManager,osWaitForever); + + for (i=0; i<3 ; i++){ + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_SET); + HAL_Delay(100); + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_RESET); + HAL_Delay(100); + } + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_SET); + + //TODO: Implement Mutex before EEPROM Clean is carried out + osMutexWait(MutexEeprom, osWaitForever); + + EEPROM_Clean(); + + osMutexRelease(MutexEeprom); + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_RESET); + + } +} + + +void EEPROM_Initialize ( void ){ + + osThreadDef(EepromManager, task_EepromManager, osPriorityAboveNormal, 0 , 128); + Task_ManagEeprom = osThreadCreate(osThread(EepromManager),NULL); + + osSemaphoreDef(SemaDefEeprom); + SemaEepromManager = osSemaphoreCreate(osSemaphore(SemaDefEeprom), 1); + osSemaphoreWait(SemaEepromManager,osWaitForever); + + osMutexDef(MutexEeprom); + MutexEeprom = osMutexCreate(osMutex(MutexEeprom)); + +} + +/************************************************** + * + * Interrupt routine to release the Semaphore + * + * + * + * **************************************************/ + +void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin){ + + if (timeout!= 0){ + timeout = osKernelSysTick() - timeout; + if (timeout >= BUTTON_TIMEOUT){ + osSemaphoreRelease(SemaEepromManager); + } + timeout = 0; + } + else{ + timeout = osKernelSysTick(); + } +} diff --git a/RTOS_IOT/Src/main.c b/RTOS_IOT/Src/main.c index f951bb9..40dedae 100644 --- a/RTOS_IOT/Src/main.c +++ b/RTOS_IOT/Src/main.c @@ -45,6 +45,7 @@ #include "stm32l0xx_hal.h" #include "cmsis_os.h" #include "HTS221.h" +#include "NVM_Manager.h" /* USER CODE BEGIN Includes */ #define USING_EEPROM @@ -63,6 +64,7 @@ IRDA_HandleTypeDef hirda1; UART_HandleTypeDef huart2; +extern osMutexId MutexEeprom; //osThreadId defaultTaskHandle; @@ -273,6 +275,7 @@ int main(void) /* USER CODE END RTOS_QUEUES */ + EEPROM_Initialize(); /* Start scheduler */ osKernelStart(); @@ -532,6 +535,7 @@ void func_NVM_Manager(void const* argument){ for(;;){ // TODO: Copy data from Queue then write into the EEPROM. xQueueReceive(Queue_SendTo_TaskNVM,&Rawdata,portMAX_DELAY); + osMutexWait(MutexEeprom, osWaitForever); switch (Rawdata.EventId) { case EV_ReturnFromBlinkLED: break; @@ -618,8 +622,11 @@ void func_LEDBlink (void const* argument){ { thread1_counter++; HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); -// osDelay(1000); osDelayUntil(&xLastTickWakeup,1000); + HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); + osDelayUntil(&xLastTickWakeup,1000); + +// osDelay(1000); } } From bcde54898fe756db4f1408b57e5560efc00b1a04 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 <tiongpatrick1014@gmail.com> Date: Tue, 9 Jan 2018 05:54:56 +0800 Subject: [PATCH 17/18] the Console prog still not yet complete --- RTOS_IOT/.cproject | 397 +- RTOS_IOT/.settings/language.settings.xml | 54 +- RTOS_IOT/Debug/.gitignore | 10 +- RTOS_IOT/Debug/RTOS_IOT.bin | Bin 27964 -> 30368 bytes RTOS_IOT/Debug/RTOS_IOT.elf | Bin 1076252 -> 1181284 bytes RTOS_IOT/Debug/makefile | 123 +- RTOS_IOT/Debug/objects.list | 2 + RTOS_IOT/Debug/objects.mk | 16 +- RTOS_IOT/Debug/output.map | 13848 ++++++++-------- RTOS_IOT/Debug/sources.mk | 35 +- RTOS_IOT/Inc/FreeRTOSConfig.h | 342 +- RTOS_IOT/Inc/main.h | 174 +- .../Middlewares/MemoryManager/NVM_Manager.c | 243 +- .../Third_Party/FreeRTOS/Source/tasks.c | 9651 ++++++----- RTOS_IOT/NUCLEO-L053R8.xml | 20 +- RTOS_IOT/RTOS_IOT Debug.cfg | 56 +- RTOS_IOT/Src/main.c | 1561 +- RTOS_IOT/Src/stm32l0xx_it.c | 168 +- 18 files changed, 13593 insertions(+), 13107 deletions(-) diff --git a/RTOS_IOT/.cproject b/RTOS_IOT/.cproject index 5b1d2cd..1d45de1 100644 --- a/RTOS_IOT/.cproject +++ b/RTOS_IOT/.cproject @@ -1,200 +1,201 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> - <storageModule moduleId="org.eclipse.cdt.core.settings"> - <cconfiguration id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948" moduleId="org.eclipse.cdt.core.settings" name="Debug"> - <externalSettings/> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="elf" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug" cleanCommand="rm -rf" description="" id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948" name="Debug" parent="fr.ac6.managedbuild.config.gnu.cross.exe.debug" postannouncebuildStep="Generating binary and Printing size information:" postbuildStep="arm-none-eabi-objcopy -O binary &quot;${BuildArtifactFileBaseName}.elf&quot; &quot;${BuildArtifactFileBaseName}.bin&quot; &amp;&amp; arm-none-eabi-size &quot;${BuildArtifactFileName}&quot;"> - <folderInfo id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948." name="/" resourcePath=""> - <toolChain id="fr.ac6.managedbuild.toolchain.gnu.cross.exe.debug.1332631879" name="Ac6 STM32 MCU GCC" superClass="fr.ac6.managedbuild.toolchain.gnu.cross.exe.debug"> - <option id="fr.ac6.managedbuild.option.gnu.cross.prefix.1748437209" name="Prefix" superClass="fr.ac6.managedbuild.option.gnu.cross.prefix" value="arm-none-eabi-" valueType="string"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.mcu.1154450946" name="Mcu" superClass="fr.ac6.managedbuild.option.gnu.cross.mcu" value="STM32L053R8Tx" valueType="string"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.board.1923579004" name="Board" superClass="fr.ac6.managedbuild.option.gnu.cross.board" value="NUCLEO-L053R8" valueType="string"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.instructionSet.326535254" name="Instruction Set" superClass="fr.ac6.managedbuild.option.gnu.cross.instructionSet" value="fr.ac6.managedbuild.option.gnu.cross.instructionSet.thumbII" valueType="enumerated"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.fpu.860354614" name="Floating point hardware" superClass="fr.ac6.managedbuild.option.gnu.cross.fpu" value="fr.ac6.managedbuild.option.gnu.cross.fpu.no" valueType="enumerated"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.floatabi.1360686534" name="Floating-point ABI" superClass="fr.ac6.managedbuild.option.gnu.cross.floatabi" value="fr.ac6.managedbuild.option.gnu.cross.floatabi.soft" valueType="enumerated"/> - <targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="fr.ac6.managedbuild.targetPlatform.gnu.cross.480118942" isAbstract="false" osList="all" superClass="fr.ac6.managedbuild.targetPlatform.gnu.cross"/> - <builder buildPath="${workspace_loc:/Testing}/Debug" id="fr.ac6.managedbuild.builder.gnu.cross.1801696445" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="fr.ac6.managedbuild.builder.gnu.cross"> - <outputEntries> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="outputPath" name="Debug"/> - </outputEntries> - </builder> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.311121231" name="MCU GCC Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler"> - <option defaultValue="gnu.c.optimization.level.none" id="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level.1788772298" name="Optimization Level" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level" useByScannerDiscovery="false" value="fr.ac6.managedbuild.gnu.c.optimization.level.debug" valueType="enumerated"/> - <option id="gnu.c.compiler.option.debugging.level.2133686593" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.1984067985" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath"> - <listOptionValue builtIn="false" value="../Inc"/> - <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc"/> - <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy"/> - <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0"/> - <listOptionValue builtIn="false" value="../Drivers/CMSIS/Device/ST/STM32L0xx/Include"/> - <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/include"/> - <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS"/> - <listOptionValue builtIn="false" value="../Drivers/CMSIS/Include"/> - <listOptionValue builtIn="false" value="../Inc"/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.267815599" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" useByScannerDiscovery="false" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="__weak=__attribute__((weak))"/> - <listOptionValue builtIn="false" value="__packed=__attribute__((__packed__))"/> - <listOptionValue builtIn="false" value="USE_HAL_DRIVER"/> - <listOptionValue builtIn="false" value="STM32L053xx"/> - </option> - <option id="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other.473319145" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other" useByScannerDiscovery="false" value="-fmessage-length=0" valueType="string"/> - <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c.805586853" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c"/> - <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s.1025094479" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s"/> - </tool> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler.502905270" name="MCU G++ Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler"> - <option id="gnu.cpp.compiler.option.optimization.level.1479240404" name="Optimization Level" superClass="gnu.cpp.compiler.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.debugging.level.1688121514" name="Debug Level" superClass="gnu.cpp.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - </tool> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.1425009774" name="MCU GCC Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker"> - <option id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script.781038938" name="Linker Script (-T)" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script" value="../STM32L053R8Tx_FLASH.ld" valueType="string"/> - <option id="gnu.c.link.option.libs.2047582552" name="Libraries (-l)" superClass="gnu.c.link.option.libs"/> - <option id="gnu.c.link.option.paths.551498614" name="Library search path (-L)" superClass="gnu.c.link.option.paths"/> - <option id="gnu.c.link.option.ldflags.712866807" name="Linker flags" superClass="gnu.c.link.option.ldflags" value="-specs=nosys.specs -specs=nano.specs" valueType="string"/> - <inputType id="cdt.managedbuild.tool.gnu.c.linker.input.472998841" superClass="cdt.managedbuild.tool.gnu.c.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker.213142750" name="MCU G++ Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker"/> - <tool id="fr.ac6.managedbuild.tool.gnu.archiver.530578820" name="MCU GCC Archiver" superClass="fr.ac6.managedbuild.tool.gnu.archiver"/> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.assembler.1913095545" name="MCU GCC Assembler" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler"> - <option id="gnu.both.asm.option.include.paths.221840443" name="Include paths (-I)" superClass="gnu.both.asm.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2065066810" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - <inputType id="fr.ac6.managedbuild.tool.gnu.cross.assembler.input.719484848" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Drivers"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Inc"/> - <entry excluding="Memory Manager" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - <cconfiguration id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731"> - <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731" moduleId="org.eclipse.cdt.core.settings" name="Release"> - <externalSettings/> - <extensions> - <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> - <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> - <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> - </extensions> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <configuration artifactExtension="elf" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release" cleanCommand="rm -rf" description="" id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731" name="Release" parent="fr.ac6.managedbuild.config.gnu.cross.exe.release" postannouncebuildStep="Generating binary and Printing size information:" postbuildStep="arm-none-eabi-objcopy -O binary &quot;${BuildArtifactFileBaseName}.elf&quot; &quot;${BuildArtifactFileBaseName}.bin&quot; &amp;&amp; arm-none-eabi-size &quot;${BuildArtifactFileName}&quot;"> - <folderInfo id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731." name="/" resourcePath=""> - <toolChain id="fr.ac6.managedbuild.toolchain.gnu.cross.exe.release.2114131446" name="Ac6 STM32 MCU GCC" superClass="fr.ac6.managedbuild.toolchain.gnu.cross.exe.release"> - <option id="fr.ac6.managedbuild.option.gnu.cross.prefix.1748437209" name="Prefix" superClass="fr.ac6.managedbuild.option.gnu.cross.prefix" value="arm-none-eabi-" valueType="string"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.mcu.1154450946" name="Mcu" superClass="fr.ac6.managedbuild.option.gnu.cross.mcu" value="STM32L053R8Tx" valueType="string"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.board.1923579004" name="Board" superClass="fr.ac6.managedbuild.option.gnu.cross.board" value="NUCLEO-L053R8" valueType="string"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.instructionSet.326535254" name="Instruction Set" superClass="fr.ac6.managedbuild.option.gnu.cross.instructionSet" value="fr.ac6.managedbuild.option.gnu.cross.instructionSet.thumbII" valueType="enumerated"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.fpu.860354614" name="Floating point hardware" superClass="fr.ac6.managedbuild.option.gnu.cross.fpu" value="fr.ac6.managedbuild.option.gnu.cross.fpu.no" valueType="enumerated"/> - <option id="fr.ac6.managedbuild.option.gnu.cross.floatabi.1360686534" name="Floating-point ABI" superClass="fr.ac6.managedbuild.option.gnu.cross.floatabi" value="fr.ac6.managedbuild.option.gnu.cross.floatabi.soft" valueType="enumerated"/> - <targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="fr.ac6.managedbuild.targetPlatform.gnu.cross.480118942" isAbstract="false" osList="all" superClass="fr.ac6.managedbuild.targetPlatform.gnu.cross"/> - <builder buildPath="${workspace_loc:/Testing}/Release" id="fr.ac6.managedbuild.builder.gnu.cross.1801696445" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="fr.ac6.managedbuild.builder.gnu.cross"> - <outputEntries> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="outputPath" name="Release"/> - </outputEntries> - </builder> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.311121231" name="MCU GCC Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler"> - <option defaultValue="gnu.c.optimization.level.none" id="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level.1788772298" name="Optimization Level" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level" useByScannerDiscovery="false" value="fr.ac6.managedbuild.gnu.c.optimization.level.debug" valueType="enumerated"/> - <option id="gnu.c.compiler.option.debugging.level.2133686593" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/> - <option id="gnu.c.compiler.option.include.paths.1984067985" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath"> - <listOptionValue builtIn="false" value="../Inc"/> - <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc"/> - <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy"/> - <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0"/> - <listOptionValue builtIn="false" value="../Drivers/CMSIS/Device/ST/STM32L0xx/Include"/> - <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/include"/> - <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS"/> - <listOptionValue builtIn="false" value="../Drivers/CMSIS/Include"/> - <listOptionValue builtIn="false" value="../Inc"/> - </option> - <option id="gnu.c.compiler.option.preprocessor.def.symbols.267815599" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" useByScannerDiscovery="false" valueType="definedSymbols"> - <listOptionValue builtIn="false" value="__weak=__attribute__((weak))"/> - <listOptionValue builtIn="false" value="__packed=__attribute__((__packed__))"/> - <listOptionValue builtIn="false" value="USE_HAL_DRIVER"/> - <listOptionValue builtIn="false" value="STM32L053xx"/> - </option> - <option id="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other.473319145" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other" useByScannerDiscovery="false" value="-fmessage-length=0" valueType="string"/> - <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c.805586853" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c"/> - <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s.1025094479" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s"/> - </tool> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler.502905270" name="MCU G++ Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler"> - <option id="gnu.cpp.compiler.option.optimization.level.1479240404" name="Optimization Level" superClass="gnu.cpp.compiler.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> - <option id="gnu.cpp.compiler.option.debugging.level.1688121514" name="Debug Level" superClass="gnu.cpp.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> - </tool> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.1425009774" name="MCU GCC Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker"> - <option id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script.781038938" name="Linker Script (-T)" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script" value="../STM32L053R8Tx_FLASH.ld" valueType="string"/> - <option id="gnu.c.link.option.libs.2047582552" name="Libraries (-l)" superClass="gnu.c.link.option.libs"/> - <option id="gnu.c.link.option.paths.551498614" name="Library search path (-L)" superClass="gnu.c.link.option.paths"/> - <option id="gnu.c.link.option.ldflags.712866807" name="Linker flags" superClass="gnu.c.link.option.ldflags" value="-specs=nosys.specs -specs=nano.specs" valueType="string"/> - <inputType id="cdt.managedbuild.tool.gnu.c.linker.input.472998841" superClass="cdt.managedbuild.tool.gnu.c.linker.input"> - <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> - <additionalInput kind="additionalinput" paths="$(LIBS)"/> - </inputType> - </tool> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker.213142750" name="MCU G++ Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker"/> - <tool id="fr.ac6.managedbuild.tool.gnu.archiver.530578820" name="MCU GCC Archiver" superClass="fr.ac6.managedbuild.tool.gnu.archiver"/> - <tool id="fr.ac6.managedbuild.tool.gnu.cross.assembler.1913095545" name="MCU GCC Assembler" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler"> - <option id="gnu.both.asm.option.include.paths.221840443" name="Include paths (-I)" superClass="gnu.both.asm.option.include.paths" valueType="includePath"> - <listOptionValue builtIn="false" value=""/> - </option> - <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2065066810" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> - <inputType id="fr.ac6.managedbuild.tool.gnu.cross.assembler.input.719484848" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler.input"/> - </tool> - </toolChain> - </folderInfo> - <sourceEntries> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Drivers"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Inc"/> - <entry excluding="Memory Manager" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> - <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> - </sourceEntries> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> - </cconfiguration> - </storageModule> - <storageModule moduleId="cdtBuildSystem" version="4.0.0"> - <project id="Testing.fr.ac6.managedbuild.target.gnu.cross.exe.478905484" name="Executable" projectType="fr.ac6.managedbuild.target.gnu.cross.exe"/> - </storageModule> - <storageModule moduleId="scannerConfiguration"> - <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> - <scannerConfigBuildInfo instanceId="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948;fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948.;fr.ac6.managedbuild.tool.gnu.cross.c.compiler.311121231;fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c.805586853"> - <autodiscovery enabled="false" problemReportingEnabled="true" selectedProfileId=""/> - </scannerConfigBuildInfo> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> + <storageModule moduleId="org.eclipse.cdt.core.settings"> + <cconfiguration id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948" moduleId="org.eclipse.cdt.core.settings" name="Debug"> + <externalSettings/> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="elf" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug" cleanCommand="rm -rf" description="" id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948" name="Debug" parent="fr.ac6.managedbuild.config.gnu.cross.exe.debug" postannouncebuildStep="Generating binary and Printing size information:" postbuildStep="arm-none-eabi-objcopy -O binary &quot;${BuildArtifactFileBaseName}.elf&quot; &quot;${BuildArtifactFileBaseName}.bin&quot; &amp;&amp; arm-none-eabi-size &quot;${BuildArtifactFileName}&quot;"> + <folderInfo id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948." name="/" resourcePath=""> + <toolChain id="fr.ac6.managedbuild.toolchain.gnu.cross.exe.debug.1332631879" name="Ac6 STM32 MCU GCC" superClass="fr.ac6.managedbuild.toolchain.gnu.cross.exe.debug"> + <option id="fr.ac6.managedbuild.option.gnu.cross.prefix.1748437209" name="Prefix" superClass="fr.ac6.managedbuild.option.gnu.cross.prefix" value="arm-none-eabi-" valueType="string"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.mcu.1154450946" name="Mcu" superClass="fr.ac6.managedbuild.option.gnu.cross.mcu" value="STM32L053R8Tx" valueType="string"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.board.1923579004" name="Board" superClass="fr.ac6.managedbuild.option.gnu.cross.board" value="NUCLEO-L053R8" valueType="string"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.instructionSet.326535254" name="Instruction Set" superClass="fr.ac6.managedbuild.option.gnu.cross.instructionSet" value="fr.ac6.managedbuild.option.gnu.cross.instructionSet.thumbII" valueType="enumerated"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.fpu.860354614" name="Floating point hardware" superClass="fr.ac6.managedbuild.option.gnu.cross.fpu" value="fr.ac6.managedbuild.option.gnu.cross.fpu.no" valueType="enumerated"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.floatabi.1360686534" name="Floating-point ABI" superClass="fr.ac6.managedbuild.option.gnu.cross.floatabi" value="fr.ac6.managedbuild.option.gnu.cross.floatabi.soft" valueType="enumerated"/> + <targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="fr.ac6.managedbuild.targetPlatform.gnu.cross.480118942" isAbstract="false" osList="all" superClass="fr.ac6.managedbuild.targetPlatform.gnu.cross"/> + <builder buildPath="${workspace_loc:/Testing}/Debug" id="fr.ac6.managedbuild.builder.gnu.cross.1801696445" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="fr.ac6.managedbuild.builder.gnu.cross"> + <outputEntries> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="outputPath" name="Debug"/> + </outputEntries> + </builder> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.311121231" name="MCU GCC Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler"> + <option defaultValue="gnu.c.optimization.level.none" id="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level.1788772298" name="Optimization Level" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level" useByScannerDiscovery="false" value="fr.ac6.managedbuild.gnu.c.optimization.level.debug" valueType="enumerated"/> + <option id="gnu.c.compiler.option.debugging.level.2133686593" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.1984067985" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath"> + <listOptionValue builtIn="false" value="../Inc"/> + <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc"/> + <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy"/> + <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0"/> + <listOptionValue builtIn="false" value="../Drivers/CMSIS/Device/ST/STM32L0xx/Include"/> + <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/include"/> + <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS"/> + <listOptionValue builtIn="false" value="../Drivers/CMSIS/Include"/> + <listOptionValue builtIn="false" value="../Inc"/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.267815599" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" useByScannerDiscovery="false" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="__weak=__attribute__((weak))"/> + <listOptionValue builtIn="false" value="__packed=__attribute__((__packed__))"/> + <listOptionValue builtIn="false" value="USE_HAL_DRIVER"/> + <listOptionValue builtIn="false" value="STM32L053xx"/> + </option> + <option id="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other.473319145" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other" useByScannerDiscovery="false" value="-fmessage-length=0" valueType="string"/> + <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c.805586853" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c"/> + <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s.1025094479" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s"/> + </tool> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler.502905270" name="MCU G++ Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler"> + <option id="gnu.cpp.compiler.option.optimization.level.1479240404" name="Optimization Level" superClass="gnu.cpp.compiler.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.debugging.level.1688121514" name="Debug Level" superClass="gnu.cpp.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + </tool> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.1425009774" name="MCU GCC Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker"> + <option id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script.781038938" name="Linker Script (-T)" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script" value="../STM32L053R8Tx_FLASH.ld" valueType="string"/> + <option id="gnu.c.link.option.libs.2047582552" name="Libraries (-l)" superClass="gnu.c.link.option.libs"/> + <option id="gnu.c.link.option.paths.551498614" name="Library search path (-L)" superClass="gnu.c.link.option.paths"/> + <option id="gnu.c.link.option.ldflags.712866807" name="Linker flags" superClass="gnu.c.link.option.ldflags" value="-specs=nosys.specs -specs=nano.specs" valueType="string"/> + <inputType id="cdt.managedbuild.tool.gnu.c.linker.input.472998841" superClass="cdt.managedbuild.tool.gnu.c.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker.213142750" name="MCU G++ Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker"/> + <tool id="fr.ac6.managedbuild.tool.gnu.archiver.530578820" name="MCU GCC Archiver" superClass="fr.ac6.managedbuild.tool.gnu.archiver"/> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.assembler.1913095545" name="MCU GCC Assembler" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler"> + <option id="gnu.both.asm.option.include.paths.221840443" name="Include paths (-I)" superClass="gnu.both.asm.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2065066810" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + <inputType id="fr.ac6.managedbuild.tool.gnu.cross.assembler.input.719484848" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Drivers"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Inc"/> + <entry excluding="Memory Manager" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + <cconfiguration id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731"> + <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731" moduleId="org.eclipse.cdt.core.settings" name="Release"> + <externalSettings/> + <extensions> + <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> + <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> + <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> + </extensions> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <configuration artifactExtension="elf" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe,org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release" cleanCommand="rm -rf" description="" id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731" name="Release" parent="fr.ac6.managedbuild.config.gnu.cross.exe.release" postannouncebuildStep="Generating binary and Printing size information:" postbuildStep="arm-none-eabi-objcopy -O binary &quot;${BuildArtifactFileBaseName}.elf&quot; &quot;${BuildArtifactFileBaseName}.bin&quot; &amp;&amp; arm-none-eabi-size &quot;${BuildArtifactFileName}&quot;"> + <folderInfo id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731." name="/" resourcePath=""> + <toolChain id="fr.ac6.managedbuild.toolchain.gnu.cross.exe.release.2114131446" name="Ac6 STM32 MCU GCC" superClass="fr.ac6.managedbuild.toolchain.gnu.cross.exe.release"> + <option id="fr.ac6.managedbuild.option.gnu.cross.prefix.1748437209" name="Prefix" superClass="fr.ac6.managedbuild.option.gnu.cross.prefix" value="arm-none-eabi-" valueType="string"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.mcu.1154450946" name="Mcu" superClass="fr.ac6.managedbuild.option.gnu.cross.mcu" value="STM32L053R8Tx" valueType="string"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.board.1923579004" name="Board" superClass="fr.ac6.managedbuild.option.gnu.cross.board" value="NUCLEO-L053R8" valueType="string"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.instructionSet.326535254" name="Instruction Set" superClass="fr.ac6.managedbuild.option.gnu.cross.instructionSet" value="fr.ac6.managedbuild.option.gnu.cross.instructionSet.thumbII" valueType="enumerated"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.fpu.860354614" name="Floating point hardware" superClass="fr.ac6.managedbuild.option.gnu.cross.fpu" value="fr.ac6.managedbuild.option.gnu.cross.fpu.no" valueType="enumerated"/> + <option id="fr.ac6.managedbuild.option.gnu.cross.floatabi.1360686534" name="Floating-point ABI" superClass="fr.ac6.managedbuild.option.gnu.cross.floatabi" value="fr.ac6.managedbuild.option.gnu.cross.floatabi.soft" valueType="enumerated"/> + <targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="fr.ac6.managedbuild.targetPlatform.gnu.cross.480118942" isAbstract="false" osList="all" superClass="fr.ac6.managedbuild.targetPlatform.gnu.cross"/> + <builder buildPath="${workspace_loc:/Testing}/Release" id="fr.ac6.managedbuild.builder.gnu.cross.1801696445" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="fr.ac6.managedbuild.builder.gnu.cross"> + <outputEntries> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="outputPath" name="Release"/> + </outputEntries> + </builder> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.311121231" name="MCU GCC Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler"> + <option defaultValue="gnu.c.optimization.level.none" id="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level.1788772298" name="Optimization Level" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.optimization.level" useByScannerDiscovery="false" value="fr.ac6.managedbuild.gnu.c.optimization.level.debug" valueType="enumerated"/> + <option id="gnu.c.compiler.option.debugging.level.2133686593" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.max" valueType="enumerated"/> + <option id="gnu.c.compiler.option.include.paths.1984067985" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath"> + <listOptionValue builtIn="false" value="../Inc"/> + <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc"/> + <listOptionValue builtIn="false" value="../Drivers/STM32L0xx_HAL_Driver/Inc/Legacy"/> + <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0"/> + <listOptionValue builtIn="false" value="../Drivers/CMSIS/Device/ST/STM32L0xx/Include"/> + <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/include"/> + <listOptionValue builtIn="false" value="../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS"/> + <listOptionValue builtIn="false" value="../Drivers/CMSIS/Include"/> + <listOptionValue builtIn="false" value="../Inc"/> + </option> + <option id="gnu.c.compiler.option.preprocessor.def.symbols.267815599" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" useByScannerDiscovery="false" valueType="definedSymbols"> + <listOptionValue builtIn="false" value="__weak=__attribute__((weak))"/> + <listOptionValue builtIn="false" value="__packed=__attribute__((__packed__))"/> + <listOptionValue builtIn="false" value="USE_HAL_DRIVER"/> + <listOptionValue builtIn="false" value="STM32L053xx"/> + </option> + <option id="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other.473319145" superClass="fr.ac6.managedbuild.gnu.c.compiler.option.misc.other" useByScannerDiscovery="false" value="-fmessage-length=0" valueType="string"/> + <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c.805586853" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c"/> + <inputType id="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s.1025094479" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.s"/> + </tool> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler.502905270" name="MCU G++ Compiler" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.compiler"> + <option id="gnu.cpp.compiler.option.optimization.level.1479240404" name="Optimization Level" superClass="gnu.cpp.compiler.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/> + <option id="gnu.cpp.compiler.option.debugging.level.1688121514" name="Debug Level" superClass="gnu.cpp.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/> + </tool> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.1425009774" name="MCU GCC Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker"> + <option id="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script.781038938" name="Linker Script (-T)" superClass="fr.ac6.managedbuild.tool.gnu.cross.c.linker.script" value="../STM32L053R8Tx_FLASH.ld" valueType="string"/> + <option id="gnu.c.link.option.libs.2047582552" name="Libraries (-l)" superClass="gnu.c.link.option.libs"/> + <option id="gnu.c.link.option.paths.551498614" name="Library search path (-L)" superClass="gnu.c.link.option.paths"/> + <option id="gnu.c.link.option.ldflags.712866807" name="Linker flags" superClass="gnu.c.link.option.ldflags" value="-specs=nosys.specs -specs=nano.specs" valueType="string"/> + <inputType id="cdt.managedbuild.tool.gnu.c.linker.input.472998841" superClass="cdt.managedbuild.tool.gnu.c.linker.input"> + <additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/> + <additionalInput kind="additionalinput" paths="$(LIBS)"/> + </inputType> + </tool> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker.213142750" name="MCU G++ Linker" superClass="fr.ac6.managedbuild.tool.gnu.cross.cpp.linker"/> + <tool id="fr.ac6.managedbuild.tool.gnu.archiver.530578820" name="MCU GCC Archiver" superClass="fr.ac6.managedbuild.tool.gnu.archiver"/> + <tool id="fr.ac6.managedbuild.tool.gnu.cross.assembler.1913095545" name="MCU GCC Assembler" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler"> + <option id="gnu.both.asm.option.include.paths.221840443" name="Include paths (-I)" superClass="gnu.both.asm.option.include.paths" valueType="includePath"> + <listOptionValue builtIn="false" value=""/> + </option> + <inputType id="cdt.managedbuild.tool.gnu.assembler.input.2065066810" superClass="cdt.managedbuild.tool.gnu.assembler.input"/> + <inputType id="fr.ac6.managedbuild.tool.gnu.cross.assembler.input.719484848" superClass="fr.ac6.managedbuild.tool.gnu.cross.assembler.input"/> + </tool> + </toolChain> + </folderInfo> + <sourceEntries> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Drivers"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Inc"/> + <entry excluding="Memory Manager" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Middlewares"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Src"/> + <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="startup"/> + </sourceEntries> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> + </cconfiguration> + </storageModule> + <storageModule moduleId="cdtBuildSystem" version="4.0.0"> + <project id="Testing.fr.ac6.managedbuild.target.gnu.cross.exe.478905484" name="Executable" projectType="fr.ac6.managedbuild.target.gnu.cross.exe"/> + </storageModule> + <storageModule moduleId="scannerConfiguration"> + <autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> + <scannerConfigBuildInfo instanceId="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948;fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948.;fr.ac6.managedbuild.tool.gnu.cross.c.compiler.311121231;fr.ac6.managedbuild.tool.gnu.cross.c.compiler.input.c.805586853"> + <autodiscovery enabled="false" problemReportingEnabled="true" selectedProfileId=""/> + </scannerConfigBuildInfo> <!--scannerConfigBuildInfo instanceId="fr.ac6.managedbuild.config.gnu.cross.exe.release.$(RELEASE_CONFIG_UID);fr.ac6.managedbuild.config.gnu.cross.exe.release.$(RELEASE_CONFIG_UID).;fr.ac6.managedbuild.tool.gnu.cross.c.compiler.$(RELEASE_TOOL_COMPILER_UID);cdt.managedbuild.tool.gnu.c.compiler.input.$(RELEASE_TOOL_COMPILER_INPUT_UID)"> <autodiscovery enabled="false" problemReportingEnabled="true" selectedProfileId=""/> - </scannerConfigBuildInfo--> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/> - <storageModule moduleId="refreshScope" versionNumber="2"> - <configuration artifactName="${ProjName}" configurationName="Debug"> - <resource resourceType="PROJECT" workspacePath="Testing"/> - </configuration> - </storageModule> - <storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/> -</cproject> + </scannerConfigBuildInfo--> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/> + <storageModule moduleId="refreshScope" versionNumber="2"> + <configuration artifactName="${ProjName}" configurationName="Debug"> + <resource resourceType="PROJECT" workspacePath="Testing"/> + </configuration> + </storageModule> + <storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/> + <storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/> +</cproject> diff --git a/RTOS_IOT/.settings/language.settings.xml b/RTOS_IOT/.settings/language.settings.xml index 2b472af..2e77ef4 100644 --- a/RTOS_IOT/.settings/language.settings.xml +++ b/RTOS_IOT/.settings/language.settings.xml @@ -1,27 +1,27 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<project> - <configuration id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948" name="Debug"> - <extension point="org.eclipse.cdt.core.LanguageSettingsProvider"> - <provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/> - <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> - <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> - <provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/> - <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1108563508876615316" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> - <language-scope id="org.eclipse.cdt.core.gcc"/> - <language-scope id="org.eclipse.cdt.core.g++"/> - </provider> - </extension> - </configuration> - <configuration id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731" name="Release"> - <extension point="org.eclipse.cdt.core.LanguageSettingsProvider"> - <provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/> - <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> - <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> - <provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/> - <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="1108563508876615316" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> - <language-scope id="org.eclipse.cdt.core.gcc"/> - <language-scope id="org.eclipse.cdt.core.g++"/> - </provider> - </extension> - </configuration> -</project> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<project> + <configuration id="fr.ac6.managedbuild.config.gnu.cross.exe.debug.1193494948" name="Debug"> + <extension point="org.eclipse.cdt.core.LanguageSettingsProvider"> + <provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/> + <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> + <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> + <provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/> + <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="-1126089701525181680" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> + <language-scope id="org.eclipse.cdt.core.gcc"/> + <language-scope id="org.eclipse.cdt.core.g++"/> + </provider> + </extension> + </configuration> + <configuration id="fr.ac6.managedbuild.config.gnu.cross.exe.release.485719731" name="Release"> + <extension point="org.eclipse.cdt.core.LanguageSettingsProvider"> + <provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/> + <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> + <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> + <provider copy-of="extension" id="org.eclipse.cdt.managedbuilder.core.GCCBuildCommandParser"/> + <provider class="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" console="false" env-hash="-1126089701525181680" id="fr.ac6.mcu.ide.build.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="Ac6 SW4 STM32 MCU Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> + <language-scope id="org.eclipse.cdt.core.gcc"/> + <language-scope id="org.eclipse.cdt.core.g++"/> + </provider> + </extension> + </configuration> +</project> diff --git a/RTOS_IOT/Debug/.gitignore b/RTOS_IOT/Debug/.gitignore index cd3490d..027c148 100644 --- a/RTOS_IOT/Debug/.gitignore +++ b/RTOS_IOT/Debug/.gitignore @@ -1,4 +1,6 @@ -/Drivers/ -/Middlewares/ -/Src/ -/startup/ +/Drivers/ +/Middlewares/ +/Src/ +/startup/ +/sources.mk +/objects.mk diff --git a/RTOS_IOT/Debug/RTOS_IOT.bin b/RTOS_IOT/Debug/RTOS_IOT.bin index cbdb2b3d27fc6360d2c0fde484dd18882e4f1d32..821ff44e59cd6d5d4d3cd2a17d6848d3570c06f7 100644 GIT binary patch literal 30368 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 EFT0XW<p2Nx literal 27964 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 diff --git a/RTOS_IOT/Debug/RTOS_IOT.elf b/RTOS_IOT/Debug/RTOS_IOT.elf index 7cab063669f1dd8ddcc471ccf4fbb39086ccbd20..9d257a97f3b3a1b3397da0940c55e3ac6c53958d 100644 GIT binary patch literal 1181284 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%0Ax&s9<Rsd2VoyaHq(Q*vh?+pWytFzmc4E)t1p(_ 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%0AsuA&P+%L-3Yp*6k8PAU#^S_Z1Ou$@seG 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 I;jifZFZ2)42LJ#7 delta 338754 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 diff --git a/RTOS_IOT/Debug/makefile b/RTOS_IOT/Debug/makefile index 6a68cac..664bef1 100644 --- a/RTOS_IOT/Debug/makefile +++ b/RTOS_IOT/Debug/makefile @@ -1,61 +1,62 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.init - -RM := rm -rf - -# All of the sources participating in the build are defined here --include sources.mk --include startup/subdir.mk --include Src/subdir.mk --include Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/subdir.mk --include Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/subdir.mk --include Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/subdir.mk --include Middlewares/Third_Party/FreeRTOS/Source/subdir.mk --include Middlewares/MemoryManager/subdir.mk --include Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk --include subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables - -# All Target -all: RTOS_IOT.elf - -# Tool invocations -RTOS_IOT.elf: $(OBJS) $(USER_OBJS) ../STM32L053R8Tx_FLASH.ld - @echo 'Building target: $@' - @echo 'Invoking: MCU GCC Linker' - arm-none-eabi-gcc -mcpu=cortex-m0plus -mthumb -mfloat-abi=soft -specs=nosys.specs -specs=nano.specs -T"../STM32L053R8Tx_FLASH.ld" -Wl,-Map=output.map -Wl,--gc-sections -o "RTOS_IOT.elf" @"objects.list" $(USER_OBJS) $(LIBS) -lm - @echo 'Finished building target: $@' - @echo ' ' - $(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) * - -@echo ' ' - -post-build: - -@echo 'Generating binary and Printing size information:' - arm-none-eabi-objcopy -O binary "RTOS_IOT.elf" "RTOS_IOT.bin" - arm-none-eabi-size "RTOS_IOT.elf" - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: post-build - --include ../makefile.targets +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +-include ../makefile.init + +RM := rm -rf + +# All of the sources participating in the build are defined here +-include sources.mk +-include startup/subdir.mk +-include Src/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/subdir.mk +-include Middlewares/Third_Party/FreeRTOS/Source/subdir.mk +-include Middlewares/SerialManager/subdir.mk +-include Middlewares/MemoryManager/subdir.mk +-include Drivers/STM32L0xx_HAL_Driver/Src/subdir.mk +-include subdir.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables + +# All Target +all: RTOS_IOT.elf + +# Tool invocations +RTOS_IOT.elf: $(OBJS) $(USER_OBJS) ../STM32L053R8Tx_FLASH.ld + @echo 'Building target: $@' + @echo 'Invoking: MCU GCC Linker' + arm-none-eabi-gcc -mcpu=cortex-m0plus -mthumb -mfloat-abi=soft -specs=nosys.specs -specs=nano.specs -T"../STM32L053R8Tx_FLASH.ld" -Wl,-Map=output.map -Wl,--gc-sections -o "RTOS_IOT.elf" @"objects.list" $(USER_OBJS) $(LIBS) -lm + @echo 'Finished building target: $@' + @echo ' ' + $(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) * + -@echo ' ' + +post-build: + -@echo 'Generating binary and Printing size information:' + arm-none-eabi-objcopy -O binary "RTOS_IOT.elf" "RTOS_IOT.bin" + arm-none-eabi-size "RTOS_IOT.elf" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: post-build + +-include ../makefile.targets diff --git a/RTOS_IOT/Debug/objects.list b/RTOS_IOT/Debug/objects.list index 68b071c..34fb07d 100644 --- a/RTOS_IOT/Debug/objects.list +++ b/RTOS_IOT/Debug/objects.list @@ -19,6 +19,7 @@ "Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o" "Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o" "Middlewares/MemoryManager/NVM_Manager.o" +"Middlewares/SerialManager/console.o" "Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o" "Middlewares/Third_Party/FreeRTOS/Source/croutine.o" "Middlewares/Third_Party/FreeRTOS/Source/event_groups.o" @@ -28,6 +29,7 @@ "Middlewares/Third_Party/FreeRTOS/Source/timers.o" "Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o" "Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o" +"Src/Debug_led.o" "Src/HTS221.o" "Src/freertos.o" "Src/main.o" diff --git a/RTOS_IOT/Debug/objects.mk b/RTOS_IOT/Debug/objects.mk index 742c2da..dc31e16 100644 --- a/RTOS_IOT/Debug/objects.mk +++ b/RTOS_IOT/Debug/objects.mk @@ -1,8 +1,8 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -LIBS := - +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := + diff --git a/RTOS_IOT/Debug/output.map b/RTOS_IOT/Debug/output.map index 709eff1..0332119 100644 --- a/RTOS_IOT/Debug/output.map +++ b/RTOS_IOT/Debug/output.map @@ -1,6669 +1,7179 @@ -Archive member included to satisfy reference by file (symbol) - -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o (__aeabi_uidiv) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) (__aeabi_idiv0) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) - Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o (__aeabi_uldivmod) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) - Src/main.o (__aeabi_f2iz) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - Src/HTS221.o (__aeabi_dadd) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - Src/HTS221.o (__aeabi_ddiv) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - Src/HTS221.o (__aeabi_dmul) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - Src/HTS221.o (__aeabi_dsub) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - Src/HTS221.o (__aeabi_i2d) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) - Src/main.o (__aeabi_d2f) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) (__clzsi2) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) (__clzdi2) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (exit) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) (_global_impure_ptr) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (__libc_init_array) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - Src/main.o (itoa) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - Middlewares/Third_Party/FreeRTOS/Source/queue.o (memcpy) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o (memset) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - Src/main.o (strcat) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - Src/main.o (strlen) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) (__utoa) -c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) - c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) (_exit) - -Allocating common symbols -Common symbol size file - -hirda1 0x3c Src/main.o -Task_ErrorCheck 0x4 Src/main.o -Task_UartSend 0x4 Src/main.o -Queue_number 0x4 Src/main.o -hi2c1 0x4c Src/main.o -Task_ManagEeprom 0x4 Middlewares/MemoryManager/NVM_Manager.o -uwTick 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o -xQueueRegistry 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o -pFlash 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o -HTS221_CoefStruc 0xe Src/HTS221.o -Queue_SendTo_Uart 0x4 Src/main.o -SemaEepromManager 0x4 Middlewares/MemoryManager/NVM_Manager.o -Queue_SendTo_TaskNVM - 0x4 Src/main.o -thread1_counter 0x4 Src/main.o -NVM_QueueSet 0x4 Src/main.o -HTS221_I2CHander 0x4 Src/HTS221.o -hrtc 0x24 Src/main.o -MutexEeprom 0x4 Middlewares/MemoryManager/NVM_Manager.o -huart2 0x70 Src/main.o -Task_SensorRead 0x4 Src/main.o -Task_NVM_ReadWrite 0x4 Src/main.o -Task_HearBeatLED 0x4 Src/main.o - -Discarded input sections - - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - .data 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - .text 0x00000000 0x78 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o - .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o - .ARM.exidx 0x00000000 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o - .ARM.attributes - 0x00000000 0x1b c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_MspInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_MspDeInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DeInit - 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetHalVersion - 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetREVID - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_GetDEVID - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_EnableDBGSleepMode - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DisableDBGSleepMode - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_EnableDBGStopMode - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DisableDBGStopMode - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_EnableDBGStandbyMode - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DisableDBGStandbyMode - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DBG_EnableLowPowerConfig - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_DBGMCU_DBG_DisableLowPowerConfig - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_GetBootMode - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_VREFINT_OutputSelect - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_Enable_Lock_VREFINT - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .text.HAL_SYSCFG_Disable_Lock_VREFINT - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_EnableIRQ - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_DisableIRQ - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_SystemReset - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_GetPriority - 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_SetPendingIRQ - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_GetPendingIRQ - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_NVIC_ClearPendingIRQ - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_SYSTICK_Callback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_SYSTICK_IRQHandler - 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .text.HAL_MPU_ConfigRegion - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.DMA_SetConfig - 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Init - 0x00000000 0x14c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_DeInit - 0x00000000 0x234 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Start - 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Start_IT - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Abort - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_Abort_IT - 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_PollForTransfer - 0x00000000 0x274 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_IRQHandler - 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_GetState - 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .text.HAL_DMA_GetError - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_info 0x00000000 0x69f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_abbrev 0x00000000 0x1e1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_loc 0x00000000 0x550 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_aranges - 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_ranges 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x377 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_line 0x00000000 0xcef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_str 0x00000000 0x7a50a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .debug_frame 0x00000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Program_IT - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_EndOfOperationCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OperationErrorCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_IRQHandler - 0x00000000 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Unlock - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Lock - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OB_Unlock - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OB_Lock - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_GetError - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_Program - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.HAL_FLASH_OB_Launch - 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_GetUser - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_GetRDP - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_GetBOR - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_GetBOOTBit1 - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_GetWRP - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_ProtectedSectorsConfig - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_RDPConfig - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_UserConfig - 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_BORConfig - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_OB_BOOTBit1Config - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OBProgram - 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OBGetConfig - 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_AdvOBProgram - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_AdvOBGetConfig - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OB_SelectPCROP - 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_OB_DeSelectPCROP - 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.FLASH_PageErase - 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_Erase - 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .text.HAL_FLASHEx_Erase_IT - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .RamFunc 0x00000000 0x1dc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_info 0x00000000 0x37f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_abbrev 0x00000000 0x182 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_loc 0x00000000 0x139 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_aranges - 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_ranges 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_line 0x00000000 0x910 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_str 0x00000000 0x7a38f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .debug_frame 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_DeInit - 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_ReadPin - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_LockPin - 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_EXTI_Callback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .text.HAL_GPIO_EXTI_IRQHandler - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMASlaveTransmitCplt - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMASlaveReceiveCplt - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Enable_IRQ - 0x00000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Disable_IRQ - 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnRXNEFlagUntilTimeout - 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAMasterTransmitCplt - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAMasterReceiveCplt - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MspInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MspDeInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_DeInit - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Transmit - 0x00000000 0x180 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Receive - 0x00000000 0x180 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Transmit - 0x00000000 0x1a4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Receive - 0x00000000 0x18c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Transmit_IT - 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Receive_IT - 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Transmit_IT - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Receive_IT - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Transmit_DMA - 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Receive_DMA - 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Transmit_DMA - 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Receive_DMA - 0x00000000 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Write_IT - 0x00000000 0xf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Read_IT - 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Write_DMA - 0x00000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Mem_Read_DMA - 0x00000000 0x13c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_IsDeviceReady - 0x00000000 0x158 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Sequential_Transmit_IT - 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Sequential_Receive_IT - 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Sequential_Transmit_IT - 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Slave_Sequential_Receive_IT - 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_EnableListen_IT - 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_DisableListen_IT - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Master_Abort_IT - 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_EV_IRQHandler - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MasterTxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MasterRxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITMasterSequentialCplt - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_SlaveTxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_SlaveRxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITSlaveSequentialCplt - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_AddrCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITAddrCplt - 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_ListenCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITListenCplt - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MemTxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_MemRxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_ErrorCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_AbortCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITError - 0x00000000 0xf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITSlaveCplt - 0x00000000 0x118 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Slave_ISR_IT - 0x00000000 0x140 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Slave_ISR_DMA - 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_ITMasterCplt - 0x00000000 0xd4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Master_ISR_IT - 0x00000000 0x164 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_Master_ISR_DMA - 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAError - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_ER_IRQHandler - 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_DMAAbort - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_GetState - 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_GetMode - 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_GetError - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_EnableWakeUp - 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_DisableWakeUp - 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_EnableFastModePlus - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .text.HAL_I2CEx_DisableFastModePlus - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_EndTxTransfer - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_EndRxTransfer - 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_Transmit_IT - 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_MspInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_MspDeInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_DeInit - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Transmit - 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Receive - 0x00000000 0x118 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Transmit_IT - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Receive_IT - 0x00000000 0xc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Transmit_DMA - 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Receive_DMA - 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_DMAPause - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_DMAResume - 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_DMAStop - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Abort - 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_AbortTransmit - 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_AbortReceive - 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_TxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMATransmitCplt - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_EndTransmit_IT - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_TxHalfCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMATransmitHalfCplt - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_RxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMAReceiveCplt - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_Receive_IT - 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_RxHalfCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMAReceiveHalfCplt - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_ErrorCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMAError - 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_IRQHandler - 0x00000000 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMAAbortOnError - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_AbortCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Abort_IT - 0x00000000 0xd8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMARxAbortCallback - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMATxAbortCallback - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_AbortTransmitCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_AbortTransmit_IT - 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMATxOnlyAbortCallback - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_AbortReceiveCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_AbortReceive_IT - 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_DMARxOnlyAbortCallback - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_GetState - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_GetError - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DeInit - 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableBkUpAccess - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableBkUpAccess - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_ConfigPVD - 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnablePVD - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisablePVD - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableWakeUpPin - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableWakeUpPin - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnterSTOPMode - 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnterSTANDBYMode - 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableSleepOnExit - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableSleepOnExit - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_EnableSEVOnPend - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_DisableSEVOnPend - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_PVDCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .text.HAL_PWR_PVD_IRQHandler - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_GetVoltageRange - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_EnableFastWakeUp - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_DisableFastWakeUp - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_EnableUltraLowPower - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_DisableUltraLowPower - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_EnableLowPowerRunMode - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .text.HAL_PWREx_DisableLowPowerRunMode - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_info 0x00000000 0x1b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_abbrev 0x00000000 0xf9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_loc 0x00000000 0x2a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_aranges - 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_ranges 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x377 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_line 0x00000000 0x909 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_str 0x00000000 0x7a2b5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .debug_frame 0x00000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_DeInit - 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_MCOConfig - 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_EnableCSS - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_GetOscConfig - 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_GetClockConfig - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_CSSCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_NMI_IRQHandler - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_GetPeriphCLKConfig - 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_EnableLSECSS - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_DisableLSECSS - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_EnableLSECSS_IT - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_LSECSS_Callback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_LSECSS_IRQHandler - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_EnableHSI48_VREFINT - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_DisableHSI48_VREFINT - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRSConfig - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate - 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRSGetSynchronizationInfo - 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRSWaitSynchronization - 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRS_SyncOkCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRS_SyncWarnCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRS_ExpectedSyncCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRS_ErrorCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .text.HAL_RCCEx_CRS_IRQHandler - 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_MspInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_MspDeInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_DeactivateAlarm - 0x00000000 0xe8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_AlarmAEventCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_AlarmIRQHandler - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_PollForAlarmAEvent - 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_GetState - 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_DeInit - 0x00000000 0xf0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_SetAlarm - 0x00000000 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_SetAlarm_IT - 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .text.HAL_RTC_GetAlarm - 0x00000000 0xc4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetTimeStamp - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetTimeStamp_IT - 0x00000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_DeactivateTimeStamp - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_GetTimeStamp - 0x00000000 0xc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetTamper - 0x00000000 0xc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetTamper_IT - 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_DeactivateTamper - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_TimeStampEventCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_Tamper1EventCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_Tamper2EventCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_TamperTimeStampIRQHandler - 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_PollForTimeStampEvent - 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_PollForTamper1Event - 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_PollForTamper2Event - 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetWakeUpTimer - 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_DeactivateWakeUpTimer - 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_GetWakeUpTimer - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_PollForWakeUpTimerEvent - 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetSmoothCalib - 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetSynchroShift - 0x00000000 0xbc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetCalibrationOutPut - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_DeactivateCalibrationOutPut - 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_SetRefClock - 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_DeactivateRefClock - 0x00000000 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_EnableBypassShadow - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_DisableBypassShadow - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_AlarmBEventCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .text.HAL_RTCEx_PollForAlarmBEvent - 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_info 0x00000000 0x7d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_abbrev 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_aranges - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x372 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_line 0x00000000 0x878 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .debug_str 0x00000000 0x7a147 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_info 0x00000000 0x7d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_abbrev 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_aranges - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_line 0x00000000 0x87b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .debug_str 0x00000000 0x7a14a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_EndTxTransfer - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_EndRxTransfer - 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_Transmit_IT - 0x00000000 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_MspInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_MspDeInit - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_DeInit - 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_Transmit_IT - 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_Receive_IT - 0x00000000 0xd4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_Transmit_DMA - 0x00000000 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_Receive_DMA - 0x00000000 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_DMAPause - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_DMAResume - 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_DMAStop - 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_Abort - 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_AbortTransmit - 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_AbortReceive - 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_TxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMATransmitCplt - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_EndTransmit_IT - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_TxHalfCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMATxHalfCplt - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_RxCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMAReceiveCplt - 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_Receive_IT - 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_RxHalfCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMARxHalfCplt - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_ErrorCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMAError - 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_IRQHandler - 0x00000000 0x140 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMAAbortOnError - 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_AbortCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_Abort_IT - 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMARxAbortCallback - 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMATxAbortCallback - 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_AbortTransmitCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_AbortTransmit_IT - 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMATxOnlyAbortCallback - 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_AbortReceiveCpltCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_AbortReceive_IT - 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.UART_DMARxOnlyAbortCallback - 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_MultiProcessor_EnterMuteMode - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_HalfDuplex_EnableTransmitter - 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_HalfDuplex_EnableReceiver - 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_LIN_SendBreak - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_GetState - 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_GetError - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_UART_Receive - 0x00000000 0x134 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_HalfDuplex_Init - 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_LIN_Init - 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_MultiProcessor_Init - 0x00000000 0x98 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_MultiProcessor_EnableMuteMode - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .text.HAL_MultiProcessor_DisableMuteMode - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.UARTEx_Wakeup_AddressConfig - 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_RS485Ex_Init - 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_MultiProcessorEx_AddressLength_Set - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_UARTEx_StopModeWakeUpSourceConfig - 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_UARTEx_EnableStopMode - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_UARTEx_DisableStopMode - 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_UARTEx_EnableClockStopMode - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_UARTEx_DisableClockStopMode - 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .text.HAL_UARTEx_WakeupCallback - 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_info 0x00000000 0x8ea Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_abbrev 0x00000000 0x1e9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_loc 0x00000000 0x35c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_aranges - 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_ranges 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_line 0x00000000 0xa00 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_str 0x00000000 0x7a811 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .comment 0x00000000 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .debug_frame 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .ARM.attributes - 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o - .text 0x00000000 0x0 Middlewares/MemoryManager/NVM_Manager.o - .data 0x00000000 0x0 Middlewares/MemoryManager/NVM_Manager.o - .bss 0x00000000 0x4 Middlewares/MemoryManager/NVM_Manager.o - .text.HAL_GPIO_EXTI_Callback - 0x00000000 0x44 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x832 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x22 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x4c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x8d Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x35 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x9c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x174 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x4a Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x52 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x1f Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x43 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x20 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x187 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x30d Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x35 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x29 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x4c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0xfd Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x5e Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x1df Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x2e Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x28 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x26 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x44f Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x9cc0 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x3c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x34a2 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x1c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x1c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x52 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x40 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x40 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0xd7 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x18b Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x50 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x8e0 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x9d4 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x14d Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x184 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x279 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x1ef Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x12a Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x2b6 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x202 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x5b Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x90 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x189 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x30c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x3f1 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0xdd Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x54a Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x44 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x280 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00000000 0x165 Middlewares/MemoryManager/NVM_Manager.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.makeCmsisPriority - 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osKernelRunning - 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadGetId - 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadTerminate - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadYield - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadSetPriority - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadGetPriority - 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osDelay 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osTimerCreate - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osTimerStart - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osTimerStop - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osTimerDelete - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osSignalSet - 0x00000000 0x60 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osSignalWait - 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMutexDelete - 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osSemaphoreRelease - 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osSemaphoreDelete - 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osPoolCreate - 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osPoolAlloc - 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osPoolCAlloc - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osPoolFree - 0x00000000 0x50 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMessageCreate - 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMessagePut - 0x00000000 0x64 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMessageGet - 0x00000000 0x98 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMailCreate - 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMailAlloc - 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMailCAlloc - 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMailPut - 0x00000000 0x64 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMailGet - 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMailFree - 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadSuspend - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadResume - 0x00000000 0x30 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadSuspendAll - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadResumeAll - 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osAbortDelay - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osThreadList - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMessagePeek - 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMessageWaiting - 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMessageAvailableSpace - 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osMessageDelete - 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osRecursiveMutexCreate - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osRecursiveMutexRelease - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osRecursiveMutexWait - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osSemaphoreGetCount - 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x00000000 0x26 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_info 0x00000000 0x7d Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_abbrev 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_aranges - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x1e0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x87 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x44 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_line 0x00000000 0x546 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .debug_str 0x00000000 0x9728 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .ARM.attributes - 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/croutine.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.prvTestWaitCondition - 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.xEventGroupCreate - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.xEventGroupWaitBits - 0x00000000 0xe8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.xEventGroupClearBits - 0x00000000 0x2c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.xEventGroupGetBitsFromISR - 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.xEventGroupSetBits - 0x00000000 0x7c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.xEventGroupSync - 0x00000000 0xb4 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.vEventGroupDelete - 0x00000000 0x34 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.vEventGroupSetBitsCallback - 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.vEventGroupClearBitsCallback - 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .text.uxEventGroupGetNumber - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_info 0x00000000 0x920 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_abbrev 0x00000000 0x18f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_loc 0x00000000 0x8e0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_aranges - 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_ranges 0x00000000 0x78 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x20d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_line 0x00000000 0x732 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_str 0x00000000 0x9ef3 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .debug_frame 0x00000000 0x12c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .ARM.attributes - 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o - .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/list.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueGenericSendFromISR - 0x00000000 0xdc Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueuePeekFromISR - 0x00000000 0x5c Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.uxQueueMessagesWaiting - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.uxQueueSpacesAvailable - 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.uxQueueMessagesWaitingFromISR - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.uxQueueGetQueueNumber - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.vQueueSetQueueNumber - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.ucQueueGetQueueType - 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueIsQueueEmptyFromISR - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueIsQueueFullFromISR - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.vQueueAddToRegistry - 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.pcQueueGetName - 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.vQueueUnregisterQueue - 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.vQueueDelete - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueCreateSet - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueAddToSet - 0x00000000 0x2c Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueRemoveFromSet - 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueSelectFromSet - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueSelectFromSetFromISR - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/queue.o - COMMON 0x00000000 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvTaskIsTaskSuspended - 0x00000000 0x44 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvTaskCheckFreeStackSpace - 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskDelete - 0x00000000 0x88 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.eTaskGetState - 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.uxTaskPriorityGet - 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.uxTaskPriorityGetFromISR - 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskPrioritySet - 0x00000000 0xc4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskResume - 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskResumeFromISR - 0x00000000 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskEndScheduler - 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.uxTaskGetNumberOfTasks - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.pcTaskGetName - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskDelay - 0x00000000 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskSuspend - 0x00000000 0x90 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskPlaceOnUnorderedEventList - 0x00000000 0x3c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskRemoveFromUnorderedEventList - 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.uxTaskGetTaskNumber - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskSetTaskNumber - 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskGetInfo - 0x00000000 0x7c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvListTasksWithinSingleList - 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.uxTaskGetSystemState - 0x00000000 0xb0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskGetCurrentTaskHandle - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.uxTaskResetEventItemValue - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.ulTaskNotifyTake - 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskNotifyWait - 0x00000000 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskGenericNotify - 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskGenericNotifyFromISR - 0x00000000 0xec Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskNotifyGiveFromISR - 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskNotifyStateClear - 0x00000000 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_info 0x00000000 0x7d Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_abbrev 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_aranges - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x1e9 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_line 0x00000000 0x54d Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_str 0x00000000 0xa13c Middlewares/Third_Party/FreeRTOS/Source/timers.o - .comment 0x00000000 0x6f Middlewares/Third_Party/FreeRTOS/Source/timers.o - .ARM.attributes - 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/timers.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .text.vPortEndScheduler - 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x87 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text.xPortGetFreeHeapSize - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text.xPortGetMinimumEverFreeHeapSize - 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text.vPortInitialiseBlocks - 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x832 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x4a Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x30d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0xfd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x5e Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .group 0x00000000 0x8 Src/HTS221.o - .text 0x00000000 0x0 Src/HTS221.o - .data 0x00000000 0x0 Src/HTS221.o - .bss 0x00000000 0x0 Src/HTS221.o - .debug_macro 0x00000000 0x832 Src/HTS221.o - .debug_macro 0x00000000 0x22 Src/HTS221.o - .debug_macro 0x00000000 0x4c Src/HTS221.o - .debug_macro 0x00000000 0x8d Src/HTS221.o - .debug_macro 0x00000000 0x35 Src/HTS221.o - .debug_macro 0x00000000 0x9c Src/HTS221.o - .debug_macro 0x00000000 0x174 Src/HTS221.o - .debug_macro 0x00000000 0x4a Src/HTS221.o - .debug_macro 0x00000000 0x52 Src/HTS221.o - .debug_macro 0x00000000 0x1f Src/HTS221.o - .debug_macro 0x00000000 0x43 Src/HTS221.o - .debug_macro 0x00000000 0x20 Src/HTS221.o - .debug_macro 0x00000000 0x187 Src/HTS221.o - .debug_macro 0x00000000 0x30d Src/HTS221.o - .debug_macro 0x00000000 0x10 Src/HTS221.o - .debug_macro 0x00000000 0x35 Src/HTS221.o - .debug_macro 0x00000000 0x16 Src/HTS221.o - .debug_macro 0x00000000 0x16 Src/HTS221.o - .debug_macro 0x00000000 0x29 Src/HTS221.o - .debug_macro 0x00000000 0x4c Src/HTS221.o - .debug_macro 0x00000000 0xfd Src/HTS221.o - .debug_macro 0x00000000 0x5e Src/HTS221.o - .debug_macro 0x00000000 0x1df Src/HTS221.o - .debug_macro 0x00000000 0xa3 Src/HTS221.o - .debug_macro 0x00000000 0x2e Src/HTS221.o - .debug_macro 0x00000000 0x28 Src/HTS221.o - .debug_macro 0x00000000 0x3a Src/HTS221.o - .debug_macro 0x00000000 0x26 Src/HTS221.o - .debug_macro 0x00000000 0x44f Src/HTS221.o - .debug_macro 0x00000000 0x9cc0 Src/HTS221.o - .debug_macro 0x00000000 0x3c Src/HTS221.o - .debug_macro 0x00000000 0x34a2 Src/HTS221.o - .debug_macro 0x00000000 0x1c Src/HTS221.o - .debug_macro 0x00000000 0x10 Src/HTS221.o - .debug_macro 0x00000000 0x10 Src/HTS221.o - .debug_macro 0x00000000 0x1c Src/HTS221.o - .debug_macro 0x00000000 0x52 Src/HTS221.o - .debug_macro 0x00000000 0x40 Src/HTS221.o - .debug_macro 0x00000000 0x10 Src/HTS221.o - .debug_macro 0x00000000 0x40 Src/HTS221.o - .debug_macro 0x00000000 0xd7 Src/HTS221.o - .debug_macro 0x00000000 0x16 Src/HTS221.o - .debug_macro 0x00000000 0x18b Src/HTS221.o - .debug_macro 0x00000000 0x50 Src/HTS221.o - .debug_macro 0x00000000 0x8e0 Src/HTS221.o - .debug_macro 0x00000000 0x9d4 Src/HTS221.o - .debug_macro 0x00000000 0x14d Src/HTS221.o - .debug_macro 0x00000000 0x184 Src/HTS221.o - .debug_macro 0x00000000 0x279 Src/HTS221.o - .debug_macro 0x00000000 0x1ef Src/HTS221.o - .debug_macro 0x00000000 0x12a Src/HTS221.o - .debug_macro 0x00000000 0x2b6 Src/HTS221.o - .debug_macro 0x00000000 0x202 Src/HTS221.o - .debug_macro 0x00000000 0x5b Src/HTS221.o - .debug_macro 0x00000000 0x90 Src/HTS221.o - .debug_macro 0x00000000 0x189 Src/HTS221.o - .debug_macro 0x00000000 0x16 Src/HTS221.o - .debug_macro 0x00000000 0x30c Src/HTS221.o - .debug_macro 0x00000000 0x3f1 Src/HTS221.o - .debug_macro 0x00000000 0xdd Src/HTS221.o - .debug_macro 0x00000000 0x54a Src/HTS221.o - .debug_macro 0x00000000 0x44 Src/HTS221.o - .debug_macro 0x00000000 0x280 Src/HTS221.o - .debug_macro 0x00000000 0x10 Src/HTS221.o - .debug_macro 0x00000000 0x165 Src/HTS221.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .group 0x00000000 0x8 Src/freertos.o - .text 0x00000000 0x0 Src/freertos.o - .data 0x00000000 0x0 Src/freertos.o - .bss 0x00000000 0x0 Src/freertos.o - .debug_info 0x00000000 0x7d Src/freertos.o - .debug_abbrev 0x00000000 0x29 Src/freertos.o - .debug_aranges - 0x00000000 0x18 Src/freertos.o - .debug_macro 0x00000000 0x1cd Src/freertos.o - .debug_macro 0x00000000 0x832 Src/freertos.o - .debug_macro 0x00000000 0x174 Src/freertos.o - .debug_macro 0x00000000 0x22 Src/freertos.o - .debug_macro 0x00000000 0x87 Src/freertos.o - .debug_macro 0x00000000 0x44 Src/freertos.o - .debug_macro 0x00000000 0xfd Src/freertos.o - .debug_macro 0x00000000 0x5e Src/freertos.o - .debug_macro 0x00000000 0x1df Src/freertos.o - .debug_macro 0x00000000 0x52 Src/freertos.o - .debug_macro 0x00000000 0x35 Src/freertos.o - .debug_macro 0x00000000 0x9c Src/freertos.o - .debug_macro 0x00000000 0x52 Src/freertos.o - .debug_macro 0x00000000 0x1f Src/freertos.o - .debug_macro 0x00000000 0x43 Src/freertos.o - .debug_macro 0x00000000 0x20 Src/freertos.o - .debug_macro 0x00000000 0x187 Src/freertos.o - .debug_macro 0x00000000 0x30d Src/freertos.o - .debug_macro 0x00000000 0x10 Src/freertos.o - .debug_macro 0x00000000 0x35 Src/freertos.o - .debug_macro 0x00000000 0x16 Src/freertos.o - .debug_macro 0x00000000 0x16 Src/freertos.o - .debug_macro 0x00000000 0x29 Src/freertos.o - .debug_macro 0x00000000 0x4c Src/freertos.o - .debug_macro 0x00000000 0xd2 Src/freertos.o - .debug_macro 0x00000000 0x168 Src/freertos.o - .debug_macro 0x00000000 0xb6 Src/freertos.o - .debug_macro 0x00000000 0x10 Src/freertos.o - .debug_macro 0x00000000 0x1f Src/freertos.o - .debug_macro 0x00000000 0x416 Src/freertos.o - .debug_macro 0x00000000 0xc0 Src/freertos.o - .debug_macro 0x00000000 0x8c Src/freertos.o - .debug_line 0x00000000 0x514 Src/freertos.o - .debug_str 0x00000000 0x911f Src/freertos.o - .comment 0x00000000 0x6f Src/freertos.o - .ARM.attributes - 0x00000000 0x32 Src/freertos.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .group 0x00000000 0x8 Src/main.o - .text 0x00000000 0x0 Src/main.o - .data 0x00000000 0x0 Src/main.o - .text.vApplicationTickHook - 0x00000000 0x4 Src/main.o - .debug_macro 0x00000000 0x832 Src/main.o - .debug_macro 0x00000000 0x22 Src/main.o - .debug_macro 0x00000000 0x4c Src/main.o - .debug_macro 0x00000000 0x8d Src/main.o - .debug_macro 0x00000000 0x35 Src/main.o - .debug_macro 0x00000000 0x9c Src/main.o - .debug_macro 0x00000000 0x174 Src/main.o - .debug_macro 0x00000000 0x4a Src/main.o - .debug_macro 0x00000000 0x52 Src/main.o - .debug_macro 0x00000000 0x1f Src/main.o - .debug_macro 0x00000000 0x43 Src/main.o - .debug_macro 0x00000000 0x20 Src/main.o - .debug_macro 0x00000000 0x187 Src/main.o - .debug_macro 0x00000000 0x30d Src/main.o - .debug_macro 0x00000000 0x10 Src/main.o - .debug_macro 0x00000000 0x35 Src/main.o - .debug_macro 0x00000000 0x16 Src/main.o - .debug_macro 0x00000000 0x16 Src/main.o - .debug_macro 0x00000000 0x29 Src/main.o - .debug_macro 0x00000000 0x4c Src/main.o - .debug_macro 0x00000000 0xa3 Src/main.o - .debug_macro 0x00000000 0x2e Src/main.o - .debug_macro 0x00000000 0x28 Src/main.o - .debug_macro 0x00000000 0xfd Src/main.o - .debug_macro 0x00000000 0x5e Src/main.o - .debug_macro 0x00000000 0x1df Src/main.o - .debug_macro 0x00000000 0x34 Src/main.o - .debug_macro 0x00000000 0x26 Src/main.o - .debug_macro 0x00000000 0x44f Src/main.o - .debug_macro 0x00000000 0x9cc0 Src/main.o - .debug_macro 0x00000000 0x3c Src/main.o - .debug_macro 0x00000000 0x34a2 Src/main.o - .debug_macro 0x00000000 0x1c Src/main.o - .debug_macro 0x00000000 0x10 Src/main.o - .debug_macro 0x00000000 0x10 Src/main.o - .debug_macro 0x00000000 0x1c Src/main.o - .debug_macro 0x00000000 0x52 Src/main.o - .debug_macro 0x00000000 0x40 Src/main.o - .debug_macro 0x00000000 0x10 Src/main.o - .debug_macro 0x00000000 0x40 Src/main.o - .debug_macro 0x00000000 0xd7 Src/main.o - .debug_macro 0x00000000 0x16 Src/main.o - .debug_macro 0x00000000 0x18b Src/main.o - .debug_macro 0x00000000 0x50 Src/main.o - .debug_macro 0x00000000 0x8e0 Src/main.o - .debug_macro 0x00000000 0x9d4 Src/main.o - .debug_macro 0x00000000 0x14d Src/main.o - .debug_macro 0x00000000 0x184 Src/main.o - .debug_macro 0x00000000 0x279 Src/main.o - .debug_macro 0x00000000 0x1ef Src/main.o - .debug_macro 0x00000000 0x12a Src/main.o - .debug_macro 0x00000000 0x2b6 Src/main.o - .debug_macro 0x00000000 0x202 Src/main.o - .debug_macro 0x00000000 0x5b Src/main.o - .debug_macro 0x00000000 0x90 Src/main.o - .debug_macro 0x00000000 0x189 Src/main.o - .debug_macro 0x00000000 0x16 Src/main.o - .debug_macro 0x00000000 0x30c Src/main.o - .debug_macro 0x00000000 0x3f1 Src/main.o - .debug_macro 0x00000000 0xdd Src/main.o - .debug_macro 0x00000000 0x54a Src/main.o - .debug_macro 0x00000000 0x44 Src/main.o - .debug_macro 0x00000000 0x280 Src/main.o - .debug_macro 0x00000000 0x10 Src/main.o - .debug_macro 0x00000000 0x165 Src/main.o - .debug_macro 0x00000000 0x168 Src/main.o - .debug_macro 0x00000000 0xb6 Src/main.o - .debug_macro 0x00000000 0x10 Src/main.o - .debug_macro 0x00000000 0x1f Src/main.o - .debug_macro 0x00000000 0x416 Src/main.o - .debug_macro 0x00000000 0xc0 Src/main.o - .debug_macro 0x00000000 0x8c Src/main.o - .debug_macro 0x00000000 0x91 Src/main.o - .debug_macro 0x00000000 0x94 Src/main.o - .debug_macro 0x00000000 0x63 Src/main.o - .debug_macro 0x00000000 0xcf Src/main.o - .debug_macro 0x00000000 0x22 Src/main.o - .debug_macro 0x00000000 0x15a Src/main.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o - .text 0x00000000 0x0 Src/stm32l0xx_hal_msp.o - .data 0x00000000 0x0 Src/stm32l0xx_hal_msp.o - .bss 0x00000000 0x0 Src/stm32l0xx_hal_msp.o - .text.HAL_I2C_MspDeInit - 0x00000000 0x30 Src/stm32l0xx_hal_msp.o - .text.HAL_RTC_MspDeInit - 0x00000000 0x20 Src/stm32l0xx_hal_msp.o - .text.HAL_IRDA_MspDeInit - 0x00000000 0x30 Src/stm32l0xx_hal_msp.o - .text.HAL_UART_MspDeInit - 0x00000000 0x2c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x832 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x22 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x4c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x8d Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x9c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x174 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x4a Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x1f Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x43 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x20 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x187 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x30d Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x29 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x4c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0xa3 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x2e Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x28 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0xfd Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x5e Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x1df Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x34 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x26 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x44f Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x3c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x1c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x1c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x40 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x40 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0xd7 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x18b Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x50 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x8e0 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x9d4 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x14d Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x184 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x279 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x1ef Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x12a Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x2b6 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x202 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x5b Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x90 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x189 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x30c Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x3f1 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0xdd Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x54a Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x44 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x280 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00000000 0x165 Src/stm32l0xx_hal_msp.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/stm32l0xx_it.o - .text 0x00000000 0x0 Src/stm32l0xx_it.o - .data 0x00000000 0x0 Src/stm32l0xx_it.o - .bss 0x00000000 0x0 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x832 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x22 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x4c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x8d Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x9c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x174 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x4a Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x43 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x20 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x187 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x30d Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x29 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x4c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xa3 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x2e Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x28 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xfd Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x5e Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x1df Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x34 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x26 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x44f Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x3c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x1c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x1c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x40 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x40 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xd7 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x18b Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x50 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x8e0 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x9d4 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x14d Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x184 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x279 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x1ef Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x12a Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x2b6 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x202 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x5b Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x90 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x189 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x30c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x3f1 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xdd Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x54a Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x44 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x280 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x165 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xd8 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x168 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xb6 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x416 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xc0 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x8c Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x91 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x94 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0x63 Src/stm32l0xx_it.o - .debug_macro 0x00000000 0xcf Src/stm32l0xx_it.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .group 0x00000000 0x8 Src/system_stm32l0xx.o - .text 0x00000000 0x0 Src/system_stm32l0xx.o - .bss 0x00000000 0x0 Src/system_stm32l0xx.o - .text.SystemCoreClockUpdate - 0x00000000 0xcc Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x832 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x2e Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x28 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x22 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x87 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x44 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0xfd Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x5e Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x1df Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x34 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x26 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x44f Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x9cc0 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x3c Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x35 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x9c Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x174 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x1f Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x43 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x20 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x187 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x30d Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x35 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x29 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x4c Src/system_stm32l0xx.o - .debug_macro 0x00000000 0xa3 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x34a2 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x1c Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x1c Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x40 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x40 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0xd7 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x18b Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x50 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x8e0 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x9d4 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x14d Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x184 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x279 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x1ef Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x12a Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x2b6 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x202 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x5b Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x90 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x189 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x30c Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x3f1 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0xdd Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x54a Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x44 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x280 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o - .debug_macro 0x00000000 0x165 Src/system_stm32l0xx.o - .text 0x00000000 0x14 startup/startup_stm32l053xx.o - .data 0x00000000 0x0 startup/startup_stm32l053xx.o - .bss 0x00000000 0x0 startup/startup_stm32l053xx.o - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) - .text.exit 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) - .debug_frame 0x00000000 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) - .ARM.attributes - 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-exit.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - .data.impure_data - 0x00000000 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - .data._impure_ptr - 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - .rodata._global_impure_ptr - 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - .ARM.attributes - 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-impure.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - .text.utoa 0x00000000 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) - .text._exit 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) - .debug_frame 0x00000000 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) - .ARM.attributes - 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a(_exit.o) - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o - .eh_frame 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o - .jcr 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o - .ARM.attributes - 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o - .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - -Memory Configuration - -Name Origin Length Attributes -RAM 0x20000000 0x00002000 xrw -FLASH 0x08000000 0x00010000 xr -*default* 0x00000000 0xffffffff - -Linker script and memory map - -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m/crt0.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_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_irda.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_rtc.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_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_hal_uart.o -LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o -LOAD Middlewares/MemoryManager/NVM_Manager.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/croutine.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/event_groups.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/list.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/queue.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/tasks.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/timers.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o -LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o -LOAD Src/HTS221.o -LOAD Src/freertos.o -LOAD Src/main.o -LOAD Src/stm32l0xx_hal_msp.o -LOAD Src/stm32l0xx_it.o -LOAD Src/system_stm32l0xx.o -LOAD startup/startup_stm32l053xx.o -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libm.a -START GROUP -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a -END GROUP -START GROUP -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a -END GROUP -START GROUP -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libnosys.a -END GROUP -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtend.o -LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x20002000 _estack = 0x20002000 - 0x00000200 _Min_Heap_Size = 0x200 - 0x00000400 _Min_Stack_Size = 0x400 - -.isr_vector 0x08000000 0xc0 - 0x08000000 . = ALIGN (0x4) - *(.isr_vector) - .isr_vector 0x08000000 0xc0 startup/startup_stm32l053xx.o - 0x08000000 g_pfnVectors - 0x080000c0 . = ALIGN (0x4) - -.text 0x080000c0 0x6a14 - 0x080000c0 . = ALIGN (0x4) - *(.text) - .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - .text 0x08000120 0x114 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - 0x08000120 __aeabi_uidiv - 0x08000120 __udivsi3 - 0x0800022c __aeabi_uidivmod - .text 0x08000234 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) - 0x08000234 __aeabi_idiv0 - 0x08000234 __aeabi_ldiv0 - .text 0x08000238 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) - 0x08000238 __aeabi_uldivmod - .text 0x08000278 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x08000278 __udivmoddi4 - .text 0x080003f8 0x44 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) - 0x080003f8 __aeabi_f2iz - .text 0x0800043c 0x658 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - 0x0800043c __aeabi_dadd - .text 0x08000a94 0x62c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - 0x08000a94 __aeabi_ddiv - .text 0x080010c0 0x4f4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - 0x080010c0 __aeabi_dmul - .text 0x080015b4 0x6a8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - 0x080015b4 __aeabi_dsub - .text 0x08001c5c 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - 0x08001c5c __aeabi_i2d - .text 0x08001ce0 0x118 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) - 0x08001ce0 __aeabi_d2f - .text 0x08001df8 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - 0x08001df8 __clzsi2 - .text 0x08001e34 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - 0x08001e34 __clzdi2 - .text 0x08001e4c 0xe c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - 0x08001e4c strlen - *(.text*) - *fill* 0x08001e5a 0x2 - .text.HAL_InitTick - 0x08001e5c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001e5c HAL_InitTick - .text.HAL_Init - 0x08001e84 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001e84 HAL_Init - .text.HAL_IncTick - 0x08001ea4 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001ea4 HAL_IncTick - .text.HAL_GetTick - 0x08001eb4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001eb4 HAL_GetTick - .text.HAL_Delay - 0x08001ec0 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001ec0 HAL_Delay - .text.HAL_SuspendTick - 0x08001edc 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001edc HAL_SuspendTick - .text.HAL_ResumeTick - 0x08001eec 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x08001eec HAL_ResumeTick - .text.HAL_NVIC_SetPriority - 0x08001efc 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001efc HAL_NVIC_SetPriority - .text.HAL_SYSTICK_Config - 0x08001f60 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001f60 HAL_SYSTICK_Config - .text.HAL_SYSTICK_CLKSourceConfig - 0x08001f98 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x08001f98 HAL_SYSTICK_CLKSourceConfig - .text.FLASH_SetErrorCode - 0x08001fb8 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .text.FLASH_WaitForLastOperation - 0x0800206c 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - 0x0800206c FLASH_WaitForLastOperation - .text.HAL_FLASHEx_DATAEEPROM_Unlock - 0x080020f0 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x080020f0 HAL_FLASHEx_DATAEEPROM_Unlock - .text.HAL_FLASHEx_DATAEEPROM_Lock - 0x08002118 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x08002118 HAL_FLASHEx_DATAEEPROM_Lock - .text.HAL_FLASHEx_DATAEEPROM_Erase - 0x0800212c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x0800212c HAL_FLASHEx_DATAEEPROM_Erase - .text.HAL_FLASHEx_DATAEEPROM_Program - 0x08002154 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x08002154 HAL_FLASHEx_DATAEEPROM_Program - .text.HAL_GPIO_Init - 0x080021b8 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x080021b8 HAL_GPIO_Init - .text.HAL_GPIO_WritePin - 0x0800234c 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x0800234c HAL_GPIO_WritePin - .text.HAL_GPIO_TogglePin - 0x08002358 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x08002358 HAL_GPIO_TogglePin - .text.I2C_Flush_TXDR - 0x08002360 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_TransferConfig - 0x08002380 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_IsAcknowledgeFailed - 0x080023a4 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnTXISFlagUntilTimeout - 0x0800241c 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnFlagUntilTimeout - 0x08002470 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_RequestMemoryWrite - 0x080024bc 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_RequestMemoryRead - 0x08002540 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.I2C_WaitOnSTOPFlagUntilTimeout - 0x080025c4 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .text.HAL_I2C_Init - 0x08002614 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x08002614 HAL_I2C_Init - .text.HAL_I2C_Mem_Write - 0x080026dc 0x1c8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080026dc HAL_I2C_Mem_Write - .text.HAL_I2C_Mem_Read - 0x080028a4 0x1d0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x080028a4 HAL_I2C_Mem_Read - .text.HAL_I2CEx_ConfigAnalogFilter - 0x08002a74 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002a74 HAL_I2CEx_ConfigAnalogFilter - .text.HAL_I2CEx_ConfigDigitalFilter - 0x08002acc 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x08002acc HAL_I2CEx_ConfigDigitalFilter - .text.IRDA_SetConfig - 0x08002b20 0x194 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_WaitOnFlagUntilTimeout - 0x08002cb4 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.IRDA_CheckIdleState - 0x08002d20 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .text.HAL_IRDA_Init - 0x08002d90 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x08002d90 HAL_IRDA_Init - .text.HAL_PWR_EnterSLEEPMode - 0x08002dfc 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x08002dfc HAL_PWR_EnterSLEEPMode - .text.RCC_SetFlashLatencyFromMSIRange - 0x08002e2c 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .text.HAL_RCC_OscConfig - 0x08002eb4 0x5b8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08002eb4 HAL_RCC_OscConfig - .text.HAL_RCC_GetSysClockFreq - 0x0800346c 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x0800346c HAL_RCC_GetSysClockFreq - .text.HAL_RCC_ClockConfig - 0x08003500 0x1b4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x08003500 HAL_RCC_ClockConfig - .text.HAL_RCC_GetHCLKFreq - 0x080036b4 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080036b4 HAL_RCC_GetHCLKFreq - .text.HAL_RCC_GetPCLK1Freq - 0x080036c0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080036c0 HAL_RCC_GetPCLK1Freq - .text.HAL_RCC_GetPCLK2Freq - 0x080036e0 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x080036e0 HAL_RCC_GetPCLK2Freq - .text.HAL_RCCEx_PeriphCLKConfig - 0x08003700 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x08003700 HAL_RCCEx_PeriphCLKConfig - .text.HAL_RCCEx_GetPeriphCLKFreq - 0x080038ec 0x278 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x080038ec HAL_RCCEx_GetPeriphCLKFreq - .text.HAL_RTC_WaitForSynchro - 0x08003b64 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b64 HAL_RTC_WaitForSynchro - .text.RTC_EnterInitMode - 0x08003b98 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003b98 RTC_EnterInitMode - .text.HAL_RTC_Init - 0x08003bd4 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003bd4 HAL_RTC_Init - .text.RTC_ByteToBcd2 - 0x08003c80 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003c80 RTC_ByteToBcd2 - .text.HAL_RTC_SetTime - 0x08003c98 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003c98 HAL_RTC_SetTime - .text.HAL_RTC_SetDate - 0x08003da4 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003da4 HAL_RTC_SetDate - .text.RTC_Bcd2ToByte - 0x08003e90 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003e90 RTC_Bcd2ToByte - .text.HAL_RTC_GetTime - 0x08003ea4 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003ea4 HAL_RTC_GetTime - .text.HAL_RTC_GetDate - 0x08003efc 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x08003efc HAL_RTC_GetDate - .text.HAL_RTCEx_SetWakeUpTimer_IT - 0x08003f44 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08003f44 HAL_RTCEx_SetWakeUpTimer_IT - .text.HAL_RTCEx_WakeUpTimerEventCallback - 0x08004058 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08004058 HAL_RTCEx_WakeUpTimerEventCallback - .text.HAL_RTCEx_WakeUpTimerIRQHandler - 0x0800405c 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x0800405c HAL_RTCEx_WakeUpTimerIRQHandler - .text.HAL_RTCEx_BKUPWrite - 0x08004094 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x08004094 HAL_RTCEx_BKUPWrite - .text.HAL_RTCEx_BKUPRead - 0x080040a0 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x080040a0 HAL_RTCEx_BKUPRead - .text.UART_SetConfig - 0x080040ac 0x340 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080040ac UART_SetConfig - .text.UART_AdvFeatureConfig - 0x080043ec 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080043ec UART_AdvFeatureConfig - .text.UART_WaitOnFlagUntilTimeout - 0x080044cc 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x080044cc UART_WaitOnFlagUntilTimeout - .text.HAL_UART_Transmit - 0x08004538 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x08004538 HAL_UART_Transmit - .text.UART_CheckIdleState - 0x0800461c 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800461c UART_CheckIdleState - .text.HAL_UART_Init - 0x0800468c 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x0800468c HAL_UART_Init - .text.EEPROM_Clean - 0x080046f8 0x28 Middlewares/MemoryManager/NVM_Manager.o - .text.task_EepromManager - 0x08004720 0x78 Middlewares/MemoryManager/NVM_Manager.o - 0x08004720 task_EepromManager - .text.EEPROM_Initialize - 0x08004798 0x58 Middlewares/MemoryManager/NVM_Manager.o - 0x08004798 EEPROM_Initialize - .text.makeFreeRtosPriority - 0x080047f0 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.inHandlerMode - 0x080047fc 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .text.osKernelStart - 0x08004808 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004808 osKernelStart - .text.osKernelSysTick - 0x08004814 0x18 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004814 osKernelSysTick - .text.osThreadCreate - 0x0800482c 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800482c osThreadCreate - .text.osMutexCreate - 0x08004860 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004860 osMutexCreate - .text.osMutexWait - 0x0800486c 0x70 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800486c osMutexWait - .text.osMutexRelease - 0x080048dc 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080048dc osMutexRelease - .text.osSemaphoreCreate - 0x08004934 0x28 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x08004934 osSemaphoreCreate - .text.osSemaphoreWait - 0x0800495c 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x0800495c osSemaphoreWait - .text.osSystickHandler - 0x080049c8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080049c8 osSystickHandler - .text.osDelayUntil - 0x080049d8 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0x080049d8 osDelayUntil - .text.vListInitialise - 0x080049e8 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x080049e8 vListInitialise - .text.vListInitialiseItem - 0x08004a00 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004a00 vListInitialiseItem - .text.vListInsertEnd - 0x08004a08 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004a08 vListInsertEnd - .text.vListInsert - 0x08004a20 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004a20 vListInsert - .text.uxListRemove - 0x08004a50 0x24 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x08004a50 uxListRemove - .text.prvIsQueueFull - 0x08004a74 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.prvIsQueueEmpty - 0x08004a94 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.prvCopyDataToQueue - 0x08004ab0 0x84 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.prvNotifyQueueSetContainer - 0x08004b34 0x64 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.prvCopyDataFromQueue - 0x08004b98 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.prvUnlockQueue - 0x08004bbc 0x88 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueGenericReset - 0x08004c44 0x6c Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004c44 xQueueGenericReset - .text.prvInitialiseNewQueue - 0x08004cb0 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueGenericCreate - 0x08004cd8 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004cd8 xQueueGenericCreate - .text.xQueueGenericSend - 0x08004d18 0x160 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004d18 xQueueGenericSend - .text.prvInitialiseMutex - 0x08004e78 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .text.xQueueCreateMutex - 0x08004e90 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004e90 xQueueCreateMutex - .text.xQueueGiveFromISR - 0x08004ea8 0xbc Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004ea8 xQueueGiveFromISR - .text.xQueueGenericReceive - 0x08004f64 0x180 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x08004f64 xQueueGenericReceive - .text.xQueueReceiveFromISR - 0x080050e4 0x98 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x080050e4 xQueueReceiveFromISR - .text.prvResetNextTaskUnblockTime - 0x0800517c 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvDeleteTCB - 0x080051ac 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvInitialiseNewTask - 0x080051c0 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvInitialiseTaskLists - 0x0800525c 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvAddNewTaskToReadyList - 0x080052b4 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvAddCurrentTaskToDelayedList - 0x08005348 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.xTaskCreate - 0x080053b4 0x60 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080053b4 xTaskCreate - .text.vTaskStartScheduler - 0x08005414 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005414 vTaskStartScheduler - .text.vTaskSuspendAll - 0x08005468 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005468 vTaskSuspendAll - .text.xTaskGetTickCount - 0x08005478 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005478 xTaskGetTickCount - .text.xTaskGetTickCountFromISR - 0x08005484 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005484 xTaskGetTickCountFromISR - .text.xTaskIncrementTick - 0x08005490 0x104 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005490 xTaskIncrementTick - .text.xTaskResumeAll - 0x08005594 0xd4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005594 xTaskResumeAll - .text.vTaskDelayUntil - 0x08005668 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005668 vTaskDelayUntil - .text.prvCheckTasksWaitingTermination - 0x080056e0 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.prvIdleTask - 0x08005730 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .text.vTaskSwitchContext - 0x08005748 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005748 vTaskSwitchContext - .text.vTaskPlaceOnEventList - 0x080057cc 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080057cc vTaskPlaceOnEventList - .text.xTaskRemoveFromEventList - 0x080057f0 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080057f0 xTaskRemoveFromEventList - .text.vTaskSetTimeOutState - 0x08005868 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005868 vTaskSetTimeOutState - .text.xTaskCheckForTimeOut - 0x08005880 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005880 xTaskCheckForTimeOut - .text.vTaskMissedYield - 0x080058e4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080058e4 vTaskMissedYield - .text.xTaskGetSchedulerState - 0x080058f0 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x080058f0 xTaskGetSchedulerState - .text.vTaskPriorityInherit - 0x08005910 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005910 vTaskPriorityInherit - .text.xTaskPriorityDisinherit - 0x08005990 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005990 xTaskPriorityDisinherit - .text.pvTaskIncrementMutexHeldCount - 0x08005a04 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x08005a04 pvTaskIncrementMutexHeldCount - .text.prvTaskExitError - 0x08005a20 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - *fill* 0x08005a34 0xc - .text.vPortStartFirstTask - 0x08005a40 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .text.pxPortInitialiseStack - 0x08005a74 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005a74 pxPortInitialiseStack - .text.SVC_Handler - 0x08005a94 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005a94 SVC_Handler - .text.vPortYield - 0x08005a98 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005a98 vPortYield - .text.vPortEnterCritical - 0x08005ab0 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005ab0 vPortEnterCritical - .text.vPortExitCritical - 0x08005ac8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005ac8 vPortExitCritical - .text.ulSetInterruptMaskFromISR - 0x08005ae8 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005ae8 ulSetInterruptMaskFromISR - .text.vClearInterruptMaskFromISR - 0x08005af4 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005af4 vClearInterruptMaskFromISR - *fill* 0x08005afc 0x4 - .text.PendSV_Handler - 0x08005b00 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005b00 PendSV_Handler - .text.xPortSysTickHandler - 0x08005b44 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005b44 xPortSysTickHandler - .text.vPortSetupTimerInterrupt - 0x08005b68 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005b68 vPortSetupTimerInterrupt - .text.xPortStartScheduler - 0x08005b90 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x08005b90 xPortStartScheduler - .text.prvHeapInit - 0x08005bc4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text.prvInsertBlockIntoFreeList - 0x08005c14 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text.pvPortMalloc - 0x08005c64 0xc4 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005c64 pvPortMalloc - .text.vPortFree - 0x08005d28 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x08005d28 vPortFree - .text.HTS221_I2C_Read - 0x08005d80 0x24 Src/HTS221.o - .text.HTS221_I2C_Read_return - 0x08005da4 0x1c Src/HTS221.o - .text.HTS221_CheckAvailable - 0x08005dc0 0x14 Src/HTS221.o - .text.HTS221_GetCoefficient - 0x08005dd4 0xa4 Src/HTS221.o - .text.HTS221_EnableDevice - 0x08005e78 0x2c Src/HTS221.o - .text.HTS221_I2C_Write - 0x08005ea4 0x24 Src/HTS221.o - .text.HTS221_ConfigDevice - 0x08005ec8 0x38 Src/HTS221.o - 0x08005ec8 HTS221_ConfigDevice - .text.HTS221_Init - 0x08005f00 0x28 Src/HTS221.o - 0x08005f00 HTS221_Init - .text.HTS221_GetHumidity - 0x08005f28 0x9c Src/HTS221.o - 0x08005f28 HTS221_GetHumidity - .text.HTS221_GetTemperature - 0x08005fc4 0x9c Src/HTS221.o - 0x08005fc4 HTS221_GetTemperature - .text.MX_GPIO_Init - 0x08006060 0x8c Src/main.o - .text.func_NVM_Manager - 0x080060ec 0x110 Src/main.o - 0x080060ec func_NVM_Manager - .text.func_LEDBlink - 0x080061fc 0x34 Src/main.o - 0x080061fc func_LEDBlink - .text.func_UartPrint - 0x08006230 0x1d0 Src/main.o - 0x08006230 func_UartPrint - .text.func_SensorRead - 0x08006400 0x84 Src/main.o - 0x08006400 func_SensorRead - .text.Error_Handler - 0x08006484 0x4 Src/main.o - 0x08006484 Error_Handler - .text.MX_RTC_Init - 0x08006488 0x90 Src/main.o - .text.MX_USART2_UART_Init - 0x08006518 0x38 Src/main.o - .text.MX_USART1_IRDA_Init - 0x08006550 0x38 Src/main.o - .text.MX_I2C1_Init - 0x08006588 0x58 Src/main.o - .text.SystemClock_Config - 0x080065e0 0xa4 Src/main.o - 0x080065e0 SystemClock_Config - .text.main 0x08006684 0xf4 Src/main.o - 0x08006684 main - .text.HAL_MspInit - 0x08006778 0x40 Src/stm32l0xx_hal_msp.o - 0x08006778 HAL_MspInit - .text.HAL_I2C_MspInit - 0x080067b8 0x48 Src/stm32l0xx_hal_msp.o - 0x080067b8 HAL_I2C_MspInit - .text.HAL_RTC_MspInit - 0x08006800 0x20 Src/stm32l0xx_hal_msp.o - 0x08006800 HAL_RTC_MspInit - .text.HAL_IRDA_MspInit - 0x08006820 0x44 Src/stm32l0xx_hal_msp.o - 0x08006820 HAL_IRDA_MspInit - .text.HAL_UART_MspInit - 0x08006864 0x44 Src/stm32l0xx_hal_msp.o - 0x08006864 HAL_UART_MspInit - .text.SysTick_Handler - 0x080068a8 0xc Src/stm32l0xx_it.o - 0x080068a8 SysTick_Handler - .text.RTC_IRQHandler - 0x080068b4 0x24 Src/stm32l0xx_it.o - 0x080068b4 RTC_IRQHandler - .text.SystemInit - 0x080068d8 0x5c Src/system_stm32l0xx.o - 0x080068d8 SystemInit - .text.Reset_Handler - 0x08006934 0x50 startup/startup_stm32l053xx.o - 0x08006934 Reset_Handler - .text.Default_Handler - 0x08006984 0x2 startup/startup_stm32l053xx.o - 0x08006984 TSC_IRQHandler - 0x08006984 HardFault_Handler - 0x08006984 ADC1_COMP_IRQHandler - 0x08006984 PVD_IRQHandler - 0x08006984 NMI_Handler - 0x08006984 I2C1_IRQHandler - 0x08006984 RCC_CRS_IRQHandler - 0x08006984 SPI1_IRQHandler - 0x08006984 TIM6_DAC_IRQHandler - 0x08006984 EXTI2_3_IRQHandler - 0x08006984 I2C2_IRQHandler - 0x08006984 LCD_IRQHandler - 0x08006984 DMA1_Channel4_5_6_7_IRQHandler - 0x08006984 EXTI4_15_IRQHandler - 0x08006984 DMA1_Channel1_IRQHandler - 0x08006984 Default_Handler - 0x08006984 TIM22_IRQHandler - 0x08006984 EXTI0_1_IRQHandler - 0x08006984 USB_IRQHandler - 0x08006984 SPI2_IRQHandler - 0x08006984 TIM21_IRQHandler - 0x08006984 WWDG_IRQHandler - 0x08006984 TIM2_IRQHandler - 0x08006984 DMA1_Channel2_3_IRQHandler - 0x08006984 USART2_IRQHandler - 0x08006984 FLASH_IRQHandler - 0x08006984 USART1_IRQHandler - 0x08006984 RNG_LPUART1_IRQHandler - 0x08006984 LPTIM1_IRQHandler - *fill* 0x08006986 0x2 - .text.__libc_init_array - 0x08006988 0x4c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - 0x08006988 __libc_init_array - .text.__itoa 0x080069d4 0x2e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x080069d4 __itoa - .text.itoa 0x08006a02 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - 0x08006a02 itoa - .text.memcpy 0x08006a0a 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - 0x08006a0a memcpy - .text.memset 0x08006a1c 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - 0x08006a1c memset - .text.strcat 0x08006a2c 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - 0x08006a2c strcat - *fill* 0x08006a46 0x2 - .text.__utoa 0x08006a48 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x08006a48 __utoa - *(.glue_7) - .glue_7 0x08006abc 0x0 linker stubs - *(.glue_7t) - .glue_7t 0x08006abc 0x0 linker stubs - *(.eh_frame) - .eh_frame 0x08006abc 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - *(.init) - .init 0x08006abc 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006abc _init - .init 0x08006ac0 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - *(.fini) - .fini 0x08006ac8 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - 0x08006ac8 _fini - .fini 0x08006acc 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o - 0x08006ad4 . = ALIGN (0x4) - 0x08006ad4 _etext = . - -.vfp11_veneer 0x08006ad4 0x0 - .vfp11_veneer 0x08006ad4 0x0 linker stubs - -.v4_bx 0x08006ad4 0x0 - .v4_bx 0x08006ad4 0x0 linker stubs - -.iplt 0x08006ad4 0x0 - .iplt 0x08006ad4 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - -.rodata 0x08006ad4 0x250 - 0x08006ad4 . = ALIGN (0x4) - *(.rodata) - .rodata 0x08006ad4 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .rodata 0x08006af8 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .rodata 0x08006b40 0x14 Middlewares/MemoryManager/NVM_Manager.o - .rodata 0x08006b54 0x50 Src/main.o - .rodata 0x08006ba4 0x24 Src/system_stm32l0xx.o - 0x08006ba4 PLLMulTable - 0x08006bb0 AHBPrescTable - 0x08006bc0 APBPrescTable - .rodata 0x08006bc8 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .rodata 0x08006c08 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - *(.rodata*) - .rodata.str1.4 - 0x08006c48 0xe Middlewares/MemoryManager/NVM_Manager.o - *fill* 0x08006c56 0x2 - .rodata.str1.4 - 0x08006c58 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x08006c5d 0x3 - .rodata.str1.4 - 0x08006c60 0x8e Src/main.o - 0x92 (size before relaxing) - *fill* 0x08006cee 0x2 - .rodata.str1.4 - 0x08006cf0 0xc Src/stm32l0xx_it.o - 0xa (size before relaxing) - .rodata.str1.1 - 0x08006cfc 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - 0x08006d24 . = ALIGN (0x4) - *fill* 0x08006d21 0x3 - -.ARM.extab - *(.ARM.extab* .gnu.linkonce.armextab.*) - -.ARM 0x08006d24 0x8 - 0x08006d24 __exidx_start = . - *(.ARM.exidx*) - .ARM.exidx 0x08006d24 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - 0x08006d2c __exidx_end = . - -.rel.dyn 0x08006d2c 0x0 - .rel.iplt 0x08006d2c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - -.preinit_array 0x08006d2c 0x0 - 0x08006d2c PROVIDE (__preinit_array_start, .) - *(.preinit_array*) - 0x08006d2c PROVIDE (__preinit_array_end, .) - -.init_array 0x08006d2c 0x4 - 0x08006d2c PROVIDE (__init_array_start, .) - *(SORT(.init_array.*)) - *(.init_array*) - .init_array 0x08006d2c 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x08006d30 PROVIDE (__init_array_end, .) - -.fini_array 0x08006d30 0x4 - [!provide] PROVIDE (__fini_array_start, .) - *(SORT(.fini_array.*)) - *(.fini_array*) - .fini_array 0x08006d30 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - [!provide] PROVIDE (__fini_array_end, .) - 0x08006d34 _sidata = LOADADDR (.data) - -.data 0x20000000 0x8 load address 0x08006d34 - 0x20000000 . = ALIGN (0x4) - 0x20000000 _sdata = . - *(.data) - .data 0x20000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .data 0x20000004 0x4 Src/system_stm32l0xx.o - 0x20000004 SystemCoreClock - *(.data*) - 0x20000008 . = ALIGN (0x4) - 0x20000008 _edata = . - -.jcr 0x20000008 0x0 load address 0x08006d3c - .jcr 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - -.igot.plt 0x20000008 0x0 load address 0x08006d3c - .igot.plt 0x20000008 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - 0x20000008 . = ALIGN (0x4) - -.bss 0x20000008 0xee4 load address 0x08006d3c - 0x20000008 _sbss = . - 0x20000008 __bss_start__ = _sbss - *(.bss) - .bss 0x20000008 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - .bss 0x20000024 0x12c Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x20000124 pxCurrentTCB - .bss 0x20000150 0xc18 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .bss 0x20000d68 0x1 Src/main.o - 0x20000d68 updateCounter - *(.bss*) - *(COMMON) - *fill* 0x20000d69 0x3 - COMMON 0x20000d6c 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x20000d6c uwTick - COMMON 0x20000d70 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - 0x20000d70 pFlash - COMMON 0x20000d88 0xc Middlewares/MemoryManager/NVM_Manager.o - 0x20000d88 Task_ManagEeprom - 0x20000d8c SemaEepromManager - 0x20000d90 MutexEeprom - COMMON 0x20000d94 0x14 Src/HTS221.o - 0x20000d94 HTS221_CoefStruc - 0x20000da4 HTS221_I2CHander - COMMON 0x20000da8 0x144 Src/main.o - 0x20000da8 hirda1 - 0x20000de4 Task_ErrorCheck - 0x20000de8 Task_UartSend - 0x20000dec Queue_number - 0x20000df0 hi2c1 - 0x20000e3c Queue_SendTo_Uart - 0x20000e40 Queue_SendTo_TaskNVM - 0x20000e44 thread1_counter - 0x20000e48 NVM_QueueSet - 0x20000e4c hrtc - 0x20000e70 huart2 - 0x20000ee0 Task_SensorRead - 0x20000ee4 Task_NVM_ReadWrite - 0x20000ee8 Task_HearBeatLED - 0x20000eec . = ALIGN (0x4) - 0x20000eec _ebss = . - 0x20000eec __bss_end__ = _ebss - -._user_heap_stack - 0x20000eec 0x604 load address 0x08006d3c - 0x20000ef0 . = ALIGN (0x8) - *fill* 0x20000eec 0x4 - [!provide] PROVIDE (end, .) - [!provide] PROVIDE (_end, .) - 0x200010f0 . = (. + _Min_Heap_Size) - *fill* 0x20000ef0 0x200 - 0x200014f0 . = (. + _Min_Stack_Size) - *fill* 0x200010f0 0x400 - 0x200014f0 . = ALIGN (0x8) - -/DISCARD/ - libc.a(*) - libm.a(*) - libgcc.a(*) - -.ARM.attributes - 0x00000000 0x28 - *(.ARM.attributes) - .ARM.attributes - 0x00000000 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crti.o - .ARM.attributes - 0x0000001e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtbegin.o - .ARM.attributes - 0x0000004a 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .ARM.attributes - 0x0000007c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .ARM.attributes - 0x000000ae 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .ARM.attributes - 0x000000e0 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .ARM.attributes - 0x00000112 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .ARM.attributes - 0x00000144 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .ARM.attributes - 0x00000176 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .ARM.attributes - 0x000001a8 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .ARM.attributes - 0x000001da 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .ARM.attributes - 0x0000020c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .ARM.attributes - 0x0000023e 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .ARM.attributes - 0x00000270 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .ARM.attributes - 0x000002a2 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .ARM.attributes - 0x000002d4 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .ARM.attributes - 0x00000306 0x32 Middlewares/MemoryManager/NVM_Manager.o - .ARM.attributes - 0x00000338 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .ARM.attributes - 0x0000036a 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o - .ARM.attributes - 0x0000039c 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .ARM.attributes - 0x000003ce 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .ARM.attributes - 0x00000400 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .ARM.attributes - 0x00000432 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .ARM.attributes - 0x00000464 0x32 Src/HTS221.o - .ARM.attributes - 0x00000496 0x32 Src/main.o - .ARM.attributes - 0x000004c8 0x32 Src/stm32l0xx_hal_msp.o - .ARM.attributes - 0x000004fa 0x32 Src/stm32l0xx_it.o - .ARM.attributes - 0x0000052c 0x32 Src/system_stm32l0xx.o - .ARM.attributes - 0x0000055e 0x22 startup/startup_stm32l053xx.o - .ARM.attributes - 0x00000580 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .ARM.attributes - 0x0000059e 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_dvmd_tls.o) - .ARM.attributes - 0x000005bc 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_aeabi_uldivmod.o) - .ARM.attributes - 0x000005da 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .ARM.attributes - 0x00000606 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) - .ARM.attributes - 0x00000632 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .ARM.attributes - 0x0000065e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .ARM.attributes - 0x0000068a 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .ARM.attributes - 0x000006b6 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .ARM.attributes - 0x000006e2 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .ARM.attributes - 0x0000070e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) - .ARM.attributes - 0x0000073a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzsi2.o) - .ARM.attributes - 0x00000758 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_clzdi2.o) - .ARM.attributes - 0x00000776 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .ARM.attributes - 0x000007a2 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .ARM.attributes - 0x000007ce 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .ARM.attributes - 0x000007fa 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .ARM.attributes - 0x00000826 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .ARM.attributes - 0x00000852 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strlen.o) - .ARM.attributes - 0x0000086e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) - .ARM.attributes - 0x0000089a 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m/crtn.o -OUTPUT(RTOS_IOT.elf elf32-littlearm) - -.debug_info 0x00000000 0x176cf - .debug_info 0x00000000 0x749 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_info 0x00000749 0x8a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_info 0x00000fea 0x4ee Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_info 0x000014d8 0xb5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_info 0x00002033 0x647 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_info 0x0000267a 0x310e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_info 0x00005788 0x83e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_info 0x00005fc6 0x150c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_info 0x000074d2 0x5ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_info 0x00007abe 0xb74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_info 0x00008632 0x8cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_info 0x00008efd 0xd08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_info 0x00009c05 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_info 0x0000ab24 0x1990 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_info 0x0000c4b4 0x679 Middlewares/MemoryManager/NVM_Manager.o - .debug_info 0x0000cb2d 0x1b0f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_info 0x0000e63c 0x2a5 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_info 0x0000e8e1 0x16cd Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_info 0x0000ffae 0x2197 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_info 0x00012145 0x2b0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_info 0x000123f5 0x365 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_info 0x0001275a 0xb37 Src/HTS221.o - .debug_info 0x00013291 0x2661 Src/main.o - .debug_info 0x000158f2 0x117a Src/stm32l0xx_hal_msp.o - .debug_info 0x00016a6c 0x86a Src/stm32l0xx_it.o - .debug_info 0x000172d6 0x37b Src/system_stm32l0xx.o - .debug_info 0x00017651 0x7e startup/startup_stm32l053xx.o - -.debug_abbrev 0x00000000 0x3226 - .debug_abbrev 0x00000000 0x209 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_abbrev 0x00000209 0x264 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_abbrev 0x0000046d 0x1f6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_abbrev 0x00000663 0x220 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_abbrev 0x00000883 0x1cb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_abbrev 0x00000a4e 0x213 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_abbrev 0x00000c61 0x192 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_abbrev 0x00000df3 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_abbrev 0x0000101b 0x190 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_abbrev 0x000011ab 0x242 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_abbrev 0x000013ed 0x1ec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_abbrev 0x000015d9 0x19c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_abbrev 0x00001775 0x1ab Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_abbrev 0x00001920 0x24a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_abbrev 0x00001b6a 0x1ee Middlewares/MemoryManager/NVM_Manager.o - .debug_abbrev 0x00001d58 0x2d5 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_abbrev 0x0000202d 0xdf Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_abbrev 0x0000210c 0x202 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_abbrev 0x0000230e 0x270 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_abbrev 0x0000257e 0x1cf Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_abbrev 0x0000274d 0x1bd Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_abbrev 0x0000290a 0x207 Src/HTS221.o - .debug_abbrev 0x00002b11 0x33a Src/main.o - .debug_abbrev 0x00002e4b 0x18d Src/stm32l0xx_hal_msp.o - .debug_abbrev 0x00002fd8 0x149 Src/stm32l0xx_it.o - .debug_abbrev 0x00003121 0xf3 Src/system_stm32l0xx.o - .debug_abbrev 0x00003214 0x12 startup/startup_stm32l053xx.o - -.debug_loc 0x00000000 0xea89 - .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_loc 0x000000ac 0x39b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_loc 0x00000447 0x223 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_loc 0x0000066a 0xa12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_loc 0x0000107c 0x284 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_loc 0x00001300 0x331a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_loc 0x0000461a 0x245 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_loc 0x0000485f 0x10fc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_loc 0x0000595b 0xf6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_loc 0x00005a51 0x6a7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_loc 0x000060f8 0x9a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_loc 0x00006a9a 0xc10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_loc 0x000076aa 0xf1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_loc 0x000085c6 0x176e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_loc 0x00009d34 0xa8 Middlewares/MemoryManager/NVM_Manager.o - .debug_loc 0x00009ddc 0x1012 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_loc 0x0000adee 0x65 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_loc 0x0000ae53 0x1828 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_loc 0x0000c67b 0x18f5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_loc 0x0000df70 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_loc 0x0000e016 0x244 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_loc 0x0000e25a 0x3b0 Src/HTS221.o - .debug_loc 0x0000e60a 0x254 Src/main.o - .debug_loc 0x0000e85e 0xc6 Src/stm32l0xx_hal_msp.o - .debug_loc 0x0000e924 0x165 Src/system_stm32l0xx.o - -.debug_aranges 0x00000000 0x14d0 - .debug_aranges - 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_aranges - 0x000000e0 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_aranges - 0x00000160 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_aranges - 0x000001e0 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_aranges - 0x000002c0 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_aranges - 0x00000318 0x260 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_aranges - 0x00000578 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_aranges - 0x000005c0 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_aranges - 0x00000758 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_aranges - 0x000007f8 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_aranges - 0x00000880 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_aranges - 0x00000930 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_aranges - 0x000009e8 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_aranges - 0x00000b08 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_aranges - 0x00000cf0 0x38 Middlewares/MemoryManager/NVM_Manager.o - .debug_aranges - 0x00000d28 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_aranges - 0x00000f00 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_aranges - 0x00000f40 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_aranges - 0x00001068 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_aranges - 0x00001238 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_aranges - 0x000012c0 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_aranges - 0x00001310 0x68 Src/HTS221.o - .debug_aranges - 0x00001378 0x80 Src/main.o - .debug_aranges - 0x000013f8 0x60 Src/stm32l0xx_hal_msp.o - .debug_aranges - 0x00001458 0x28 Src/stm32l0xx_it.o - .debug_aranges - 0x00001480 0x28 Src/system_stm32l0xx.o - .debug_aranges - 0x000014a8 0x28 startup/startup_stm32l053xx.o - -.debug_ranges 0x00000000 0x13f8 - .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_ranges 0x000000d0 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_ranges 0x00000140 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_ranges 0x000001b0 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_ranges 0x00000280 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_ranges 0x000002c8 0x250 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_ranges 0x00000518 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_ranges 0x00000550 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_ranges 0x000006d8 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_ranges 0x00000768 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_ranges 0x000007f8 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_ranges 0x000008b0 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_ranges 0x00000958 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_ranges 0x00000a68 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_ranges 0x00000c40 0x28 Middlewares/MemoryManager/NVM_Manager.o - .debug_ranges 0x00000c68 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_ranges 0x00000e30 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_ranges 0x00000e60 0x178 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_ranges 0x00000fd8 0x200 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_ranges 0x000011d8 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_ranges 0x00001250 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_ranges 0x00001290 0x58 Src/HTS221.o - .debug_ranges 0x000012e8 0x70 Src/main.o - .debug_ranges 0x00001358 0x50 Src/stm32l0xx_hal_msp.o - .debug_ranges 0x000013a8 0x18 Src/stm32l0xx_it.o - .debug_ranges 0x000013c0 0x18 Src/system_stm32l0xx.o - .debug_ranges 0x000013d8 0x20 startup/startup_stm32l053xx.o - -.debug_macro 0x00000000 0x1892e - .debug_macro 0x00000000 0x395 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000395 0x832 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000bc7 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000be9 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000c35 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000cc2 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000cf7 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000d93 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000f07 0x4a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000f51 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000fa3 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00000fc2 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001005 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001025 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000011ac 0x30d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000014b9 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000014c9 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000014fe 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001514 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000152a 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001553 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000159f 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001642 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001670 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001698 0xfd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001795 0x5e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000017f3 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000019d2 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001a06 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001a2c 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00001e7b 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000bb3b 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000bb77 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f019 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f035 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f045 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f055 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f071 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f0c3 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f103 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f113 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f153 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f22a 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f240 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f3cb 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000f41b 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0000fcfb 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000106cf 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0001081c 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000109a0 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00010c19 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00010e08 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00010f32 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000111e8 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000113ea 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011445 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000114d5 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0001165e 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011674 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011980 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011d71 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00011e4e 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x00012398 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000123dc 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0001265c 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x0001266c 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_macro 0x000127d1 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_macro 0x00012b42 0x372 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_macro 0x00012eb4 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_macro 0x00013225 0x3aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_macro 0x000135cf 0x43d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_macro 0x00013a0c 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_macro 0x00013d7d 0x380 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_macro 0x000140fd 0x389 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_macro 0x00014486 0x3bf Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_macro 0x00014845 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_macro 0x00014bc8 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_macro 0x00014f39 0x371 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_macro 0x000152aa 0x383 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_macro 0x0001562d 0x43d Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00015a6a 0xd8 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00015b42 0x168 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00015caa 0xb6 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00015d60 0x10 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00015d70 0x1f Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00015d8f 0x416 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x000161a5 0xc0 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00016265 0x8c Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x000162f1 0x91 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00016382 0x94 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00016416 0x63 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00016479 0xcf Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x00016548 0xa9 Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x000165f1 0x3a Middlewares/MemoryManager/NVM_Manager.o - .debug_macro 0x0001662b 0x22f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001685a 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_macro 0x0001692c 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_macro 0x00016ade 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00016ce5 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_macro 0x00016d37 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00016fa8 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_macro 0x00016fb9 0x239 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_macro 0x000171f2 0x1d9 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_macro 0x000173cb 0x38d Src/HTS221.o - .debug_macro 0x00017758 0x22 Src/HTS221.o - .debug_macro 0x0001777a 0x15a Src/HTS221.o - .debug_macro 0x000178d4 0x463 Src/main.o - .debug_macro 0x00017d37 0xd8 Src/main.o - .debug_macro 0x00017e0f 0x371 Src/stm32l0xx_hal_msp.o - .debug_macro 0x00018180 0x431 Src/stm32l0xx_it.o - .debug_macro 0x000185b1 0x37d Src/system_stm32l0xx.o - -.debug_line 0x00000000 0x12c85 - .debug_line 0x00000000 0xa46 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_line 0x00000a46 0x9fb Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_line 0x00001441 0xa2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_line 0x00001e6f 0xb3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_line 0x000029ab 0x9c0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_line 0x0000336b 0x18f9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_line 0x00004c64 0x9c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_line 0x00005625 0x109a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_line 0x000066bf 0x9f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_line 0x000070b0 0xb79 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_line 0x00007c29 0xb78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_line 0x000087a1 0xc0c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_line 0x000093ad 0xef1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_line 0x0000a29e 0x131c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_line 0x0000b5ba 0xb04 Middlewares/MemoryManager/NVM_Manager.o - .debug_line 0x0000c0be 0xbcb Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_line 0x0000cc89 0x5aa Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x0000d233 0xad5 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x0000dd08 0xf43 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x0000ec4b 0x671 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_line 0x0000f2bc 0x659 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_line 0x0000f915 0x94c Src/HTS221.o - .debug_line 0x00010261 0xd51 Src/main.o - .debug_line 0x00010fb2 0x91f Src/stm32l0xx_hal_msp.o - .debug_line 0x000118d1 0xa98 Src/stm32l0xx_it.o - .debug_line 0x00012369 0x899 Src/system_stm32l0xx.o - .debug_line 0x00012c02 0x83 startup/startup_stm32l053xx.o - -.debug_str 0x00000000 0x86ebf - .debug_str 0x00000000 0x7a453 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x7a86c (size before relaxing) - .debug_str 0x0007a453 0x28f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - 0x7a67e (size before relaxing) - .debug_str 0x0007a6e2 0x23e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - 0x7a421 (size before relaxing) - .debug_str 0x0007a920 0x39f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - 0x7a701 (size before relaxing) - .debug_str 0x0007acbf 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - 0x7a511 (size before relaxing) - .debug_str 0x0007af75 0x1170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - 0x7b3d7 (size before relaxing) - .debug_str 0x0007c0e5 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - 0x7a7de (size before relaxing) - .debug_str 0x0007c19d 0x775 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - 0x7ac1f (size before relaxing) - .debug_str 0x0007c912 0x2ac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - 0x7a4e9 (size before relaxing) - .debug_str 0x0007cbbe 0x4e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - 0x7a889 (size before relaxing) - .debug_str 0x0007d0a1 0x4a9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - 0x7a7d2 (size before relaxing) - .debug_str 0x0007d54a 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - 0x7a667 (size before relaxing) - .debug_str 0x0007d983 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - 0x7a98c (size before relaxing) - .debug_str 0x0007de9d 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - 0x7af46 (size before relaxing) - .debug_str 0x0007e7c1 0x5217 Middlewares/MemoryManager/NVM_Manager.o - 0x7f4a9 (size before relaxing) - .debug_str 0x000839d8 0x926 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - 0xb99e (size before relaxing) - .debug_str 0x000842fe 0x148 Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x8ce6 (size before relaxing) - .debug_str 0x00084446 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0xa40a (size before relaxing) - .debug_str 0x00084c06 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0xaf02 (size before relaxing) - .debug_str 0x00085c9e 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - 0x965d (size before relaxing) - .debug_str 0x0008607f 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x93f3 (size before relaxing) - .debug_str 0x000862c2 0x742 Src/HTS221.o - 0x7adb0 (size before relaxing) - .debug_str 0x00086a04 0x3f5 Src/main.o - 0x80e63 (size before relaxing) - .debug_str 0x00086df9 0x1b Src/stm32l0xx_hal_msp.o - 0x7ae59 (size before relaxing) - .debug_str 0x00086e14 0x47 Src/stm32l0xx_it.o - 0x7f647 (size before relaxing) - .debug_str 0x00086e5b 0x64 Src/system_stm32l0xx.o - 0x7a2a6 (size before relaxing) - -.comment 0x00000000 0x6e - .comment 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - 0x6f (size before relaxing) - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .comment 0x0000006e 0x6f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .comment 0x0000006e 0x6f Middlewares/MemoryManager/NVM_Manager.o - .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/list.o - .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/queue.o - .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .comment 0x0000006e 0x6f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .comment 0x0000006e 0x6f Src/HTS221.o - .comment 0x0000006e 0x6f Src/main.o - .comment 0x0000006e 0x6f Src/stm32l0xx_hal_msp.o - .comment 0x0000006e 0x6f Src/stm32l0xx_it.o - .comment 0x0000006e 0x6f Src/system_stm32l0xx.o - -.debug_frame 0x00000000 0x3938 - .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o - .debug_frame 0x000001c4 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o - .debug_frame 0x000002c0 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o - .debug_frame 0x000003d4 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o - .debug_frame 0x000005fc 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o - .debug_frame 0x000006c4 0x784 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o - .debug_frame 0x00000e48 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o - .debug_frame 0x00000ef0 0x444 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o - .debug_frame 0x00001334 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o - .debug_frame 0x0000146c 0x150 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o - .debug_frame 0x000015bc 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o - .debug_frame 0x0000172c 0x204 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o - .debug_frame 0x00001930 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o - .debug_frame 0x00001c90 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o - .debug_frame 0x000021d0 0x78 Middlewares/MemoryManager/NVM_Manager.o - .debug_frame 0x00002248 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o - .debug_frame 0x00002788 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_frame 0x000027f4 0x358 Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_frame 0x00002b4c 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_frame 0x000030bc 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o - .debug_frame 0x000031cc 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .debug_frame 0x00003274 0x124 Src/HTS221.o - .debug_frame 0x00003398 0x16c Src/main.o - .debug_frame 0x00003504 0xd8 Src/stm32l0xx_hal_msp.o - .debug_frame 0x000035dc 0x40 Src/stm32l0xx_it.o - .debug_frame 0x0000361c 0x38 Src/system_stm32l0xx.o - .debug_frame 0x00003654 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivsi3.o) - .debug_frame 0x00003674 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(_udivmoddi4.o) - .debug_frame 0x000036b0 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(fixsfsi.o) - .debug_frame 0x000036d0 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(adddf3.o) - .debug_frame 0x0000370c 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(divdf3.o) - .debug_frame 0x00003748 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(muldf3.o) - .debug_frame 0x00003784 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(subdf3.o) - .debug_frame 0x000037bc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(floatsidf.o) - .debug_frame 0x000037e8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/armv6-m\libgcc.a(truncdfsf2.o) - .debug_frame 0x00003814 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o) - .debug_frame 0x00003840 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-itoa.o) - .debug_frame 0x00003880 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x000038a8 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-memset.o) - .debug_frame 0x000038c8 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-strcat.o) - .debug_frame 0x000038f0 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.13.3.201707031232/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-utoa.o) +Archive member included to satisfy reference by file (symbol) + +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivsi3.o) + Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o (__aeabi_uidiv) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_dvmd_tls.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivsi3.o) (__aeabi_idiv0) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_aeabi_uldivmod.o) + Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o (__aeabi_uldivmod) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(fixsfsi.o) + Src/main.o (__aeabi_f2iz) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(adddf3.o) + Src/HTS221.o (__aeabi_dadd) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(divdf3.o) + Src/HTS221.o (__aeabi_ddiv) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(muldf3.o) + Src/HTS221.o (__aeabi_dmul) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(subdf3.o) + Src/HTS221.o (__aeabi_dsub) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(floatsidf.o) + Src/HTS221.o (__aeabi_i2d) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(truncdfsf2.o) + Src/main.o (__aeabi_d2f) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzsi2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(adddf3.o) (__clzsi2) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzdi2.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) (__clzdi2) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (exit) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) (_global_impure_ptr) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-init.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (__libc_init_array) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + Src/main.o (itoa) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + Middlewares/SerialManager/console.o (malloc) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memcpy-stub.o) + Middlewares/Third_Party/FreeRTOS/Source/queue.o (memcpy) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memset.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o (memset) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) (_free_r) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) (_malloc_r) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) (_sbrk_r) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcat.o) + Src/main.o (strcat) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcmp.o) + Middlewares/SerialManager/console.o (strcmp) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcpy.o) + Middlewares/SerialManager/console.o (strcpy) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strlen.o) + Middlewares/SerialManager/console.o (strlen) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) (__utoa) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) (__malloc_lock) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) (errno) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) (_sbrk) +c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(_exit.o) + c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) (_exit) + +Allocating common symbols +Common symbol size file + +hirda1 0x3c Src/main.o +Task_ErrorCheck 0x4 Src/main.o +Task_UartSend 0x4 Src/main.o +errno 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) +Queue_number 0x4 Src/main.o +hi2c1 0x4c Src/main.o +Task_ManagEeprom 0x4 Middlewares/MemoryManager/NVM_Manager.o +uwTick 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o +xQueueRegistry 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o +pFlash 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o +HTS221_CoefStruc 0xe Src/HTS221.o +QueueConsole 0x4 Middlewares/SerialManager/console.o +taskLED_HEARTBEAT 0x4 Src/Debug_led.o +Queue_SendTo_Uart 0x4 Src/main.o +SemaEepromManager 0x4 Middlewares/MemoryManager/NVM_Manager.o +Queue_SendTo_TaskNVM + 0x4 Src/main.o +thread1_counter 0x4 Src/main.o +NVM_QueueSet 0x4 Src/main.o +HTS221_I2CHander 0x4 Src/HTS221.o +MutexConsole 0x4 Middlewares/SerialManager/console.o +hrtc 0x24 Src/main.o +MutexEeprom 0x4 Middlewares/MemoryManager/NVM_Manager.o +Task_console 0x4 Middlewares/SerialManager/console.o +huart2 0x70 Src/main.o +Task_SensorRead 0x4 Src/main.o +Task_NVM_ReadWrite 0x4 Src/main.o + +Discarded input sections + + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crti.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crti.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crti.o + .data 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + .text 0x00000000 0x78 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o + .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o + .ARM.exidx 0x00000000 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o + .ARM.attributes + 0x00000000 0x1b c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_MspInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_MspDeInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DeInit + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SuspendTick + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_ResumeTick + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_GetHalVersion + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_GetREVID + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_GetDEVID + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_EnableDBGSleepMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DisableDBGSleepMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_EnableDBGStopMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DisableDBGStopMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_EnableDBGStandbyMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DisableDBGStandbyMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DBG_EnableLowPowerConfig + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_DBGMCU_DBG_DisableLowPowerConfig + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_GetBootMode + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_VREFINT_OutputSelect + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_Enable_Lock_VREFINT + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .text.HAL_SYSCFG_Disable_Lock_VREFINT + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_DisableIRQ + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_SystemReset + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_GetPriority + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_SetPendingIRQ + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_GetPendingIRQ + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_NVIC_ClearPendingIRQ + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_SYSTICK_Callback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_SYSTICK_IRQHandler + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .text.HAL_MPU_ConfigRegion + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.DMA_SetConfig + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Init + 0x00000000 0x14c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_DeInit + 0x00000000 0x238 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Start + 0x00000000 0x36 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Start_IT + 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_Abort + 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_PollForTransfer + 0x00000000 0x22c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_IRQHandler + 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_GetState + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .text.HAL_DMA_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Program_IT + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_EndOfOperationCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OperationErrorCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_IRQHandler + 0x00000000 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Unlock + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Lock + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OB_Unlock + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OB_Lock + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_GetError + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_Program + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.HAL_FLASH_OB_Launch + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetUser + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetRDP + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetBOR + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetBOOTBit1 + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_GetWRP + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_ProtectedSectorsConfig + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_RDPConfig + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_UserConfig + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_BORConfig + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_OB_BOOTBit1Config + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OBProgram + 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OBGetConfig + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_AdvOBProgram + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_AdvOBGetConfig + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OB_SelectPCROP + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_OB_DeSelectPCROP + 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_EnableFixedTimeProgram + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_DATAEEPROM_DisableFixedTimeProgram + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.FLASH_PageErase + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_Erase + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .text.HAL_FLASHEx_Erase_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .RamFunc 0x00000000 0x1dc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_info 0x00000000 0xc2b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_abbrev 0x00000000 0x27b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_loc 0x00000000 0x139 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_aranges + 0x00000000 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_ranges 0x00000000 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_line 0x00000000 0x927 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_str 0x00000000 0x7aad7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .comment 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .debug_frame 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ramfunc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_DeInit + 0x00000000 0x108 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_ReadPin + 0x00000000 0xe Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_LockPin + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_EXTI_Callback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .text.HAL_GPIO_EXTI_IRQHandler + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMASlaveTransmitCplt + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMASlaveReceiveCplt + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Enable_IRQ + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Disable_IRQ + 0x00000000 0x72 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnRXNEFlagUntilTimeout + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAMasterTransmitCplt + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAMasterReceiveCplt + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MspInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MspDeInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_DeInit + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Transmit + 0x00000000 0x178 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Receive + 0x00000000 0x178 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Transmit + 0x00000000 0x1a4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Receive + 0x00000000 0x18c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Transmit_IT + 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Receive_IT + 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Transmit_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Receive_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Transmit_DMA + 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Receive_DMA + 0x00000000 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Transmit_DMA + 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Receive_DMA + 0x00000000 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Write_IT + 0x00000000 0xf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Read_IT + 0x00000000 0xfc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Write_DMA + 0x00000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Mem_Read_DMA + 0x00000000 0x13c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_IsDeviceReady + 0x00000000 0x158 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Sequential_Transmit_IT + 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Sequential_Receive_IT + 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Sequential_Transmit_IT + 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Slave_Sequential_Receive_IT + 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_EnableListen_IT + 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_DisableListen_IT + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_Master_Abort_IT + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_EV_IRQHandler + 0x00000000 0x12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MasterTxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MasterRxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITMasterSequentialCplt + 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_SlaveTxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_SlaveRxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITSlaveSequentialCplt + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_AddrCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITAddrCplt + 0x00000000 0xa2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_ListenCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITListenCplt + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MemTxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_MemRxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_ErrorCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_AbortCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITError + 0x00000000 0xf8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITSlaveCplt + 0x00000000 0x118 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Slave_ISR_IT + 0x00000000 0x140 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Slave_ISR_DMA + 0x00000000 0x86 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_ITMasterCplt + 0x00000000 0xd4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Master_ISR_IT + 0x00000000 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_Master_ISR_DMA + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAError + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_ER_IRQHandler + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_DMAAbort + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_GetState + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_GetMode + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.HAL_I2C_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_EnableWakeUp + 0x00000000 0x4e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_DisableWakeUp + 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_EnableFastModePlus + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .text.HAL_I2CEx_DisableFastModePlus + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_EndTxTransfer + 0x00000000 0x12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_EndRxTransfer + 0x00000000 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_Transmit_IT + 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_MspInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_MspDeInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DeInit + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Transmit + 0x00000000 0xda Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Receive + 0x00000000 0x11c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Transmit_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Receive_IT + 0x00000000 0xc4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Transmit_DMA + 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Receive_DMA + 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DMAPause + 0x00000000 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DMAResume + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_DMAStop + 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Abort + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortTransmit + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortReceive + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_TxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATransmitCplt + 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_EndTransmit_IT + 0x00000000 0x1a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_TxHalfCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATransmitHalfCplt + 0x00000000 0xa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_RxCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAReceiveCplt + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_Receive_IT + 0x00000000 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_RxHalfCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAReceiveHalfCplt + 0x00000000 0xa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_ErrorCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAError + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_IRQHandler + 0x00000000 0x124 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMAAbortOnError + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_Abort_IT + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMARxAbortCallback + 0x00000000 0x36 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATxAbortCallback + 0x00000000 0x36 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortTransmitCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortTransmit_IT + 0x00000000 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMATxOnlyAbortCallback + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortReceiveCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_AbortReceive_IT + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_DMARxOnlyAbortCallback + 0x00000000 0x1a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_GetState + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.HAL_IRDA_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DeInit + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableBkUpAccess + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableBkUpAccess + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_ConfigPVD + 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnablePVD + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisablePVD + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableWakeUpPin + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableWakeUpPin + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnterSLEEPMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnterSTOPMode + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnterSTANDBYMode + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableSleepOnExit + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableSleepOnExit + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_EnableSEVOnPend + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_DisableSEVOnPend + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_PVDCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .text.HAL_PWR_PVD_IRQHandler + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_info 0x00000000 0xe86 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_abbrev 0x00000000 0x269 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_loc 0x00000000 0x101 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_aranges + 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_ranges 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x394 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_line 0x00000000 0xa0b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_str 0x00000000 0x7ac1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .comment 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .debug_frame 0x00000000 0x138 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_GetVoltageRange + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_EnableFastWakeUp + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_DisableFastWakeUp + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_EnableUltraLowPower + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_DisableUltraLowPower + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_EnableLowPowerRunMode + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .text.HAL_PWREx_DisableLowPowerRunMode + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_info 0x00000000 0xa57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_abbrev 0x00000000 0x226 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_loc 0x00000000 0x2a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_aranges + 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_ranges 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x382 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_line 0x00000000 0x91c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_str 0x00000000 0x7a9ed Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .comment 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .debug_frame 0x00000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pwr_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_DeInit + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_MCOConfig + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_EnableCSS + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_GetOscConfig + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_GetClockConfig + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_CSSCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_NMI_IRQHandler + 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_GetPeriphCLKConfig + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_EnableLSECSS + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_DisableLSECSS + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_EnableLSECSS_IT + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_LSECSS_Callback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_LSECSS_IRQHandler + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_EnableHSI48_VREFINT + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_DisableHSI48_VREFINT + 0x00000000 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSConfig + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSSoftwareSynchronizationGenerate + 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSGetSynchronizationInfo + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRSWaitSynchronization + 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_SyncOkCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_SyncWarnCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_ExpectedSyncCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_ErrorCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .text.HAL_RCCEx_CRS_IRQHandler + 0x00000000 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_MspInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_MspDeInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_DeactivateAlarm + 0x00000000 0xe4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_AlarmAEventCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_AlarmIRQHandler + 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_PollForAlarmAEvent + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_GetState + 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_DeInit + 0x00000000 0xf0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_SetAlarm + 0x00000000 0x18c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_SetAlarm_IT + 0x00000000 0x1c0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .text.HAL_RTC_GetAlarm + 0x00000000 0xc4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTimeStamp + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTimeStamp_IT + 0x00000000 0x74 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateTimeStamp + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_GetTimeStamp + 0x00000000 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTamper + 0x00000000 0xbc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetTamper_IT + 0x00000000 0xd8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateTamper + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_TimeStampEventCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_Tamper1EventCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_Tamper2EventCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_TamperTimeStampIRQHandler + 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForTimeStampEvent + 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForTamper1Event + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForTamper2Event + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetWakeUpTimer + 0x00000000 0xdc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateWakeUpTimer + 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_GetWakeUpTimer + 0x00000000 0xa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForWakeUpTimerEvent + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetSmoothCalib + 0x00000000 0x8c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetSynchroShift + 0x00000000 0xba Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetCalibrationOutPut + 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateCalibrationOutPut + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_SetRefClock + 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DeactivateRefClock + 0x00000000 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_EnableBypassShadow + 0x00000000 0x3e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_DisableBypassShadow + 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_AlarmBEventCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .text.HAL_RTCEx_PollForAlarmBEvent + 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_info 0x00000000 0x93f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_abbrev 0x00000000 0x18e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_aranges + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x37d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_line 0x00000000 0x88b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .debug_str 0x00000000 0x7a8a3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .comment 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_info 0x00000000 0x93f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_abbrev 0x00000000 0x18e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_aranges + 0x00000000 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_line 0x00000000 0x88e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .debug_str 0x00000000 0x7a8a6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .comment 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .ARM.attributes + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_tim_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_EndTxTransfer + 0x00000000 0x12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_MspInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_MspDeInit + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DeInit + 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Transmit_IT + 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Transmit_DMA + 0x00000000 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Receive_DMA + 0x00000000 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DMAPause + 0x00000000 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DMAResume + 0x00000000 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_DMAStop + 0x00000000 0x5c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Abort + 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortTransmit + 0x00000000 0x3e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortReceive + 0x00000000 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATransmitCplt + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_TxHalfCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATxHalfCplt + 0x00000000 0xa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMAReceiveCplt + 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_RxHalfCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMARxHalfCplt + 0x00000000 0xa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMAError + 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Abort_IT + 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMARxAbortCallback + 0x00000000 0x3a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATxAbortCallback + 0x00000000 0x3a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortTransmitCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortTransmit_IT + 0x00000000 0x68 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMATxOnlyAbortCallback + 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortReceiveCpltCallback + 0x00000000 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_AbortReceive_IT + 0x00000000 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_DMARxOnlyAbortCallback + 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_EnterMuteMode + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_HalfDuplex_EnableTransmitter + 0x00000000 0x3a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_HalfDuplex_EnableReceiver + 0x00000000 0x3a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_LIN_SendBreak + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_GetState + 0x00000000 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_GetError + 0x00000000 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Receive + 0x00000000 0x134 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_HalfDuplex_Init + 0x00000000 0x7c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_LIN_Init + 0x00000000 0xa4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_Init + 0x00000000 0xa0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_EnableMuteMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_MultiProcessor_DisableMuteMode + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .data 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .bss 0x00000000 0x0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.UARTEx_Wakeup_AddressConfig + 0x00000000 0x2c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_RS485Ex_Init + 0x00000000 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_MultiProcessorEx_AddressLength_Set + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_StopModeWakeUpSourceConfig + 0x00000000 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_EnableStopMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_DisableStopMode + 0x00000000 0x30 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_EnableClockStopMode + 0x00000000 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .text.HAL_UARTEx_DisableClockStopMode + 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00000000 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/MemoryManager/NVM_Manager.o + .text 0x00000000 0x0 Middlewares/MemoryManager/NVM_Manager.o + .data 0x00000000 0x0 Middlewares/MemoryManager/NVM_Manager.o + .bss 0x00000000 0x4 Middlewares/MemoryManager/NVM_Manager.o + .text.HAL_GPIO_EXTI_Callback + 0x00000000 0x44 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x8aa Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x22 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x52 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x8d Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x35 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x9c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x174 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x57 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x58 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1f Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x43 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x20 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x187 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x330 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x35 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x29 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x4c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0xef Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x6a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1df Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x2e Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x28 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x26 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x44f Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x9cc0 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x3c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x34a2 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x52 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x40 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x40 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0xd7 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x18b Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x50 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x8e0 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x9d4 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x14d Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x184 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x279 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x1ef Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x12a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x2b6 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x202 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x5b Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x90 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x189 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x16 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x30c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x3f1 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0xdd Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x54a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x44 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x280 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00000000 0x165 Middlewares/MemoryManager/NVM_Manager.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/SerialManager/console.o + .text 0x00000000 0x0 Middlewares/SerialManager/console.o + .data 0x00000000 0x0 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x8aa Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x22 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x52 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x8d Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x35 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x9c Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x174 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x57 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x58 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x1f Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x43 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x20 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x187 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x330 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x10 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x35 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x16 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x16 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x29 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x4c Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xef Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x6a Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x1df Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xd8 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x168 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xb6 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x10 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x1f Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x416 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xc0 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x8c Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x91 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x94 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x63 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xcf Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xa9 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x2e Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x28 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x3a Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x26 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x44f Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x9cc0 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x3c Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x34a2 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x1c Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x10 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x10 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x1c Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x52 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x40 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x10 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x40 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xd7 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x16 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x18b Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x50 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x8e0 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x9d4 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x14d Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x184 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x279 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x1ef Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x12a Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x2b6 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x202 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x5b Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x90 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x189 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x16 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x30c Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x3f1 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0xdd Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x54a Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x44 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x280 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x10 Middlewares/SerialManager/console.o + .debug_macro 0x00000000 0x165 Middlewares/SerialManager/console.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.makeCmsisPriority + 0x00000000 0xe Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osKernelRunning + 0x00000000 0x12 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadGetId + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadTerminate + 0x00000000 0xa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadYield + 0x00000000 0xa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadSetPriority + 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadGetPriority + 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osDelay 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerCreate + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerStart + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerStop + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osTimerDelete + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSignalSet + 0x00000000 0x60 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSignalWait + 0x00000000 0x64 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMutexDelete + 0x00000000 0x1a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreRelease + 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreDelete + 0x00000000 0x1a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolCreate + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolAlloc + 0x00000000 0x66 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolCAlloc + 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osPoolFree + 0x00000000 0x4e Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageCreate + 0x00000000 0xe Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessagePut + 0x00000000 0x64 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageGet + 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailCreate + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailAlloc + 0x00000000 0x12 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailCAlloc + 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailPut + 0x00000000 0x64 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailGet + 0x00000000 0x90 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMailFree + 0x00000000 0x12 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadSuspend + 0x00000000 0xa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadResume + 0x00000000 0x30 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadSuspendAll + 0x00000000 0xa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadResumeAll + 0x00000000 0x12 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osAbortDelay + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osThreadList + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessagePeek + 0x00000000 0x56 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageWaiting + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageAvailableSpace + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osMessageDelete + 0x00000000 0x1a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osRecursiveMutexCreate + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osRecursiveMutexRelease + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osRecursiveMutexWait + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osSemaphoreGetCount + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x57 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x63 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0xcf Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00000000 0x26 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_info 0x00000000 0x8c4 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_abbrev 0x00000000 0x18e Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_aranges + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1e0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x87 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x51 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_line 0x00000000 0x546 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .debug_str 0x00000000 0x9e35 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .comment 0x00000000 0x80 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .ARM.attributes + 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/croutine.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.prvTestWaitCondition + 0x00000000 0x1e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupCreate + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupWaitBits + 0x00000000 0xec Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupClearBits + 0x00000000 0x2a Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupGetBitsFromISR + 0x00000000 0x12 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupSetBits + 0x00000000 0x7e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.xEventGroupSync + 0x00000000 0xb2 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.vEventGroupDelete + 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.vEventGroupSetBitsCallback + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.vEventGroupClearBitsCallback + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .text.uxEventGroupGetNumber + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_info 0x00000000 0x114c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_abbrev 0x00000000 0x2b2 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_loc 0x00000000 0x91f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_aranges + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_ranges 0x00000000 0x80 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x20d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x57 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_line 0x00000000 0x733 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_str 0x00000000 0xa5ec Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .comment 0x00000000 0x80 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .debug_frame 0x00000000 0x12c Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .ARM.attributes + 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/event_groups.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/list.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x57 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/list.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueuePeekFromISR + 0x00000000 0x5c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueMessagesWaiting + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueSpacesAvailable + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.uxQueueGetQueueNumber + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueSetQueueNumber + 0x00000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.ucQueueGetQueueType + 0x00000000 0x6 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueIsQueueFullFromISR + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueAddToRegistry + 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.pcQueueGetName + 0x00000000 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueUnregisterQueue + 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.vQueueDelete + 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueCreateSet + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueAddToSet + 0x00000000 0x2a Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueRemoveFromSet + 0x00000000 0x28 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueSelectFromSet + 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueSelectFromSetFromISR + 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x57 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/queue.o + COMMON 0x00000000 0x40 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvTaskIsTaskSuspended + 0x00000000 0x44 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvTaskCheckFreeStackSpace + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskDelete + 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.eTaskGetState + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskPriorityGetFromISR + 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskPrioritySet + 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskResume + 0x00000000 0x68 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskResumeFromISR + 0x00000000 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskEndScheduler + 0x00000000 0x14 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskGetNumberOfTasks + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.pcTaskGetName + 0x00000000 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskDelay + 0x00000000 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskSuspend + 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskPlaceOnUnorderedEventList + 0x00000000 0x3c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskRemoveFromUnorderedEventList + 0x00000000 0x70 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskGetTaskNumber + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskSetTaskNumber + 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskGetInfo + 0x00000000 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvListTasksWithinSingleList + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskGetSystemState + 0x00000000 0xb0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskGetCurrentTaskHandle + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.uxTaskResetEventItemValue + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.ulTaskNotifyTake + 0x00000000 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskNotifyWait + 0x00000000 0x84 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskGenericNotify + 0x00000000 0xbc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskGenericNotifyFromISR + 0x00000000 0xe8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskNotifyGiveFromISR + 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskNotifyStateClear + 0x00000000 0x34 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x57 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_info 0x00000000 0x8c4 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_abbrev 0x00000000 0x18e Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_aranges + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1e9 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x57 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x94 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_macro 0x00000000 0x91 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_line 0x00000000 0x54d Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_str 0x00000000 0xa849 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .comment 0x00000000 0x80 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .ARM.attributes + 0x00000000 0x32 Middlewares/Third_Party/FreeRTOS/Source/timers.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .bss 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .text.vPortEndScheduler + 0x00000000 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x174 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x87 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x51 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .data 0x00000000 0x0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.xPortGetFreeHeapSize + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0xc Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.vPortInitialiseBlocks + 0x00000000 0x2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x8aa Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x22 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x52 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x9c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x10e Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x8d Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x57 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x58 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x43 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x187 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x330 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x29 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xef Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x6a Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x1df Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x16 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x35 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x4c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xd2 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x168 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xb6 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x10 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x1f Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x416 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0xc0 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00000000 0x8c Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .group 0x00000000 0x8 Src/Debug_led.o + .text 0x00000000 0x0 Src/Debug_led.o + .data 0x00000000 0x0 Src/Debug_led.o + .debug_macro 0x00000000 0x8aa Src/Debug_led.o + .debug_macro 0x00000000 0x22 Src/Debug_led.o + .debug_macro 0x00000000 0x52 Src/Debug_led.o + .debug_macro 0x00000000 0x8d Src/Debug_led.o + .debug_macro 0x00000000 0x35 Src/Debug_led.o + .debug_macro 0x00000000 0x9c Src/Debug_led.o + .debug_macro 0x00000000 0x174 Src/Debug_led.o + .debug_macro 0x00000000 0x57 Src/Debug_led.o + .debug_macro 0x00000000 0x58 Src/Debug_led.o + .debug_macro 0x00000000 0x1f Src/Debug_led.o + .debug_macro 0x00000000 0x43 Src/Debug_led.o + .debug_macro 0x00000000 0x20 Src/Debug_led.o + .debug_macro 0x00000000 0x187 Src/Debug_led.o + .debug_macro 0x00000000 0x330 Src/Debug_led.o + .debug_macro 0x00000000 0x10 Src/Debug_led.o + .debug_macro 0x00000000 0x35 Src/Debug_led.o + .debug_macro 0x00000000 0x16 Src/Debug_led.o + .debug_macro 0x00000000 0x16 Src/Debug_led.o + .debug_macro 0x00000000 0x29 Src/Debug_led.o + .debug_macro 0x00000000 0x4c Src/Debug_led.o + .debug_macro 0x00000000 0xa9 Src/Debug_led.o + .debug_macro 0x00000000 0x2e Src/Debug_led.o + .debug_macro 0x00000000 0x28 Src/Debug_led.o + .debug_macro 0x00000000 0xef Src/Debug_led.o + .debug_macro 0x00000000 0x6a Src/Debug_led.o + .debug_macro 0x00000000 0x1df Src/Debug_led.o + .debug_macro 0x00000000 0x34 Src/Debug_led.o + .debug_macro 0x00000000 0x26 Src/Debug_led.o + .debug_macro 0x00000000 0x44f Src/Debug_led.o + .debug_macro 0x00000000 0x9cc0 Src/Debug_led.o + .debug_macro 0x00000000 0x3c Src/Debug_led.o + .debug_macro 0x00000000 0x34a2 Src/Debug_led.o + .debug_macro 0x00000000 0x1c Src/Debug_led.o + .debug_macro 0x00000000 0x10 Src/Debug_led.o + .debug_macro 0x00000000 0x10 Src/Debug_led.o + .debug_macro 0x00000000 0x1c Src/Debug_led.o + .debug_macro 0x00000000 0x52 Src/Debug_led.o + .debug_macro 0x00000000 0x40 Src/Debug_led.o + .debug_macro 0x00000000 0x10 Src/Debug_led.o + .debug_macro 0x00000000 0x40 Src/Debug_led.o + .debug_macro 0x00000000 0xd7 Src/Debug_led.o + .debug_macro 0x00000000 0x16 Src/Debug_led.o + .debug_macro 0x00000000 0x18b Src/Debug_led.o + .debug_macro 0x00000000 0x50 Src/Debug_led.o + .debug_macro 0x00000000 0x8e0 Src/Debug_led.o + .debug_macro 0x00000000 0x9d4 Src/Debug_led.o + .debug_macro 0x00000000 0x14d Src/Debug_led.o + .debug_macro 0x00000000 0x184 Src/Debug_led.o + .debug_macro 0x00000000 0x279 Src/Debug_led.o + .debug_macro 0x00000000 0x1ef Src/Debug_led.o + .debug_macro 0x00000000 0x12a Src/Debug_led.o + .debug_macro 0x00000000 0x2b6 Src/Debug_led.o + .debug_macro 0x00000000 0x202 Src/Debug_led.o + .debug_macro 0x00000000 0x5b Src/Debug_led.o + .debug_macro 0x00000000 0x90 Src/Debug_led.o + .debug_macro 0x00000000 0x189 Src/Debug_led.o + .debug_macro 0x00000000 0x16 Src/Debug_led.o + .debug_macro 0x00000000 0x30c Src/Debug_led.o + .debug_macro 0x00000000 0x3f1 Src/Debug_led.o + .debug_macro 0x00000000 0xdd Src/Debug_led.o + .debug_macro 0x00000000 0x54a Src/Debug_led.o + .debug_macro 0x00000000 0x44 Src/Debug_led.o + .debug_macro 0x00000000 0x280 Src/Debug_led.o + .debug_macro 0x00000000 0x10 Src/Debug_led.o + .debug_macro 0x00000000 0x165 Src/Debug_led.o + .debug_macro 0x00000000 0x168 Src/Debug_led.o + .debug_macro 0x00000000 0xb6 Src/Debug_led.o + .debug_macro 0x00000000 0x10 Src/Debug_led.o + .debug_macro 0x00000000 0x1f Src/Debug_led.o + .debug_macro 0x00000000 0x416 Src/Debug_led.o + .debug_macro 0x00000000 0xc0 Src/Debug_led.o + .debug_macro 0x00000000 0x8c Src/Debug_led.o + .debug_macro 0x00000000 0x91 Src/Debug_led.o + .debug_macro 0x00000000 0x94 Src/Debug_led.o + .debug_macro 0x00000000 0x63 Src/Debug_led.o + .debug_macro 0x00000000 0xcf Src/Debug_led.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .group 0x00000000 0x8 Src/HTS221.o + .text 0x00000000 0x0 Src/HTS221.o + .data 0x00000000 0x0 Src/HTS221.o + .bss 0x00000000 0x0 Src/HTS221.o + .debug_macro 0x00000000 0x8aa Src/HTS221.o + .debug_macro 0x00000000 0x22 Src/HTS221.o + .debug_macro 0x00000000 0x52 Src/HTS221.o + .debug_macro 0x00000000 0x8d Src/HTS221.o + .debug_macro 0x00000000 0x35 Src/HTS221.o + .debug_macro 0x00000000 0x9c Src/HTS221.o + .debug_macro 0x00000000 0x174 Src/HTS221.o + .debug_macro 0x00000000 0x57 Src/HTS221.o + .debug_macro 0x00000000 0x58 Src/HTS221.o + .debug_macro 0x00000000 0x1f Src/HTS221.o + .debug_macro 0x00000000 0x43 Src/HTS221.o + .debug_macro 0x00000000 0x20 Src/HTS221.o + .debug_macro 0x00000000 0x187 Src/HTS221.o + .debug_macro 0x00000000 0x330 Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x35 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x29 Src/HTS221.o + .debug_macro 0x00000000 0x4c Src/HTS221.o + .debug_macro 0x00000000 0xef Src/HTS221.o + .debug_macro 0x00000000 0x6a Src/HTS221.o + .debug_macro 0x00000000 0x1df Src/HTS221.o + .debug_macro 0x00000000 0xa3 Src/HTS221.o + .debug_macro 0x00000000 0x2e Src/HTS221.o + .debug_macro 0x00000000 0x28 Src/HTS221.o + .debug_macro 0x00000000 0x3a Src/HTS221.o + .debug_macro 0x00000000 0x26 Src/HTS221.o + .debug_macro 0x00000000 0x44f Src/HTS221.o + .debug_macro 0x00000000 0x9cc0 Src/HTS221.o + .debug_macro 0x00000000 0x3c Src/HTS221.o + .debug_macro 0x00000000 0x34a2 Src/HTS221.o + .debug_macro 0x00000000 0x1c Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x1c Src/HTS221.o + .debug_macro 0x00000000 0x52 Src/HTS221.o + .debug_macro 0x00000000 0x40 Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x40 Src/HTS221.o + .debug_macro 0x00000000 0xd7 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x18b Src/HTS221.o + .debug_macro 0x00000000 0x50 Src/HTS221.o + .debug_macro 0x00000000 0x8e0 Src/HTS221.o + .debug_macro 0x00000000 0x9d4 Src/HTS221.o + .debug_macro 0x00000000 0x14d Src/HTS221.o + .debug_macro 0x00000000 0x184 Src/HTS221.o + .debug_macro 0x00000000 0x279 Src/HTS221.o + .debug_macro 0x00000000 0x1ef Src/HTS221.o + .debug_macro 0x00000000 0x12a Src/HTS221.o + .debug_macro 0x00000000 0x2b6 Src/HTS221.o + .debug_macro 0x00000000 0x202 Src/HTS221.o + .debug_macro 0x00000000 0x5b Src/HTS221.o + .debug_macro 0x00000000 0x90 Src/HTS221.o + .debug_macro 0x00000000 0x189 Src/HTS221.o + .debug_macro 0x00000000 0x16 Src/HTS221.o + .debug_macro 0x00000000 0x30c Src/HTS221.o + .debug_macro 0x00000000 0x3f1 Src/HTS221.o + .debug_macro 0x00000000 0xdd Src/HTS221.o + .debug_macro 0x00000000 0x54a Src/HTS221.o + .debug_macro 0x00000000 0x44 Src/HTS221.o + .debug_macro 0x00000000 0x280 Src/HTS221.o + .debug_macro 0x00000000 0x10 Src/HTS221.o + .debug_macro 0x00000000 0x165 Src/HTS221.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .group 0x00000000 0x8 Src/freertos.o + .text 0x00000000 0x0 Src/freertos.o + .data 0x00000000 0x0 Src/freertos.o + .bss 0x00000000 0x0 Src/freertos.o + .debug_info 0x00000000 0x8c4 Src/freertos.o + .debug_abbrev 0x00000000 0x18e Src/freertos.o + .debug_aranges + 0x00000000 0x18 Src/freertos.o + .debug_macro 0x00000000 0x1cd Src/freertos.o + .debug_macro 0x00000000 0x8aa Src/freertos.o + .debug_macro 0x00000000 0x174 Src/freertos.o + .debug_macro 0x00000000 0x22 Src/freertos.o + .debug_macro 0x00000000 0x87 Src/freertos.o + .debug_macro 0x00000000 0x51 Src/freertos.o + .debug_macro 0x00000000 0xef Src/freertos.o + .debug_macro 0x00000000 0x6a Src/freertos.o + .debug_macro 0x00000000 0x1df Src/freertos.o + .debug_macro 0x00000000 0x58 Src/freertos.o + .debug_macro 0x00000000 0x35 Src/freertos.o + .debug_macro 0x00000000 0x9c Src/freertos.o + .debug_macro 0x00000000 0x58 Src/freertos.o + .debug_macro 0x00000000 0x1f Src/freertos.o + .debug_macro 0x00000000 0x43 Src/freertos.o + .debug_macro 0x00000000 0x20 Src/freertos.o + .debug_macro 0x00000000 0x187 Src/freertos.o + .debug_macro 0x00000000 0x330 Src/freertos.o + .debug_macro 0x00000000 0x10 Src/freertos.o + .debug_macro 0x00000000 0x35 Src/freertos.o + .debug_macro 0x00000000 0x16 Src/freertos.o + .debug_macro 0x00000000 0x16 Src/freertos.o + .debug_macro 0x00000000 0x29 Src/freertos.o + .debug_macro 0x00000000 0x4c Src/freertos.o + .debug_macro 0x00000000 0xd2 Src/freertos.o + .debug_macro 0x00000000 0x168 Src/freertos.o + .debug_macro 0x00000000 0xb6 Src/freertos.o + .debug_macro 0x00000000 0x10 Src/freertos.o + .debug_macro 0x00000000 0x1f Src/freertos.o + .debug_macro 0x00000000 0x416 Src/freertos.o + .debug_macro 0x00000000 0xc0 Src/freertos.o + .debug_macro 0x00000000 0x8c Src/freertos.o + .debug_line 0x00000000 0x514 Src/freertos.o + .debug_str 0x00000000 0x982c Src/freertos.o + .comment 0x00000000 0x80 Src/freertos.o + .ARM.attributes + 0x00000000 0x32 Src/freertos.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .group 0x00000000 0x8 Src/main.o + .text 0x00000000 0x0 Src/main.o + .data 0x00000000 0x0 Src/main.o + .text.vApplicationTickHook + 0x00000000 0x2 Src/main.o + .debug_macro 0x00000000 0x8aa Src/main.o + .debug_macro 0x00000000 0x22 Src/main.o + .debug_macro 0x00000000 0x52 Src/main.o + .debug_macro 0x00000000 0x8d Src/main.o + .debug_macro 0x00000000 0x35 Src/main.o + .debug_macro 0x00000000 0x9c Src/main.o + .debug_macro 0x00000000 0x174 Src/main.o + .debug_macro 0x00000000 0x57 Src/main.o + .debug_macro 0x00000000 0x58 Src/main.o + .debug_macro 0x00000000 0x1f Src/main.o + .debug_macro 0x00000000 0x43 Src/main.o + .debug_macro 0x00000000 0x20 Src/main.o + .debug_macro 0x00000000 0x187 Src/main.o + .debug_macro 0x00000000 0x330 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x35 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x29 Src/main.o + .debug_macro 0x00000000 0x4c Src/main.o + .debug_macro 0x00000000 0xa3 Src/main.o + .debug_macro 0x00000000 0x2e Src/main.o + .debug_macro 0x00000000 0x28 Src/main.o + .debug_macro 0x00000000 0xef Src/main.o + .debug_macro 0x00000000 0x6a Src/main.o + .debug_macro 0x00000000 0x1df Src/main.o + .debug_macro 0x00000000 0x34 Src/main.o + .debug_macro 0x00000000 0x26 Src/main.o + .debug_macro 0x00000000 0x44f Src/main.o + .debug_macro 0x00000000 0x9cc0 Src/main.o + .debug_macro 0x00000000 0x3c Src/main.o + .debug_macro 0x00000000 0x34a2 Src/main.o + .debug_macro 0x00000000 0x1c Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x1c Src/main.o + .debug_macro 0x00000000 0x52 Src/main.o + .debug_macro 0x00000000 0x40 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x40 Src/main.o + .debug_macro 0x00000000 0xd7 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x18b Src/main.o + .debug_macro 0x00000000 0x50 Src/main.o + .debug_macro 0x00000000 0x8e0 Src/main.o + .debug_macro 0x00000000 0x9d4 Src/main.o + .debug_macro 0x00000000 0x14d Src/main.o + .debug_macro 0x00000000 0x184 Src/main.o + .debug_macro 0x00000000 0x279 Src/main.o + .debug_macro 0x00000000 0x1ef Src/main.o + .debug_macro 0x00000000 0x12a Src/main.o + .debug_macro 0x00000000 0x2b6 Src/main.o + .debug_macro 0x00000000 0x202 Src/main.o + .debug_macro 0x00000000 0x5b Src/main.o + .debug_macro 0x00000000 0x90 Src/main.o + .debug_macro 0x00000000 0x189 Src/main.o + .debug_macro 0x00000000 0x16 Src/main.o + .debug_macro 0x00000000 0x30c Src/main.o + .debug_macro 0x00000000 0x3f1 Src/main.o + .debug_macro 0x00000000 0xdd Src/main.o + .debug_macro 0x00000000 0x54a Src/main.o + .debug_macro 0x00000000 0x44 Src/main.o + .debug_macro 0x00000000 0x280 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x165 Src/main.o + .debug_macro 0x00000000 0xd8 Src/main.o + .debug_macro 0x00000000 0x168 Src/main.o + .debug_macro 0x00000000 0xb6 Src/main.o + .debug_macro 0x00000000 0x10 Src/main.o + .debug_macro 0x00000000 0x1f Src/main.o + .debug_macro 0x00000000 0x416 Src/main.o + .debug_macro 0x00000000 0xc0 Src/main.o + .debug_macro 0x00000000 0x8c Src/main.o + .debug_macro 0x00000000 0x91 Src/main.o + .debug_macro 0x00000000 0x94 Src/main.o + .debug_macro 0x00000000 0x63 Src/main.o + .debug_macro 0x00000000 0xcf Src/main.o + .debug_macro 0x00000000 0x22 Src/main.o + .debug_macro 0x00000000 0x15a Src/main.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_hal_msp.o + .text 0x00000000 0x0 Src/stm32l0xx_hal_msp.o + .data 0x00000000 0x0 Src/stm32l0xx_hal_msp.o + .bss 0x00000000 0x0 Src/stm32l0xx_hal_msp.o + .text.HAL_I2C_MspDeInit + 0x00000000 0x34 Src/stm32l0xx_hal_msp.o + .text.HAL_RTC_MspDeInit + 0x00000000 0x24 Src/stm32l0xx_hal_msp.o + .text.HAL_IRDA_MspDeInit + 0x00000000 0x30 Src/stm32l0xx_hal_msp.o + .text.HAL_UART_MspDeInit + 0x00000000 0x30 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x8aa Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x22 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x8d Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x9c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x174 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x57 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x58 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x43 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x20 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x187 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x330 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x29 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x4c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xa3 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x2e Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x28 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xef Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x6a Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1df Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x34 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x26 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x44f Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x3c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xd7 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x18b Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x50 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x8e0 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x9d4 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x14d Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x184 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x279 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x1ef Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x12a Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x2b6 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x202 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x5b Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x90 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x189 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x30c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x3f1 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0xdd Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x54a Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x44 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x280 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_hal_msp.o + .debug_macro 0x00000000 0x165 Src/stm32l0xx_hal_msp.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/stm32l0xx_it.o + .text 0x00000000 0x0 Src/stm32l0xx_it.o + .data 0x00000000 0x0 Src/stm32l0xx_it.o + .bss 0x00000000 0x0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x8aa Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x22 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x8d Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x9c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x174 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x57 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x58 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x43 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x20 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x187 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x330 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x35 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x29 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x4c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xa3 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x2e Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x28 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xef Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x6a Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1df Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x34 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x26 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x44f Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x9cc0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x3c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x34a2 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x52 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x40 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xd7 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x18b Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x50 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x8e0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x9d4 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x14d Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x184 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x279 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1ef Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x12a Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x2b6 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x202 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x5b Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x90 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x189 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x16 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x30c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x3f1 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xdd Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x54a Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x44 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x280 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x165 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xd8 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x168 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xb6 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x10 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x1f Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x416 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xc0 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x8c Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x91 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x94 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0x63 Src/stm32l0xx_it.o + .debug_macro 0x00000000 0xcf Src/stm32l0xx_it.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .group 0x00000000 0x8 Src/system_stm32l0xx.o + .text 0x00000000 0x0 Src/system_stm32l0xx.o + .bss 0x00000000 0x0 Src/system_stm32l0xx.o + .text.SystemCoreClockUpdate + 0x00000000 0xc8 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x8aa Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x2e Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x28 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x22 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x87 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x51 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xef Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x6a Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1df Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x34 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x26 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x44f Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x9cc0 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x3c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x58 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x35 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x9c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x174 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x58 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1f Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x43 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x20 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x187 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x330 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x35 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x29 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x4c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xa3 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x34a2 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x52 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x40 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x40 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xd7 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x18b Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x50 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x8e0 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x9d4 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x14d Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x184 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x279 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x1ef Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x12a Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x2b6 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x202 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x5b Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x90 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x189 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x16 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x30c Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x3f1 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0xdd Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x54a Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x44 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x280 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x10 Src/system_stm32l0xx.o + .debug_macro 0x00000000 0x165 Src/system_stm32l0xx.o + .text 0x00000000 0x14 startup/startup_stm32l053xx.o + .data 0x00000000 0x0 startup/startup_stm32l053xx.o + .bss 0x00000000 0x0 startup/startup_stm32l053xx.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivsi3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivsi3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_dvmd_tls.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_dvmd_tls.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_aeabi_uldivmod.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_aeabi_uldivmod.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + .ARM.extab 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(fixsfsi.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(fixsfsi.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(adddf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(adddf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(divdf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(divdf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(muldf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(muldf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(subdf3.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(subdf3.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(floatsidf.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(floatsidf.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(truncdfsf2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(truncdfsf2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzsi2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzsi2.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzdi2.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzdi2.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) + .text.exit 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) + .debug_frame 0x00000000 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) + .ARM.attributes + 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-exit.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + .rodata._global_impure_ptr + 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-init.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-init.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-init.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memcpy-stub.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memcpy-stub.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memcpy-stub.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memset.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memset.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memset.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcat.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcat.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcat.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcmp.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcmp.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcpy.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcpy.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcpy.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strlen.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strlen.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + .text.utoa 0x00000000 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + .text.cleanup_glue + 0x00000000 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + .text._reclaim_reent + 0x00000000 0xcc c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(_exit.o) + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(_exit.o) + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(_exit.o) + .text._exit 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(_exit.o) + .debug_frame 0x00000000 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(_exit.o) + .ARM.attributes + 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(_exit.o) + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtend.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtend.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtend.o + .eh_frame 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtend.o + .jcr 0x00000000 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtend.o + .ARM.attributes + 0x00000000 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtend.o + .text 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtn.o + .data 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtn.o + .bss 0x00000000 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtn.o + +Memory Configuration + +Name Origin Length Attributes +RAM 0x20000000 0x00002000 xrw +FLASH 0x08000000 0x00010000 xr +*default* 0x00000000 0xffffffff + +Linker script and memory map + +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crti.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/crt0.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_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_irda.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_rtc.o +LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_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_hal_uart.o +LOAD Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o +LOAD Middlewares/MemoryManager/NVM_Manager.o +LOAD Middlewares/SerialManager/console.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/croutine.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/event_groups.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/list.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/queue.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/tasks.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/timers.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o +LOAD Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o +LOAD Src/Debug_led.o +LOAD Src/HTS221.o +LOAD Src/freertos.o +LOAD Src/main.o +LOAD Src/stm32l0xx_hal_msp.o +LOAD Src/stm32l0xx_it.o +LOAD Src/system_stm32l0xx.o +LOAD startup/startup_stm32l053xx.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libm.a +START GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a +END GROUP +START GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a +END GROUP +START GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a +END GROUP +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtend.o +LOAD c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtn.o + 0x20002000 _estack = 0x20002000 + 0x00000200 _Min_Heap_Size = 0x200 + 0x00000400 _Min_Stack_Size = 0x400 + +.isr_vector 0x08000000 0xc0 + 0x08000000 . = ALIGN (0x4) + *(.isr_vector) + .isr_vector 0x08000000 0xc0 startup/startup_stm32l053xx.o + 0x08000000 g_pfnVectors + 0x080000c0 . = ALIGN (0x4) + +.text 0x080000c0 0x7244 + 0x080000c0 . = ALIGN (0x4) + *(.text) + .text 0x080000c0 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + .text 0x08000120 0x114 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivsi3.o) + 0x08000120 __aeabi_uidiv + 0x08000120 __udivsi3 + 0x0800022c __aeabi_uidivmod + .text 0x08000234 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_dvmd_tls.o) + 0x08000234 __aeabi_idiv0 + 0x08000234 __aeabi_ldiv0 + .text 0x08000238 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_aeabi_uldivmod.o) + 0x08000238 __aeabi_uldivmod + .text 0x08000278 0x180 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + 0x08000278 __udivmoddi4 + .text 0x080003f8 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(fixsfsi.o) + 0x080003f8 __aeabi_f2iz + .text 0x08000438 0x620 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(adddf3.o) + 0x08000438 __aeabi_dadd + .text 0x08000a58 0x668 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(divdf3.o) + 0x08000a58 __aeabi_ddiv + .text 0x080010c0 0x500 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(muldf3.o) + 0x080010c0 __aeabi_dmul + .text 0x080015c0 0x62c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(subdf3.o) + 0x080015c0 __aeabi_dsub + .text 0x08001bec 0x84 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(floatsidf.o) + 0x08001bec __aeabi_i2d + .text 0x08001c70 0x114 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(truncdfsf2.o) + 0x08001c70 __aeabi_d2f + .text 0x08001d84 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzsi2.o) + 0x08001d84 __clzsi2 + .text 0x08001dc0 0x18 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzdi2.o) + 0x08001dc0 __clzdi2 + .text 0x08001dd8 0x14 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcmp.o) + 0x08001dd8 strcmp + .text 0x08001dec 0xe c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strlen.o) + 0x08001dec strlen + *(.text*) + *fill* 0x08001dfa 0x2 + .text.HAL_InitTick + 0x08001dfc 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001dfc HAL_InitTick + .text.HAL_Init + 0x08001e24 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001e24 HAL_Init + .text.HAL_IncTick + 0x08001e44 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001e44 HAL_IncTick + .text.HAL_GetTick + 0x08001e54 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001e54 HAL_GetTick + .text.HAL_Delay + 0x08001e60 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x08001e60 HAL_Delay + .text.HAL_NVIC_SetPriority + 0x08001e7c 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001e7c HAL_NVIC_SetPriority + .text.HAL_NVIC_EnableIRQ + 0x08001ee0 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001ee0 HAL_NVIC_EnableIRQ + .text.HAL_SYSTICK_Config + 0x08001ef4 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001ef4 HAL_SYSTICK_Config + .text.HAL_SYSTICK_CLKSourceConfig + 0x08001f2c 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x08001f2c HAL_SYSTICK_CLKSourceConfig + .text.HAL_DMA_Abort_IT + 0x08001f4c 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + 0x08001f4c HAL_DMA_Abort_IT + .text.FLASH_SetErrorCode + 0x08001ff8 0xb4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .text.FLASH_WaitForLastOperation + 0x080020ac 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x080020ac FLASH_WaitForLastOperation + .text.HAL_FLASHEx_DATAEEPROM_Unlock + 0x08002130 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002130 HAL_FLASHEx_DATAEEPROM_Unlock + .text.HAL_FLASHEx_DATAEEPROM_Lock + 0x08002158 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002158 HAL_FLASHEx_DATAEEPROM_Lock + .text.HAL_FLASHEx_DATAEEPROM_Erase + 0x0800216c 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x0800216c HAL_FLASHEx_DATAEEPROM_Erase + .text.HAL_FLASHEx_DATAEEPROM_Program + 0x08002194 0x64 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x08002194 HAL_FLASHEx_DATAEEPROM_Program + .text.HAL_GPIO_Init + 0x080021f8 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x080021f8 HAL_GPIO_Init + .text.HAL_GPIO_WritePin + 0x08002390 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x08002390 HAL_GPIO_WritePin + .text.HAL_GPIO_TogglePin + 0x0800239c 0x8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x0800239c HAL_GPIO_TogglePin + .text.I2C_Flush_TXDR + 0x080023a4 0x1e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + *fill* 0x080023c2 0x2 + .text.I2C_TransferConfig + 0x080023c4 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_IsAcknowledgeFailed + 0x080023e8 0x78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnTXISFlagUntilTimeout + 0x08002460 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnFlagUntilTimeout + 0x080024b2 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_RequestMemoryWrite + 0x080024fa 0x84 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_RequestMemoryRead + 0x0800257e 0x82 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .text.I2C_WaitOnSTOPFlagUntilTimeout + 0x08002600 0x4e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + *fill* 0x0800264e 0x2 + .text.HAL_I2C_Init + 0x08002650 0xcc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x08002650 HAL_I2C_Init + .text.HAL_I2C_Mem_Write + 0x0800271c 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x0800271c HAL_I2C_Mem_Write + .text.HAL_I2C_Mem_Read + 0x080028e0 0x1cc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x080028e0 HAL_I2C_Mem_Read + .text.HAL_I2CEx_ConfigAnalogFilter + 0x08002aac 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002aac HAL_I2CEx_ConfigAnalogFilter + .text.HAL_I2CEx_ConfigDigitalFilter + 0x08002b04 0x54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x08002b04 HAL_I2CEx_ConfigDigitalFilter + .text.IRDA_SetConfig + 0x08002b58 0x18c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_WaitOnFlagUntilTimeout + 0x08002ce4 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .text.IRDA_CheckIdleState + 0x08002d50 0x6e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + *fill* 0x08002dbe 0x2 + .text.HAL_IRDA_Init + 0x08002dc0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x08002dc0 HAL_IRDA_Init + .text.RCC_SetFlashLatencyFromMSIRange + 0x08002e2c 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .text.HAL_RCC_OscConfig + 0x08002eac 0x574 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08002eac HAL_RCC_OscConfig + .text.HAL_RCC_GetSysClockFreq + 0x08003420 0x94 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003420 HAL_RCC_GetSysClockFreq + .text.HAL_RCC_ClockConfig + 0x080034b4 0x1a0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x080034b4 HAL_RCC_ClockConfig + .text.HAL_RCC_GetHCLKFreq + 0x08003654 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003654 HAL_RCC_GetHCLKFreq + .text.HAL_RCC_GetPCLK1Freq + 0x08003660 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003660 HAL_RCC_GetPCLK1Freq + .text.HAL_RCC_GetPCLK2Freq + 0x08003680 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x08003680 HAL_RCC_GetPCLK2Freq + .text.HAL_RCCEx_PeriphCLKConfig + 0x080036a0 0x1fc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x080036a0 HAL_RCCEx_PeriphCLKConfig + .text.HAL_RCCEx_GetPeriphCLKFreq + 0x0800389c 0x268 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x0800389c HAL_RCCEx_GetPeriphCLKFreq + .text.HAL_RTC_WaitForSynchro + 0x08003b04 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b04 HAL_RTC_WaitForSynchro + .text.RTC_EnterInitMode + 0x08003b36 0x3a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b36 RTC_EnterInitMode + .text.HAL_RTC_Init + 0x08003b70 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003b70 HAL_RTC_Init + .text.RTC_ByteToBcd2 + 0x08003c1c 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003c1c RTC_ByteToBcd2 + *fill* 0x08003c32 0x2 + .text.HAL_RTC_SetTime + 0x08003c34 0x10c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003c34 HAL_RTC_SetTime + .text.HAL_RTC_SetDate + 0x08003d40 0xec Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003d40 HAL_RTC_SetDate + .text.RTC_Bcd2ToByte + 0x08003e2c 0x12 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003e2c RTC_Bcd2ToByte + *fill* 0x08003e3e 0x2 + .text.HAL_RTC_GetTime + 0x08003e40 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003e40 HAL_RTC_GetTime + .text.HAL_RTC_GetDate + 0x08003e98 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x08003e98 HAL_RTC_GetDate + .text.HAL_RTCEx_SetWakeUpTimer_IT + 0x08003ee0 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003ee0 HAL_RTCEx_SetWakeUpTimer_IT + .text.HAL_RTCEx_WakeUpTimerEventCallback + 0x08003ff0 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003ff0 HAL_RTCEx_WakeUpTimerEventCallback + *fill* 0x08003ff2 0x2 + .text.HAL_RTCEx_WakeUpTimerIRQHandler + 0x08003ff4 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08003ff4 HAL_RTCEx_WakeUpTimerIRQHandler + .text.HAL_RTCEx_BKUPWrite + 0x0800402c 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x0800402c HAL_RTCEx_BKUPWrite + .text.HAL_RTCEx_BKUPRead + 0x08004038 0xc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x08004038 HAL_RTCEx_BKUPRead + .text.UART_EndRxTransfer + 0x08004044 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_Transmit_IT + 0x08004068 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_Receive_IT + 0x080040d4 0xd4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080040d4 HAL_UART_Receive_IT + .text.HAL_UART_TxCpltCallback + 0x080041a8 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080041a8 HAL_UART_TxCpltCallback + .text.UART_EndTransmit_IT + 0x080041aa 0x1a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_RxCpltCallback + 0x080041c4 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080041c4 HAL_UART_RxCpltCallback + *fill* 0x080041c6 0x2 + .text.UART_Receive_IT + 0x080041c8 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.HAL_UART_ErrorCallback + 0x08004250 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004250 HAL_UART_ErrorCallback + *fill* 0x08004252 0x2 + .text.HAL_UART_IRQHandler + 0x08004254 0x144 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004254 HAL_UART_IRQHandler + .text.UART_DMAAbortOnError + 0x08004398 0x14 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .text.UART_SetConfig + 0x080043ac 0x334 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080043ac UART_SetConfig + .text.UART_AdvFeatureConfig + 0x080046e0 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080046e0 UART_AdvFeatureConfig + .text.UART_WaitOnFlagUntilTimeout + 0x080047c0 0x6c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x080047c0 UART_WaitOnFlagUntilTimeout + .text.HAL_UART_Transmit + 0x0800482c 0xe2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x0800482c HAL_UART_Transmit + *fill* 0x0800490e 0x2 + .text.UART_CheckIdleState + 0x08004910 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004910 UART_CheckIdleState + .text.HAL_UART_Init + 0x08004980 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x08004980 HAL_UART_Init + .text.HAL_UARTEx_WakeupCallback + 0x080049f0 0x2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + 0x080049f0 HAL_UARTEx_WakeupCallback + *fill* 0x080049f2 0x2 + .text.EEPROM_Clean + 0x080049f4 0x28 Middlewares/MemoryManager/NVM_Manager.o + .text.task_EepromManager + 0x08004a1c 0x78 Middlewares/MemoryManager/NVM_Manager.o + 0x08004a1c task_EepromManager + .text.EEPROM_Initialize + 0x08004a94 0x58 Middlewares/MemoryManager/NVM_Manager.o + 0x08004a94 EEPROM_Initialize + .text._swReply + 0x08004aec 0x44 Middlewares/SerialManager/console.o + 0x08004aec _swReply + .text._cbTaskConsole + 0x08004b30 0x10c Middlewares/SerialManager/console.o + 0x08004b30 _cbTaskConsole + .text.Console_link + 0x08004c3c 0x7c Middlewares/SerialManager/console.o + 0x08004c3c Console_link + .text.Console_NVIC + 0x08004cb8 0x90 Middlewares/SerialManager/console.o + 0x08004cb8 Console_NVIC + .text.makeFreeRtosPriority + 0x08004d48 0xc Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.inHandlerMode + 0x08004d54 0xa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .text.osKernelStart + 0x08004d5e 0xa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004d5e osKernelStart + .text.osKernelSysTick + 0x08004d68 0x16 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004d68 osKernelSysTick + .text.osThreadCreate + 0x08004d7e 0x34 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004d7e osThreadCreate + .text.osMutexCreate + 0x08004db2 0xa Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004db2 osMutexCreate + .text.osMutexWait + 0x08004dbc 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004dbc osMutexWait + .text.osMutexRelease + 0x08004e28 0x58 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004e28 osMutexRelease + .text.osSemaphoreCreate + 0x08004e80 0x26 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004e80 osSemaphoreCreate + *fill* 0x08004ea6 0x2 + .text.osSemaphoreWait + 0x08004ea8 0x6c Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004ea8 osSemaphoreWait + .text.osSystickHandler + 0x08004f14 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004f14 osSystickHandler + .text.osDelayUntil + 0x08004f24 0x10 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0x08004f24 osDelayUntil + .text.vListInitialise + 0x08004f34 0x16 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004f34 vListInitialise + .text.vListInitialiseItem + 0x08004f4a 0x6 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004f4a vListInitialiseItem + .text.vListInsertEnd + 0x08004f50 0x18 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004f50 vListInsertEnd + .text.vListInsert + 0x08004f68 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004f68 vListInsert + .text.uxListRemove + 0x08004f98 0x26 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x08004f98 uxListRemove + .text.prvIsQueueFull + 0x08004fbe 0x1e Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvIsQueueEmpty + 0x08004fdc 0x1c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvCopyDataToQueue + 0x08004ff8 0x82 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvNotifyQueueSetContainer + 0x0800507a 0x60 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvCopyDataFromQueue + 0x080050da 0x24 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.prvUnlockQueue + 0x080050fe 0x8a Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueGenericReset + 0x08005188 0x6e Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08005188 xQueueGenericReset + .text.prvInitialiseNewQueue + 0x080051f6 0x26 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueGenericCreate + 0x0800521c 0x3e Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800521c xQueueGenericCreate + .text.xQueueGenericSend + 0x0800525a 0x158 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0800525a xQueueGenericSend + .text.prvInitialiseMutex + 0x080053b2 0x18 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .text.xQueueCreateMutex + 0x080053ca 0x16 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080053ca xQueueCreateMutex + .text.xQueueGenericSendFromISR + 0x080053e0 0xd8 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080053e0 xQueueGenericSendFromISR + .text.xQueueGiveFromISR + 0x080054b8 0xba Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080054b8 xQueueGiveFromISR + .text.xQueueGenericReceive + 0x08005572 0x17e Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x08005572 xQueueGenericReceive + .text.xQueueReceiveFromISR + 0x080056f0 0x96 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x080056f0 xQueueReceiveFromISR + *fill* 0x08005786 0x2 + .text.prvResetNextTaskUnblockTime + 0x08005788 0x30 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvDeleteTCB + 0x080057b8 0x12 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x080057ca 0x2 + .text.prvInitialiseNewTask + 0x080057cc 0x9c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvInitialiseTaskLists + 0x08005868 0x58 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvAddNewTaskToReadyList + 0x080058c0 0x94 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvAddCurrentTaskToDelayedList + 0x08005954 0x6c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.xTaskCreate + 0x080059c0 0x5e Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x080059c0 xTaskCreate + *fill* 0x08005a1e 0x2 + .text.uxTaskPriorityGet + 0x08005a20 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005a20 uxTaskPriorityGet + .text.vTaskStartScheduler + 0x08005a40 0x54 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005a40 vTaskStartScheduler + .text.vTaskSuspendAll + 0x08005a94 0x10 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005a94 vTaskSuspendAll + .text.xTaskGetTickCount + 0x08005aa4 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005aa4 xTaskGetTickCount + .text.xTaskGetTickCountFromISR + 0x08005ab0 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005ab0 xTaskGetTickCountFromISR + .text.xTaskIncrementTick + 0x08005abc 0x100 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005abc xTaskIncrementTick + .text.xTaskResumeAll + 0x08005bbc 0xd8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005bbc xTaskResumeAll + .text.vTaskDelayUntil + 0x08005c94 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005c94 vTaskDelayUntil + .text.prvCheckTasksWaitingTermination + 0x08005d0c 0x50 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.prvIdleTask + 0x08005d5c 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .text.vTaskSwitchContext + 0x08005d74 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005d74 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x08005df4 0x24 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005df4 vTaskPlaceOnEventList + .text.xTaskRemoveFromEventList + 0x08005e18 0x78 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005e18 xTaskRemoveFromEventList + .text.vTaskSetTimeOutState + 0x08005e90 0x18 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005e90 vTaskSetTimeOutState + .text.xTaskCheckForTimeOut + 0x08005ea8 0x64 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005ea8 xTaskCheckForTimeOut + .text.vTaskMissedYield + 0x08005f0c 0xc Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005f0c vTaskMissedYield + .text.xTaskGetSchedulerState + 0x08005f18 0x20 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005f18 xTaskGetSchedulerState + .text.vTaskPriorityInherit + 0x08005f38 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005f38 vTaskPriorityInherit + .text.xTaskPriorityDisinherit + 0x08005fb8 0x74 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x08005fb8 xTaskPriorityDisinherit + .text.pvTaskIncrementMutexHeldCount + 0x0800602c 0x1c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0800602c pvTaskIncrementMutexHeldCount + .text.prvTaskExitError + 0x08006048 0x14 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + *fill* 0x0800605c 0x4 + .text.vPortStartFirstTask + 0x08006060 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .text.pxPortInitialiseStack + 0x08006094 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08006094 pxPortInitialiseStack + .text.SVC_Handler + 0x080060b4 0x2 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080060b4 SVC_Handler + *fill* 0x080060b6 0x2 + .text.vPortYield + 0x080060b8 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080060b8 vPortYield + .text.vPortEnterCritical + 0x080060d0 0x18 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080060d0 vPortEnterCritical + .text.vPortExitCritical + 0x080060e8 0x20 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080060e8 vPortExitCritical + .text.ulSetInterruptMaskFromISR + 0x08006108 0xa Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08006108 ulSetInterruptMaskFromISR + .text.vClearInterruptMaskFromISR + 0x08006112 0x6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08006112 vClearInterruptMaskFromISR + *fill* 0x08006118 0x8 + .text.PendSV_Handler + 0x08006120 0x44 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08006120 PendSV_Handler + .text.xPortSysTickHandler + 0x08006164 0x24 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08006164 xPortSysTickHandler + .text.vPortSetupTimerInterrupt + 0x08006188 0x28 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x08006188 vPortSetupTimerInterrupt + .text.xPortStartScheduler + 0x080061b0 0x34 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x080061b0 xPortStartScheduler + .text.prvHeapInit + 0x080061e4 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.prvInsertBlockIntoFreeList + 0x08006234 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.pvPortMalloc + 0x08006284 0xc8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x08006284 pvPortMalloc + .text.vPortFree + 0x0800634c 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x0800634c vPortFree + .text.LED_HeartBeat + 0x0800639c 0x58 Src/Debug_led.o + 0x0800639c LED_HeartBeat + .text.HeartBeat_LED_Init + 0x080063f4 0x3c Src/Debug_led.o + 0x080063f4 HeartBeat_LED_Init + .text.HTS221_I2C_Read + 0x08006430 0x24 Src/HTS221.o + .text.HTS221_I2C_Read_return + 0x08006454 0x1a Src/HTS221.o + .text.HTS221_CheckAvailable + 0x0800646e 0x14 Src/HTS221.o + *fill* 0x08006482 0x2 + .text.HTS221_GetCoefficient + 0x08006484 0xb0 Src/HTS221.o + .text.HTS221_EnableDevice + 0x08006534 0x2c Src/HTS221.o + .text.HTS221_I2C_Write + 0x08006560 0x24 Src/HTS221.o + .text.HTS221_ConfigDevice + 0x08006584 0x36 Src/HTS221.o + 0x08006584 HTS221_ConfigDevice + *fill* 0x080065ba 0x2 + .text.HTS221_Init + 0x080065bc 0x2c Src/HTS221.o + 0x080065bc HTS221_Init + .text.HTS221_GetHumidity + 0x080065e8 0x9c Src/HTS221.o + 0x080065e8 HTS221_GetHumidity + .text.HTS221_GetTemperature + 0x08006684 0x9c Src/HTS221.o + 0x08006684 HTS221_GetTemperature + .text.MX_GPIO_Init + 0x08006720 0x8c Src/main.o + .text.func_NVM_Manager + 0x080067ac 0xdc Src/main.o + 0x080067ac func_NVM_Manager + .text.func_UartPrint + 0x08006888 0x1cc Src/main.o + 0x08006888 func_UartPrint + .text.func_SensorRead + 0x08006a54 0x84 Src/main.o + 0x08006a54 func_SensorRead + .text.Error_Handler + 0x08006ad8 0xa Src/main.o + 0x08006ad8 Error_Handler + *fill* 0x08006ae2 0x2 + .text.MX_RTC_Init + 0x08006ae4 0x90 Src/main.o + .text.MX_USART2_UART_Init + 0x08006b74 0x38 Src/main.o + .text.MX_USART1_IRDA_Init + 0x08006bac 0x38 Src/main.o + .text.MX_I2C1_Init + 0x08006be4 0x58 Src/main.o + .text.SystemClock_Config + 0x08006c3c 0xa4 Src/main.o + 0x08006c3c SystemClock_Config + .text.main 0x08006ce0 0xf4 Src/main.o + 0x08006ce0 main + .text.HAL_MspInit + 0x08006dd4 0x40 Src/stm32l0xx_hal_msp.o + 0x08006dd4 HAL_MspInit + .text.HAL_I2C_MspInit + 0x08006e14 0x48 Src/stm32l0xx_hal_msp.o + 0x08006e14 HAL_I2C_MspInit + .text.HAL_RTC_MspInit + 0x08006e5c 0x20 Src/stm32l0xx_hal_msp.o + 0x08006e5c HAL_RTC_MspInit + .text.HAL_IRDA_MspInit + 0x08006e7c 0x48 Src/stm32l0xx_hal_msp.o + 0x08006e7c HAL_IRDA_MspInit + .text.HAL_UART_MspInit + 0x08006ec4 0x44 Src/stm32l0xx_hal_msp.o + 0x08006ec4 HAL_UART_MspInit + .text.SysTick_Handler + 0x08006f08 0xc Src/stm32l0xx_it.o + 0x08006f08 SysTick_Handler + .text.RTC_IRQHandler + 0x08006f14 0x10 Src/stm32l0xx_it.o + 0x08006f14 RTC_IRQHandler + .text.USART2_IRQHandler + 0x08006f24 0x18 Src/stm32l0xx_it.o + 0x08006f24 USART2_IRQHandler + .text.SystemInit + 0x08006f3c 0x5c Src/system_stm32l0xx.o + 0x08006f3c SystemInit + .text.Reset_Handler + 0x08006f98 0x50 startup/startup_stm32l053xx.o + 0x08006f98 Reset_Handler + .text.Default_Handler + 0x08006fe8 0x2 startup/startup_stm32l053xx.o + 0x08006fe8 TSC_IRQHandler + 0x08006fe8 HardFault_Handler + 0x08006fe8 ADC1_COMP_IRQHandler + 0x08006fe8 PVD_IRQHandler + 0x08006fe8 NMI_Handler + 0x08006fe8 I2C1_IRQHandler + 0x08006fe8 RCC_CRS_IRQHandler + 0x08006fe8 SPI1_IRQHandler + 0x08006fe8 TIM6_DAC_IRQHandler + 0x08006fe8 EXTI2_3_IRQHandler + 0x08006fe8 I2C2_IRQHandler + 0x08006fe8 LCD_IRQHandler + 0x08006fe8 DMA1_Channel4_5_6_7_IRQHandler + 0x08006fe8 EXTI4_15_IRQHandler + 0x08006fe8 DMA1_Channel1_IRQHandler + 0x08006fe8 Default_Handler + 0x08006fe8 TIM22_IRQHandler + 0x08006fe8 EXTI0_1_IRQHandler + 0x08006fe8 USB_IRQHandler + 0x08006fe8 SPI2_IRQHandler + 0x08006fe8 TIM21_IRQHandler + 0x08006fe8 WWDG_IRQHandler + 0x08006fe8 TIM2_IRQHandler + 0x08006fe8 DMA1_Channel2_3_IRQHandler + 0x08006fe8 FLASH_IRQHandler + 0x08006fe8 USART1_IRQHandler + 0x08006fe8 RNG_LPUART1_IRQHandler + 0x08006fe8 LPTIM1_IRQHandler + *fill* 0x08006fea 0x2 + .text.__libc_init_array + 0x08006fec 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-init.o) + 0x08006fec __libc_init_array + .text.__itoa 0x08007034 0x30 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + 0x08007034 __itoa + .text.itoa 0x08007064 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + 0x08007064 itoa + .text.malloc 0x0800706c 0x14 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + 0x0800706c malloc + .text.free 0x08007080 0x14 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + 0x08007080 free + .text.memcpy 0x08007094 0x12 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memcpy-stub.o) + 0x08007094 memcpy + .text.memset 0x080070a6 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memset.o) + 0x080070a6 memset + *fill* 0x080070b6 0x2 + .text._free_r 0x080070b8 0x94 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) + 0x080070b8 _free_r + .text._malloc_r + 0x0800714c 0xbc c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + 0x0800714c _malloc_r + .text._sbrk_r 0x08007208 0x24 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) + 0x08007208 _sbrk_r + .text.strcat 0x0800722c 0x1a c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcat.o) + 0x0800722c strcat + .text.strcpy 0x08007246 0x10 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcpy.o) + 0x08007246 strcpy + *fill* 0x08007256 0x2 + .text.__utoa 0x08007258 0x74 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + 0x08007258 __utoa + .text.__malloc_lock + 0x080072cc 0x2 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + 0x080072cc __malloc_lock + .text.__malloc_unlock + 0x080072ce 0x2 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + 0x080072ce __malloc_unlock + .text._sbrk 0x080072d0 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) + 0x080072d0 _sbrk + *(.glue_7) + .glue_7 0x080072ec 0x0 linker stubs + *(.glue_7t) + .glue_7t 0x080072ec 0x0 linker stubs + *(.eh_frame) + .eh_frame 0x080072ec 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + *(.init) + .init 0x080072ec 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crti.o + 0x080072ec _init + .init 0x080072f0 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtn.o + *(.fini) + .fini 0x080072f8 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crti.o + 0x080072f8 _fini + .fini 0x080072fc 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtn.o + 0x08007304 . = ALIGN (0x4) + 0x08007304 _etext = . + +.vfp11_veneer 0x08007304 0x0 + .vfp11_veneer 0x08007304 0x0 linker stubs + +.v4_bx 0x08007304 0x0 + .v4_bx 0x08007304 0x0 linker stubs + +.iplt 0x08007304 0x0 + .iplt 0x08007304 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + +.rodata 0x08007304 0x320 + 0x08007304 . = ALIGN (0x4) + *(.rodata) + .rodata 0x08007304 0x24 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .rodata 0x08007328 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .rodata 0x08007370 0x14 Middlewares/MemoryManager/NVM_Manager.o + .rodata 0x08007384 0x14 Src/Debug_led.o + .rodata 0x08007398 0x3c Src/main.o + .rodata 0x080073d4 0x24 Src/system_stm32l0xx.o + 0x080073d4 PLLMulTable + 0x080073e0 AHBPrescTable + 0x080073f0 APBPrescTable + .rodata 0x080073f8 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(divdf3.o) + .rodata 0x08007438 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(muldf3.o) + *(.rodata*) + .rodata.str1.4 + 0x08007478 0xe Middlewares/MemoryManager/NVM_Manager.o + *fill* 0x08007486 0x2 + .rodata.str1.4 + 0x08007488 0xdb Middlewares/SerialManager/console.o + *fill* 0x08007563 0x1 + .rodata.str1.4 + 0x08007564 0x5 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x08007569 0x3 + .rodata.str1.4 + 0x0800756c 0xa Src/Debug_led.o + *fill* 0x08007576 0x2 + .rodata.str1.4 + 0x08007578 0x84 Src/main.o + 0x86 (size before relaxing) + .rodata.__utoa.str1.1 + 0x080075fc 0x25 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + 0x08007624 . = ALIGN (0x4) + *fill* 0x08007621 0x3 + +.ARM.extab + *(.ARM.extab* .gnu.linkonce.armextab.*) + +.ARM 0x08007624 0x8 + 0x08007624 __exidx_start = . + *(.ARM.exidx*) + .ARM.exidx 0x08007624 0x8 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + 0x0800762c __exidx_end = . + +.rel.dyn 0x0800762c 0x0 + .rel.iplt 0x0800762c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + +.preinit_array 0x0800762c 0x0 + 0x0800762c PROVIDE (__preinit_array_start, .) + *(.preinit_array*) + 0x0800762c PROVIDE (__preinit_array_end, .) + +.init_array 0x0800762c 0x4 + 0x0800762c PROVIDE (__init_array_start, .) + *(SORT(.init_array.*)) + *(.init_array*) + .init_array 0x0800762c 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + 0x08007630 PROVIDE (__init_array_end, .) + +.fini_array 0x08007630 0x4 + [!provide] PROVIDE (__fini_array_start, .) + *(SORT(.fini_array.*)) + *(.fini_array*) + .fini_array 0x08007630 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + [!provide] PROVIDE (__fini_array_end, .) + 0x08007634 _sidata = LOADADDR (.data) + +.data 0x20000000 0x6c load address 0x08007634 + 0x20000000 . = ALIGN (0x4) + 0x20000000 _sdata = . + *(.data) + .data 0x20000000 0x4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .data 0x20000004 0x4 Src/system_stm32l0xx.o + 0x20000004 SystemCoreClock + *(.data*) + .data._impure_ptr + 0x20000008 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + 0x20000008 _impure_ptr + .data.impure_data + 0x2000000c 0x60 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + 0x2000006c . = ALIGN (0x4) + 0x2000006c _edata = . + +.jcr 0x2000006c 0x0 load address 0x080076a0 + .jcr 0x2000006c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + +.igot.plt 0x2000006c 0x0 load address 0x080076a0 + .igot.plt 0x2000006c 0x0 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + 0x2000006c . = ALIGN (0x4) + +.bss 0x2000006c 0x172c load address 0x080076a0 + 0x2000006c _sbss = . + 0x2000006c __bss_start__ = _sbss + *(.bss) + .bss 0x2000006c 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + .bss 0x20000088 0x24 Middlewares/SerialManager/console.o + .bss 0x200000ac 0x12c Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x200001ac pxCurrentTCB + .bss 0x200001d8 0x1418 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .bss 0x200015f0 0x8 Src/Debug_led.o + .bss 0x200015f8 0x1 Src/main.o + 0x200015f8 updateCounter + *(.bss*) + *fill* 0x200015f9 0x3 + .bss.__malloc_free_list + 0x200015fc 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + 0x200015fc __malloc_free_list + .bss.__malloc_sbrk_start + 0x20001600 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + 0x20001600 __malloc_sbrk_start + .bss.heap_end.4116 + 0x20001604 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) + *(COMMON) + COMMON 0x20001608 0x4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x20001608 uwTick + COMMON 0x2000160c 0x18 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x2000160c pFlash + COMMON 0x20001624 0xc Middlewares/MemoryManager/NVM_Manager.o + 0x20001624 Task_ManagEeprom + 0x20001628 SemaEepromManager + 0x2000162c MutexEeprom + COMMON 0x20001630 0xc Middlewares/SerialManager/console.o + 0x20001630 QueueConsole + 0x20001634 MutexConsole + 0x20001638 Task_console + COMMON 0x2000163c 0x4 Src/Debug_led.o + 0x2000163c taskLED_HEARTBEAT + COMMON 0x20001640 0x14 Src/HTS221.o + 0x20001640 HTS221_CoefStruc + 0x20001650 HTS221_I2CHander + COMMON 0x20001654 0x140 Src/main.o + 0x20001654 hirda1 + 0x20001690 Task_ErrorCheck + 0x20001694 Task_UartSend + 0x20001698 Queue_number + 0x2000169c hi2c1 + 0x200016e8 Queue_SendTo_Uart + 0x200016ec Queue_SendTo_TaskNVM + 0x200016f0 thread1_counter + 0x200016f4 NVM_QueueSet + 0x200016f8 hrtc + 0x2000171c huart2 + 0x2000178c Task_SensorRead + 0x20001790 Task_NVM_ReadWrite + COMMON 0x20001794 0x4 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + 0x20001794 errno + 0x20001798 . = ALIGN (0x4) + 0x20001798 _ebss = . + 0x20001798 __bss_end__ = _ebss + +._user_heap_stack + 0x20001798 0x600 load address 0x080076a0 + 0x20001798 . = ALIGN (0x8) + 0x20001798 PROVIDE (end, .) + [!provide] PROVIDE (_end, .) + 0x20001998 . = (. + _Min_Heap_Size) + *fill* 0x20001798 0x200 + 0x20001d98 . = (. + _Min_Stack_Size) + *fill* 0x20001998 0x400 + 0x20001d98 . = ALIGN (0x8) + +/DISCARD/ + libc.a(*) + libm.a(*) + libgcc.a(*) + +.ARM.attributes + 0x00000000 0x28 + *(.ARM.attributes) + .ARM.attributes + 0x00000000 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crti.o + .ARM.attributes + 0x0000001e 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtbegin.o + .ARM.attributes + 0x0000004a 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .ARM.attributes + 0x0000007c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .ARM.attributes + 0x000000ae 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .ARM.attributes + 0x000000e0 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .ARM.attributes + 0x00000112 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .ARM.attributes + 0x00000144 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .ARM.attributes + 0x00000176 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .ARM.attributes + 0x000001a8 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .ARM.attributes + 0x000001da 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .ARM.attributes + 0x0000020c 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .ARM.attributes + 0x0000023e 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .ARM.attributes + 0x00000270 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .ARM.attributes + 0x000002a2 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .ARM.attributes + 0x000002d4 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .ARM.attributes + 0x00000306 0x32 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .ARM.attributes + 0x00000338 0x32 Middlewares/MemoryManager/NVM_Manager.o + .ARM.attributes + 0x0000036a 0x32 Middlewares/SerialManager/console.o + .ARM.attributes + 0x0000039c 0x32 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .ARM.attributes + 0x000003ce 0x32 Middlewares/Third_Party/FreeRTOS/Source/list.o + .ARM.attributes + 0x00000400 0x32 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .ARM.attributes + 0x00000432 0x32 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .ARM.attributes + 0x00000464 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .ARM.attributes + 0x00000496 0x32 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .ARM.attributes + 0x000004c8 0x32 Src/Debug_led.o + .ARM.attributes + 0x000004fa 0x32 Src/HTS221.o + .ARM.attributes + 0x0000052c 0x32 Src/main.o + .ARM.attributes + 0x0000055e 0x32 Src/stm32l0xx_hal_msp.o + .ARM.attributes + 0x00000590 0x32 Src/stm32l0xx_it.o + .ARM.attributes + 0x000005c2 0x32 Src/system_stm32l0xx.o + .ARM.attributes + 0x000005f4 0x22 startup/startup_stm32l053xx.o + .ARM.attributes + 0x00000616 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivsi3.o) + .ARM.attributes + 0x00000634 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x00000652 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x00000670 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x0000069c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(fixsfsi.o) + .ARM.attributes + 0x000006c8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(adddf3.o) + .ARM.attributes + 0x000006f4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(divdf3.o) + .ARM.attributes + 0x00000720 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(muldf3.o) + .ARM.attributes + 0x0000074c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(subdf3.o) + .ARM.attributes + 0x00000778 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(floatsidf.o) + .ARM.attributes + 0x000007a4 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(truncdfsf2.o) + .ARM.attributes + 0x000007d0 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzsi2.o) + .ARM.attributes + 0x000007ee 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_clzdi2.o) + .ARM.attributes + 0x0000080c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-impure.o) + .ARM.attributes + 0x00000838 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-init.o) + .ARM.attributes + 0x00000864 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + .ARM.attributes + 0x00000890 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + .ARM.attributes + 0x000008bc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memcpy-stub.o) + .ARM.attributes + 0x000008e8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memset.o) + .ARM.attributes + 0x00000914 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) + .ARM.attributes + 0x00000940 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + .ARM.attributes + 0x0000096c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) + .ARM.attributes + 0x00000998 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcat.o) + .ARM.attributes + 0x000009c4 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcmp.o) + .ARM.attributes + 0x000009e0 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcpy.o) + .ARM.attributes + 0x00000a0c 0x1c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strlen.o) + .ARM.attributes + 0x00000a28 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + .ARM.attributes + 0x00000a54 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + .ARM.attributes + 0x00000a80 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + .ARM.attributes + 0x00000aac 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) + .ARM.attributes + 0x00000ad8 0x1e c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m/crtn.o +OUTPUT(RTOS_IOT.elf elf32-littlearm) + +.debug_info 0x00000000 0x2863e + .debug_info 0x00000000 0xfea Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_info 0x00000fea 0x1128 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_info 0x00002112 0xf1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_info 0x00003031 0xd96 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_info 0x00003dc7 0x13f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_info 0x000051b8 0xef9 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_info 0x000060b1 0x399c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_info 0x00009a4d 0x10d2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_info 0x0000ab1f 0x1da0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_info 0x0000c8bf 0x1396 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_info 0x0000dc55 0x113c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_info 0x0000ed91 0x15a1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_info 0x00010332 0x17a3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_info 0x00011ad5 0x2224 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_info 0x00013cf9 0x1177 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_info 0x00014e70 0xf12 Middlewares/MemoryManager/NVM_Manager.o + .debug_info 0x00015d82 0x152e Middlewares/SerialManager/console.o + .debug_info 0x000172b0 0x2334 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_info 0x000195e4 0xad4 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_info 0x0001a0b8 0x1ee3 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_info 0x0001bf9b 0x29a4 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_info 0x0001e93f 0xad4 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_info 0x0001f413 0xbae Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_info 0x0001ffc1 0xcf6 Src/Debug_led.o + .debug_info 0x00020cb7 0x13cb Src/HTS221.o + .debug_info 0x00022082 0x2e4d Src/main.o + .debug_info 0x00024ecf 0x1a0e Src/stm32l0xx_hal_msp.o + .debug_info 0x000268dd 0x1126 Src/stm32l0xx_it.o + .debug_info 0x00027a03 0xbbd Src/system_stm32l0xx.o + .debug_info 0x000285c0 0x7e startup/startup_stm32l053xx.o + +.debug_abbrev 0x00000000 0x5087 + .debug_abbrev 0x00000000 0x2e3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_abbrev 0x000002e3 0x326 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_abbrev 0x00000609 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_abbrev 0x000008bf 0x309 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_abbrev 0x00000bc8 0x319 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_abbrev 0x00000ee1 0x28d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_abbrev 0x0000116e 0x2dd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_abbrev 0x0000144b 0x24c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_abbrev 0x00001697 0x2fd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_abbrev 0x00001994 0x313 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_abbrev 0x00001ca7 0x2bd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_abbrev 0x00001f64 0x2a6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_abbrev 0x0000220a 0x2b5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_abbrev 0x000024bf 0x31f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_abbrev 0x000027de 0x2be Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_abbrev 0x00002a9c 0x29c Middlewares/MemoryManager/NVM_Manager.o + .debug_abbrev 0x00002d38 0x29f Middlewares/SerialManager/console.o + .debug_abbrev 0x00002fd7 0x3b4 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_abbrev 0x0000338b 0x21c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_abbrev 0x000035a7 0x2f7 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_abbrev 0x0000389e 0x32b Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_abbrev 0x00003bc9 0x2be Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_abbrev 0x00003e87 0x2c8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_abbrev 0x0000414f 0x257 Src/Debug_led.o + .debug_abbrev 0x000043a6 0x2d1 Src/HTS221.o + .debug_abbrev 0x00004677 0x389 Src/main.o + .debug_abbrev 0x00004a00 0x245 Src/stm32l0xx_hal_msp.o + .debug_abbrev 0x00004c45 0x22b Src/stm32l0xx_it.o + .debug_abbrev 0x00004e70 0x205 Src/system_stm32l0xx.o + .debug_abbrev 0x00005075 0x12 startup/startup_stm32l053xx.o + +.debug_loc 0x00000000 0x109cf + .debug_loc 0x00000000 0xac Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_loc 0x000000ac 0x393 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_loc 0x0000043f 0x5f8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_loc 0x00000a37 0x22e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_loc 0x00000c65 0xa31 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_loc 0x00001696 0x2a5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_loc 0x0000193b 0x39fd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_loc 0x00005338 0x245 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_loc 0x0000557d 0x1381 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_loc 0x000068fe 0x5c1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_loc 0x00006ebf 0xa1b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_loc 0x000078da 0xc37 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_loc 0x00008511 0xe78 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_loc 0x00009389 0x1a54 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_loc 0x0000addd 0x388 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_loc 0x0000b165 0xa8 Middlewares/MemoryManager/NVM_Manager.o + .debug_loc 0x0000b20d 0x236 Middlewares/SerialManager/console.o + .debug_loc 0x0000b443 0x11b3 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_loc 0x0000c5f6 0x70 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_loc 0x0000c666 0x194a Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_loc 0x0000dfb0 0x1dd7 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_loc 0x0000fd87 0xa6 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_loc 0x0000fe2d 0x28e Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_loc 0x000100bb 0x63 Src/Debug_led.o + .debug_loc 0x0001011e 0x348 Src/HTS221.o + .debug_loc 0x00010466 0x23e Src/main.o + .debug_loc 0x000106a4 0x15c Src/stm32l0xx_hal_msp.o + .debug_loc 0x00010800 0x1cf Src/system_stm32l0xx.o + +.debug_aranges 0x00000000 0x1560 + .debug_aranges + 0x00000000 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_aranges + 0x000000e0 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_aranges + 0x00000160 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_aranges + 0x000001d0 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_aranges + 0x00000250 0xe0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_aranges + 0x00000330 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_aranges + 0x00000388 0x260 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_aranges + 0x000005e8 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_aranges + 0x00000630 0x198 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_aranges + 0x000007c8 0x88 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_aranges + 0x00000850 0xb0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_aranges + 0x00000900 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_aranges + 0x000009b8 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_aranges + 0x00000ad8 0x1e8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_aranges + 0x00000cc0 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_aranges + 0x00000d20 0x38 Middlewares/MemoryManager/NVM_Manager.o + .debug_aranges + 0x00000d58 0x38 Middlewares/SerialManager/console.o + .debug_aranges + 0x00000d90 0x1d8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_aranges + 0x00000f68 0x40 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_aranges + 0x00000fa8 0x128 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_aranges + 0x000010d0 0x1d0 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_aranges + 0x000012a0 0x88 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_aranges + 0x00001328 0x50 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_aranges + 0x00001378 0x28 Src/Debug_led.o + .debug_aranges + 0x000013a0 0x68 Src/HTS221.o + .debug_aranges + 0x00001408 0x78 Src/main.o + .debug_aranges + 0x00001480 0x60 Src/stm32l0xx_hal_msp.o + .debug_aranges + 0x000014e0 0x30 Src/stm32l0xx_it.o + .debug_aranges + 0x00001510 0x28 Src/system_stm32l0xx.o + .debug_aranges + 0x00001538 0x28 startup/startup_stm32l053xx.o + +.debug_ranges 0x00000000 0x15d8 + .debug_ranges 0x00000000 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_ranges 0x000000d0 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_ranges 0x00000188 0x60 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_ranges 0x000001e8 0x70 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_ranges 0x00000258 0xd0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_ranges 0x00000328 0x48 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_ranges 0x00000370 0x250 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_ranges 0x000005c0 0x38 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_ranges 0x000005f8 0x188 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_ranges 0x00000780 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_ranges 0x00000828 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_ranges 0x000008e0 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_ranges 0x00000988 0x110 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_ranges 0x00000a98 0x1d8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_ranges 0x00000c70 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_ranges 0x00000cc0 0x28 Middlewares/MemoryManager/NVM_Manager.o + .debug_ranges 0x00000ce8 0x28 Middlewares/SerialManager/console.o + .debug_ranges 0x00000d10 0x1c8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_ranges 0x00000ed8 0x30 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_ranges 0x00000f08 0x1e0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_ranges 0x000010e8 0x2b8 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_ranges 0x000013a0 0x78 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_ranges 0x00001418 0x40 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_ranges 0x00001458 0x18 Src/Debug_led.o + .debug_ranges 0x00001470 0x58 Src/HTS221.o + .debug_ranges 0x000014c8 0x68 Src/main.o + .debug_ranges 0x00001530 0x50 Src/stm32l0xx_hal_msp.o + .debug_ranges 0x00001580 0x20 Src/stm32l0xx_it.o + .debug_ranges 0x000015a0 0x18 Src/system_stm32l0xx.o + .debug_ranges 0x000015b8 0x20 startup/startup_stm32l053xx.o + +.debug_macro 0x00000000 0x196d1 + .debug_macro 0x00000000 0x3a0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000003a0 0x8aa Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000c4a 0x22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000c6c 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000cbe 0x8d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000d4b 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000d80 0x9c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000e1c 0x174 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000f90 0x57 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00000fe7 0x58 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000103f 0x1f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000105e 0x43 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000010a1 0x20 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000010c1 0x187 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001248 0x330 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001578 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001588 0x35 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000015bd 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000015d3 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000015e9 0x29 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001612 0x4c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000165e 0xa3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001701 0x2e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000172f 0x28 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001757 0xef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001846 0x6a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000018b0 0x1df Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001a8f 0x34 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001ac3 0x26 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001ae9 0x44f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00001f38 0x9cc0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000bbf8 0x3c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000bc34 0x34a2 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f0d6 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f0f2 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f102 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f112 0x1c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f12e 0x52 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f180 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f1c0 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f1d0 0x40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f210 0xd7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f2e7 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f2fd 0x18b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f488 0x50 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000f4d8 0x8e0 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0000fdb8 0x9d4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001078c 0x14d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000108d9 0x184 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010a5d 0x279 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010cd6 0x1ef Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010ec5 0x12a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00010fef 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000112a5 0x202 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x000114a7 0x5b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011502 0x90 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011592 0x189 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001171b 0x16 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011731 0x30c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011a3d 0x3f1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011e2e 0xdd Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00011f0b 0x54a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012455 0x44 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012499 0x280 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012719 0x10 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x00012729 0x165 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_macro 0x0001288e 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_macro 0x00012c0a 0x382 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_macro 0x00012f8c 0x37d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_macro 0x00013309 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_macro 0x00013685 0x3b5 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_macro 0x00013a3a 0x448 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_macro 0x00013e82 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_macro 0x000141fe 0x38b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_macro 0x00014589 0x3ca Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_macro 0x00014953 0x38e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_macro 0x00014ce1 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_macro 0x0001505d 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_macro 0x000153d9 0x38e Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_macro 0x00015767 0x37c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_macro 0x00015ae3 0x448 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00015f2b 0xd8 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016003 0x168 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x0001616b 0xb6 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016221 0x10 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016231 0x1f Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016250 0x416 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016666 0xc0 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016726 0x8c Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x000167b2 0x91 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016843 0x94 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x000168d7 0x63 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x0001693a 0xcf Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016a09 0xa9 Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016ab2 0x3a Middlewares/MemoryManager/NVM_Manager.o + .debug_macro 0x00016aec 0x43a Middlewares/SerialManager/console.o + .debug_macro 0x00016f26 0x22f Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00017155 0xd2 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_macro 0x00017227 0x1b2 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_macro 0x000173d9 0x207 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x000175e0 0x52 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_macro 0x00017632 0x271 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x000178a3 0x11 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_macro 0x000178b4 0x239 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_macro 0x00017aed 0x1d9 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_macro 0x00017cc6 0x43c Src/Debug_led.o + .debug_macro 0x00018102 0xd8 Src/Debug_led.o + .debug_macro 0x000181da 0x398 Src/HTS221.o + .debug_macro 0x00018572 0x22 Src/HTS221.o + .debug_macro 0x00018594 0x15a Src/HTS221.o + .debug_macro 0x000186ee 0x485 Src/main.o + .debug_macro 0x00018b73 0x10 Src/main.o + .debug_macro 0x00018b83 0x37c Src/stm32l0xx_hal_msp.o + .debug_macro 0x00018eff 0x44a Src/stm32l0xx_it.o + .debug_macro 0x00019349 0x388 Src/system_stm32l0xx.o + +.debug_line 0x00000000 0x1547f + .debug_line 0x00000000 0xa59 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_line 0x00000a59 0xa22 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_line 0x0000147b 0xd21 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_line 0x0000219c 0xa4b Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_line 0x00002be7 0xb77 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_line 0x0000375e 0x9e6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_line 0x00004144 0x1a08 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_line 0x00005b4c 0x9dc Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_line 0x00006528 0x1103 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_line 0x0000762b 0xb73 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_line 0x0000819e 0xb93 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_line 0x00008d31 0xc40 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_line 0x00009971 0xec1 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_line 0x0000a832 0x139c Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_line 0x0000bbce 0xa0d Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_line 0x0000c5db 0xb1b Middlewares/MemoryManager/NVM_Manager.o + .debug_line 0x0000d0f6 0xb19 Middlewares/SerialManager/console.o + .debug_line 0x0000dc0f 0xbf8 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_line 0x0000e807 0x5b3 Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x0000edba 0xb10 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000f8ca 0xfe1 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x000108ab 0x671 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_line 0x00010f1c 0x660 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_line 0x0001157c 0xacf Src/Debug_led.o + .debug_line 0x0001204b 0x95f Src/HTS221.o + .debug_line 0x000129aa 0xd79 Src/main.o + .debug_line 0x00013723 0x958 Src/stm32l0xx_hal_msp.o + .debug_line 0x0001407b 0xaca Src/stm32l0xx_it.o + .debug_line 0x00014b45 0x8b7 Src/system_stm32l0xx.o + .debug_line 0x000153fc 0x83 startup/startup_stm32l053xx.o + +.debug_str 0x00000000 0x87772 + .debug_str 0x00000000 0x7ab42 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x7afa4 (size before relaxing) + .debug_str 0x0007ab42 0x285 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + 0x7adb4 (size before relaxing) + .debug_str 0x0007adc7 0x333 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + 0x7ac52 (size before relaxing) + .debug_str 0x0007b0fa 0x216 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + 0x7ab69 (size before relaxing) + .debug_str 0x0007b310 0x39f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + 0x7ae37 (size before relaxing) + .debug_str 0x0007b6af 0x2b6 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + 0x7ac59 (size before relaxing) + .debug_str 0x0007b965 0xfde Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + 0x7bb0d (size before relaxing) + .debug_str 0x0007c943 0xb8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + 0x7af14 (size before relaxing) + .debug_str 0x0007c9fb 0x767 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + 0x7b355 (size before relaxing) + .debug_str 0x0007d162 0x4c7 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + 0x7af87 (size before relaxing) + .debug_str 0x0007d629 0x4a3 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + 0x7aefc (size before relaxing) + .debug_str 0x0007dacc 0x439 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + 0x7ad9d (size before relaxing) + .debug_str 0x0007df05 0x51a Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + 0x7b0c2 (size before relaxing) + .debug_str 0x0007e41f 0x924 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + 0x7b67c (size before relaxing) + .debug_str 0x0007ed43 0x185 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + 0x7af47 (size before relaxing) + .debug_str 0x0007eec8 0x522e Middlewares/MemoryManager/NVM_Manager.o + 0x7fbf6 (size before relaxing) + .debug_str 0x000840f6 0x1a9 Middlewares/SerialManager/console.o + 0x7ff82 (size before relaxing) + .debug_str 0x0008429f 0x8ad Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + 0xc097 (size before relaxing) + .debug_str 0x00084b4c 0x148 Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x93df (size before relaxing) + .debug_str 0x00084c94 0x7c0 Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0xab03 (size before relaxing) + .debug_str 0x00085454 0x1098 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0xb5fb (size before relaxing) + .debug_str 0x000864ec 0x3e1 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + 0x9d46 (size before relaxing) + .debug_str 0x000868cd 0x243 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x9b00 (size before relaxing) + .debug_str 0x00086b10 0xbb Src/Debug_led.o + 0x7f987 (size before relaxing) + .debug_str 0x00086bcb 0x742 Src/HTS221.o + 0x7b4e6 (size before relaxing) + .debug_str 0x0008730d 0x38d Src/main.o + 0x81571 (size before relaxing) + .debug_str 0x0008769a 0x1b Src/stm32l0xx_hal_msp.o + 0x7b58f (size before relaxing) + .debug_str 0x000876b5 0x59 Src/stm32l0xx_it.o + 0x7fdb4 (size before relaxing) + .debug_str 0x0008770e 0x64 Src/system_stm32l0xx.o + 0x7a9a4 (size before relaxing) + +.comment 0x00000000 0x7f + .comment 0x00000000 0x7f Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + 0x80 (size before relaxing) + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .comment 0x0000007f 0x80 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .comment 0x0000007f 0x80 Middlewares/MemoryManager/NVM_Manager.o + .comment 0x0000007f 0x80 Middlewares/SerialManager/console.o + .comment 0x0000007f 0x80 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .comment 0x0000007f 0x80 Middlewares/Third_Party/FreeRTOS/Source/list.o + .comment 0x0000007f 0x80 Middlewares/Third_Party/FreeRTOS/Source/queue.o + .comment 0x0000007f 0x80 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .comment 0x0000007f 0x80 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .comment 0x0000007f 0x80 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .comment 0x0000007f 0x80 Src/Debug_led.o + .comment 0x0000007f 0x80 Src/HTS221.o + .comment 0x0000007f 0x80 Src/main.o + .comment 0x0000007f 0x80 Src/stm32l0xx_hal_msp.o + .comment 0x0000007f 0x80 Src/stm32l0xx_it.o + .comment 0x0000007f 0x80 Src/system_stm32l0xx.o + +.debug_frame 0x00000000 0x3c98 + .debug_frame 0x00000000 0x1c4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal.o + .debug_frame 0x000001c4 0xf4 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_cortex.o + .debug_frame 0x000002b8 0x120 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_dma.o + .debug_frame 0x000003d8 0x114 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash.o + .debug_frame 0x000004ec 0x228 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_flash_ex.o + .debug_frame 0x00000714 0xc8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_gpio.o + .debug_frame 0x000007dc 0x784 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c.o + .debug_frame 0x00000f60 0xa8 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_i2c_ex.o + .debug_frame 0x00001008 0x444 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_irda.o + .debug_frame 0x0000144c 0x158 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc.o + .debug_frame 0x000015a4 0x170 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rcc_ex.o + .debug_frame 0x00001714 0x208 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc.o + .debug_frame 0x0000191c 0x360 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_rtc_ex.o + .debug_frame 0x00001c7c 0x540 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart.o + .debug_frame 0x000021bc 0x104 Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_uart_ex.o + .debug_frame 0x000022c0 0x78 Middlewares/MemoryManager/NVM_Manager.o + .debug_frame 0x00002338 0x80 Middlewares/SerialManager/console.o + .debug_frame 0x000023b8 0x540 Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.o + .debug_frame 0x000028f8 0x6c Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_frame 0x00002964 0x35c Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_frame 0x00002cc0 0x570 Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_frame 0x00003230 0x110 Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.o + .debug_frame 0x00003340 0xa8 Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_frame 0x000033e8 0x48 Src/Debug_led.o + .debug_frame 0x00003430 0x124 Src/HTS221.o + .debug_frame 0x00003554 0x158 Src/main.o + .debug_frame 0x000036ac 0xd8 Src/stm32l0xx_hal_msp.o + .debug_frame 0x00003784 0x58 Src/stm32l0xx_it.o + .debug_frame 0x000037dc 0x38 Src/system_stm32l0xx.o + .debug_frame 0x00003814 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivsi3.o) + .debug_frame 0x00003834 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(_udivmoddi4.o) + .debug_frame 0x00003870 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(fixsfsi.o) + .debug_frame 0x00003890 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(adddf3.o) + .debug_frame 0x000038cc 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(divdf3.o) + .debug_frame 0x00003908 0x3c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(muldf3.o) + .debug_frame 0x00003944 0x38 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(subdf3.o) + .debug_frame 0x0000397c 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(floatsidf.o) + .debug_frame 0x000039a8 0x30 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v6-m\libgcc.a(truncdfsf2.o) + .debug_frame 0x000039d8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-init.o) + .debug_frame 0x00003a04 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-itoa.o) + .debug_frame 0x00003a44 0x40 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-malloc.o) + .debug_frame 0x00003a84 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x00003aac 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-memset.o) + .debug_frame 0x00003acc 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-freer.o) + .debug_frame 0x00003af8 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-nano-mallocr.o) + .debug_frame 0x00003b24 0x2c c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-sbrkr.o) + .debug_frame 0x00003b50 0x28 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcat.o) + .debug_frame 0x00003b78 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcmp.o) + .debug_frame 0x00003b98 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-strcpy.o) + .debug_frame 0x00003bb8 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-utoa.o) + .debug_frame 0x00003c00 0x30 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-mlock.o) + .debug_frame 0x00003c30 0x48 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libc_nano.a(lib_a-reent.o) + .debug_frame 0x00003c78 0x20 c:/ac6/systemworkbench/plugins/fr.ac6.mcu.externaltools.arm-none.win32_1.15.0.201708311556/tools/compiler/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v6-m\libnosys.a(sbrk.o) diff --git a/RTOS_IOT/Debug/sources.mk b/RTOS_IOT/Debug/sources.mk index 5b9f67b..5cffc25 100644 --- a/RTOS_IOT/Debug/sources.mk +++ b/RTOS_IOT/Debug/sources.mk @@ -1,26 +1,27 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -OBJ_SRCS := -S_SRCS := -ASM_SRCS := -C_SRCS := -S_UPPER_SRCS := -O_SRCS := -EXECUTABLES := -OBJS := -S_UPPER_DEPS := -C_DEPS := - -# Every subdirectory with source files must be described here +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +OBJ_SRCS := +S_SRCS := +ASM_SRCS := +C_SRCS := +S_UPPER_SRCS := +O_SRCS := +EXECUTABLES := +OBJS := +S_UPPER_DEPS := +C_DEPS := + +# Every subdirectory with source files must be described here SUBDIRS := \ Drivers/STM32L0xx_HAL_Driver/Src \ Middlewares/MemoryManager \ +Middlewares/SerialManager \ Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS \ Middlewares/Third_Party/FreeRTOS/Source \ Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0 \ Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang \ Src \ startup \ - + diff --git a/RTOS_IOT/Inc/FreeRTOSConfig.h b/RTOS_IOT/Inc/FreeRTOSConfig.h index 0fb5f60..00da85d 100644 --- a/RTOS_IOT/Inc/FreeRTOSConfig.h +++ b/RTOS_IOT/Inc/FreeRTOSConfig.h @@ -1,171 +1,171 @@ -/* - FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. - All rights reserved - - VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. - - This file is part of the FreeRTOS distribution. - - FreeRTOS is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License (version 2) as published by the - Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception. - - *************************************************************************** - >>! NOTE: The modification to the GPL is included to allow you to !<< - >>! distribute a combined work that includes FreeRTOS without being !<< - >>! obliged to provide the source code for proprietary components !<< - >>! outside of the FreeRTOS kernel. !<< - *************************************************************************** - - FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY - WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - FOR A PARTICULAR PURPOSE. Full license text is available on the following - link: http://www.freertos.org/a00114.html - - *************************************************************************** - * * - * FreeRTOS provides completely free yet professionally developed, * - * robust, strictly quality controlled, supported, and cross * - * platform software that is more than just the market leader, it * - * is the industry's de facto standard. * - * * - * Help yourself get started quickly while simultaneously helping * - * to support the FreeRTOS project by purchasing a FreeRTOS * - * tutorial book, reference manual, or both: * - * http://www.FreeRTOS.org/Documentation * - * * - *************************************************************************** - - http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading - the FAQ page "My application does not run, what could be wrong?". Have you - defined configASSERT()? - - http://www.FreeRTOS.org/support - In return for receiving this top quality - embedded software for free we request you assist our global community by - participating in the support forum. - - http://www.FreeRTOS.org/training - Investing in training allows your team to - be as productive as possible as early as possible. Now you can receive - FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers - Ltd, and the world's leading authority on the world's leading RTOS. - - http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, - including FreeRTOS+Trace - an indispensable productivity tool, a DOS - compatible FAT file system, and our tiny thread aware UDP/IP stack. - - http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. - Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. - - http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High - Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS - licenses offer ticketed support, indemnification and commercial middleware. - - http://www.SafeRTOS.com - High Integrity Systems also provide a safety - engineered and independently SIL3 certified version for use in safety and - mission critical applications that require provable dependability. - - 1 tab == 4 spaces! -*/ - -#ifndef FREERTOS_CONFIG_H -#define FREERTOS_CONFIG_H - -/*----------------------------------------------------------- - * Application specific definitions. - * - * These definitions should be adjusted for your particular hardware and - * application requirements. - * - * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE - * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. - * - * See http://www.freertos.org/a00110.html. - *----------------------------------------------------------*/ - -/* USER CODE BEGIN Includes */ -/* Section where include file can be added */ -/* USER CODE END Includes */ - -/* Ensure stdint is only used by the compiler, and not the assembler. */ -#if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__) - #include <stdint.h> - #include "main.h" - extern uint32_t SystemCoreClock; -#endif - -#define configUSE_PREEMPTION 1 -#define configSUPPORT_STATIC_ALLOCATION 0 -#define configSUPPORT_DYNAMIC_ALLOCATION 1 -#define configUSE_IDLE_HOOK 0 -#define configUSE_TICK_HOOK 0 -#define configCPU_CLOCK_HZ ( SystemCoreClock ) -#define configTICK_RATE_HZ ((TickType_t)1000) -#define configMAX_PRIORITIES ( 7 ) -#define configMINIMAL_STACK_SIZE ((uint16_t)128) -#define configTOTAL_HEAP_SIZE ((size_t)3072) -#define configMAX_TASK_NAME_LEN ( 16 ) -#define configUSE_TRACE_FACILITY 1 -#define configUSE_16_BIT_TICKS 0 -#define configUSE_MUTEXES 1 -#define configQUEUE_REGISTRY_SIZE 8 - -/* Co-routine definitions. */ -#define configUSE_CO_ROUTINES 0 -#define configMAX_CO_ROUTINE_PRIORITIES ( 2 ) - -/* Set the following definitions to 1 to include the API function, or zero -to exclude the API function. */ -#define INCLUDE_vTaskPrioritySet 1 -#define INCLUDE_uxTaskPriorityGet 1 -#define INCLUDE_vTaskDelete 1 -#define INCLUDE_vTaskCleanUpResources 0 -#define INCLUDE_vTaskSuspend 1 -#define INCLUDE_vTaskDelayUntil 1 -#define INCLUDE_vTaskDelay 1 -#define INCLUDE_xTaskGetSchedulerState 1 - -/* Cortex-M specific definitions. */ -#ifdef __NVIC_PRIO_BITS - /* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */ - #define configPRIO_BITS __NVIC_PRIO_BITS -#else - #define configPRIO_BITS 2 -#endif - -/* The lowest interrupt priority that can be used in a call to a "set priority" -function. */ -#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 3 - -/* The highest interrupt priority that can be used by any interrupt service -routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL -INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER -PRIORITY THAN THIS! (higher priorities are lower numeric values. */ -#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 3 - -/* Interrupt priorities used by the kernel port layer itself. These are generic -to all Cortex-M ports, and do not rely on any particular library functions. */ -#define configKERNEL_INTERRUPT_PRIORITY ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) -/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!! -See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */ -#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) - -/* Normal assert() semantics without relying on the provision of an assert.h -header file. */ -/* USER CODE BEGIN 1 */ -#define configASSERT( x ) if ((x) == 0) {taskDISABLE_INTERRUPTS(); for( ;; );} -/* USER CODE END 1 */ - -/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS -standard names. */ -#define vPortSVCHandler SVC_Handler -#define xPortPendSVHandler PendSV_Handler - -/* IMPORTANT: This define MUST be commented when used with STM32Cube firmware, - to prevent overwriting SysTick_Handler defined within STM32Cube HAL */ -/* #define xPortSysTickHandler SysTick_Handler */ - -/* USER CODE BEGIN Defines */ -/* Section where parameter definitions can be added (for instance, to override default ones in FreeRTOS.h) */ -/* USER CODE END Defines */ - -#endif /* FREERTOS_CONFIG_H */ +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +/*----------------------------------------------------------- + * Application specific definitions. + * + * These definitions should be adjusted for your particular hardware and + * application requirements. + * + * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE + * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE. + * + * See http://www.freertos.org/a00110.html. + *----------------------------------------------------------*/ + +/* USER CODE BEGIN Includes */ +/* Section where include file can be added */ +/* USER CODE END Includes */ + +/* Ensure stdint is only used by the compiler, and not the assembler. */ +#if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__) + #include <stdint.h> + #include "main.h" + extern uint32_t SystemCoreClock; +#endif + +#define configUSE_PREEMPTION 1 +#define configSUPPORT_STATIC_ALLOCATION 0 +#define configSUPPORT_DYNAMIC_ALLOCATION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ ( SystemCoreClock ) +#define configTICK_RATE_HZ ((TickType_t)1000) +#define configMAX_PRIORITIES ( 7 ) +#define configMINIMAL_STACK_SIZE ((uint16_t)128) +#define configTOTAL_HEAP_SIZE ((size_t)1024*5) +#define configMAX_TASK_NAME_LEN ( 16 ) +#define configUSE_TRACE_FACILITY 1 +#define configUSE_16_BIT_TICKS 0 +#define configUSE_MUTEXES 1 +#define configQUEUE_REGISTRY_SIZE 8 + +/* Co-routine definitions. */ +#define configUSE_CO_ROUTINES 0 +#define configMAX_CO_ROUTINE_PRIORITIES ( 2 ) + +/* Set the following definitions to 1 to include the API function, or zero +to exclude the API function. */ +#define INCLUDE_vTaskPrioritySet 1 +#define INCLUDE_uxTaskPriorityGet 1 +#define INCLUDE_vTaskDelete 1 +#define INCLUDE_vTaskCleanUpResources 0 +#define INCLUDE_vTaskSuspend 1 +#define INCLUDE_vTaskDelayUntil 1 +#define INCLUDE_vTaskDelay 1 +#define INCLUDE_xTaskGetSchedulerState 1 + +/* Cortex-M specific definitions. */ +#ifdef __NVIC_PRIO_BITS + /* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */ + #define configPRIO_BITS __NVIC_PRIO_BITS +#else + #define configPRIO_BITS 2 +#endif + +/* The lowest interrupt priority that can be used in a call to a "set priority" +function. */ +#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 3 + +/* The highest interrupt priority that can be used by any interrupt service +routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL +INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER +PRIORITY THAN THIS! (higher priorities are lower numeric values. */ +#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 3 + +/* Interrupt priorities used by the kernel port layer itself. These are generic +to all Cortex-M ports, and do not rely on any particular library functions. */ +#define configKERNEL_INTERRUPT_PRIORITY ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) +/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!! +See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */ +#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) + +/* Normal assert() semantics without relying on the provision of an assert.h +header file. */ +/* USER CODE BEGIN 1 */ +#define configASSERT( x ) if ((x) == 0) {taskDISABLE_INTERRUPTS(); for( ;; );} +/* USER CODE END 1 */ + +/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS +standard names. */ +#define vPortSVCHandler SVC_Handler +#define xPortPendSVHandler PendSV_Handler + +/* IMPORTANT: This define MUST be commented when used with STM32Cube firmware, + to prevent overwriting SysTick_Handler defined within STM32Cube HAL */ +/* #define xPortSysTickHandler SysTick_Handler */ + +/* USER CODE BEGIN Defines */ +/* Section where parameter definitions can be added (for instance, to override default ones in FreeRTOS.h) */ +/* USER CODE END Defines */ + +#endif /* FREERTOS_CONFIG_H */ diff --git a/RTOS_IOT/Inc/main.h b/RTOS_IOT/Inc/main.h index ef3b059..dab2a90 100644 --- a/RTOS_IOT/Inc/main.h +++ b/RTOS_IOT/Inc/main.h @@ -1,87 +1,87 @@ -/** - ****************************************************************************** - * File Name : main.h - * Description : This file contains the common defines of the application - ****************************************************************************** - * - * Copyright (c) 2017 STMicroelectronics International N.V. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted, provided that the following conditions are met: - * - * 1. Redistribution of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * 3. Neither the name of STMicroelectronics nor the names of other - * contributors to this software may be used to endorse or promote products - * derived from this software without specific written permission. - * 4. This software, including modifications and/or derivative works of this - * software, must execute solely and exclusively on microcontroller or - * microprocessor devices manufactured by or for STMicroelectronics. - * 5. Redistribution and use of this software other than as permitted under - * this license is void and will automatically terminate your rights under - * this license. - * - * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY - * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT - * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, - * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - ****************************************************************************** - */ -/* Define to prevent recursive inclusion -------------------------------------*/ -#ifndef __MAIN_H -#define __MAIN_H - /* Includes ------------------------------------------------------------------*/ - -/* USER CODE BEGIN Includes */ -//#include "stm32l0xx_hal_def.h" -//#include "stm32l0xx_hal_pwr.h" -//#include "stm32l0xx_hal_rtc.h" -//#include "stm32l0xx_hal_gpio.h" -//#include "stm32l0xx_hal_i2c.h" -//#include "stm32l0xx_hal_uart.h" -#include <string.h> -#include <stdlib.h> -/* USER CODE END Includes */ - -/* Private define ------------------------------------------------------------*/ - -#define B1_Pin GPIO_PIN_13 -#define B1_GPIO_Port GPIOC -#define USART_TX_Pin GPIO_PIN_2 -#define USART_TX_GPIO_Port GPIOA -#define USART_RX_Pin GPIO_PIN_3 -#define USART_RX_GPIO_Port GPIOA -#define LD2_Pin GPIO_PIN_5 -#define LD2_GPIO_Port GPIOA -#define TMS_Pin GPIO_PIN_13 -#define TMS_GPIO_Port GPIOA -#define TCK_Pin GPIO_PIN_14 -#define TCK_GPIO_Port GPIOA - -/* USER CODE BEGIN Private defines */ - -/* USER CODE END Private defines */ - -/** - * @} - */ - -/** - * @} -*/ - -#endif /* __MAIN_H */ -/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ +/** + ****************************************************************************** + * File Name : main.h + * Description : This file contains the common defines of the application + ****************************************************************************** + * + * Copyright (c) 2017 STMicroelectronics International N.V. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __MAIN_H +#define __MAIN_H + /* Includes ------------------------------------------------------------------*/ + +/* USER CODE BEGIN Includes */ +//#include "stm32l0xx_hal_def.h" +//#include "stm32l0xx_hal_pwr.h" +//#include "stm32l0xx_hal_rtc.h" +//#include "stm32l0xx_hal_gpio.h" +//#include "stm32l0xx_hal_i2c.h" +//#include "stm32l0xx_hal_uart.h" +#include <string.h> +#include <stdlib.h> +/* USER CODE END Includes */ + +/* Private define ------------------------------------------------------------*/ + +#define B1_Pin GPIO_PIN_13 +#define B1_GPIO_Port GPIOC +#define USART_TX_Pin GPIO_PIN_2 +#define USART_TX_GPIO_Port GPIOA +#define USART_RX_Pin GPIO_PIN_3 +#define USART_RX_GPIO_Port GPIOA +#define LD2_Pin GPIO_PIN_5 +#define LD2_GPIO_Port GPIOA +#define TMS_Pin GPIO_PIN_13 +#define TMS_GPIO_Port GPIOA +#define TCK_Pin GPIO_PIN_14 +#define TCK_GPIO_Port GPIOA + +/* USER CODE BEGIN Private defines */ + +/* USER CODE END Private defines */ + +/** + * @} + */ + +/** + * @} +*/ + +#endif /* __MAIN_H */ +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c b/RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c index 4e39492..41c7a66 100644 --- a/RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c +++ b/RTOS_IOT/Middlewares/MemoryManager/NVM_Manager.c @@ -1,121 +1,122 @@ -#include "NVM_Manager.h" - -#define EEPROM_START_ADDRESS (uint32_t *)0x08080000 -#define EEPROM_END_ADDRESS (uint32_t *)0x080807CF // only have 2kBytes - -#define EEPROM_FIFO_DATASTORE_ADDRESS (uint32_t *)0x08080000 // EEPROM - -#define BUTTON_TIMEOUT (uint32_t)0x1388 // 5 seconds timeout - - -extern osSemaphoreId SemaBlockClearEEPROM; - -static int32_t timeout = 0; -static EEPROM_FIFO *FIFO_DATA = (EEPROM_FIFO *)EEPROM_FIFO_DATASTORE_ADDRESS; - - - -osThreadId Task_ManagEeprom; -osMutexId MutexEeprom; -osSemaphoreId SemaEepromManager; - - - -static void EEPROM_Clean(void){ - volatile uint32_t* Ptr_address=0; - Ptr_address = EEPROM_START_ADDRESS; - HAL_FLASHEx_DATAEEPROM_Unlock(); - - while (Ptr_address<=EEPROM_END_ADDRESS){ - HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); - Ptr_address++; - } - - HAL_FLASHEx_DATAEEPROM_Lock(); -} - -static void EEPROM_Read (void){ - -} - - -static void EEPROM_Write (enum eEEPROM_METHOD method, uint32_t Address, uint32_t* Data, uint32_t len){ - if (method == CONTINUE_WITH_FIFO){ - - } - else { //USE_ADDRESS - - } -} - -/* - * The task 'task_EepromManager' will automatically goes into the block status and waiting for the semaphore 'SemaEepromManager' - * to be Released by NVIC interrupt. The NVIC interrupt required to be pressed for 'BUTTON_TIMEOUT' interval. - * - * If task is activated the LED is blink for 3 times and then will wait for MUTEX 'MutexEeprom' to be released before flushing out - * all the data from the eeprom. - */ - - -void task_EepromManager ( void const* argument ){ - uint8_t i; - - for (;;){ - - osSemaphoreWait(SemaEepromManager,osWaitForever); - - for (i=0; i<3 ; i++){ - HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_SET); - HAL_Delay(100); - HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_RESET); - HAL_Delay(100); - } - HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_SET); - - //TODO: Implement Mutex before EEPROM Clean is carried out - osMutexWait(MutexEeprom, osWaitForever); - - EEPROM_Clean(); - - osMutexRelease(MutexEeprom); - HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_RESET); - - } -} - - -void EEPROM_Initialize ( void ){ - - osThreadDef(EepromManager, task_EepromManager, osPriorityAboveNormal, 0 , 128); - Task_ManagEeprom = osThreadCreate(osThread(EepromManager),NULL); - - osSemaphoreDef(SemaDefEeprom); - SemaEepromManager = osSemaphoreCreate(osSemaphore(SemaDefEeprom), 1); - osSemaphoreWait(SemaEepromManager,osWaitForever); - - osMutexDef(MutexEeprom); - MutexEeprom = osMutexCreate(osMutex(MutexEeprom)); - -} - -/************************************************** - * - * Interrupt routine to release the Semaphore - * - * - * - * **************************************************/ - -void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin){ - - if (timeout!= 0){ - timeout = osKernelSysTick() - timeout; - if (timeout >= BUTTON_TIMEOUT){ - osSemaphoreRelease(SemaEepromManager); - } - timeout = 0; - } - else{ - timeout = osKernelSysTick(); - } -} +#include "NVM_Manager.h" + +#define EEPROM_START_ADDRESS (uint32_t *)0x08080000 +#define EEPROM_END_ADDRESS (uint32_t *)0x080807CF // only have 2kBytes + +#define EEPROM_FIFO_DATASTORE_ADDRESS (uint32_t *)0x08080000 // EEPROM + +#define BUTTON_TIMEOUT (uint32_t)0x1388 // 5 seconds timeout + + +extern osSemaphoreId SemaBlockClearEEPROM; + +static int32_t timeout = 0; +static EEPROM_FIFO *FIFO_DATA = (EEPROM_FIFO *)EEPROM_FIFO_DATASTORE_ADDRESS; + + + +osThreadId Task_ManagEeprom; +osMutexId MutexEeprom; +osSemaphoreId SemaEepromManager; + + + +static void EEPROM_Clean(void){ + volatile uint32_t* Ptr_address=0; + Ptr_address = EEPROM_START_ADDRESS; + HAL_FLASHEx_DATAEEPROM_Unlock(); + + while (Ptr_address<=EEPROM_END_ADDRESS){ + HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); + Ptr_address++; + } + + HAL_FLASHEx_DATAEEPROM_Lock(); +} + +static void EEPROM_Read (void){ + +} + + +static void EEPROM_Write (enum eEEPROM_METHOD method, uint32_t Address, uint32_t* Data, uint32_t len){ + if (method == CONTINUE_WITH_FIFO){ + + } + else { //USE_ADDRESS + + } +} + +/* + * The task 'task_EepromManager' will automatically goes into the block status and waiting for the semaphore 'SemaEepromManager' + * to be Released by NVIC interrupt. The NVIC interrupt required to be pressed for 'BUTTON_TIMEOUT' interval. + * + * If task is activated the LED is blink for 3 times and then will wait for MUTEX 'MutexEeprom' to be released before flushing out + * all the data from the eeprom. + */ + + +void task_EepromManager ( void const* argument ){ + uint8_t i; + + for (;;){ + + osSemaphoreWait(SemaEepromManager,osWaitForever); + + for (i=0; i<3 ; i++){ + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_SET); + HAL_Delay(100); + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_RESET); + HAL_Delay(100); + } + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_SET); + + //TODO: Implement Mutex before EEPROM Clean is carried out + osMutexWait(MutexEeprom, osWaitForever); + + EEPROM_Clean(); + + osMutexRelease(MutexEeprom); + + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin,GPIO_PIN_RESET); + + } +} + + +void EEPROM_Initialize ( void ){ + + osThreadDef(EepromManager, task_EepromManager, osPriorityAboveNormal, 0 , 128); + Task_ManagEeprom = osThreadCreate(osThread(EepromManager),NULL); + + osSemaphoreDef(SemaDefEeprom); + SemaEepromManager = osSemaphoreCreate(osSemaphore(SemaDefEeprom), 1); + osSemaphoreWait(SemaEepromManager,osWaitForever); + + osMutexDef(MutexEeprom); + MutexEeprom = osMutexCreate(osMutex(MutexEeprom)); + +} + +/************************************************** + * + * Interrupt routine to release the Semaphore + * + * + * + * **************************************************/ + +void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin){ + + if (timeout!= 0){ + timeout = osKernelSysTick() - timeout; + if (timeout >= BUTTON_TIMEOUT){ + osSemaphoreRelease(SemaEepromManager); + } + timeout = 0; + } + else{ + timeout = osKernelSysTick(); + } +} diff --git a/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c index 2d242e9..8aea1cd 100644 --- a/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c +++ b/RTOS_IOT/Middlewares/Third_Party/FreeRTOS/Source/tasks.c @@ -1,4844 +1,4807 @@ -/* - FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. - All rights reserved - - VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. - - This file is part of the FreeRTOS distribution. - - FreeRTOS is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License (version 2) as published by the - Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. - - *************************************************************************** - >>! NOTE: The modification to the GPL is included to allow you to !<< - >>! distribute a combined work that includes FreeRTOS without being !<< - >>! obliged to provide the source code for proprietary components !<< - >>! outside of the FreeRTOS kernel. !<< - *************************************************************************** - - FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY - WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - FOR A PARTICULAR PURPOSE. Full license text is available on the following - link: http://www.freertos.org/a00114.html - - *************************************************************************** - * * - * FreeRTOS provides completely free yet professionally developed, * - * robust, strictly quality controlled, supported, and cross * - * platform software that is more than just the market leader, it * - * is the industry's de facto standard. * - * * - * Help yourself get started quickly while simultaneously helping * - * to support the FreeRTOS project by purchasing a FreeRTOS * - * tutorial book, reference manual, or both: * - * http://www.FreeRTOS.org/Documentation * - * * - *************************************************************************** - - http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading - the FAQ page "My application does not run, what could be wrong?". Have you - defined configASSERT()? - - http://www.FreeRTOS.org/support - In return for receiving this top quality - embedded software for free we request you assist our global community by - participating in the support forum. - - http://www.FreeRTOS.org/training - Investing in training allows your team to - be as productive as possible as early as possible. Now you can receive - FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers - Ltd, and the world's leading authority on the world's leading RTOS. - - http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, - including FreeRTOS+Trace - an indispensable productivity tool, a DOS - compatible FAT file system, and our tiny thread aware UDP/IP stack. - - http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. - Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. - - http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High - Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS - licenses offer ticketed support, indemnification and commercial middleware. - - http://www.SafeRTOS.com - High Integrity Systems also provide a safety - engineered and independently SIL3 certified version for use in safety and - mission critical applications that require provable dependability. - - 1 tab == 4 spaces! -*/ - -/* Standard includes. */ -#include <stdlib.h> -#include <string.h> - -/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining -all the API functions to use the MPU wrappers. That should only be done when -task.h is included from an application file. */ -#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE - -/* FreeRTOS includes. */ -#include "FreeRTOS.h" -#include "task.h" -#include "timers.h" -#include "StackMacros.h" - -/* Lint e961 and e750 are suppressed as a MISRA exception justified because the -MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the -header files above, but not in this file, in order to generate the correct -privileged Vs unprivileged linkage and placement. */ -#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */ - -/* Set configUSE_STATS_FORMATTING_FUNCTIONS to 2 to include the stats formatting -functions but without including stdio.h here. */ -#if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) - /* At the bottom of this file are two optional functions that can be used - to generate human readable text from the raw data generated by the - uxTaskGetSystemState() function. Note the formatting functions are provided - for convenience only, and are NOT considered part of the kernel. */ - #include <stdio.h> -#endif /* configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) */ - -#if( configUSE_PREEMPTION == 0 ) - /* If the cooperative scheduler is being used then a yield should not be - performed just because a higher priority task has been woken. */ - #define taskYIELD_IF_USING_PREEMPTION() -#else - #define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() -#endif - -/* Values that can be assigned to the ucNotifyState member of the TCB. */ -#define taskNOT_WAITING_NOTIFICATION ( ( uint8_t ) 0 ) -#define taskWAITING_NOTIFICATION ( ( uint8_t ) 1 ) -#define taskNOTIFICATION_RECEIVED ( ( uint8_t ) 2 ) - -/* - * The value used to fill the stack of a task when the task is created. This - * is used purely for checking the high water mark for tasks. - */ -#define tskSTACK_FILL_BYTE ( 0xa5U ) - -/* Sometimes the FreeRTOSConfig.h settings only allow a task to be created using -dynamically allocated RAM, in which case when any task is deleted it is known -that both the task's stack and TCB need to be freed. Sometimes the -FreeRTOSConfig.h settings only allow a task to be created using statically -allocated RAM, in which case when any task is deleted it is known that neither -the task's stack or TCB should be freed. Sometimes the FreeRTOSConfig.h -settings allow a task to be created using either statically or dynamically -allocated RAM, in which case a member of the TCB is used to record whether the -stack and/or TCB were allocated statically or dynamically, so when a task is -deleted the RAM that was allocated dynamically is freed again and no attempt is -made to free the RAM that was allocated statically. -tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE is only true if it is possible for a -task to be created using either statically or dynamically allocated RAM. Note -that if portUSING_MPU_WRAPPERS is 1 then a protected task can be created with -a statically allocated stack and a dynamically allocated TCB. */ -#define tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE ( ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) || ( portUSING_MPU_WRAPPERS == 1 ) ) -#define tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 0 ) -#define tskSTATICALLY_ALLOCATED_STACK_ONLY ( ( uint8_t ) 1 ) -#define tskSTATICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 2 ) - -/* - * Macros used by vListTask to indicate which state a task is in. - */ -#define tskBLOCKED_CHAR ( 'B' ) -#define tskREADY_CHAR ( 'R' ) -#define tskDELETED_CHAR ( 'D' ) -#define tskSUSPENDED_CHAR ( 'S' ) - -/* - * Some kernel aware debuggers require the data the debugger needs access to be - * global, rather than file scope. - */ -#ifdef portREMOVE_STATIC_QUALIFIER - #define static -#endif - -#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) - - /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 0 then task selection is - performed in a generic way that is not optimised to any particular - microcontroller architecture. */ - - /* uxTopReadyPriority holds the priority of the highest priority ready - state task. */ - #define taskRECORD_READY_PRIORITY( uxPriority ) \ - { \ - if( ( uxPriority ) > uxTopReadyPriority ) \ - { \ - uxTopReadyPriority = ( uxPriority ); \ - } \ - } /* taskRECORD_READY_PRIORITY */ - - /*-----------------------------------------------------------*/ - - #define taskSELECT_HIGHEST_PRIORITY_TASK() \ - { \ - UBaseType_t uxTopPriority = uxTopReadyPriority; \ - \ - /* Find the highest priority queue that contains ready tasks. */ \ - while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \ - { \ - configASSERT( uxTopPriority ); \ - --uxTopPriority; \ - } \ - \ - /* listGET_OWNER_OF_NEXT_ENTRY indexes through the list, so the tasks of \ - the same priority get an equal share of the processor time. */ \ - listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ - uxTopReadyPriority = uxTopPriority; \ - } /* taskSELECT_HIGHEST_PRIORITY_TASK */ - - /*-----------------------------------------------------------*/ - - /* Define away taskRESET_READY_PRIORITY() and portRESET_READY_PRIORITY() as - they are only required when a port optimised method of task selection is - being used. */ - #define taskRESET_READY_PRIORITY( uxPriority ) - #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) - -#else /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ - - /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 1 then task selection is - performed in a way that is tailored to the particular microcontroller - architecture being used. */ - - /* A port optimised version is provided. Call the port defined macros. */ - #define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) - - /*-----------------------------------------------------------*/ - - #define taskSELECT_HIGHEST_PRIORITY_TASK() \ - { \ - UBaseType_t uxTopPriority; \ - \ - /* Find the highest priority list that contains ready tasks. */ \ - portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \ - configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 ); \ - listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ - } /* taskSELECT_HIGHEST_PRIORITY_TASK() */ - - /*-----------------------------------------------------------*/ - - /* A port optimised version is provided, call it only if the TCB being reset - is being referenced from a ready list. If it is referenced from a delayed - or suspended list then it won't be in a ready list. */ - #define taskRESET_READY_PRIORITY( uxPriority ) \ - { \ - if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \ - { \ - portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \ - } \ - } - -#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ - -/*-----------------------------------------------------------*/ - -/* pxDelayedTaskList and pxOverflowDelayedTaskList are switched when the tick -count overflows. */ -#define taskSWITCH_DELAYED_LISTS() \ -{ \ - List_t *pxTemp; \ - \ - /* The delayed tasks list should be empty when the lists are switched. */ \ - configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \ - \ - pxTemp = pxDelayedTaskList; \ - pxDelayedTaskList = pxOverflowDelayedTaskList; \ - pxOverflowDelayedTaskList = pxTemp; \ - xNumOfOverflows++; \ - prvResetNextTaskUnblockTime(); \ -} - -/*-----------------------------------------------------------*/ - -/* - * Place the task represented by pxTCB into the appropriate ready list for - * the task. It is inserted at the end of the list. - */ -#define prvAddTaskToReadyList( pxTCB ) \ - traceMOVED_TASK_TO_READY_STATE( pxTCB ); \ - taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority ); \ - vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) ); \ - tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) -/*-----------------------------------------------------------*/ - -/* - * Several functions take an TaskHandle_t parameter that can optionally be NULL, - * where NULL is used to indicate that the handle of the currently executing - * task should be used in place of the parameter. This macro simply checks to - * see if the parameter is NULL and returns a pointer to the appropriate TCB. - */ -#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? ( TCB_t * ) pxCurrentTCB : ( TCB_t * ) ( pxHandle ) ) - -/* The item value of the event list item is normally used to hold the priority -of the task to which it belongs (coded to allow it to be held in reverse -priority order). However, it is occasionally borrowed for other purposes. It -is important its value is not updated due to a task priority change while it is -being used for another purpose. The following bit definition is used to inform -the scheduler that the value should not be changed - in which case it is the -responsibility of whichever module is using the value to ensure it gets set back -to its original value when it is released. */ -#if( configUSE_16_BIT_TICKS == 1 ) - #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x8000U -#else - #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x80000000UL -#endif - -/* - * Task control block. A task control block (TCB) is allocated for each task, - * and stores task state information, including a pointer to the task's context - * (the task's run time environment, including register values) - */ -typedef struct tskTaskControlBlock -{ - volatile StackType_t *pxTopOfStack; /*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */ - - #if ( portUSING_MPU_WRAPPERS == 1 ) - xMPU_SETTINGS xMPUSettings; /*< The MPU settings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */ - #endif - - ListItem_t xStateListItem; /*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */ - ListItem_t xEventListItem; /*< Used to reference a task from an event list. */ - UBaseType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */ - StackType_t *pxStack; /*< Points to the start of the stack. */ - char pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - - #if ( portSTACK_GROWTH > 0 ) - StackType_t *pxEndOfStack; /*< Points to the end of the stack on architectures where the stack grows up from low memory. */ - #endif - - #if ( portCRITICAL_NESTING_IN_TCB == 1 ) - UBaseType_t uxCriticalNesting; /*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */ - #endif - - #if ( configUSE_TRACE_FACILITY == 1 ) - UBaseType_t uxTCBNumber; /*< Stores a number that increments each time a TCB is created. It allows debuggers to determine when a task has been deleted and then recreated. */ - UBaseType_t uxTaskNumber; /*< Stores a number specifically for use by third party trace code. */ - #endif - - #if ( configUSE_MUTEXES == 1 ) - UBaseType_t uxBasePriority; /*< The priority last assigned to the task - used by the priority inheritance mechanism. */ - UBaseType_t uxMutexesHeld; - #endif - - #if ( configUSE_APPLICATION_TASK_TAG == 1 ) - TaskHookFunction_t pxTaskTag; - #endif - - #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) - void *pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; - #endif - - #if( configGENERATE_RUN_TIME_STATS == 1 ) - uint32_t ulRunTimeCounter; /*< Stores the amount of time the task has spent in the Running state. */ - #endif - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - /* Allocate a Newlib reent structure that is specific to this task. - Note Newlib support has been included by popular demand, but is not - used by the FreeRTOS maintainers themselves. FreeRTOS is not - responsible for resulting newlib operation. User must be familiar with - newlib and must provide system-wide implementations of the necessary - stubs. Be warned that (at the time of writing) the current newlib design - implements a system-wide malloc() that must be provided with locks. */ - struct _reent xNewLib_reent; - #endif - - #if( configUSE_TASK_NOTIFICATIONS == 1 ) - volatile uint32_t ulNotifiedValue; - volatile uint8_t ucNotifyState; - #endif - - /* See the comments above the definition of - tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE. */ - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) - uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */ - #endif - - #if( INCLUDE_xTaskAbortDelay == 1 ) - uint8_t ucDelayAborted; - #endif - -} tskTCB; - -/* The old tskTCB name is maintained above then typedefed to the new TCB_t name -below to enable the use of older kernel aware debuggers. */ -typedef tskTCB TCB_t; - -/*lint -e956 A manual analysis and inspection has been used to determine which -static variables must be declared volatile. */ - -PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL; - -/* Lists for ready and blocked tasks. --------------------*/ -PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ];/*< Prioritised ready tasks. */ -PRIVILEGED_DATA static List_t xDelayedTaskList1; /*< Delayed tasks. */ -PRIVILEGED_DATA static List_t xDelayedTaskList2; /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */ -PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /*< Points to the delayed task list currently being used. */ -PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */ -PRIVILEGED_DATA static List_t xPendingReadyList; /*< Tasks that have been readied while the scheduler was suspended. They will be moved to the ready list when the scheduler is resumed. */ - -#if( INCLUDE_vTaskDelete == 1 ) - - PRIVILEGED_DATA static List_t xTasksWaitingTermination; /*< Tasks that have been deleted - but their memory not yet freed. */ - PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U; - -#endif - -#if ( INCLUDE_vTaskSuspend == 1 ) - - PRIVILEGED_DATA static List_t xSuspendedTaskList; /*< Tasks that are currently suspended. */ - -#endif - -/* Other file private variables. --------------------------------*/ -PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U; -PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) 0U; -PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY; -PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE; -PRIVILEGED_DATA static volatile UBaseType_t uxPendedTicks = ( UBaseType_t ) 0U; -PRIVILEGED_DATA static volatile BaseType_t xYieldPending = pdFALSE; -PRIVILEGED_DATA static volatile BaseType_t xNumOfOverflows = ( BaseType_t ) 0; -PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U; -PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime = ( TickType_t ) 0U; /* Initialised to portMAX_DELAY before the scheduler starts. */ -PRIVILEGED_DATA static TaskHandle_t xIdleTaskHandle = NULL; /*< Holds the handle of the idle task. The idle task is created automatically when the scheduler is started. */ - -/* Context switches are held pending while the scheduler is suspended. Also, -interrupts must not manipulate the xStateListItem of a TCB, or any of the -lists the xStateListItem can be referenced from, if the scheduler is suspended. -If an interrupt needs to unblock a task while the scheduler is suspended then it -moves the task's event list item into the xPendingReadyList, ready for the -kernel to move the task from the pending ready list into the real ready list -when the scheduler is unsuspended. The pending ready list itself can only be -accessed from a critical section. */ -PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) pdFALSE; - -#if ( configGENERATE_RUN_TIME_STATS == 1 ) - - PRIVILEGED_DATA static uint32_t ulTaskSwitchedInTime = 0UL; /*< Holds the value of a timer/counter the last time a task was switched in. */ - PRIVILEGED_DATA static uint32_t ulTotalRunTime = 0UL; /*< Holds the total amount of execution time as defined by the run time counter clock. */ - -#endif - -/*lint +e956 */ - -/*-----------------------------------------------------------*/ - -/* Callback function prototypes. --------------------------*/ -#if( configCHECK_FOR_STACK_OVERFLOW > 0 ) - extern void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ); -#endif - -#if( configUSE_TICK_HOOK > 0 ) - extern void vApplicationTickHook( void ); -#endif - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - extern void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ); -#endif - -/* File private functions. --------------------------------*/ - -/** - * Utility task that simply returns pdTRUE if the task referenced by xTask is - * currently in the Suspended state, or pdFALSE if the task referenced by xTask - * is in any other state. - */ -#if ( INCLUDE_vTaskSuspend == 1 ) - static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; -#endif /* INCLUDE_vTaskSuspend */ - -/* - * Utility to ready all the lists used by the scheduler. This is called - * automatically upon the creation of the first task. - */ -static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION; - -/* - * The idle task, which as all tasks is implemented as a never ending loop. - * The idle task is automatically created and added to the ready lists upon - * creation of the first user task. - * - * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific - * language extensions. The equivalent prototype for this function is: - * - * void prvIdleTask( void *pvParameters ); - * - */ -static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters ); - -/* - * Utility to free all memory allocated by the scheduler to hold a TCB, - * including the stack pointed to by the TCB. - * - * This does not free memory allocated by the task itself (i.e. memory - * allocated by calls to pvPortMalloc from within the tasks application code). - */ -#if ( INCLUDE_vTaskDelete == 1 ) - - static void prvDeleteTCB( TCB_t *pxTCB ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Used only by the idle task. This checks to see if anything has been placed - * in the list of tasks waiting to be deleted. If so the task is cleaned up - * and its TCB deleted. - */ -static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION; - -/* - * The currently executing task is entering the Blocked state. Add the task to - * either the current or the overflow delayed task list. - */ -static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) PRIVILEGED_FUNCTION; - -/* - * Fills an TaskStatus_t structure with information on each task that is - * referenced from the pxList list (which may be a ready list, a delayed list, - * a suspended list, etc.). - * - * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM - * NORMAL APPLICATION CODE. - */ -#if ( configUSE_TRACE_FACILITY == 1 ) - - static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Searches pxList for a task with name pcNameToQuery - returning a handle to - * the task if it is found, or NULL if the task is not found. - */ -#if ( INCLUDE_xTaskGetHandle == 1 ) - - static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) PRIVILEGED_FUNCTION; - -#endif - -/* - * When a task is created, the stack of the task is filled with a known value. - * This function determines the 'high water mark' of the task stack by - * determining how much of the stack remains at the original preset value. - */ -#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) - - static uint16_t prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Return the amount of time, in ticks, that will pass before the kernel will - * next move a task from the Blocked state to the Running state. - * - * This conditional compilation should use inequality to 0, not equality to 1. - * This is to ensure portSUPPRESS_TICKS_AND_SLEEP() can be called when user - * defined low power mode implementations require configUSE_TICKLESS_IDLE to be - * set to a value other than 1. - */ -#if ( configUSE_TICKLESS_IDLE != 0 ) - - static TickType_t prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Set xNextTaskUnblockTime to the time at which the next Blocked state task - * will exit the Blocked state. - */ -static void prvResetNextTaskUnblockTime( void ); - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) - - /* - * Helper function used to pad task names with spaces when printing out - * human readable tables of task information. - */ - static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) PRIVILEGED_FUNCTION; - -#endif - -/* - * Called after a Task_t structure has been allocated either statically or - * dynamically to fill in the structure's members. - */ -static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, - const char * const pcName, - const uint32_t ulStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - TaskHandle_t * const pxCreatedTask, - TCB_t *pxNewTCB, - const MemoryRegion_t * const xRegions ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - -/* - * Called after a new task has been created and initialised to place the task - * under the control of the scheduler. - */ -static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) PRIVILEGED_FUNCTION; - -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_STATIC_ALLOCATION == 1 ) - - TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, - const char * const pcName, - const uint32_t ulStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - StackType_t * const puxStackBuffer, - StaticTask_t * const pxTaskBuffer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - { - TCB_t *pxNewTCB; - TaskHandle_t xReturn; - - configASSERT( puxStackBuffer != NULL ); - configASSERT( pxTaskBuffer != NULL ); - - if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) - { - /* The memory used for the task's TCB and stack are passed into this - function - use them. */ - pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ - pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; - - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) - { - /* Tasks can be created statically or dynamically, so note this - task was created statically in case the task is later deleted. */ - pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ - - prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); - prvAddNewTaskToReadyList( pxNewTCB ); - } - else - { - xReturn = NULL; - } - - return xReturn; - } - -#endif /* SUPPORT_STATIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -#if( portUSING_MPU_WRAPPERS == 1 ) - - BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) - { - TCB_t *pxNewTCB; - BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - - configASSERT( pxTaskDefinition->puxStackBuffer ); - - if( pxTaskDefinition->puxStackBuffer != NULL ) - { - /* Allocate space for the TCB. Where the memory comes from depends - on the implementation of the port malloc function and whether or - not static allocation is being used. */ - pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); - - if( pxNewTCB != NULL ) - { - /* Store the stack location in the TCB. */ - pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; - - /* Tasks can be created statically or dynamically, so note - this task had a statically allocated stack in case it is - later deleted. The TCB was allocated dynamically. */ - pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY; - - prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, - pxTaskDefinition->pcName, - ( uint32_t ) pxTaskDefinition->usStackDepth, - pxTaskDefinition->pvParameters, - pxTaskDefinition->uxPriority, - pxCreatedTask, pxNewTCB, - pxTaskDefinition->xRegions ); - - prvAddNewTaskToReadyList( pxNewTCB ); - xReturn = pdPASS; - } - } - - return xReturn; - } - -#endif /* portUSING_MPU_WRAPPERS */ -/*-----------------------------------------------------------*/ - -#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) - - BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, - const char * const pcName, - const uint16_t usStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - TaskHandle_t * const pxCreatedTask ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - { - TCB_t *pxNewTCB; - BaseType_t xReturn; - - /* If the stack grows down then allocate the stack then the TCB so the stack - does not grow into the TCB. Likewise if the stack grows up then allocate - the TCB then the stack. */ - #if( portSTACK_GROWTH > 0 ) - { - /* Allocate space for the TCB. Where the memory comes from depends on - the implementation of the port malloc function and whether or not static - allocation is being used. */ - pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); - - if( pxNewTCB != NULL ) - { - /* Allocate space for the stack used by the task being created. - The base of the stack memory stored in the TCB so the task can - be deleted later if required. */ - pxNewTCB->pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - if( pxNewTCB->pxStack == NULL ) - { - /* Could not allocate the stack. Delete the allocated TCB. */ - vPortFree( pxNewTCB ); - pxNewTCB = NULL; - } - } - } - #else /* portSTACK_GROWTH */ - { - StackType_t *pxStack; - - /* Allocate space for the stack used by the task being created. */ - pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - if( pxStack != NULL ) - { - /* Allocate space for the TCB. */ - pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e961 MISRA exception as the casts are only redundant for some paths. */ - - if( pxNewTCB != NULL ) - { - /* Store the stack location in the TCB. */ - pxNewTCB->pxStack = pxStack; - } - else - { - /* The stack cannot be used as the TCB was not created. Free - it again. */ - vPortFree( pxStack ); - } - } - else - { - pxNewTCB = NULL; - } - } - #endif /* portSTACK_GROWTH */ - - if( pxNewTCB != NULL ) - { - #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) - { - /* Tasks can be created statically or dynamically, so note this - task was created dynamically in case it is later deleted. */ - pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; - } - #endif /* configSUPPORT_STATIC_ALLOCATION */ - - prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); - prvAddNewTaskToReadyList( pxNewTCB ); - xReturn = pdPASS; - } - else - { - xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - } - - return xReturn; - } - -#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ -/*-----------------------------------------------------------*/ - -static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, - const char * const pcName, - const uint32_t ulStackDepth, - void * const pvParameters, - UBaseType_t uxPriority, - TaskHandle_t * const pxCreatedTask, - TCB_t *pxNewTCB, - const MemoryRegion_t * const xRegions ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ -{ -StackType_t *pxTopOfStack; -UBaseType_t x; - - #if( portUSING_MPU_WRAPPERS == 1 ) - /* Should the task be created in privileged mode? */ - BaseType_t xRunPrivileged; - if( ( uxPriority & portPRIVILEGE_BIT ) != 0U ) - { - xRunPrivileged = pdTRUE; - } - else - { - xRunPrivileged = pdFALSE; - } - uxPriority &= ~portPRIVILEGE_BIT; - #endif /* portUSING_MPU_WRAPPERS == 1 */ - - /* Avoid dependency on memset() if it is not required. */ - #if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) - { - /* Fill the stack with a known value to assist debugging. */ - ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); - } - #endif /* ( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) ) */ - - /* Calculate the top of stack address. This depends on whether the stack - grows from high memory to low (as per the 80x86) or vice versa. - portSTACK_GROWTH is used to make the result positive or negative as required - by the port. */ - #if( portSTACK_GROWTH < 0 ) - { - pxTopOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); - pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. */ - - /* Check the alignment of the calculated top of stack is correct. */ - configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); - } - #else /* portSTACK_GROWTH */ - { - pxTopOfStack = pxNewTCB->pxStack; - - /* Check the alignment of the stack buffer is correct. */ - configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxNewTCB->pxStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); - - /* The other extreme of the stack space is required if stack checking is - performed. */ - pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); - } - #endif /* portSTACK_GROWTH */ - - /* Store the task name in the TCB. */ - for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - { - pxNewTCB->pcTaskName[ x ] = pcName[ x ]; - - /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than - configMAX_TASK_NAME_LEN characters just in case the memory after the - string is not accessible (extremely unlikely). */ - if( pcName[ x ] == 0x00 ) - { - break; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - /* Ensure the name string is terminated in the case that the string length - was greater or equal to configMAX_TASK_NAME_LEN. */ - pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; - - /* This is used as an array index so must ensure it's not too large. First - remove the privilege bit if one is present. */ - if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) - { - uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - pxNewTCB->uxPriority = uxPriority; - #if ( configUSE_MUTEXES == 1 ) - { - pxNewTCB->uxBasePriority = uxPriority; - pxNewTCB->uxMutexesHeld = 0; - } - #endif /* configUSE_MUTEXES */ - - vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); - vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); - - /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get - back to the containing TCB from a generic item in a list. */ - listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); - - /* Event lists are always in priority order. */ - listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); - - #if ( portCRITICAL_NESTING_IN_TCB == 1 ) - { - pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; - } - #endif /* portCRITICAL_NESTING_IN_TCB */ - - #if ( configUSE_APPLICATION_TASK_TAG == 1 ) - { - pxNewTCB->pxTaskTag = NULL; - } - #endif /* configUSE_APPLICATION_TASK_TAG */ - - #if ( configGENERATE_RUN_TIME_STATS == 1 ) - { - pxNewTCB->ulRunTimeCounter = 0UL; - } - #endif /* configGENERATE_RUN_TIME_STATS */ - - #if ( portUSING_MPU_WRAPPERS == 1 ) - { - vPortStoreTaskMPUSettings( &( pxNewTCB->xMPUSettings ), xRegions, pxNewTCB->pxStack, ulStackDepth ); - } - #else - { - /* Avoid compiler warning about unreferenced parameter. */ - ( void ) xRegions; - } - #endif - - #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) - { - for( x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++ ) - { - pxNewTCB->pvThreadLocalStoragePointers[ x ] = NULL; - } - } - #endif - - #if ( configUSE_TASK_NOTIFICATIONS == 1 ) - { - pxNewTCB->ulNotifiedValue = 0; - pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - } - #endif - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - /* Initialise this task's Newlib reent structure. */ - _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); - } - #endif - - #if( INCLUDE_xTaskAbortDelay == 1 ) - { - pxNewTCB->ucDelayAborted = pdFALSE; - } - #endif - - /* Initialize the TCB stack to look as if the task was already running, - but had been interrupted by the scheduler. The return address is set - to the start of the task function. Once the stack has been initialised - the top of stack variable is updated. */ - #if( portUSING_MPU_WRAPPERS == 1 ) - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged ); - } - #else /* portUSING_MPU_WRAPPERS */ - { - pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); - } - #endif /* portUSING_MPU_WRAPPERS */ - - if( ( void * ) pxCreatedTask != NULL ) - { - /* Pass the handle out in an anonymous way. The handle can be used to - change the created task's priority, delete the created task, etc.*/ - *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } -} -/*-----------------------------------------------------------*/ - -static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) -{ - /* Ensure interrupts don't access the task lists while the lists are being - updated. */ - taskENTER_CRITICAL(); - { - uxCurrentNumberOfTasks++; - if( pxCurrentTCB == NULL ) - { - /* There are no other tasks, or all the other tasks are in - the suspended state - make this the current task. */ - pxCurrentTCB = pxNewTCB; - - if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) - { - /* This is the first task to be created so do the preliminary - initialisation required. We will not recover if this call - fails, but we will report the failure. */ - prvInitialiseTaskLists(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* If the scheduler is not already running, make this task the - current task if it is the highest priority task to be created - so far. */ - if( xSchedulerRunning == pdFALSE ) - { - if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) - { - pxCurrentTCB = pxNewTCB; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - uxTaskNumber++; - - #if ( configUSE_TRACE_FACILITY == 1 ) - { - /* Add a counter into the TCB for tracing only. */ - pxNewTCB->uxTCBNumber = uxTaskNumber; - } - #endif /* configUSE_TRACE_FACILITY */ - traceTASK_CREATE( pxNewTCB ); - - prvAddTaskToReadyList( pxNewTCB ); - - portSETUP_TCB( pxNewTCB ); - } - taskEXIT_CRITICAL(); - - if( xSchedulerRunning != pdFALSE ) - { - /* If the created task is of a higher priority than the current task - then it should run now. */ - if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) - { - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } -} -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelete == 1 ) - - void vTaskDelete( TaskHandle_t xTaskToDelete ) - { - TCB_t *pxTCB; - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the calling task that is - being deleted. */ - pxTCB = prvGetTCBFromHandle( xTaskToDelete ); - - /* Remove task from the ready list. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - taskRESET_READY_PRIORITY( pxTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Is the task waiting on an event also? */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Increment the uxTaskNumber also so kernel aware debuggers can - detect that the task lists need re-generating. This is done before - portPRE_TASK_DELETE_HOOK() as in the Windows port that macro will - not return. */ - uxTaskNumber++; - - if( pxTCB == pxCurrentTCB ) - { - /* A task is deleting itself. This cannot complete within the - task itself, as a context switch to another task is required. - Place the task in the termination list. The idle task will - check the termination list and free up any memory allocated by - the scheduler for the TCB and stack of the deleted task. */ - vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) ); - - /* Increment the ucTasksDeleted variable so the idle task knows - there is a task that has been deleted and that it should therefore - check the xTasksWaitingTermination list. */ - ++uxDeletedTasksWaitingCleanUp; - - /* The pre-delete hook is primarily for the Windows simulator, - in which Windows specific clean up operations are performed, - after which it is not possible to yield away from this task - - hence xYieldPending is used to latch that a context switch is - required. */ - portPRE_TASK_DELETE_HOOK( pxTCB, &xYieldPending ); - } - else - { - --uxCurrentNumberOfTasks; - prvDeleteTCB( pxTCB ); - - /* Reset the next expected unblock time in case it referred to - the task that has just been deleted. */ - prvResetNextTaskUnblockTime(); - } - - traceTASK_DELETE( pxTCB ); - } - taskEXIT_CRITICAL(); - - /* Force a reschedule if it is the currently running task that has just - been deleted. */ - if( xSchedulerRunning != pdFALSE ) - { - if( pxTCB == pxCurrentTCB ) - { - configASSERT( uxSchedulerSuspended == 0 ); - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - -#endif /* INCLUDE_vTaskDelete */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelayUntil == 1 ) - - void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) - { - TickType_t xTimeToWake; - BaseType_t xAlreadyYielded, xShouldDelay = pdFALSE; - - configASSERT( pxPreviousWakeTime ); - configASSERT( ( xTimeIncrement > 0U ) ); - configASSERT( uxSchedulerSuspended == 0 ); - - vTaskSuspendAll(); - { - /* Minor optimisation. The tick count cannot change in this - block. */ - const TickType_t xConstTickCount = xTickCount; - - /* Generate the tick time at which the task wants to wake. */ - xTimeToWake = *pxPreviousWakeTime + xTimeIncrement; - - if( xConstTickCount < *pxPreviousWakeTime ) - { - /* The tick count has overflowed since this function was - lasted called. In this case the only time we should ever - actually delay is if the wake time has also overflowed, - and the wake time is greater than the tick time. When this - is the case it is as if neither time had overflowed. */ - if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) - { - xShouldDelay = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* The tick time has not overflowed. In this case we will - delay if either the wake time has overflowed, and/or the - tick time is less than the wake time. */ - if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) - { - xShouldDelay = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - /* Update the wake time ready for the next call. */ - *pxPreviousWakeTime = xTimeToWake; - - if( xShouldDelay != pdFALSE ) - { - traceTASK_DELAY_UNTIL( xTimeToWake ); - - /* prvAddCurrentTaskToDelayedList() needs the block time, not - the time to wake, so subtract the current tick count. */ - prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - xAlreadyYielded = xTaskResumeAll(); - - /* Force a reschedule if xTaskResumeAll has not already done so, we may - have put ourselves to sleep. */ - if( xAlreadyYielded == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskDelayUntil */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelay == 1 ) - - void vTaskDelay( const TickType_t xTicksToDelay ) - { - BaseType_t xAlreadyYielded = pdFALSE; - - /* A delay time of zero just forces a reschedule. */ - if( xTicksToDelay > ( TickType_t ) 0U ) - { - configASSERT( uxSchedulerSuspended == 0 ); - vTaskSuspendAll(); - { - traceTASK_DELAY(); - - /* A task that is removed from the event list while the - scheduler is suspended will not get placed in the ready - list or removed from the blocked list until the scheduler - is resumed. - - This task cannot be in an event list as it is the currently - executing task. */ - prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); - } - xAlreadyYielded = xTaskResumeAll(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Force a reschedule if xTaskResumeAll has not already done so, we may - have put ourselves to sleep. */ - if( xAlreadyYielded == pdFALSE ) - { - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskDelay */ -/*-----------------------------------------------------------*/ - -#if( ( INCLUDE_eTaskGetState == 1 ) || ( configUSE_TRACE_FACILITY == 1 ) ) - - eTaskState eTaskGetState( TaskHandle_t xTask ) - { - eTaskState eReturn; - List_t *pxStateList; - const TCB_t * const pxTCB = ( TCB_t * ) xTask; - - configASSERT( pxTCB ); - - if( pxTCB == pxCurrentTCB ) - { - /* The task calling this function is querying its own state. */ - eReturn = eRunning; - } - else - { - taskENTER_CRITICAL(); - { - pxStateList = ( List_t * ) listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) ); - } - taskEXIT_CRITICAL(); - - if( ( pxStateList == pxDelayedTaskList ) || ( pxStateList == pxOverflowDelayedTaskList ) ) - { - /* The task being queried is referenced from one of the Blocked - lists. */ - eReturn = eBlocked; - } - - #if ( INCLUDE_vTaskSuspend == 1 ) - else if( pxStateList == &xSuspendedTaskList ) - { - /* The task being queried is referenced from the suspended - list. Is it genuinely suspended or is it block - indefinitely? */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ) - { - eReturn = eSuspended; - } - else - { - eReturn = eBlocked; - } - } - #endif - - #if ( INCLUDE_vTaskDelete == 1 ) - else if( ( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL ) ) - { - /* The task being queried is referenced from the deleted - tasks list, or it is not referenced from any lists at - all. */ - eReturn = eDeleted; - } - #endif - - else /*lint !e525 Negative indentation is intended to make use of pre-processor clearer. */ - { - /* If the task is not in any other state, it must be in the - Ready (including pending ready) state. */ - eReturn = eReady; - } - } - - return eReturn; - } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ - -#endif /* INCLUDE_eTaskGetState */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_uxTaskPriorityGet == 1 ) - - UBaseType_t uxTaskPriorityGet( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - UBaseType_t uxReturn; - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the priority of the that - called uxTaskPriorityGet() that is being queried. */ - pxTCB = prvGetTCBFromHandle( xTask ); - uxReturn = pxTCB->uxPriority; - } - taskEXIT_CRITICAL(); - - return uxReturn; - } - -#endif /* INCLUDE_uxTaskPriorityGet */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_uxTaskPriorityGet == 1 ) - - UBaseType_t uxTaskPriorityGetFromISR( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - UBaseType_t uxReturn, uxSavedInterruptState; - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptState = portSET_INTERRUPT_MASK_FROM_ISR(); - { - /* If null is passed in here then it is the priority of the calling - task that is being queried. */ - pxTCB = prvGetTCBFromHandle( xTask ); - uxReturn = pxTCB->uxPriority; - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptState ); - - return uxReturn; - } - -#endif /* INCLUDE_uxTaskPriorityGet */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskPrioritySet == 1 ) - - void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) - { - TCB_t *pxTCB; - UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry; - BaseType_t xYieldRequired = pdFALSE; - - configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) ); - - /* Ensure the new priority is valid. */ - if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) - { - uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the priority of the calling - task that is being changed. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - traceTASK_PRIORITY_SET( pxTCB, uxNewPriority ); - - #if ( configUSE_MUTEXES == 1 ) - { - uxCurrentBasePriority = pxTCB->uxBasePriority; - } - #else - { - uxCurrentBasePriority = pxTCB->uxPriority; - } - #endif - - if( uxCurrentBasePriority != uxNewPriority ) - { - /* The priority change may have readied a task of higher - priority than the calling task. */ - if( uxNewPriority > uxCurrentBasePriority ) - { - if( pxTCB != pxCurrentTCB ) - { - /* The priority of a task other than the currently - running task is being raised. Is the priority being - raised above that of the running task? */ - if( uxNewPriority >= pxCurrentTCB->uxPriority ) - { - xYieldRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - /* The priority of the running task is being raised, - but the running task must already be the highest - priority task able to run so no yield is required. */ - } - } - else if( pxTCB == pxCurrentTCB ) - { - /* Setting the priority of the running task down means - there may now be another task of higher priority that - is ready to execute. */ - xYieldRequired = pdTRUE; - } - else - { - /* Setting the priority of any other task down does not - require a yield as the running task must be above the - new priority of the task being modified. */ - } - - /* Remember the ready list the task might be referenced from - before its uxPriority member is changed so the - taskRESET_READY_PRIORITY() macro can function correctly. */ - uxPriorityUsedOnEntry = pxTCB->uxPriority; - - #if ( configUSE_MUTEXES == 1 ) - { - /* Only change the priority being used if the task is not - currently using an inherited priority. */ - if( pxTCB->uxBasePriority == pxTCB->uxPriority ) - { - pxTCB->uxPriority = uxNewPriority; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* The base priority gets set whatever. */ - pxTCB->uxBasePriority = uxNewPriority; - } - #else - { - pxTCB->uxPriority = uxNewPriority; - } - #endif - - /* Only reset the event list item value if the value is not - being used for anything else. */ - if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) - { - listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxNewPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* If the task is in the blocked or suspended list we need do - nothing more than change it's priority variable. However, if - the task is in a ready list it needs to be removed and placed - in the list appropriate to its new priority. */ - if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) - { - /* The task is currently in its ready list - remove before adding - it to it's new ready list. As we are in a critical section we - can do this even if the scheduler is suspended. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - /* It is known that the task is in its ready list so - there is no need to check again and the port level - reset macro can be called directly. */ - portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - prvAddTaskToReadyList( pxTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( xYieldRequired != pdFALSE ) - { - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Remove compiler warning about unused variables when the port - optimised task selection is not being used. */ - ( void ) uxPriorityUsedOnEntry; - } - } - taskEXIT_CRITICAL(); - } - -#endif /* INCLUDE_vTaskPrioritySet */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskSuspend == 1 ) - - void vTaskSuspend( TaskHandle_t xTaskToSuspend ) - { - TCB_t *pxTCB; - - taskENTER_CRITICAL(); - { - /* If null is passed in here then it is the running task that is - being suspended. */ - pxTCB = prvGetTCBFromHandle( xTaskToSuspend ); - - traceTASK_SUSPEND( pxTCB ); - - /* Remove task from the ready/delayed list and place in the - suspended list. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - taskRESET_READY_PRIORITY( pxTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Is the task waiting on an event also? */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ); - } - taskEXIT_CRITICAL(); - - if( xSchedulerRunning != pdFALSE ) - { - /* Reset the next expected unblock time in case it referred to the - task that is now in the Suspended state. */ - taskENTER_CRITICAL(); - { - prvResetNextTaskUnblockTime(); - } - taskEXIT_CRITICAL(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - if( pxTCB == pxCurrentTCB ) - { - if( xSchedulerRunning != pdFALSE ) - { - /* The current task has just been suspended. */ - configASSERT( uxSchedulerSuspended == 0 ); - portYIELD_WITHIN_API(); - } - else - { - /* The scheduler is not running, but the task that was pointed - to by pxCurrentTCB has just been suspended and pxCurrentTCB - must be adjusted to point to a different task. */ - if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks ) - { - /* No other tasks are ready, so set pxCurrentTCB back to - NULL so when the next task is created pxCurrentTCB will - be set to point to it no matter what its relative priority - is. */ - pxCurrentTCB = NULL; - } - else - { - vTaskSwitchContext(); - } - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskSuspend */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskSuspend == 1 ) - - static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) - { - BaseType_t xReturn = pdFALSE; - const TCB_t * const pxTCB = ( TCB_t * ) xTask; - - /* Accesses xPendingReadyList so must be called from a critical - section. */ - - /* It does not make sense to check if the calling task is suspended. */ - configASSERT( xTask ); - - /* Is the task being resumed actually in the suspended list? */ - if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE ) - { - /* Has the task already been resumed from within an ISR? */ - if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE ) - { - /* Is it in the suspended list because it is in the Suspended - state, or because is is blocked with no timeout? */ - if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE ) - { - xReturn = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xReturn; - } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ - -#endif /* INCLUDE_vTaskSuspend */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskSuspend == 1 ) - - void vTaskResume( TaskHandle_t xTaskToResume ) - { - TCB_t * const pxTCB = ( TCB_t * ) xTaskToResume; - - /* It does not make sense to resume the calling task. */ - configASSERT( xTaskToResume ); - - /* The parameter cannot be NULL as it is impossible to resume the - currently executing task. */ - if( ( pxTCB != NULL ) && ( pxTCB != pxCurrentTCB ) ) - { - taskENTER_CRITICAL(); - { - if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) - { - traceTASK_RESUME( pxTCB ); - - /* As we are in a critical section we can access the ready - lists even if the scheduler is suspended. */ - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - - /* We may have just resumed a higher priority task. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - /* This yield may not cause the task just resumed to run, - but will leave the lists in the correct state for the - next yield. */ - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* INCLUDE_vTaskSuspend */ - -/*-----------------------------------------------------------*/ - -#if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) - - BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) - { - BaseType_t xYieldRequired = pdFALSE; - TCB_t * const pxTCB = ( TCB_t * ) xTaskToResume; - UBaseType_t uxSavedInterruptStatus; - - configASSERT( xTaskToResume ); - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) - { - traceTASK_RESUME_FROM_ISR( pxTCB ); - - /* Check the ready lists can be accessed. */ - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - /* Ready lists can be accessed so move the task from the - suspended list to the ready list directly. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - xYieldRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - } - else - { - /* The delayed or ready lists cannot be accessed so the task - is held in the pending ready list until the scheduler is - unsuspended. */ - vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xYieldRequired; - } - -#endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ -/*-----------------------------------------------------------*/ - -void vTaskStartScheduler( void ) -{ -BaseType_t xReturn; - - /* Add the idle task at the lowest priority. */ - #if( configSUPPORT_STATIC_ALLOCATION == 1 ) - { - StaticTask_t *pxIdleTaskTCBBuffer = NULL; - StackType_t *pxIdleTaskStackBuffer = NULL; - uint32_t ulIdleTaskStackSize; - - /* The Idle task is created using user provided RAM - obtain the - address of the RAM then create the idle task. */ - vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); - xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, - "IDLE", - ulIdleTaskStackSize, - ( void * ) NULL, - ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), - pxIdleTaskStackBuffer, - pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ - - if( xIdleTaskHandle != NULL ) - { - xReturn = pdPASS; - } - else - { - xReturn = pdFAIL; - } - } - #else - { - /* The Idle task is being created using dynamically allocated RAM. */ - xReturn = xTaskCreate( prvIdleTask, - "IDLE", configMINIMAL_STACK_SIZE, - ( void * ) NULL, - ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), - &xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ - } - #endif /* configSUPPORT_STATIC_ALLOCATION */ - - #if ( configUSE_TIMERS == 1 ) - { - if( xReturn == pdPASS ) - { - xReturn = xTimerCreateTimerTask(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_TIMERS */ - - if( xReturn == pdPASS ) - { - /* Interrupts are turned off here, to ensure a tick does not occur - before or during the call to xPortStartScheduler(). The stacks of - the created tasks contain a status word with interrupts switched on - so interrupts will automatically get re-enabled when the first task - starts to run. */ - portDISABLE_INTERRUPTS(); - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - /* Switch Newlib's _impure_ptr variable to point to the _reent - structure specific to the task that will run first. */ - _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - } - #endif /* configUSE_NEWLIB_REENTRANT */ - - xNextTaskUnblockTime = portMAX_DELAY; - xSchedulerRunning = pdTRUE; - xTickCount = ( TickType_t ) 0U; - - /* If configGENERATE_RUN_TIME_STATS is defined then the following - macro must be defined to configure the timer/counter used to generate - the run time counter time base. */ - portCONFIGURE_TIMER_FOR_RUN_TIME_STATS(); - - /* Setting up the timer tick is hardware specific and thus in the - portable interface. */ - if( xPortStartScheduler() != pdFALSE ) - { - /* Should not reach here as if the scheduler is running the - function will not return. */ - } - else - { - /* Should only reach here if a task calls xTaskEndScheduler(). */ - } - } - else - { - /* This line will only be reached if the kernel could not be started, - because there was not enough FreeRTOS heap to create the idle task - or the timer task. */ - configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); - } - - /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, - meaning xIdleTaskHandle is not used anywhere else. */ - ( void ) xIdleTaskHandle; -} -/*-----------------------------------------------------------*/ - -void vTaskEndScheduler( void ) -{ - /* Stop the scheduler interrupts and call the portable scheduler end - routine so the original ISRs can be restored if necessary. The port - layer must ensure interrupts enable bit is left in the correct state. */ - portDISABLE_INTERRUPTS(); - xSchedulerRunning = pdFALSE; - vPortEndScheduler(); -} -/*----------------------------------------------------------*/ - -void vTaskSuspendAll( void ) -{ - /* A critical section is not required as the variable is of type - BaseType_t. Please read Richard Barry's reply in the following link to a - post in the FreeRTOS support forum before reporting this as a bug! - - http://goo.gl/wu4acr */ - ++uxSchedulerSuspended; -} -/*----------------------------------------------------------*/ - -#if ( configUSE_TICKLESS_IDLE != 0 ) - - static TickType_t prvGetExpectedIdleTime( void ) - { - TickType_t xReturn; - UBaseType_t uxHigherPriorityReadyTasks = pdFALSE; - - /* uxHigherPriorityReadyTasks takes care of the case where - configUSE_PREEMPTION is 0, so there may be tasks above the idle priority - task that are in the Ready state, even though the idle task is - running. */ - #if( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) - { - if( uxTopReadyPriority > tskIDLE_PRIORITY ) - { - uxHigherPriorityReadyTasks = pdTRUE; - } - } - #else - { - const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01; - - /* When port optimised task selection is used the uxTopReadyPriority - variable is used as a bit map. If bits other than the least - significant bit are set then there are tasks that have a priority - above the idle priority that are in the Ready state. This takes - care of the case where the co-operative scheduler is in use. */ - if( uxTopReadyPriority > uxLeastSignificantBit ) - { - uxHigherPriorityReadyTasks = pdTRUE; - } - } - #endif - - if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY ) - { - xReturn = 0; - } - else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 ) - { - /* There are other idle priority tasks in the ready state. If - time slicing is used then the very next tick interrupt must be - processed. */ - xReturn = 0; - } - else if( uxHigherPriorityReadyTasks != pdFALSE ) - { - /* There are tasks in the Ready state that have a priority above the - idle priority. This path can only be reached if - configUSE_PREEMPTION is 0. */ - xReturn = 0; - } - else - { - xReturn = xNextTaskUnblockTime - xTickCount; - } - - return xReturn; - } - -#endif /* configUSE_TICKLESS_IDLE */ -/*----------------------------------------------------------*/ - -BaseType_t xTaskResumeAll( void ) -{ -TCB_t *pxTCB = NULL; -BaseType_t xAlreadyYielded = pdFALSE; - - /* If uxSchedulerSuspended is zero then this function does not match a - previous call to vTaskSuspendAll(). */ - configASSERT( uxSchedulerSuspended ); - - /* It is possible that an ISR caused a task to be removed from an event - list while the scheduler was suspended. If this was the case then the - removed task will have been added to the xPendingReadyList. Once the - scheduler has been resumed it is safe to move all the pending ready - tasks from this list into their appropriate ready list. */ - taskENTER_CRITICAL(); - { - --uxSchedulerSuspended; - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) - { - /* Move any readied tasks from the pending list into the - appropriate ready list. */ - while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) - { - pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - - /* If the moved task has a priority higher than the current - task then a yield must be performed. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - if( pxTCB != NULL ) - { - /* A task was unblocked while the scheduler was suspended, - which may have prevented the next unblock time from being - re-calculated, in which case re-calculate it now. Mainly - important for low power tickless implementations, where - this can prevent an unnecessary exit from low power - state. */ - prvResetNextTaskUnblockTime(); - } - - /* If any ticks occurred while the scheduler was suspended then - they should be processed now. This ensures the tick count does - not slip, and that any delayed tasks are resumed at the correct - time. */ - { - UBaseType_t uxPendedCounts = uxPendedTicks; /* Non-volatile copy. */ - - if( uxPendedCounts > ( UBaseType_t ) 0U ) - { - do - { - if( xTaskIncrementTick() != pdFALSE ) - { - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - --uxPendedCounts; - } while( uxPendedCounts > ( UBaseType_t ) 0U ); - - uxPendedTicks = 0; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - if( xYieldPending != pdFALSE ) - { - #if( configUSE_PREEMPTION != 0 ) - { - xAlreadyYielded = pdTRUE; - } - #endif - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - return xAlreadyYielded; -} -/*-----------------------------------------------------------*/ - -TickType_t xTaskGetTickCount( void ) -{ -TickType_t xTicks; - - /* Critical section required if running on a 16 bit processor. */ - portTICK_TYPE_ENTER_CRITICAL(); - { - xTicks = xTickCount; - } - portTICK_TYPE_EXIT_CRITICAL(); - - return xTicks; -} -/*-----------------------------------------------------------*/ - -TickType_t xTaskGetTickCountFromISR( void ) -{ -TickType_t xReturn; -UBaseType_t uxSavedInterruptStatus; - - /* RTOS ports that support interrupt nesting have the concept of a maximum - system call (or maximum API call) interrupt priority. Interrupts that are - above the maximum system call priority are kept permanently enabled, even - when the RTOS kernel is in a critical section, but cannot make any calls to - FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h - then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has been - assigned a priority above the configured maximum system call priority. - Only FreeRTOS functions that end in FromISR can be called from interrupts - that have been assigned a priority at or (logically) below the maximum - system call interrupt priority. FreeRTOS maintains a separate interrupt - safe API to ensure interrupt entry is as fast and as simple as possible. - More information (albeit Cortex-M specific) is provided on the following - link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - uxSavedInterruptStatus = portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR(); - { - xReturn = xTickCount; - } - portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -UBaseType_t uxTaskGetNumberOfTasks( void ) -{ - /* A critical section is not required because the variables are of type - BaseType_t. */ - return uxCurrentNumberOfTasks; -} -/*-----------------------------------------------------------*/ - -char *pcTaskGetName( TaskHandle_t xTaskToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ -{ -TCB_t *pxTCB; - - /* If null is passed in here then the name of the calling task is being - queried. */ - pxTCB = prvGetTCBFromHandle( xTaskToQuery ); - configASSERT( pxTCB ); - return &( pxTCB->pcTaskName[ 0 ] ); -} -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskGetHandle == 1 ) - - static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) - { - TCB_t *pxNextTCB, *pxFirstTCB, *pxReturn = NULL; - UBaseType_t x; - char cNextChar; - - /* This function is called with the scheduler suspended. */ - - if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) - { - listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); - - do - { - listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); - - /* Check each character in the name looking for a match or - mismatch. */ - for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - { - cNextChar = pxNextTCB->pcTaskName[ x ]; - - if( cNextChar != pcNameToQuery[ x ] ) - { - /* Characters didn't match. */ - break; - } - else if( cNextChar == 0x00 ) - { - /* Both strings terminated, a match must have been - found. */ - pxReturn = pxNextTCB; - break; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - if( pxReturn != NULL ) - { - /* The handle has been found. */ - break; - } - - } while( pxNextTCB != pxFirstTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return pxReturn; - } - -#endif /* INCLUDE_xTaskGetHandle */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskGetHandle == 1 ) - - TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ - { - UBaseType_t uxQueue = configMAX_PRIORITIES; - TCB_t* pxTCB; - - /* Task names will be truncated to configMAX_TASK_NAME_LEN - 1 bytes. */ - configASSERT( strlen( pcNameToQuery ) < configMAX_TASK_NAME_LEN ); - - vTaskSuspendAll(); - { - /* Search the ready lists. */ - do - { - uxQueue--; - pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) &( pxReadyTasksLists[ uxQueue ] ), pcNameToQuery ); - - if( pxTCB != NULL ) - { - /* Found the handle. */ - break; - } - - } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - /* Search the delayed lists. */ - if( pxTCB == NULL ) - { - pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxDelayedTaskList, pcNameToQuery ); - } - - if( pxTCB == NULL ) - { - pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxOverflowDelayedTaskList, pcNameToQuery ); - } - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - if( pxTCB == NULL ) - { - /* Search the suspended list. */ - pxTCB = prvSearchForNameWithinSingleList( &xSuspendedTaskList, pcNameToQuery ); - } - } - #endif - - #if( INCLUDE_vTaskDelete == 1 ) - { - if( pxTCB == NULL ) - { - /* Search the deleted list. */ - pxTCB = prvSearchForNameWithinSingleList( &xTasksWaitingTermination, pcNameToQuery ); - } - } - #endif - } - ( void ) xTaskResumeAll(); - - return ( TaskHandle_t ) pxTCB; - } - -#endif /* INCLUDE_xTaskGetHandle */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) - { - UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES; - - vTaskSuspendAll(); - { - /* Is there a space in the array for each task in the system? */ - if( uxArraySize >= uxCurrentNumberOfTasks ) - { - /* Fill in an TaskStatus_t structure with information on each - task in the Ready state. */ - do - { - uxQueue--; - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady ); - - } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - /* Fill in an TaskStatus_t structure with information on each - task in the Blocked state. */ - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxDelayedTaskList, eBlocked ); - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxOverflowDelayedTaskList, eBlocked ); - - #if( INCLUDE_vTaskDelete == 1 ) - { - /* Fill in an TaskStatus_t structure with information on - each task that has been deleted but not yet cleaned up. */ - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted ); - } - #endif - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - /* Fill in an TaskStatus_t structure with information on - each task in the Suspended state. */ - uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended ); - } - #endif - - #if ( configGENERATE_RUN_TIME_STATS == 1) - { - if( pulTotalRunTime != NULL ) - { - #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE - portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) ); - #else - *pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); - #endif - } - } - #else - { - if( pulTotalRunTime != NULL ) - { - *pulTotalRunTime = 0; - } - } - #endif - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - ( void ) xTaskResumeAll(); - - return uxTask; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) - - TaskHandle_t xTaskGetIdleTaskHandle( void ) - { - /* If xTaskGetIdleTaskHandle() is called before the scheduler has been - started, then xIdleTaskHandle will be NULL. */ - configASSERT( ( xIdleTaskHandle != NULL ) ); - return xIdleTaskHandle; - } - -#endif /* INCLUDE_xTaskGetIdleTaskHandle */ -/*----------------------------------------------------------*/ - -/* This conditional compilation should use inequality to 0, not equality to 1. -This is to ensure vTaskStepTick() is available when user defined low power mode -implementations require configUSE_TICKLESS_IDLE to be set to a value other than -1. */ -#if ( configUSE_TICKLESS_IDLE != 0 ) - - void vTaskStepTick( const TickType_t xTicksToJump ) - { - /* Correct the tick count value after a period during which the tick - was suppressed. Note this does *not* call the tick hook function for - each stepped tick. */ - configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); - xTickCount += xTicksToJump; - traceINCREASE_TICK_COUNT( xTicksToJump ); - } - -#endif /* configUSE_TICKLESS_IDLE */ -/*----------------------------------------------------------*/ - -#if ( INCLUDE_xTaskAbortDelay == 1 ) - - BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) - { - TCB_t *pxTCB = ( TCB_t * ) xTask; - BaseType_t xReturn = pdFALSE; - - configASSERT( pxTCB ); - - vTaskSuspendAll(); - { - /* A task can only be prematurely removed from the Blocked state if - it is actually in the Blocked state. */ - if( eTaskGetState( xTask ) == eBlocked ) - { - /* Remove the reference to the task from the blocked list. An - interrupt won't touch the xStateListItem because the - scheduler is suspended. */ - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - - /* Is the task waiting on an event also? If so remove it from - the event list too. Interrupts can touch the event list item, - even though the scheduler is suspended, so a critical section - is used. */ - taskENTER_CRITICAL(); - { - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - pxTCB->ucDelayAborted = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - /* Place the unblocked task into the appropriate ready list. */ - prvAddTaskToReadyList( pxTCB ); - - /* A task being unblocked cannot cause an immediate context - switch if preemption is turned off. */ - #if ( configUSE_PREEMPTION == 1 ) - { - /* Preemption is on, but a context switch should only be - performed if the unblocked task has a priority that is - equal to or higher than the currently executing task. */ - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* Pend the yield to be performed when the scheduler - is unsuspended. */ - xYieldPending = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_PREEMPTION */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - xTaskResumeAll(); - - return xReturn; - } - -#endif /* INCLUDE_xTaskAbortDelay */ -/*----------------------------------------------------------*/ - -BaseType_t xTaskIncrementTick( void ) -{ -TCB_t * pxTCB; -TickType_t xItemValue; -BaseType_t xSwitchRequired = pdFALSE; - - /* Called by the portable layer each time a tick interrupt occurs. - Increments the tick then checks to see if the new tick value will cause any - tasks to be unblocked. */ - traceTASK_INCREMENT_TICK( xTickCount ); - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - /* Minor optimisation. The tick count cannot change in this - block. */ - const TickType_t xConstTickCount = xTickCount + 1; - - /* Increment the RTOS tick, switching the delayed and overflowed - delayed lists if it wraps to 0. */ - xTickCount = xConstTickCount; - - if( xConstTickCount == ( TickType_t ) 0U ) - { - taskSWITCH_DELAYED_LISTS(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* See if this tick has made a timeout expire. Tasks are stored in - the queue in the order of their wake time - meaning once one task - has been found whose block time has not expired there is no need to - look any further down the list. */ - if( xConstTickCount >= xNextTaskUnblockTime ) - { - for( ;; ) - { - if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - { - /* The delayed list is empty. Set xNextTaskUnblockTime - to the maximum possible value so it is extremely - unlikely that the - if( xTickCount >= xNextTaskUnblockTime ) test will pass - next time through. */ - xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - break; - } - else - { - /* The delayed list is not empty, get the value of the - item at the head of the delayed list. This is the time - at which the task at the head of the delayed list must - be removed from the Blocked state. */ - pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); - xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); - - if( xConstTickCount < xItemValue ) - { - /* It is not time to unblock this item yet, but the - item value is the time at which the task at the head - of the blocked list must be removed from the Blocked - state - so record the item value in - xNextTaskUnblockTime. */ - xNextTaskUnblockTime = xItemValue; - break; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* It is time to remove the item from the Blocked state. */ - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - - /* Is the task waiting on an event also? If so remove - it from the event list. */ - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Place the unblocked task into the appropriate ready - list. */ - prvAddTaskToReadyList( pxTCB ); - - /* A task being unblocked cannot cause an immediate - context switch if preemption is turned off. */ - #if ( configUSE_PREEMPTION == 1 ) - { - /* Preemption is on, but a context switch should - only be performed if the unblocked task has a - priority that is equal to or higher than the - currently executing task. */ - if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - { - xSwitchRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_PREEMPTION */ - } - } - } - - /* Tasks of equal priority to the currently running task will share - processing time (time slice) if preemption is on, and the application - writer has not explicitly turned time slicing off. */ - #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) - { - if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) - { - xSwitchRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) */ - - #if ( configUSE_TICK_HOOK == 1 ) - { - /* Guard against the tick hook being called when the pended tick - count is being unwound (when the scheduler is being unlocked). */ - if( uxPendedTicks == ( UBaseType_t ) 0U ) - { - vApplicationTickHook(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_TICK_HOOK */ - } - else - { - ++uxPendedTicks; - - /* The tick hook gets called at regular intervals, even if the - scheduler is locked. */ - #if ( configUSE_TICK_HOOK == 1 ) - { - vApplicationTickHook(); - } - #endif - } - - #if ( configUSE_PREEMPTION == 1 ) - { - if( xYieldPending != pdFALSE ) - { - xSwitchRequired = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_PREEMPTION */ - - return xSwitchRequired; -} -/*-----------------------------------------------------------*/ - -#if ( configUSE_APPLICATION_TASK_TAG == 1 ) - - void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) - { - TCB_t *xTCB; - - /* If xTask is NULL then it is the task hook of the calling task that is - getting set. */ - if( xTask == NULL ) - { - xTCB = ( TCB_t * ) pxCurrentTCB; - } - else - { - xTCB = ( TCB_t * ) xTask; - } - - /* Save the hook function in the TCB. A critical section is required as - the value can be accessed from an interrupt. */ - taskENTER_CRITICAL(); - xTCB->pxTaskTag = pxHookFunction; - taskEXIT_CRITICAL(); - } - -#endif /* configUSE_APPLICATION_TASK_TAG */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_APPLICATION_TASK_TAG == 1 ) - - TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) - { - TCB_t *xTCB; - TaskHookFunction_t xReturn; - - /* If xTask is NULL then we are setting our own task hook. */ - if( xTask == NULL ) - { - xTCB = ( TCB_t * ) pxCurrentTCB; - } - else - { - xTCB = ( TCB_t * ) xTask; - } - - /* Save the hook function in the TCB. A critical section is required as - the value can be accessed from an interrupt. */ - taskENTER_CRITICAL(); - { - xReturn = xTCB->pxTaskTag; - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_APPLICATION_TASK_TAG */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_APPLICATION_TASK_TAG == 1 ) - - BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) - { - TCB_t *xTCB; - BaseType_t xReturn; - - /* If xTask is NULL then we are calling our own task hook. */ - if( xTask == NULL ) - { - xTCB = ( TCB_t * ) pxCurrentTCB; - } - else - { - xTCB = ( TCB_t * ) xTask; - } - - if( xTCB->pxTaskTag != NULL ) - { - xReturn = xTCB->pxTaskTag( pvParameter ); - } - else - { - xReturn = pdFAIL; - } - - return xReturn; - } - -#endif /* configUSE_APPLICATION_TASK_TAG */ -/*-----------------------------------------------------------*/ - -void vTaskSwitchContext( void ) -{ - if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) - { - /* The scheduler is currently suspended - do not allow a context - switch. */ - xYieldPending = pdTRUE; - } - else - { - xYieldPending = pdFALSE; - traceTASK_SWITCHED_OUT(); - - #if ( configGENERATE_RUN_TIME_STATS == 1 ) - { - #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE - portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime ); - #else - ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); - #endif - - /* Add the amount of time the task has been running to the - accumulated time so far. The time the task started running was - stored in ulTaskSwitchedInTime. Note that there is no overflow - protection here so count values are only valid until the timer - overflows. The guard against negative values is to protect - against suspect run time stat counter implementations - which - are provided by the application, not the kernel. */ - if( ulTotalRunTime > ulTaskSwitchedInTime ) - { - pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - ulTaskSwitchedInTime = ulTotalRunTime; - } - #endif /* configGENERATE_RUN_TIME_STATS */ - - /* Check for stack overflow, if configured. */ - taskCHECK_FOR_STACK_OVERFLOW(); - - /* Select a new task to run using either the generic C or port - optimised asm code. */ - taskSELECT_HIGHEST_PRIORITY_TASK(); - traceTASK_SWITCHED_IN(); - - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - /* Switch Newlib's _impure_ptr variable to point to the _reent - structure specific to this task. */ - _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - } - #endif /* configUSE_NEWLIB_REENTRANT */ - } -} -/*-----------------------------------------------------------*/ - -void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) -{ - configASSERT( pxEventList ); - - /* THIS FUNCTION MUST BE CALLED WITH EITHER INTERRUPTS DISABLED OR THE - SCHEDULER SUSPENDED AND THE QUEUE BEING ACCESSED LOCKED. */ - - /* Place the event list item of the TCB in the appropriate event list. - This is placed in the list in priority order so the highest priority task - is the first to be woken by the event. The queue that contains the event - list is locked, preventing simultaneous access from interrupts. */ - vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); -} -/*-----------------------------------------------------------*/ - -void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) -{ - configASSERT( pxEventList ); - - /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by - the event groups implementation. */ - configASSERT( uxSchedulerSuspended != 0 ); - - /* Store the item value in the event list item. It is safe to access the - event list item here as interrupts won't access the event list item of a - task that is not in the Blocked state. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); - - /* Place the event list item of the TCB at the end of the appropriate event - list. It is safe to access the event list here because it is part of an - event group implementation - and interrupts don't access event groups - directly (instead they access them indirectly by pending function calls to - the task level). */ - vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); -} -/*-----------------------------------------------------------*/ - -#if( configUSE_TIMERS == 1 ) - - void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) - { - configASSERT( pxEventList ); - - /* This function should not be called by application code hence the - 'Restricted' in its name. It is not part of the public API. It is - designed for use by kernel code, and has special calling requirements - - it should be called with the scheduler suspended. */ - - - /* Place the event list item of the TCB in the appropriate event list. - In this case it is assume that this is the only task that is going to - be waiting on this event list, so the faster vListInsertEnd() function - can be used in place of vListInsert. */ - vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - - /* If the task should block indefinitely then set the block time to a - value that will be recognised as an indefinite delay inside the - prvAddCurrentTaskToDelayedList() function. */ - if( xWaitIndefinitely != pdFALSE ) - { - xTicksToWait = portMAX_DELAY; - } - - traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); - prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); - } - -#endif /* configUSE_TIMERS */ -/*-----------------------------------------------------------*/ - -BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) -{ -TCB_t *pxUnblockedTCB; -BaseType_t xReturn; - - /* THIS FUNCTION MUST BE CALLED FROM A CRITICAL SECTION. It can also be - called from a critical section within an ISR. */ - - /* The event list is sorted in priority order, so the first in the list can - be removed as it is known to be the highest priority. Remove the TCB from - the delayed list, and add it to the ready list. - - If an event is for a queue that is locked then this function will never - get called - the lock count on the queue will get modified instead. This - means exclusive access to the event list is guaranteed here. - - This function assumes that a check has already been made to ensure that - pxEventList is not empty. */ - pxUnblockedTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); - configASSERT( pxUnblockedTCB ); - ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxUnblockedTCB ); - } - else - { - /* The delayed and ready lists cannot be accessed, so hold this task - pending until the scheduler is resumed. */ - vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); - } - - if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* Return true if the task removed from the event list has a higher - priority than the calling task. This allows the calling task to know if - it should force a context switch now. */ - xReturn = pdTRUE; - - /* Mark that a yield is pending in case the user is not using the - "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ - xYieldPending = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - #if( configUSE_TICKLESS_IDLE != 0 ) - { - /* If a task is blocked on a kernel object then xNextTaskUnblockTime - might be set to the blocked task's time out time. If the task is - unblocked for a reason other than a timeout xNextTaskUnblockTime is - normally left unchanged, because it is automatically reset to a new - value when the tick count equals xNextTaskUnblockTime. However if - tickless idling is used it might be more important to enter sleep mode - at the earliest possible time - so reset xNextTaskUnblockTime here to - ensure it is updated at the earliest possible time. */ - prvResetNextTaskUnblockTime(); - } - #endif - - return xReturn; -} -/*-----------------------------------------------------------*/ - -BaseType_t xTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) -{ -TCB_t *pxUnblockedTCB; -BaseType_t xReturn; - - /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by - the event flags implementation. */ - configASSERT( uxSchedulerSuspended != pdFALSE ); - - /* Store the new item value in the event list. */ - listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); - - /* Remove the event list form the event flag. Interrupts do not access - event flags. */ - pxUnblockedTCB = ( TCB_t * ) listGET_LIST_ITEM_OWNER( pxEventListItem ); - configASSERT( pxUnblockedTCB ); - ( void ) uxListRemove( pxEventListItem ); - - /* Remove the task from the delayed list and add it to the ready list. The - scheduler is suspended so interrupts will not be accessing the ready - lists. */ - ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxUnblockedTCB ); - - if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* Return true if the task removed from the event list has - a higher priority than the calling task. This allows - the calling task to know if it should force a context - switch now. */ - xReturn = pdTRUE; - - /* Mark that a yield is pending in case the user is not using the - "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ - xYieldPending = pdTRUE; - } - else - { - xReturn = pdFALSE; - } - - return xReturn; -} -/*-----------------------------------------------------------*/ - -void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) -{ - configASSERT( pxTimeOut ); - pxTimeOut->xOverflowCount = xNumOfOverflows; - pxTimeOut->xTimeOnEntering = xTickCount; -} -/*-----------------------------------------------------------*/ - -BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) -{ -BaseType_t xReturn; - - configASSERT( pxTimeOut ); - configASSERT( pxTicksToWait ); - - taskENTER_CRITICAL(); - { - /* Minor optimisation. The tick count cannot change in this block. */ - const TickType_t xConstTickCount = xTickCount; - - #if( INCLUDE_xTaskAbortDelay == 1 ) - if( pxCurrentTCB->ucDelayAborted != pdFALSE ) - { - /* The delay was aborted, which is not the same as a time out, - but has the same result. */ - pxCurrentTCB->ucDelayAborted = pdFALSE; - xReturn = pdTRUE; - } - else - #endif - - #if ( INCLUDE_vTaskSuspend == 1 ) - if( *pxTicksToWait == portMAX_DELAY ) - { - /* If INCLUDE_vTaskSuspend is set to 1 and the block time - specified is the maximum block time then the task should block - indefinitely, and therefore never time out. */ - xReturn = pdFALSE; - } - else - #endif - - if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ - { - /* The tick count is greater than the time at which - vTaskSetTimeout() was called, but has also overflowed since - vTaskSetTimeOut() was called. It must have wrapped all the way - around and gone past again. This passed since vTaskSetTimeout() - was called. */ - xReturn = pdTRUE; - } - else if( ( ( TickType_t ) ( xConstTickCount - pxTimeOut->xTimeOnEntering ) ) < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ - { - /* Not a genuine timeout. Adjust parameters for time remaining. */ - *pxTicksToWait -= ( xConstTickCount - pxTimeOut->xTimeOnEntering ); - vTaskSetTimeOutState( pxTimeOut ); - xReturn = pdFALSE; - } - else - { - xReturn = pdTRUE; - } - } - taskEXIT_CRITICAL(); - - return xReturn; -} -/*-----------------------------------------------------------*/ - -void vTaskMissedYield( void ) -{ - xYieldPending = pdTRUE; -} -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) - { - UBaseType_t uxReturn; - TCB_t *pxTCB; - - if( xTask != NULL ) - { - pxTCB = ( TCB_t * ) xTask; - uxReturn = pxTCB->uxTaskNumber; - } - else - { - uxReturn = 0U; - } - - return uxReturn; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) - { - TCB_t *pxTCB; - - if( xTask != NULL ) - { - pxTCB = ( TCB_t * ) xTask; - pxTCB->uxTaskNumber = uxHandle; - } - } - -#endif /* configUSE_TRACE_FACILITY */ - -/* - * ----------------------------------------------------------- - * The Idle task. - * ---------------------------------------------------------- - * - * The portTASK_FUNCTION() macro is used to allow port/compiler specific - * language extensions. The equivalent prototype for this function is: - * - * void prvIdleTask( void *pvParameters ); - * - */ -static portTASK_FUNCTION( prvIdleTask, pvParameters ) -{ - /* Stop warnings. */ - ( void ) pvParameters; - - /** THIS IS THE RTOS IDLE TASK - WHICH IS CREATED AUTOMATICALLY WHEN THE - SCHEDULER IS STARTED. **/ - - for( ;; ) - { - /* See if any tasks have deleted themselves - if so then the idle task - is responsible for - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - freeing the deleted task's TCB and stack. */ - prvCheckTasksWaitingTermination(); - - #if ( configUSE_PREEMPTION == 0 ) - { - /* If we are not using preemption we keep forcing a task switch to - see if any other task has become available. If we are using - preemption we don't need to do this as any task becoming available - will automatically get the processor anyway. */ - taskYIELD(); - } - #endif /* configUSE_PREEMPTION */ - - #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) - { - /* When using preemption tasks of equal priority will be - timesliced. If a task that is sharing the idle priority is ready - to run then the idle task should yield before the end of the - timeslice. - - A critical region is not required here as we are just reading from - the list, and an occasional incorrect value will not matter. If - the ready list at the idle priority contains more than one task - then a task other than the idle task is ready to execute. */ - if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) - { - taskYIELD(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) */ - - #if ( configUSE_IDLE_HOOK == 1 ) - { - extern void vApplicationIdleHook( void ); - - /* Call the user defined function from within the idle task. This - allows the application designer to add background functionality - without the overhead of a separate task. - NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES, - CALL A FUNCTION THAT MIGHT BLOCK. */ - vApplicationIdleHook(); - } - #endif /* configUSE_IDLE_HOOK */ - - /* This conditional compilation should use inequality to 0, not equality - to 1. This is to ensure portSUPPRESS_TICKS_AND_SLEEP() is called when - user defined low power mode implementations require - configUSE_TICKLESS_IDLE to be set to a value other than 1. */ - #if ( configUSE_TICKLESS_IDLE != 0 ) - { - TickType_t xExpectedIdleTime; - - /* It is not desirable to suspend then resume the scheduler on - each iteration of the idle task. Therefore, a preliminary - test of the expected idle time is performed without the - scheduler suspended. The result here is not necessarily - valid. */ - xExpectedIdleTime = prvGetExpectedIdleTime(); - - if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) - { - vTaskSuspendAll(); - { - /* Now the scheduler is suspended, the expected idle - time can be sampled again, and this time its value can - be used. */ - configASSERT( xNextTaskUnblockTime >= xTickCount ); - xExpectedIdleTime = prvGetExpectedIdleTime(); - - if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) - { - traceLOW_POWER_IDLE_BEGIN(); - portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ); - traceLOW_POWER_IDLE_END(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - ( void ) xTaskResumeAll(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configUSE_TICKLESS_IDLE */ - } -} -/*-----------------------------------------------------------*/ - -#if( configUSE_TICKLESS_IDLE != 0 ) - - eSleepModeStatus eTaskConfirmSleepModeStatus( void ) - { - /* The idle task exists in addition to the application tasks. */ - const UBaseType_t uxNonApplicationTasks = 1; - eSleepModeStatus eReturn = eStandardSleep; - - if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 ) - { - /* A task was made ready while the scheduler was suspended. */ - eReturn = eAbortSleep; - } - else if( xYieldPending != pdFALSE ) - { - /* A yield was pended while the scheduler was suspended. */ - eReturn = eAbortSleep; - } - else - { - /* If all the tasks are in the suspended list (which might mean they - have an infinite block time rather than actually being suspended) - then it is safe to turn all clocks off and just wait for external - interrupts. */ - if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) ) - { - eReturn = eNoTasksWaitingTimeout; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - return eReturn; - } - -#endif /* configUSE_TICKLESS_IDLE */ -/*-----------------------------------------------------------*/ - -#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) - - void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) - { - TCB_t *pxTCB; - - if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) - { - pxTCB = prvGetTCBFromHandle( xTaskToSet ); - pxTCB->pvThreadLocalStoragePointers[ xIndex ] = pvValue; - } - } - -#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ -/*-----------------------------------------------------------*/ - -#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) - - void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) - { - void *pvReturn = NULL; - TCB_t *pxTCB; - - if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) - { - pxTCB = prvGetTCBFromHandle( xTaskToQuery ); - pvReturn = pxTCB->pvThreadLocalStoragePointers[ xIndex ]; - } - else - { - pvReturn = NULL; - } - - return pvReturn; - } - -#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ -/*-----------------------------------------------------------*/ - -#if ( portUSING_MPU_WRAPPERS == 1 ) - - void vTaskAllocateMPURegions( TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions ) - { - TCB_t *pxTCB; - - /* If null is passed in here then we are modifying the MPU settings of - the calling task. */ - pxTCB = prvGetTCBFromHandle( xTaskToModify ); - - vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 ); - } - -#endif /* portUSING_MPU_WRAPPERS */ -/*-----------------------------------------------------------*/ - -static void prvInitialiseTaskLists( void ) -{ -UBaseType_t uxPriority; - - for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) - { - vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); - } - - vListInitialise( &xDelayedTaskList1 ); - vListInitialise( &xDelayedTaskList2 ); - vListInitialise( &xPendingReadyList ); - - #if ( INCLUDE_vTaskDelete == 1 ) - { - vListInitialise( &xTasksWaitingTermination ); - } - #endif /* INCLUDE_vTaskDelete */ - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - vListInitialise( &xSuspendedTaskList ); - } - #endif /* INCLUDE_vTaskSuspend */ - - /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList - using list2. */ - pxDelayedTaskList = &xDelayedTaskList1; - pxOverflowDelayedTaskList = &xDelayedTaskList2; -} -/*-----------------------------------------------------------*/ - -static void prvCheckTasksWaitingTermination( void ) -{ - - /** THIS FUNCTION IS CALLED FROM THE RTOS IDLE TASK **/ - - #if ( INCLUDE_vTaskDelete == 1 ) - { - BaseType_t xListIsEmpty; - - /* ucTasksDeleted is used to prevent vTaskSuspendAll() being called - too often in the idle task. */ - while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) - { - vTaskSuspendAll(); - { - xListIsEmpty = listLIST_IS_EMPTY( &xTasksWaitingTermination ); - } - ( void ) xTaskResumeAll(); - - if( xListIsEmpty == pdFALSE ) - { - TCB_t *pxTCB; - - taskENTER_CRITICAL(); - { - pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - --uxCurrentNumberOfTasks; - --uxDeletedTasksWaitingCleanUp; - } - taskEXIT_CRITICAL(); - - prvDeleteTCB( pxTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - #endif /* INCLUDE_vTaskDelete */ -} -/*-----------------------------------------------------------*/ - -#if( configUSE_TRACE_FACILITY == 1 ) - - void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) - { - TCB_t *pxTCB; - - /* xTask is NULL then get the state of the calling task. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; - pxTaskStatus->pcTaskName = ( const char * ) &( pxTCB->pcTaskName [ 0 ] ); - pxTaskStatus->uxCurrentPriority = pxTCB->uxPriority; - pxTaskStatus->pxStackBase = pxTCB->pxStack; - pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber; - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - /* If the task is in the suspended list then there is a chance it is - actually just blocked indefinitely - so really it should be reported as - being in the Blocked state. */ - if( pxTaskStatus->eCurrentState == eSuspended ) - { - vTaskSuspendAll(); - { - if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - { - pxTaskStatus->eCurrentState = eBlocked; - } - } - xTaskResumeAll(); - } - } - #endif /* INCLUDE_vTaskSuspend */ - - #if ( configUSE_MUTEXES == 1 ) - { - pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority; - } - #else - { - pxTaskStatus->uxBasePriority = 0; - } - #endif - - #if ( configGENERATE_RUN_TIME_STATS == 1 ) - { - pxTaskStatus->ulRunTimeCounter = pxTCB->ulRunTimeCounter; - } - #else - { - pxTaskStatus->ulRunTimeCounter = 0; - } - #endif - - /* Obtaining the task state is a little fiddly, so is only done if the value - of eState passed into this function is eInvalid - otherwise the state is - just set to whatever is passed in. */ - if( eState != eInvalid ) - { - pxTaskStatus->eCurrentState = eState; - } - else - { - pxTaskStatus->eCurrentState = eTaskGetState( xTask ); - } - - /* Obtaining the stack space takes some time, so the xGetFreeStackSpace - parameter is provided to allow it to be skipped. */ - if( xGetFreeStackSpace != pdFALSE ) - { - #if ( portSTACK_GROWTH > 0 ) - { - pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxEndOfStack ); - } - #else - { - pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxStack ); - } - #endif - } - else - { - pxTaskStatus->usStackHighWaterMark = 0; - } - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_TRACE_FACILITY == 1 ) - - static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) - { - volatile TCB_t *pxNextTCB, *pxFirstTCB; - UBaseType_t uxTask = 0; - - if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) - { - listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); - - /* Populate an TaskStatus_t structure within the - pxTaskStatusArray array for each task that is referenced from - pxList. See the definition of TaskStatus_t in task.h for the - meaning of each TaskStatus_t structure member. */ - do - { - listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); - vTaskGetInfo( ( TaskHandle_t ) pxNextTCB, &( pxTaskStatusArray[ uxTask ] ), pdTRUE, eState ); - uxTask++; - } while( pxNextTCB != pxFirstTCB ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return uxTask; - } - -#endif /* configUSE_TRACE_FACILITY */ -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) - - static uint16_t prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) - { - uint32_t ulCount = 0U; - - while( *pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE ) - { - pucStackByte -= portSTACK_GROWTH; - ulCount++; - } - - ulCount /= ( uint32_t ) sizeof( StackType_t ); /*lint !e961 Casting is not redundant on smaller architectures. */ - - return ( uint16_t ) ulCount; - } - -#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) - - UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - uint8_t *pucEndOfStack; - UBaseType_t uxReturn; - - pxTCB = prvGetTCBFromHandle( xTask ); - - #if portSTACK_GROWTH < 0 - { - pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; - } - #else - { - pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; - } - #endif - - uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack ); - - return uxReturn; - } - -#endif /* INCLUDE_uxTaskGetStackHighWaterMark */ -/*-----------------------------------------------------------*/ - -#if ( INCLUDE_vTaskDelete == 1 ) - - static void prvDeleteTCB( TCB_t *pxTCB ) - { - /* This call is required specifically for the TriCore port. It must be - above the vPortFree() calls. The call is also used by ports/demos that - want to allocate and clean RAM statically. */ - portCLEAN_UP_TCB( pxTCB ); - - /* Free up the memory allocated by the scheduler for the task. It is up - to the task to free any memory allocated at the application level. */ - #if ( configUSE_NEWLIB_REENTRANT == 1 ) - { - _reclaim_reent( &( pxTCB->xNewLib_reent ) ); - } - #endif /* configUSE_NEWLIB_REENTRANT */ - - #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( portUSING_MPU_WRAPPERS == 0 ) ) - { - /* The task can only have been allocated dynamically - free both - the stack and TCB. */ - vPortFree( pxTCB->pxStack ); - vPortFree( pxTCB ); - } - #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE == 1 ) - { - /* The task could have been allocated statically or dynamically, so - check what was statically allocated before trying to free the - memory. */ - if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) - { - /* Both the stack and TCB were allocated dynamically, so both - must be freed. */ - vPortFree( pxTCB->pxStack ); - vPortFree( pxTCB ); - } - else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) - { - /* Only the stack was statically allocated, so the TCB is the - only memory that must be freed. */ - vPortFree( pxTCB ); - } - else - { - /* Neither the stack nor the TCB were allocated dynamically, so - nothing needs to be freed. */ - configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ) - mtCOVERAGE_TEST_MARKER(); - } - } - #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ - } - -#endif /* INCLUDE_vTaskDelete */ -/*-----------------------------------------------------------*/ - -static void prvResetNextTaskUnblockTime( void ) -{ -TCB_t *pxTCB; - - if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - { - /* The new current delayed list is empty. Set xNextTaskUnblockTime to - the maximum possible value so it is extremely unlikely that the - if( xTickCount >= xNextTaskUnblockTime ) test will pass until - there is an item in the delayed list. */ - xNextTaskUnblockTime = portMAX_DELAY; - } - else - { - /* The new current delayed list is not empty, get the value of - the item at the head of the delayed list. This is the time at - which the task at the head of the delayed list should be removed - from the Blocked state. */ - ( pxTCB ) = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); - xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); - } -} -/*-----------------------------------------------------------*/ - -#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) - - TaskHandle_t xTaskGetCurrentTaskHandle( void ) - { - TaskHandle_t xReturn; - - /* A critical section is not required as this is not called from - an interrupt and the current TCB will always be the same for any - individual execution thread. */ - xReturn = pxCurrentTCB; - - return xReturn; - } - -#endif /* ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) */ -/*-----------------------------------------------------------*/ - -#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) - - BaseType_t xTaskGetSchedulerState( void ) - { - BaseType_t xReturn; - - if( xSchedulerRunning == pdFALSE ) - { - xReturn = taskSCHEDULER_NOT_STARTED; - } - else - { - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - xReturn = taskSCHEDULER_RUNNING; - } - else - { - xReturn = taskSCHEDULER_SUSPENDED; - } - } - - return xReturn; - } - -#endif /* ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_MUTEXES == 1 ) - - void vTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) - { - TCB_t * const pxTCB = ( TCB_t * ) pxMutexHolder; - - /* If the mutex was given back by an interrupt while the queue was - locked then the mutex holder might now be NULL. */ - if( pxMutexHolder != NULL ) - { - /* If the holder of the mutex has a priority below the priority of - the task attempting to obtain the mutex then it will temporarily - inherit the priority of the task attempting to obtain the mutex. */ - if( pxTCB->uxPriority < pxCurrentTCB->uxPriority ) - { - /* Adjust the mutex holder state to account for its new - priority. Only reset the event list item value if the value is - not being used for anything else. */ - if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) - { - listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* If the task being modified is in the ready state it will need - to be moved into a new list. */ - if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) - { - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - taskRESET_READY_PRIORITY( pxTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Inherit the priority before being moved into the new list. */ - pxTCB->uxPriority = pxCurrentTCB->uxPriority; - prvAddTaskToReadyList( pxTCB ); - } - else - { - /* Just inherit the priority. */ - pxTCB->uxPriority = pxCurrentTCB->uxPriority; - } - - traceTASK_PRIORITY_INHERIT( pxTCB, pxCurrentTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if ( configUSE_MUTEXES == 1 ) - - BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) - { - TCB_t * const pxTCB = ( TCB_t * ) pxMutexHolder; - BaseType_t xReturn = pdFALSE; - - if( pxMutexHolder != NULL ) - { - /* A task can only have an inherited priority if it holds the mutex. - If the mutex is held by a task then it cannot be given from an - interrupt, and if a mutex is given by the holding task then it must - be the running state task. */ - configASSERT( pxTCB == pxCurrentTCB ); - - configASSERT( pxTCB->uxMutexesHeld ); - ( pxTCB->uxMutexesHeld )--; - - /* Has the holder of the mutex inherited the priority of another - task? */ - if( pxTCB->uxPriority != pxTCB->uxBasePriority ) - { - /* Only disinherit if no other mutexes are held. */ - if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) - { - /* A task can only have an inherited priority if it holds - the mutex. If the mutex is held by a task then it cannot be - given from an interrupt, and if a mutex is given by the - holding task then it must be the running state task. Remove - the holding task from the ready list. */ - if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - taskRESET_READY_PRIORITY( pxTCB->uxPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Disinherit the priority before adding the task into the - new ready list. */ - traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); - pxTCB->uxPriority = pxTCB->uxBasePriority; - - /* Reset the event list item value. It cannot be in use for - any other purpose if this task is running, and it must be - running to give back the mutex. */ - listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - prvAddTaskToReadyList( pxTCB ); - - /* Return true to indicate that a context switch is required. - This is only actually required in the corner case whereby - multiple mutexes were held and the mutexes were given back - in an order different to that in which they were taken. - If a context switch did not occur when the first mutex was - returned, even if a task was waiting on it, then a context - switch should occur when the last mutex is returned whether - a task is waiting on it or not. */ - xReturn = pdTRUE; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - return xReturn; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if ( portCRITICAL_NESTING_IN_TCB == 1 ) - - void vTaskEnterCritical( void ) - { - portDISABLE_INTERRUPTS(); - - if( xSchedulerRunning != pdFALSE ) - { - ( pxCurrentTCB->uxCriticalNesting )++; - - /* This is not the interrupt safe version of the enter critical - function so assert() if it is being called from an interrupt - context. Only API functions that end in "FromISR" can be used in an - interrupt. Only assert if the critical nesting count is 1 to - protect against recursive calls if the assert function also uses a - critical section. */ - if( pxCurrentTCB->uxCriticalNesting == 1 ) - { - portASSERT_IF_IN_ISR(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* portCRITICAL_NESTING_IN_TCB */ -/*-----------------------------------------------------------*/ - -#if ( portCRITICAL_NESTING_IN_TCB == 1 ) - - void vTaskExitCritical( void ) - { - if( xSchedulerRunning != pdFALSE ) - { - if( pxCurrentTCB->uxCriticalNesting > 0U ) - { - ( pxCurrentTCB->uxCriticalNesting )--; - - if( pxCurrentTCB->uxCriticalNesting == 0U ) - { - portENABLE_INTERRUPTS(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* portCRITICAL_NESTING_IN_TCB */ -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) - - static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) - { - size_t x; - - /* Start by copying the entire string. */ - strcpy( pcBuffer, pcTaskName ); - - /* Pad the end of the string with spaces to ensure columns line up when - printed out. */ - for( x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++ ) - { - pcBuffer[ x ] = ' '; - } - - /* Terminate. */ - pcBuffer[ x ] = 0x00; - - /* Return the new end of string. */ - return &( pcBuffer[ x ] ); - } - -#endif /* ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) */ -/*-----------------------------------------------------------*/ - -#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) - - void vTaskList( char * pcWriteBuffer ) - { - TaskStatus_t *pxTaskStatusArray; - volatile UBaseType_t uxArraySize, x; - char cStatus; - - /* - * PLEASE NOTE: - * - * This function is provided for convenience only, and is used by many - * of the demo applications. Do not consider it to be part of the - * scheduler. - * - * vTaskList() calls uxTaskGetSystemState(), then formats part of the - * uxTaskGetSystemState() output into a human readable table that - * displays task names, states and stack usage. - * - * vTaskList() has a dependency on the sprintf() C library function that - * might bloat the code size, use a lot of stack, and provide different - * results on different platforms. An alternative, tiny, third party, - * and limited functionality implementation of sprintf() is provided in - * many of the FreeRTOS/Demo sub-directories in a file called - * printf-stdarg.c (note printf-stdarg.c does not provide a full - * snprintf() implementation!). - * - * It is recommended that production systems call uxTaskGetSystemState() - * directly to get access to raw stats data, rather than indirectly - * through a call to vTaskList(). - */ - - - /* Make sure the write buffer does not contain a string. */ - *pcWriteBuffer = 0x00; - - /* Take a snapshot of the number of tasks in case it changes while this - function is executing. */ - uxArraySize = uxCurrentNumberOfTasks; - - /* Allocate an array index for each task. NOTE! if - configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will - equate to NULL. */ - pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); - - if( pxTaskStatusArray != NULL ) - { - /* Generate the (binary) data. */ - uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL ); - - /* Create a human readable table from the binary data. */ - for( x = 0; x < uxArraySize; x++ ) - { - switch( pxTaskStatusArray[ x ].eCurrentState ) - { - case eReady: cStatus = tskREADY_CHAR; - break; - - case eBlocked: cStatus = tskBLOCKED_CHAR; - break; - - case eSuspended: cStatus = tskSUSPENDED_CHAR; - break; - - case eDeleted: cStatus = tskDELETED_CHAR; - break; - - default: /* Should not get here, but it is included - to prevent static checking errors. */ - cStatus = 0x00; - break; - } - - /* Write the task name to the string, padding with spaces so it - can be printed in tabular form more easily. */ - pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); - - /* Write the rest of the string. */ - sprintf( pcWriteBuffer, "\t%c\t%u\t%u\t%u\r\n", cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber ); - pcWriteBuffer += strlen( pcWriteBuffer ); - } - - /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION - is 0 then vPortFree() will be #defined to nothing. */ - vPortFree( pxTaskStatusArray ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) */ -/*----------------------------------------------------------*/ - -#if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) - - void vTaskGetRunTimeStats( char *pcWriteBuffer ) - { - TaskStatus_t *pxTaskStatusArray; - volatile UBaseType_t uxArraySize, x; - uint32_t ulTotalTime, ulStatsAsPercentage; - - #if( configUSE_TRACE_FACILITY != 1 ) - { - #error configUSE_TRACE_FACILITY must also be set to 1 in FreeRTOSConfig.h to use vTaskGetRunTimeStats(). - } - #endif - - /* - * PLEASE NOTE: - * - * This function is provided for convenience only, and is used by many - * of the demo applications. Do not consider it to be part of the - * scheduler. - * - * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part - * of the uxTaskGetSystemState() output into a human readable table that - * displays the amount of time each task has spent in the Running state - * in both absolute and percentage terms. - * - * vTaskGetRunTimeStats() has a dependency on the sprintf() C library - * function that might bloat the code size, use a lot of stack, and - * provide different results on different platforms. An alternative, - * tiny, third party, and limited functionality implementation of - * sprintf() is provided in many of the FreeRTOS/Demo sub-directories in - * a file called printf-stdarg.c (note printf-stdarg.c does not provide - * a full snprintf() implementation!). - * - * It is recommended that production systems call uxTaskGetSystemState() - * directly to get access to raw stats data, rather than indirectly - * through a call to vTaskGetRunTimeStats(). - */ - - /* Make sure the write buffer does not contain a string. */ - *pcWriteBuffer = 0x00; - - /* Take a snapshot of the number of tasks in case it changes while this - function is executing. */ - uxArraySize = uxCurrentNumberOfTasks; - - /* Allocate an array index for each task. NOTE! If - configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will - equate to NULL. */ - pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); - - if( pxTaskStatusArray != NULL ) - { - /* Generate the (binary) data. */ - uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime ); - - /* For percentage calculations. */ - ulTotalTime /= 100UL; - - /* Avoid divide by zero errors. */ - if( ulTotalTime > 0 ) - { - /* Create a human readable table from the binary data. */ - for( x = 0; x < uxArraySize; x++ ) - { - /* What percentage of the total run time has the task used? - This will always be rounded down to the nearest integer. - ulTotalRunTimeDiv100 has already been divided by 100. */ - ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime; - - /* Write the task name to the string, padding with - spaces so it can be printed in tabular form more - easily. */ - pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); - - if( ulStatsAsPercentage > 0UL ) - { - #ifdef portLU_PRINTF_SPECIFIER_REQUIRED - { - sprintf( pcWriteBuffer, "\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage ); - } - #else - { - /* sizeof( int ) == sizeof( long ) so a smaller - printf() library can be used. */ - sprintf( pcWriteBuffer, "\t%u\t\t%u%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage ); - } - #endif - } - else - { - /* If the percentage is zero here then the task has - consumed less than 1% of the total run time. */ - #ifdef portLU_PRINTF_SPECIFIER_REQUIRED - { - sprintf( pcWriteBuffer, "\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter ); - } - #else - { - /* sizeof( int ) == sizeof( long ) so a smaller - printf() library can be used. */ - sprintf( pcWriteBuffer, "\t%u\t\t<1%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter ); - } - #endif - } - - pcWriteBuffer += strlen( pcWriteBuffer ); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION - is 0 then vPortFree() will be #defined to nothing. */ - vPortFree( pxTaskStatusArray ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - -#endif /* ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) */ -/*-----------------------------------------------------------*/ - -TickType_t uxTaskResetEventItemValue( void ) -{ -TickType_t uxReturn; - - uxReturn = listGET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ) ); - - /* Reset the event list item to its normal value - so it can be used with - queues and semaphores. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - - return uxReturn; -} -/*-----------------------------------------------------------*/ - -#if ( configUSE_MUTEXES == 1 ) - - void *pvTaskIncrementMutexHeldCount( void ) - { - /* If xSemaphoreCreateMutex() is called before any tasks have been created - then pxCurrentTCB will be NULL. */ - if( pxCurrentTCB != NULL ) - { - ( pxCurrentTCB->uxMutexesHeld )++; - } - - return pxCurrentTCB; - } - -#endif /* configUSE_MUTEXES */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) - { - uint32_t ulReturn; - - taskENTER_CRITICAL(); - { - /* Only block if the notification count is not already non-zero. */ - if( pxCurrentTCB->ulNotifiedValue == 0UL ) - { - /* Mark this task as waiting for a notification. */ - pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; - - if( xTicksToWait > ( TickType_t ) 0 ) - { - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); - traceTASK_NOTIFY_TAKE_BLOCK(); - - /* All ports are written to allow a yield in a critical - section (some will yield immediately, others wait until the - critical section exits) - but it is not something that - application code should ever do. */ - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - taskENTER_CRITICAL(); - { - traceTASK_NOTIFY_TAKE(); - ulReturn = pxCurrentTCB->ulNotifiedValue; - - if( ulReturn != 0UL ) - { - if( xClearCountOnExit != pdFALSE ) - { - pxCurrentTCB->ulNotifiedValue = 0UL; - } - else - { - pxCurrentTCB->ulNotifiedValue = ulReturn - 1; - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - } - taskEXIT_CRITICAL(); - - return ulReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) - { - BaseType_t xReturn; - - taskENTER_CRITICAL(); - { - /* Only block if a notification is not already pending. */ - if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) - { - /* Clear bits in the task's notification value as bits may get - set by the notifying task or interrupt. This can be used to - clear the value to zero. */ - pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnEntry; - - /* Mark this task as waiting for a notification. */ - pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; - - if( xTicksToWait > ( TickType_t ) 0 ) - { - prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); - traceTASK_NOTIFY_WAIT_BLOCK(); - - /* All ports are written to allow a yield in a critical - section (some will yield immediately, others wait until the - critical section exits) - but it is not something that - application code should ever do. */ - portYIELD_WITHIN_API(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - taskENTER_CRITICAL(); - { - traceTASK_NOTIFY_WAIT(); - - if( pulNotificationValue != NULL ) - { - /* Output the current notification value, which may or may not - have changed. */ - *pulNotificationValue = pxCurrentTCB->ulNotifiedValue; - } - - /* If ucNotifyValue is set then either the task never entered the - blocked state (because a notification was already pending) or the - task unblocked because of a notification. Otherwise the task - unblocked because of a timeout. */ - if( pxCurrentTCB->ucNotifyState == taskWAITING_NOTIFICATION ) - { - /* A notification was not received. */ - xReturn = pdFALSE; - } - else - { - /* A notification was already pending or a notification was - received while the task was waiting. */ - pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnExit; - xReturn = pdTRUE; - } - - pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) - { - TCB_t * pxTCB; - BaseType_t xReturn = pdPASS; - uint8_t ucOriginalNotifyState; - - configASSERT( xTaskToNotify ); - pxTCB = ( TCB_t * ) xTaskToNotify; - - taskENTER_CRITICAL(); - { - if( pulPreviousNotificationValue != NULL ) - { - *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; - } - - ucOriginalNotifyState = pxTCB->ucNotifyState; - - pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; - - switch( eAction ) - { - case eSetBits : - pxTCB->ulNotifiedValue |= ulValue; - break; - - case eIncrement : - ( pxTCB->ulNotifiedValue )++; - break; - - case eSetValueWithOverwrite : - pxTCB->ulNotifiedValue = ulValue; - break; - - case eSetValueWithoutOverwrite : - if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) - { - pxTCB->ulNotifiedValue = ulValue; - } - else - { - /* The value could not be written to the task. */ - xReturn = pdFAIL; - } - break; - - case eNoAction: - /* The task is being notified without its notify value being - updated. */ - break; - } - - traceTASK_NOTIFY(); - - /* If the task is in the blocked state specifically to wait for a - notification then unblock it now. */ - if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) - { - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - - /* The task should not have been on an event list. */ - configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); - - #if( configUSE_TICKLESS_IDLE != 0 ) - { - /* If a task is blocked waiting for a notification then - xNextTaskUnblockTime might be set to the blocked task's time - out time. If the task is unblocked for a reason other than - a timeout xNextTaskUnblockTime is normally left unchanged, - because it will automatically get reset to a new value when - the tick count equals xNextTaskUnblockTime. However if - tickless idling is used it might be more important to enter - sleep mode at the earliest possible time - so reset - xNextTaskUnblockTime here to ensure it is updated at the - earliest possible time. */ - prvResetNextTaskUnblockTime(); - } - #endif - - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* The notified task has a priority above the currently - executing task so a yield is required. */ - taskYIELD_IF_USING_PREEMPTION(); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) - { - TCB_t * pxTCB; - uint8_t ucOriginalNotifyState; - BaseType_t xReturn = pdPASS; - UBaseType_t uxSavedInterruptStatus; - - configASSERT( xTaskToNotify ); - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - pxTCB = ( TCB_t * ) xTaskToNotify; - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - if( pulPreviousNotificationValue != NULL ) - { - *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; - } - - ucOriginalNotifyState = pxTCB->ucNotifyState; - pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; - - switch( eAction ) - { - case eSetBits : - pxTCB->ulNotifiedValue |= ulValue; - break; - - case eIncrement : - ( pxTCB->ulNotifiedValue )++; - break; - - case eSetValueWithOverwrite : - pxTCB->ulNotifiedValue = ulValue; - break; - - case eSetValueWithoutOverwrite : - if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) - { - pxTCB->ulNotifiedValue = ulValue; - } - else - { - /* The value could not be written to the task. */ - xReturn = pdFAIL; - } - break; - - case eNoAction : - /* The task is being notified without its notify value being - updated. */ - break; - } - - traceTASK_NOTIFY_FROM_ISR(); - - /* If the task is in the blocked state specifically to wait for a - notification then unblock it now. */ - if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) - { - /* The task should not have been on an event list. */ - configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - } - else - { - /* The delayed and ready lists cannot be accessed, so hold - this task pending until the scheduler is resumed. */ - vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); - } - - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* The notified task has a priority above the currently - executing task so a yield is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - /* Mark that a yield is pending in case the user is not - using the "xHigherPriorityTaskWoken" parameter to an ISR - safe FreeRTOS function. */ - xYieldPending = pdTRUE; - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) - { - TCB_t * pxTCB; - uint8_t ucOriginalNotifyState; - UBaseType_t uxSavedInterruptStatus; - - configASSERT( xTaskToNotify ); - - /* RTOS ports that support interrupt nesting have the concept of a - maximum system call (or maximum API call) interrupt priority. - Interrupts that are above the maximum system call priority are keep - permanently enabled, even when the RTOS kernel is in a critical section, - but cannot make any calls to FreeRTOS API functions. If configASSERT() - is defined in FreeRTOSConfig.h then - portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion - failure if a FreeRTOS API function is called from an interrupt that has - been assigned a priority above the configured maximum system call - priority. Only FreeRTOS functions that end in FromISR can be called - from interrupts that have been assigned a priority at or (logically) - below the maximum system call interrupt priority. FreeRTOS maintains a - separate interrupt safe API to ensure interrupt entry is as fast and as - simple as possible. More information (albeit Cortex-M specific) is - provided on the following link: - http://www.freertos.org/RTOS-Cortex-M3-M4.html */ - portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - - pxTCB = ( TCB_t * ) xTaskToNotify; - - uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - { - ucOriginalNotifyState = pxTCB->ucNotifyState; - pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; - - /* 'Giving' is equivalent to incrementing a count in a counting - semaphore. */ - ( pxTCB->ulNotifiedValue )++; - - traceTASK_NOTIFY_GIVE_FROM_ISR(); - - /* If the task is in the blocked state specifically to wait for a - notification then unblock it now. */ - if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) - { - /* The task should not have been on an event list. */ - configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); - - if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - { - ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ); - } - else - { - /* The delayed and ready lists cannot be accessed, so hold - this task pending until the scheduler is resumed. */ - vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); - } - - if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) - { - /* The notified task has a priority above the currently - executing task so a yield is required. */ - if( pxHigherPriorityTaskWoken != NULL ) - { - *pxHigherPriorityTaskWoken = pdTRUE; - } - else - { - /* Mark that a yield is pending in case the user is not - using the "xHigherPriorityTaskWoken" parameter in an ISR - safe FreeRTOS function. */ - xYieldPending = pdTRUE; - } - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ - -/*-----------------------------------------------------------*/ - -#if( configUSE_TASK_NOTIFICATIONS == 1 ) - - BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ) - { - TCB_t *pxTCB; - BaseType_t xReturn; - - /* If null is passed in here then it is the calling task that is having - its notification state cleared. */ - pxTCB = prvGetTCBFromHandle( xTask ); - - taskENTER_CRITICAL(); - { - if( pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED ) - { - pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - xReturn = pdPASS; - } - else - { - xReturn = pdFAIL; - } - } - taskEXIT_CRITICAL(); - - return xReturn; - } - -#endif /* configUSE_TASK_NOTIFICATIONS */ -/*-----------------------------------------------------------*/ - - -static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) -{ -TickType_t xTimeToWake; -const TickType_t xConstTickCount = xTickCount; - - #if( INCLUDE_xTaskAbortDelay == 1 ) - { - /* About to enter a delayed list, so ensure the ucDelayAborted flag is - reset to pdFALSE so it can be detected as having been set to pdTRUE - when the task leaves the Blocked state. */ - pxCurrentTCB->ucDelayAborted = pdFALSE; - } - #endif - - /* Remove the task from the ready list before adding it to the blocked list - as the same list item is used for both lists. */ - if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - { - /* The current task must be in a ready list, so there is no need to - check, and the port reset macro can be called directly. */ - portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - - #if ( INCLUDE_vTaskSuspend == 1 ) - { - if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) - { - /* Add the task to the suspended task list instead of a delayed task - list to ensure it is not woken by a timing event. It will block - indefinitely. */ - vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); - } - else - { - /* Calculate the time at which the task should be woken if the event - does not occur. This may overflow but this doesn't matter, the - kernel will manage it correctly. */ - xTimeToWake = xConstTickCount + xTicksToWait; - - /* The list item will be inserted in wake time order. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); - - if( xTimeToWake < xConstTickCount ) - { - /* Wake time has overflowed. Place this item in the overflow - list. */ - vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - } - else - { - /* The wake time has not overflowed, so the current block list - is used. */ - vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - - /* If the task entering the blocked state was placed at the - head of the list of blocked tasks then xNextTaskUnblockTime - needs to be updated too. */ - if( xTimeToWake < xNextTaskUnblockTime ) - { - xNextTaskUnblockTime = xTimeToWake; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - } - } - #else /* INCLUDE_vTaskSuspend */ - { - /* Calculate the time at which the task should be woken if the event - does not occur. This may overflow but this doesn't matter, the kernel - will manage it correctly. */ - xTimeToWake = xConstTickCount + xTicksToWait; - - /* The list item will be inserted in wake time order. */ - listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); - - if( xTimeToWake < xConstTickCount ) - { - /* Wake time has overflowed. Place this item in the overflow list. */ - vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - } - else - { - /* The wake time has not overflowed, so the current block list is used. */ - vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - - /* If the task entering the blocked state was placed at the head of the - list of blocked tasks then xNextTaskUnblockTime needs to be updated - too. */ - if( xTimeToWake < xNextTaskUnblockTime ) - { - xNextTaskUnblockTime = xTimeToWake; - } - else - { - mtCOVERAGE_TEST_MARKER(); - } - } - - /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ - ( void ) xCanBlockIndefinitely; - } - #endif /* INCLUDE_vTaskSuspend */ -} - - -#ifdef FREERTOS_MODULE_TEST - #include "tasks_test_access_functions.h" -#endif - +/* + FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd. + All rights reserved + + VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. + + This file is part of the FreeRTOS distribution. + + FreeRTOS is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License (version 2) as published by the + Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception. + + *************************************************************************** + >>! NOTE: The modification to the GPL is included to allow you to !<< + >>! distribute a combined work that includes FreeRTOS without being !<< + >>! obliged to provide the source code for proprietary components !<< + >>! outside of the FreeRTOS kernel. !<< + *************************************************************************** + + FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. Full license text is available on the following + link: http://www.freertos.org/a00114.html + + *************************************************************************** + * * + * FreeRTOS provides completely free yet professionally developed, * + * robust, strictly quality controlled, supported, and cross * + * platform software that is more than just the market leader, it * + * is the industry's de facto standard. * + * * + * Help yourself get started quickly while simultaneously helping * + * to support the FreeRTOS project by purchasing a FreeRTOS * + * tutorial book, reference manual, or both: * + * http://www.FreeRTOS.org/Documentation * + * * + *************************************************************************** + + http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading + the FAQ page "My application does not run, what could be wrong?". Have you + defined configASSERT()? + + http://www.FreeRTOS.org/support - In return for receiving this top quality + embedded software for free we request you assist our global community by + participating in the support forum. + + http://www.FreeRTOS.org/training - Investing in training allows your team to + be as productive as possible as early as possible. Now you can receive + FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers + Ltd, and the world's leading authority on the world's leading RTOS. + + http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, + including FreeRTOS+Trace - an indispensable productivity tool, a DOS + compatible FAT file system, and our tiny thread aware UDP/IP stack. + + http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate. + Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS. + + http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High + Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS + licenses offer ticketed support, indemnification and commercial middleware. + + http://www.SafeRTOS.com - High Integrity Systems also provide a safety + engineered and independently SIL3 certified version for use in safety and + mission critical applications that require provable dependability. + + 1 tab == 4 spaces! +*/ + +/* Standard includes. */ +#include <stdlib.h> +#include <string.h> + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "timers.h" +#include "StackMacros.h" + +/* Lint e961 and e750 are suppressed as a MISRA exception justified because the +MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the +header files above, but not in this file, in order to generate the correct +privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */ + +/* Set configUSE_STATS_FORMATTING_FUNCTIONS to 2 to include the stats formatting +functions but without including stdio.h here. */ +#if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) + /* At the bottom of this file are two optional functions that can be used + to generate human readable text from the raw data generated by the + uxTaskGetSystemState() function. Note the formatting functions are provided + for convenience only, and are NOT considered part of the kernel. */ + #include <stdio.h> +#endif /* configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) */ + +#if( configUSE_PREEMPTION == 0 ) + /* If the cooperative scheduler is being used then a yield should not be + performed just because a higher priority task has been woken. */ + #define taskYIELD_IF_USING_PREEMPTION() +#else + #define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() +#endif + +/* Values that can be assigned to the ucNotifyState member of the TCB. */ +#define taskNOT_WAITING_NOTIFICATION ( ( uint8_t ) 0 ) +#define taskWAITING_NOTIFICATION ( ( uint8_t ) 1 ) +#define taskNOTIFICATION_RECEIVED ( ( uint8_t ) 2 ) + +/* + * The value used to fill the stack of a task when the task is created. This + * is used purely for checking the high water mark for tasks. + */ +#define tskSTACK_FILL_BYTE ( 0xa5U ) + +/* Sometimes the FreeRTOSConfig.h settings only allow a task to be created using +dynamically allocated RAM, in which case when any task is deleted it is known +that both the task's stack and TCB need to be freed. Sometimes the +FreeRTOSConfig.h settings only allow a task to be created using statically +allocated RAM, in which case when any task is deleted it is known that neither +the task's stack or TCB should be freed. Sometimes the FreeRTOSConfig.h +settings allow a task to be created using either statically or dynamically +allocated RAM, in which case a member of the TCB is used to record whether the +stack and/or TCB were allocated statically or dynamically, so when a task is +deleted the RAM that was allocated dynamically is freed again and no attempt is +made to free the RAM that was allocated statically. +tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE is only true if it is possible for a +task to be created using either statically or dynamically allocated RAM. Note +that if portUSING_MPU_WRAPPERS is 1 then a protected task can be created with +a statically allocated stack and a dynamically allocated TCB. */ +#define tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE ( ( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) || ( portUSING_MPU_WRAPPERS == 1 ) ) +#define tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 0 ) +#define tskSTATICALLY_ALLOCATED_STACK_ONLY ( ( uint8_t ) 1 ) +#define tskSTATICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 2 ) + +/* + * Macros used by vListTask to indicate which state a task is in. + */ +#define tskBLOCKED_CHAR ( 'B' ) +#define tskREADY_CHAR ( 'R' ) +#define tskDELETED_CHAR ( 'D' ) +#define tskSUSPENDED_CHAR ( 'S' ) + +/* + * Some kernel aware debuggers require the data the debugger needs access to be + * global, rather than file scope. + */ +#ifdef portREMOVE_STATIC_QUALIFIER + #define static +#endif + +#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 0 then task selection is + performed in a generic way that is not optimised to any particular + microcontroller architecture. */ + + /* uxTopReadyPriority holds the priority of the highest priority ready + state task. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) \ + { \ + if( ( uxPriority ) > uxTopReadyPriority ) \ + { \ + uxTopReadyPriority = ( uxPriority ); \ + } \ + } /* taskRECORD_READY_PRIORITY */ + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority = uxTopReadyPriority; \ + \ + /* Find the highest priority queue that contains ready tasks. */ \ + while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \ + { \ + configASSERT( uxTopPriority ); \ + --uxTopPriority; \ + } \ + \ + /* listGET_OWNER_OF_NEXT_ENTRY indexes through the list, so the tasks of \ + the same priority get an equal share of the processor time. */ \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + uxTopReadyPriority = uxTopPriority; \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK */ + + /*-----------------------------------------------------------*/ + + /* Define away taskRESET_READY_PRIORITY() and portRESET_READY_PRIORITY() as + they are only required when a port optimised method of task selection is + being used. */ + #define taskRESET_READY_PRIORITY( uxPriority ) + #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + +#else /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 1 then task selection is + performed in a way that is tailored to the particular microcontroller + architecture being used. */ + + /* A port optimised version is provided. Call the port defined macros. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority; \ + \ + /* Find the highest priority list that contains ready tasks. */ \ + portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \ + configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 ); \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK() */ + + /*-----------------------------------------------------------*/ + + /* A port optimised version is provided, call it only if the TCB being reset + is being referenced from a ready list. If it is referenced from a delayed + or suspended list then it won't be in a ready list. */ + #define taskRESET_READY_PRIORITY( uxPriority ) \ + { \ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \ + { \ + portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \ + } \ + } + +#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + +/*-----------------------------------------------------------*/ + +/* pxDelayedTaskList and pxOverflowDelayedTaskList are switched when the tick +count overflows. */ +#define taskSWITCH_DELAYED_LISTS() \ +{ \ + List_t *pxTemp; \ + \ + /* The delayed tasks list should be empty when the lists are switched. */ \ + configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \ + \ + pxTemp = pxDelayedTaskList; \ + pxDelayedTaskList = pxOverflowDelayedTaskList; \ + pxOverflowDelayedTaskList = pxTemp; \ + xNumOfOverflows++; \ + prvResetNextTaskUnblockTime(); \ +} + +/*-----------------------------------------------------------*/ + +/* + * Place the task represented by pxTCB into the appropriate ready list for + * the task. It is inserted at the end of the list. + */ +#define prvAddTaskToReadyList( pxTCB ) \ + traceMOVED_TASK_TO_READY_STATE( pxTCB ); \ + taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority ); \ + vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) ); \ + tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) +/*-----------------------------------------------------------*/ + +/* + * Several functions take an TaskHandle_t parameter that can optionally be NULL, + * where NULL is used to indicate that the handle of the currently executing + * task should be used in place of the parameter. This macro simply checks to + * see if the parameter is NULL and returns a pointer to the appropriate TCB. + */ +#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? ( TCB_t * ) pxCurrentTCB : ( TCB_t * ) ( pxHandle ) ) + +/* The item value of the event list item is normally used to hold the priority +of the task to which it belongs (coded to allow it to be held in reverse +priority order). However, it is occasionally borrowed for other purposes. It +is important its value is not updated due to a task priority change while it is +being used for another purpose. The following bit definition is used to inform +the scheduler that the value should not be changed - in which case it is the +responsibility of whichever module is using the value to ensure it gets set back +to its original value when it is released. */ +#if( configUSE_16_BIT_TICKS == 1 ) + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x8000U +#else + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x80000000UL +#endif + +/* + * Task control block. A task control block (TCB) is allocated for each task, + * and stores task state information, including a pointer to the task's context + * (the task's run time environment, including register values) + */ +typedef struct tskTaskControlBlock +{ + volatile StackType_t *pxTopOfStack; /*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + xMPU_SETTINGS xMPUSettings; /*< The MPU settings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */ + #endif + + ListItem_t xStateListItem; /*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */ + ListItem_t xEventListItem; /*< Used to reference a task from an event list. */ + UBaseType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */ + StackType_t *pxStack; /*< Points to the start of the stack. */ + char pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + + #if ( portSTACK_GROWTH > 0 ) + StackType_t *pxEndOfStack; /*< Points to the end of the stack on architectures where the stack grows up from low memory. */ + #endif + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + UBaseType_t uxCriticalNesting; /*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */ + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxTCBNumber; /*< Stores a number that increments each time a TCB is created. It allows debuggers to determine when a task has been deleted and then recreated. */ + UBaseType_t uxTaskNumber; /*< Stores a number specifically for use by third party trace code. */ + #endif + + #if ( configUSE_MUTEXES == 1 ) + UBaseType_t uxBasePriority; /*< The priority last assigned to the task - used by the priority inheritance mechanism. */ + UBaseType_t uxMutexesHeld; + #endif + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + TaskHookFunction_t pxTaskTag; + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + void *pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; + #endif + + #if( configGENERATE_RUN_TIME_STATS == 1 ) + uint32_t ulRunTimeCounter; /*< Stores the amount of time the task has spent in the Running state. */ + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + /* Allocate a Newlib reent structure that is specific to this task. + Note Newlib support has been included by popular demand, but is not + used by the FreeRTOS maintainers themselves. FreeRTOS is not + responsible for resulting newlib operation. User must be familiar with + newlib and must provide system-wide implementations of the necessary + stubs. Be warned that (at the time of writing) the current newlib design + implements a system-wide malloc() that must be provided with locks. */ + struct _reent xNewLib_reent; + #endif + + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + volatile uint32_t ulNotifiedValue; + volatile uint8_t ucNotifyState; + #endif + + /* See the comments above the definition of + tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE. */ + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */ + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + uint8_t ucDelayAborted; + #endif + +} tskTCB; + +/* The old tskTCB name is maintained above then typedefed to the new TCB_t name +below to enable the use of older kernel aware debuggers. */ +typedef tskTCB TCB_t; + +/*lint -e956 A manual analysis and inspection has been used to determine which +static variables must be declared volatile. */ + +PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL; + +/* Lists for ready and blocked tasks. --------------------*/ +PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ];/*< Prioritised ready tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList1; /*< Delayed tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList2; /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /*< Points to the delayed task list currently being used. */ +PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t xPendingReadyList; /*< Tasks that have been readied while the scheduler was suspended. They will be moved to the ready list when the scheduler is resumed. */ + +#if( INCLUDE_vTaskDelete == 1 ) + + PRIVILEGED_DATA static List_t xTasksWaitingTermination; /*< Tasks that have been deleted - but their memory not yet freed. */ + PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U; + +#endif + +#if ( INCLUDE_vTaskSuspend == 1 ) + + PRIVILEGED_DATA static List_t xSuspendedTaskList; /*< Tasks that are currently suspended. */ + +#endif + +/* Other file private variables. --------------------------------*/ +PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) 0U; +PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY; +PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE; +PRIVILEGED_DATA static volatile UBaseType_t uxPendedTicks = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile BaseType_t xYieldPending = pdFALSE; +PRIVILEGED_DATA static volatile BaseType_t xNumOfOverflows = ( BaseType_t ) 0; +PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime = ( TickType_t ) 0U; /* Initialised to portMAX_DELAY before the scheduler starts. */ +PRIVILEGED_DATA static TaskHandle_t xIdleTaskHandle = NULL; /*< Holds the handle of the idle task. The idle task is created automatically when the scheduler is started. */ + +/* Context switches are held pending while the scheduler is suspended. Also, +interrupts must not manipulate the xStateListItem of a TCB, or any of the +lists the xStateListItem can be referenced from, if the scheduler is suspended. +If an interrupt needs to unblock a task while the scheduler is suspended then it +moves the task's event list item into the xPendingReadyList, ready for the +kernel to move the task from the pending ready list into the real ready list +when the scheduler is unsuspended. The pending ready list itself can only be +accessed from a critical section. */ +PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) pdFALSE; + +#if ( configGENERATE_RUN_TIME_STATS == 1 ) + + PRIVILEGED_DATA static uint32_t ulTaskSwitchedInTime = 0UL; /*< Holds the value of a timer/counter the last time a task was switched in. */ + PRIVILEGED_DATA static uint32_t ulTotalRunTime = 0UL; /*< Holds the total amount of execution time as defined by the run time counter clock. */ + +#endif + +/*lint +e956 */ + +/*-----------------------------------------------------------*/ + +/* Callback function prototypes. --------------------------*/ +#if( configCHECK_FOR_STACK_OVERFLOW > 0 ) + extern void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ); +#endif + +#if( configUSE_TICK_HOOK > 0 ) + extern void vApplicationTickHook( void ); +#endif + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + extern void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ); +#endif + +/* File private functions. --------------------------------*/ + +/** + * Utility task that simply returns pdTRUE if the task referenced by xTask is + * currently in the Suspended state, or pdFALSE if the task referenced by xTask + * is in any other state. + */ +#if ( INCLUDE_vTaskSuspend == 1 ) + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; +#endif /* INCLUDE_vTaskSuspend */ + +/* + * Utility to ready all the lists used by the scheduler. This is called + * automatically upon the creation of the first task. + */ +static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION; + +/* + * The idle task, which as all tasks is implemented as a never ending loop. + * The idle task is automatically created and added to the ready lists upon + * creation of the first user task. + * + * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters ); + +/* + * Utility to free all memory allocated by the scheduler to hold a TCB, + * including the stack pointed to by the TCB. + * + * This does not free memory allocated by the task itself (i.e. memory + * allocated by calls to pvPortMalloc from within the tasks application code). + */ +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Used only by the idle task. This checks to see if anything has been placed + * in the list of tasks waiting to be deleted. If so the task is cleaned up + * and its TCB deleted. + */ +static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION; + +/* + * The currently executing task is entering the Blocked state. Add the task to + * either the current or the overflow delayed task list. + */ +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) PRIVILEGED_FUNCTION; + +/* + * Fills an TaskStatus_t structure with information on each task that is + * referenced from the pxList list (which may be a ready list, a delayed list, + * a suspended list, etc.). + * + * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM + * NORMAL APPLICATION CODE. + */ +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Searches pxList for a task with name pcNameToQuery - returning a handle to + * the task if it is found, or NULL if the task is not found. + */ +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) PRIVILEGED_FUNCTION; + +#endif + +/* + * When a task is created, the stack of the task is filled with a known value. + * This function determines the 'high water mark' of the task stack by + * determining how much of the stack remains at the original preset value. + */ +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) + + static uint16_t prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Return the amount of time, in ticks, that will pass before the kernel will + * next move a task from the Blocked state to the Running state. + * + * This conditional compilation should use inequality to 0, not equality to 1. + * This is to ensure portSUPPRESS_TICKS_AND_SLEEP() can be called when user + * defined low power mode implementations require configUSE_TICKLESS_IDLE to be + * set to a value other than 1. + */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Set xNextTaskUnblockTime to the time at which the next Blocked state task + * will exit the Blocked state. + */ +static void prvResetNextTaskUnblockTime( void ); + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + /* + * Helper function used to pad task names with spaces when printing out + * human readable tables of task information. + */ + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Called after a Task_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/* + * Called after a new task has been created and initialised to place the task + * under the control of the scheduler. + */ +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) PRIVILEGED_FUNCTION; + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + StackType_t * const puxStackBuffer, + StaticTask_t * const pxTaskBuffer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + TCB_t *pxNewTCB; + TaskHandle_t xReturn; + + configASSERT( puxStackBuffer != NULL ); + configASSERT( pxTaskBuffer != NULL ); + + if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) + { + /* The memory used for the task's TCB and stack are passed into this + function - use them. */ + pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note this + task was created statically in case the task is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + + prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + } + else + { + xReturn = NULL; + } + + return xReturn; + } + +#endif /* SUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( portUSING_MPU_WRAPPERS == 1 ) + + BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + + configASSERT( pxTaskDefinition->puxStackBuffer ); + + if( pxTaskDefinition->puxStackBuffer != NULL ) + { + /* Allocate space for the TCB. Where the memory comes from depends + on the implementation of the port malloc function and whether or + not static allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; + + /* Tasks can be created statically or dynamically, so note + this task had a statically allocated stack in case it is + later deleted. The TCB was allocated dynamically. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY; + + prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, + pxTaskDefinition->pcName, + ( uint32_t ) pxTaskDefinition->usStackDepth, + pxTaskDefinition->pvParameters, + pxTaskDefinition->uxPriority, + pxCreatedTask, pxNewTCB, + pxTaskDefinition->xRegions ); + + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + } + + return xReturn; + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint16_t usStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + TCB_t *pxNewTCB; + BaseType_t xReturn; + + /* If the stack grows down then allocate the stack then the TCB so the stack + does not grow into the TCB. Likewise if the stack grows up then allocate + the TCB then the stack. */ + #if( portSTACK_GROWTH > 0 ) + { + /* Allocate space for the TCB. Where the memory comes from depends on + the implementation of the port malloc function and whether or not static + allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Allocate space for the stack used by the task being created. + The base of the stack memory stored in the TCB so the task can + be deleted later if required. */ + pxNewTCB->pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + if( pxNewTCB->pxStack == NULL ) + { + /* Could not allocate the stack. Delete the allocated TCB. */ + vPortFree( pxNewTCB ); + pxNewTCB = NULL; + } + } + } + #else /* portSTACK_GROWTH */ + { + StackType_t *pxStack; + + /* Allocate space for the stack used by the task being created. */ + pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + if( pxStack != NULL ) + { + /* Allocate space for the TCB. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e961 MISRA exception as the casts are only redundant for some paths. */ + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxStack; + } + else + { + /* The stack cannot be used as the TCB was not created. Free + it again. */ + vPortFree( pxStack ); + } + } + else + { + pxNewTCB = NULL; + } + } + #endif /* portSTACK_GROWTH */ + + if( pxNewTCB != NULL ) + { + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note this + task was created dynamically in case it is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + else + { + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + } + + return xReturn; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +StackType_t *pxTopOfStack; +UBaseType_t x; + + #if( portUSING_MPU_WRAPPERS == 1 ) + /* Should the task be created in privileged mode? */ + BaseType_t xRunPrivileged; + if( ( uxPriority & portPRIVILEGE_BIT ) != 0U ) + { + xRunPrivileged = pdTRUE; + } + else + { + xRunPrivileged = pdFALSE; + } + uxPriority &= ~portPRIVILEGE_BIT; + #endif /* portUSING_MPU_WRAPPERS == 1 */ + + /* Avoid dependency on memset() if it is not required. */ + #if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) + { + /* Fill the stack with a known value to assist debugging. */ + ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); + } + #endif /* ( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) ) */ + + /* Calculate the top of stack address. This depends on whether the stack + grows from high memory to low (as per the 80x86) or vice versa. + portSTACK_GROWTH is used to make the result positive or negative as required + by the port. */ + #if( portSTACK_GROWTH < 0 ) + { + pxTopOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); + pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. */ + + /* Check the alignment of the calculated top of stack is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + } + #else /* portSTACK_GROWTH */ + { + pxTopOfStack = pxNewTCB->pxStack; + + /* Check the alignment of the stack buffer is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxNewTCB->pxStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + + /* The other extreme of the stack space is required if stack checking is + performed. */ + pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); + } + #endif /* portSTACK_GROWTH */ + + /* Store the task name in the TCB. */ + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + pxNewTCB->pcTaskName[ x ] = pcName[ x ]; + + /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than + configMAX_TASK_NAME_LEN characters just in case the memory after the + string is not accessible (extremely unlikely). */ + if( pcName[ x ] == 0x00 ) + { + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Ensure the name string is terminated in the case that the string length + was greater or equal to configMAX_TASK_NAME_LEN. */ + pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; + + /* This is used as an array index so must ensure it's not too large. First + remove the privilege bit if one is present. */ + if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxNewTCB->uxPriority = uxPriority; + #if ( configUSE_MUTEXES == 1 ) + { + pxNewTCB->uxBasePriority = uxPriority; + pxNewTCB->uxMutexesHeld = 0; + } + #endif /* configUSE_MUTEXES */ + + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); + vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); + + /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get + back to the containing TCB from a generic item in a list. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); + + /* Event lists are always in priority order. */ + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + { + pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; + } + #endif /* portCRITICAL_NESTING_IN_TCB */ + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + { + pxNewTCB->pxTaskTag = NULL; + } + #endif /* configUSE_APPLICATION_TASK_TAG */ + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxNewTCB->ulRunTimeCounter = 0UL; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + { + vPortStoreTaskMPUSettings( &( pxNewTCB->xMPUSettings ), xRegions, pxNewTCB->pxStack, ulStackDepth ); + } + #else + { + /* Avoid compiler warning about unreferenced parameter. */ + ( void ) xRegions; + } + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + { + for( x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++ ) + { + pxNewTCB->pvThreadLocalStoragePointers[ x ] = NULL; + } + } + #endif + + #if ( configUSE_TASK_NOTIFICATIONS == 1 ) + { + pxNewTCB->ulNotifiedValue = 0; + pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Initialise this task's Newlib reent structure. */ + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); + } + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + pxNewTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Initialize the TCB stack to look as if the task was already running, + but had been interrupted by the scheduler. The return address is set + to the start of the task function. Once the stack has been initialised + the top of stack variable is updated. */ + #if( portUSING_MPU_WRAPPERS == 1 ) + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #else /* portUSING_MPU_WRAPPERS */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); + } + #endif /* portUSING_MPU_WRAPPERS */ + + if( ( void * ) pxCreatedTask != NULL ) + { + /* Pass the handle out in an anonymous way. The handle can be used to + change the created task's priority, delete the created task, etc.*/ + *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) +{ + /* Ensure interrupts don't access the task lists while the lists are being + updated. */ + taskENTER_CRITICAL(); + { + uxCurrentNumberOfTasks++; + if( pxCurrentTCB == NULL ) + { + /* There are no other tasks, or all the other tasks are in + the suspended state - make this the current task. */ + pxCurrentTCB = pxNewTCB; + + if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) + { + /* This is the first task to be created so do the preliminary + initialisation required. We will not recover if this call + fails, but we will report the failure. */ + prvInitialiseTaskLists(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* If the scheduler is not already running, make this task the + current task if it is the highest priority task to be created + so far. */ + if( xSchedulerRunning == pdFALSE ) + { + if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) + { + pxCurrentTCB = pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + uxTaskNumber++; + + #if ( configUSE_TRACE_FACILITY == 1 ) + { + /* Add a counter into the TCB for tracing only. */ + pxNewTCB->uxTCBNumber = uxTaskNumber; + } + #endif /* configUSE_TRACE_FACILITY */ + traceTASK_CREATE( pxNewTCB ); + + prvAddTaskToReadyList( pxNewTCB ); + + portSETUP_TCB( pxNewTCB ); + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* If the created task is of a higher priority than the current task + then it should run now. */ + if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + void vTaskDelete( TaskHandle_t xTaskToDelete ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the calling task that is + being deleted. */ + pxTCB = prvGetTCBFromHandle( xTaskToDelete ); + + /* Remove task from the ready list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Increment the uxTaskNumber also so kernel aware debuggers can + detect that the task lists need re-generating. This is done before + portPRE_TASK_DELETE_HOOK() as in the Windows port that macro will + not return. */ + uxTaskNumber++; + + if( pxTCB == pxCurrentTCB ) + { + /* A task is deleting itself. This cannot complete within the + task itself, as a context switch to another task is required. + Place the task in the termination list. The idle task will + check the termination list and free up any memory allocated by + the scheduler for the TCB and stack of the deleted task. */ + vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) ); + + /* Increment the ucTasksDeleted variable so the idle task knows + there is a task that has been deleted and that it should therefore + check the xTasksWaitingTermination list. */ + ++uxDeletedTasksWaitingCleanUp; + + /* The pre-delete hook is primarily for the Windows simulator, + in which Windows specific clean up operations are performed, + after which it is not possible to yield away from this task - + hence xYieldPending is used to latch that a context switch is + required. */ + portPRE_TASK_DELETE_HOOK( pxTCB, &xYieldPending ); + } + else + { + --uxCurrentNumberOfTasks; + prvDeleteTCB( pxTCB ); + + /* Reset the next expected unblock time in case it referred to + the task that has just been deleted. */ + prvResetNextTaskUnblockTime(); + } + + traceTASK_DELETE( pxTCB ); + } + taskEXIT_CRITICAL(); + + /* Force a reschedule if it is the currently running task that has just + been deleted. */ + if( xSchedulerRunning != pdFALSE ) + { + if( pxTCB == pxCurrentTCB ) + { + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelayUntil == 1 ) + + void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) + { + TickType_t xTimeToWake; + BaseType_t xAlreadyYielded, xShouldDelay = pdFALSE; + + configASSERT( pxPreviousWakeTime ); + configASSERT( ( xTimeIncrement > 0U ) ); + configASSERT( uxSchedulerSuspended == 0 ); + + vTaskSuspendAll(); + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount; + + /* Generate the tick time at which the task wants to wake. */ + xTimeToWake = *pxPreviousWakeTime + xTimeIncrement; + + if( xConstTickCount < *pxPreviousWakeTime ) + { + /* The tick count has overflowed since this function was + lasted called. In this case the only time we should ever + actually delay is if the wake time has also overflowed, + and the wake time is greater than the tick time. When this + is the case it is as if neither time had overflowed. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The tick time has not overflowed. In this case we will + delay if either the wake time has overflowed, and/or the + tick time is less than the wake time. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Update the wake time ready for the next call. */ + *pxPreviousWakeTime = xTimeToWake; + + if( xShouldDelay != pdFALSE ) + { + traceTASK_DELAY_UNTIL( xTimeToWake ); + + /* prvAddCurrentTaskToDelayedList() needs the block time, not + the time to wake, so subtract the current tick count. */ + prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + xAlreadyYielded = xTaskResumeAll(); + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelayUntil */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelay == 1 ) + + void vTaskDelay( const TickType_t xTicksToDelay ) + { + BaseType_t xAlreadyYielded = pdFALSE; + + /* A delay time of zero just forces a reschedule. */ + if( xTicksToDelay > ( TickType_t ) 0U ) + { + configASSERT( uxSchedulerSuspended == 0 ); + vTaskSuspendAll(); + { + traceTASK_DELAY(); + + /* A task that is removed from the event list while the + scheduler is suspended will not get placed in the ready + list or removed from the blocked list until the scheduler + is resumed. + + This task cannot be in an event list as it is the currently + executing task. */ + prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); + } + xAlreadyYielded = xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelay */ +/*-----------------------------------------------------------*/ + +#if( ( INCLUDE_eTaskGetState == 1 ) || ( configUSE_TRACE_FACILITY == 1 ) ) + + eTaskState eTaskGetState( TaskHandle_t xTask ) + { + eTaskState eReturn; + List_t *pxStateList; + const TCB_t * const pxTCB = ( TCB_t * ) xTask; + + configASSERT( pxTCB ); + + if( pxTCB == pxCurrentTCB ) + { + /* The task calling this function is querying its own state. */ + eReturn = eRunning; + } + else + { + taskENTER_CRITICAL(); + { + pxStateList = ( List_t * ) listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) ); + } + taskEXIT_CRITICAL(); + + if( ( pxStateList == pxDelayedTaskList ) || ( pxStateList == pxOverflowDelayedTaskList ) ) + { + /* The task being queried is referenced from one of the Blocked + lists. */ + eReturn = eBlocked; + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + else if( pxStateList == &xSuspendedTaskList ) + { + /* The task being queried is referenced from the suspended + list. Is it genuinely suspended or is it block + indefinitely? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ) + { + eReturn = eSuspended; + } + else + { + eReturn = eBlocked; + } + } + #endif + + #if ( INCLUDE_vTaskDelete == 1 ) + else if( ( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL ) ) + { + /* The task being queried is referenced from the deleted + tasks list, or it is not referenced from any lists at + all. */ + eReturn = eDeleted; + } + #endif + + else /*lint !e525 Negative indentation is intended to make use of pre-processor clearer. */ + { + /* If the task is not in any other state, it must be in the + Ready (including pending ready) state. */ + eReturn = eReady; + } + } + + return eReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_eTaskGetState */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGet( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + UBaseType_t uxReturn; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the that + called uxTaskPriorityGet() that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + taskEXIT_CRITICAL(); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGetFromISR( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + UBaseType_t uxReturn, uxSavedInterruptState; + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptState = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* If null is passed in here then it is the priority of the calling + task that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptState ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskPrioritySet == 1 ) + + void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) + { + TCB_t *pxTCB; + UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry; + BaseType_t xYieldRequired = pdFALSE; + + configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) ); + + /* Ensure the new priority is valid. */ + if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the calling + task that is being changed. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + traceTASK_PRIORITY_SET( pxTCB, uxNewPriority ); + + #if ( configUSE_MUTEXES == 1 ) + { + uxCurrentBasePriority = pxTCB->uxBasePriority; + } + #else + { + uxCurrentBasePriority = pxTCB->uxPriority; + } + #endif + + if( uxCurrentBasePriority != uxNewPriority ) + { + /* The priority change may have readied a task of higher + priority than the calling task. */ + if( uxNewPriority > uxCurrentBasePriority ) + { + if( pxTCB != pxCurrentTCB ) + { + /* The priority of a task other than the currently + running task is being raised. Is the priority being + raised above that of the running task? */ + if( uxNewPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The priority of the running task is being raised, + but the running task must already be the highest + priority task able to run so no yield is required. */ + } + } + else if( pxTCB == pxCurrentTCB ) + { + /* Setting the priority of the running task down means + there may now be another task of higher priority that + is ready to execute. */ + xYieldRequired = pdTRUE; + } + else + { + /* Setting the priority of any other task down does not + require a yield as the running task must be above the + new priority of the task being modified. */ + } + + /* Remember the ready list the task might be referenced from + before its uxPriority member is changed so the + taskRESET_READY_PRIORITY() macro can function correctly. */ + uxPriorityUsedOnEntry = pxTCB->uxPriority; + + #if ( configUSE_MUTEXES == 1 ) + { + /* Only change the priority being used if the task is not + currently using an inherited priority. */ + if( pxTCB->uxBasePriority == pxTCB->uxPriority ) + { + pxTCB->uxPriority = uxNewPriority; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The base priority gets set whatever. */ + pxTCB->uxBasePriority = uxNewPriority; + } + #else + { + pxTCB->uxPriority = uxNewPriority; + } + #endif + + /* Only reset the event list item value if the value is not + being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxNewPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task is in the blocked or suspended list we need do + nothing more than change it's priority variable. However, if + the task is in a ready list it needs to be removed and placed + in the list appropriate to its new priority. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* The task is currently in its ready list - remove before adding + it to it's new ready list. As we are in a critical section we + can do this even if the scheduler is suspended. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvAddTaskToReadyList( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xYieldRequired != pdFALSE ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Remove compiler warning about unused variables when the port + optimised task selection is not being used. */ + ( void ) uxPriorityUsedOnEntry; + } + } + taskEXIT_CRITICAL(); + } + +#endif /* INCLUDE_vTaskPrioritySet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskSuspend( TaskHandle_t xTaskToSuspend ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the running task that is + being suspended. */ + pxTCB = prvGetTCBFromHandle( xTaskToSuspend ); + + traceTASK_SUSPEND( pxTCB ); + + /* Remove task from the ready/delayed list and place in the + suspended list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ); + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* Reset the next expected unblock time in case it referred to the + task that is now in the Suspended state. */ + taskENTER_CRITICAL(); + { + prvResetNextTaskUnblockTime(); + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( pxTCB == pxCurrentTCB ) + { + if( xSchedulerRunning != pdFALSE ) + { + /* The current task has just been suspended. */ + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + /* The scheduler is not running, but the task that was pointed + to by pxCurrentTCB has just been suspended and pxCurrentTCB + must be adjusted to point to a different task. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks ) + { + /* No other tasks are ready, so set pxCurrentTCB back to + NULL so when the next task is created pxCurrentTCB will + be set to point to it no matter what its relative priority + is. */ + pxCurrentTCB = NULL; + } + else + { + vTaskSwitchContext(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) + { + BaseType_t xReturn = pdFALSE; + const TCB_t * const pxTCB = ( TCB_t * ) xTask; + + /* Accesses xPendingReadyList so must be called from a critical + section. */ + + /* It does not make sense to check if the calling task is suspended. */ + configASSERT( xTask ); + + /* Is the task being resumed actually in the suspended list? */ + if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* Has the task already been resumed from within an ISR? */ + if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE ) + { + /* Is it in the suspended list because it is in the Suspended + state, or because is is blocked with no timeout? */ + if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE ) + { + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskResume( TaskHandle_t xTaskToResume ) + { + TCB_t * const pxTCB = ( TCB_t * ) xTaskToResume; + + /* It does not make sense to resume the calling task. */ + configASSERT( xTaskToResume ); + + /* The parameter cannot be NULL as it is impossible to resume the + currently executing task. */ + if( ( pxTCB != NULL ) && ( pxTCB != pxCurrentTCB ) ) + { + taskENTER_CRITICAL(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME( pxTCB ); + + /* As we are in a critical section we can access the ready + lists even if the scheduler is suspended. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* We may have just resumed a higher priority task. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + /* This yield may not cause the task just resumed to run, + but will leave the lists in the correct state for the + next yield. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ + +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) + + BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) + { + BaseType_t xYieldRequired = pdFALSE; + TCB_t * const pxTCB = ( TCB_t * ) xTaskToResume; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToResume ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME_FROM_ISR( pxTCB ); + + /* Check the ready lists can be accessed. */ + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Ready lists can be accessed so move the task from the + suspended list to the ready list directly. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed or ready lists cannot be accessed so the task + is held in the pending ready list until the scheduler is + unsuspended. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xYieldRequired; + } + +#endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ +/*-----------------------------------------------------------*/ + +void vTaskStartScheduler( void ) +{ +BaseType_t xReturn; + + /* Add the idle task at the lowest priority. */ + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + StaticTask_t *pxIdleTaskTCBBuffer = NULL; + StackType_t *pxIdleTaskStackBuffer = NULL; + uint32_t ulIdleTaskStackSize; + + /* The Idle task is created using user provided RAM - obtain the + address of the RAM then create the idle task. */ + vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); + xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, + "IDLE", + ulIdleTaskStackSize, + ( void * ) NULL, + ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), + pxIdleTaskStackBuffer, + pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + + if( xIdleTaskHandle != NULL ) + { + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + #else + { + /* The Idle task is being created using dynamically allocated RAM. */ + xReturn = xTaskCreate( prvIdleTask, + "IDLE", configMINIMAL_STACK_SIZE, + ( void * ) NULL, + ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), + &xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + #if ( configUSE_TIMERS == 1 ) + { + if( xReturn == pdPASS ) + { + xReturn = xTimerCreateTimerTask(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TIMERS */ + + if( xReturn == pdPASS ) + { + /* Interrupts are turned off here, to ensure a tick does not occur + before or during the call to xPortStartScheduler(). The stacks of + the created tasks contain a status word with interrupts switched on + so interrupts will automatically get re-enabled when the first task + starts to run. */ + portDISABLE_INTERRUPTS(); + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to the task that will run first. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + xNextTaskUnblockTime = portMAX_DELAY; + xSchedulerRunning = pdTRUE; + xTickCount = ( TickType_t ) 0U; + + /* If configGENERATE_RUN_TIME_STATS is defined then the following + macro must be defined to configure the timer/counter used to generate + the run time counter time base. */ + portCONFIGURE_TIMER_FOR_RUN_TIME_STATS(); + + /* Setting up the timer tick is hardware specific and thus in the + portable interface. */ + if( xPortStartScheduler() != pdFALSE ) + { + /* Should not reach here as if the scheduler is running the + function will not return. */ + } + else + { + /* Should only reach here if a task calls xTaskEndScheduler(). */ + } + } + else + { + /* This line will only be reached if the kernel could not be started, + because there was not enough FreeRTOS heap to create the idle task + or the timer task. */ + configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); + } + + /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, + meaning xIdleTaskHandle is not used anywhere else. */ + ( void ) xIdleTaskHandle; +} +/*-----------------------------------------------------------*/ + +void vTaskEndScheduler( void ) +{ + /* Stop the scheduler interrupts and call the portable scheduler end + routine so the original ISRs can be restored if necessary. The port + layer must ensure interrupts enable bit is left in the correct state. */ + portDISABLE_INTERRUPTS(); + xSchedulerRunning = pdFALSE; + vPortEndScheduler(); +} +/*----------------------------------------------------------*/ + +void vTaskSuspendAll( void ) +{ + /* A critical section is not required as the variable is of type + BaseType_t. Please read Richard Barry's reply in the following link to a + post in the FreeRTOS support forum before reporting this as a bug! - + http://goo.gl/wu4acr */ + ++uxSchedulerSuspended; +} +/*----------------------------------------------------------*/ + +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) + { + TickType_t xReturn; + UBaseType_t uxHigherPriorityReadyTasks = pdFALSE; + + /* uxHigherPriorityReadyTasks takes care of the case where + configUSE_PREEMPTION is 0, so there may be tasks above the idle priority + task that are in the Ready state, even though the idle task is + running. */ + #if( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + { + if( uxTopReadyPriority > tskIDLE_PRIORITY ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #else + { + const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01; + + /* When port optimised task selection is used the uxTopReadyPriority + variable is used as a bit map. If bits other than the least + significant bit are set then there are tasks that have a priority + above the idle priority that are in the Ready state. This takes + care of the case where the co-operative scheduler is in use. */ + if( uxTopReadyPriority > uxLeastSignificantBit ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #endif + + if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY ) + { + xReturn = 0; + } + else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 ) + { + /* There are other idle priority tasks in the ready state. If + time slicing is used then the very next tick interrupt must be + processed. */ + xReturn = 0; + } + else if( uxHigherPriorityReadyTasks != pdFALSE ) + { + /* There are tasks in the Ready state that have a priority above the + idle priority. This path can only be reached if + configUSE_PREEMPTION is 0. */ + xReturn = 0; + } + else + { + xReturn = xNextTaskUnblockTime - xTickCount; + } + + return xReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskResumeAll( void ) +{ +TCB_t *pxTCB = NULL; +BaseType_t xAlreadyYielded = pdFALSE; + + /* If uxSchedulerSuspended is zero then this function does not match a + previous call to vTaskSuspendAll(). */ + configASSERT( uxSchedulerSuspended ); + + /* It is possible that an ISR caused a task to be removed from an event + list while the scheduler was suspended. If this was the case then the + removed task will have been added to the xPendingReadyList. Once the + scheduler has been resumed it is safe to move all the pending ready + tasks from this list into their appropriate ready list. */ + taskENTER_CRITICAL(); + { + --uxSchedulerSuspended; + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) + { + /* Move any readied tasks from the pending list into the + appropriate ready list. */ + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) + { + pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* If the moved task has a priority higher than the current + task then a yield must be performed. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( pxTCB != NULL ) + { + /* A task was unblocked while the scheduler was suspended, + which may have prevented the next unblock time from being + re-calculated, in which case re-calculate it now. Mainly + important for low power tickless implementations, where + this can prevent an unnecessary exit from low power + state. */ + prvResetNextTaskUnblockTime(); + } + + /* If any ticks occurred while the scheduler was suspended then + they should be processed now. This ensures the tick count does + not slip, and that any delayed tasks are resumed at the correct + time. */ + { + UBaseType_t uxPendedCounts = uxPendedTicks; /* Non-volatile copy. */ + + if( uxPendedCounts > ( UBaseType_t ) 0U ) + { + do + { + if( xTaskIncrementTick() != pdFALSE ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --uxPendedCounts; + } while( uxPendedCounts > ( UBaseType_t ) 0U ); + + uxPendedTicks = 0; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( xYieldPending != pdFALSE ) + { + #if( configUSE_PREEMPTION != 0 ) + { + xAlreadyYielded = pdTRUE; + } + #endif + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xAlreadyYielded; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCount( void ) +{ +TickType_t xTicks; + + /* Critical section required if running on a 16 bit processor. */ + portTICK_TYPE_ENTER_CRITICAL(); + { + xTicks = xTickCount; + } + portTICK_TYPE_EXIT_CRITICAL(); + + return xTicks; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCountFromISR( void ) +{ +TickType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR(); + { + xReturn = xTickCount; + } + portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxTaskGetNumberOfTasks( void ) +{ + /* A critical section is not required because the variables are of type + BaseType_t. */ + return uxCurrentNumberOfTasks; +} +/*-----------------------------------------------------------*/ + +char *pcTaskGetName( TaskHandle_t xTaskToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +TCB_t *pxTCB; + + /* If null is passed in here then the name of the calling task is being + queried. */ + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + configASSERT( pxTCB ); + return &( pxTCB->pcTaskName[ 0 ] ); +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) + { + TCB_t *pxNextTCB, *pxFirstTCB, *pxReturn = NULL; + UBaseType_t x; + char cNextChar; + + /* This function is called with the scheduler suspended. */ + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); + + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); + + /* Check each character in the name looking for a match or + mismatch. */ + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + cNextChar = pxNextTCB->pcTaskName[ x ]; + + if( cNextChar != pcNameToQuery[ x ] ) + { + /* Characters didn't match. */ + break; + } + else if( cNextChar == 0x00 ) + { + /* Both strings terminated, a match must have been + found. */ + pxReturn = pxNextTCB; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( pxReturn != NULL ) + { + /* The handle has been found. */ + break; + } + + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return pxReturn; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t uxQueue = configMAX_PRIORITIES; + TCB_t* pxTCB; + + /* Task names will be truncated to configMAX_TASK_NAME_LEN - 1 bytes. */ + configASSERT( strlen( pcNameToQuery ) < configMAX_TASK_NAME_LEN ); + + vTaskSuspendAll(); + { + /* Search the ready lists. */ + do + { + uxQueue--; + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) &( pxReadyTasksLists[ uxQueue ] ), pcNameToQuery ); + + if( pxTCB != NULL ) + { + /* Found the handle. */ + break; + } + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Search the delayed lists. */ + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxDelayedTaskList, pcNameToQuery ); + } + + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxOverflowDelayedTaskList, pcNameToQuery ); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the suspended list. */ + pxTCB = prvSearchForNameWithinSingleList( &xSuspendedTaskList, pcNameToQuery ); + } + } + #endif + + #if( INCLUDE_vTaskDelete == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the deleted list. */ + pxTCB = prvSearchForNameWithinSingleList( &xTasksWaitingTermination, pcNameToQuery ); + } + } + #endif + } + ( void ) xTaskResumeAll(); + + return ( TaskHandle_t ) pxTCB; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) + { + UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES; + + vTaskSuspendAll(); + { + /* Is there a space in the array for each task in the system? */ + if( uxArraySize >= uxCurrentNumberOfTasks ) + { + /* Fill in an TaskStatus_t structure with information on each + task in the Ready state. */ + do + { + uxQueue--; + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady ); + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Fill in an TaskStatus_t structure with information on each + task in the Blocked state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxDelayedTaskList, eBlocked ); + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxOverflowDelayedTaskList, eBlocked ); + + #if( INCLUDE_vTaskDelete == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task that has been deleted but not yet cleaned up. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted ); + } + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task in the Suspended state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended ); + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1) + { + if( pulTotalRunTime != NULL ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) ); + #else + *pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + } + } + #else + { + if( pulTotalRunTime != NULL ) + { + *pulTotalRunTime = 0; + } + } + #endif + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) + + TaskHandle_t xTaskGetIdleTaskHandle( void ) + { + /* If xTaskGetIdleTaskHandle() is called before the scheduler has been + started, then xIdleTaskHandle will be NULL. */ + configASSERT( ( xIdleTaskHandle != NULL ) ); + return xIdleTaskHandle; + } + +#endif /* INCLUDE_xTaskGetIdleTaskHandle */ +/*----------------------------------------------------------*/ + +/* This conditional compilation should use inequality to 0, not equality to 1. +This is to ensure vTaskStepTick() is available when user defined low power mode +implementations require configUSE_TICKLESS_IDLE to be set to a value other than +1. */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + void vTaskStepTick( const TickType_t xTicksToJump ) + { + /* Correct the tick count value after a period during which the tick + was suppressed. Note this does *not* call the tick hook function for + each stepped tick. */ + configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); + xTickCount += xTicksToJump; + traceINCREASE_TICK_COUNT( xTicksToJump ); + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskAbortDelay == 1 ) + + BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) + { + TCB_t *pxTCB = ( TCB_t * ) xTask; + BaseType_t xReturn = pdFALSE; + + configASSERT( pxTCB ); + + vTaskSuspendAll(); + { + /* A task can only be prematurely removed from the Blocked state if + it is actually in the Blocked state. */ + if( eTaskGetState( xTask ) == eBlocked ) + { + /* Remove the reference to the task from the blocked list. An + interrupt won't touch the xStateListItem because the + scheduler is suspended. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove it from + the event list too. Interrupts can touch the event list item, + even though the scheduler is suspended, so a critical section + is used. */ + taskENTER_CRITICAL(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + pxTCB->ucDelayAborted = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + /* Place the unblocked task into the appropriate ready list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate context + switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should only be + performed if the unblocked task has a priority that is + equal to or higher than the currently executing task. */ + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Pend the yield to be performed when the scheduler + is unsuspended. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + xTaskResumeAll(); + + return xReturn; + } + +#endif /* INCLUDE_xTaskAbortDelay */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskIncrementTick( void ) +{ +TCB_t * pxTCB; +TickType_t xItemValue; +BaseType_t xSwitchRequired = pdFALSE; + + /* Called by the portable layer each time a tick interrupt occurs. + Increments the tick then checks to see if the new tick value will cause any + tasks to be unblocked. */ + traceTASK_INCREMENT_TICK( xTickCount ); + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount + 1; + + /* Increment the RTOS tick, switching the delayed and overflowed + delayed lists if it wraps to 0. */ + xTickCount = xConstTickCount; + + if( xConstTickCount == ( TickType_t ) 0U ) + { + taskSWITCH_DELAYED_LISTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* See if this tick has made a timeout expire. Tasks are stored in + the queue in the order of their wake time - meaning once one task + has been found whose block time has not expired there is no need to + look any further down the list. */ + if( xConstTickCount >= xNextTaskUnblockTime ) + { + for( ;; ) + { + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The delayed list is empty. Set xNextTaskUnblockTime + to the maximum possible value so it is extremely + unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass + next time through. */ + xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + break; + } + else + { + /* The delayed list is not empty, get the value of the + item at the head of the delayed list. This is the time + at which the task at the head of the delayed list must + be removed from the Blocked state. */ + pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); + xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); + + if( xConstTickCount < xItemValue ) + { + /* It is not time to unblock this item yet, but the + item value is the time at which the task at the head + of the blocked list must be removed from the Blocked + state - so record the item value in + xNextTaskUnblockTime. */ + xNextTaskUnblockTime = xItemValue; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* It is time to remove the item from the Blocked state. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove + it from the event list. */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Place the unblocked task into the appropriate ready + list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate + context switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should + only be performed if the unblocked task has a + priority that is equal to or higher than the + currently executing task. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + } + } + + /* Tasks of equal priority to the currently running task will share + processing time (time slice) if preemption is on, and the application + writer has not explicitly turned time slicing off. */ + #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) + { + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) */ + + #if ( configUSE_TICK_HOOK == 1 ) + { + /* Guard against the tick hook being called when the pended tick + count is being unwound (when the scheduler is being unlocked). */ + if( uxPendedTicks == ( UBaseType_t ) 0U ) + { + vApplicationTickHook(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICK_HOOK */ + } + else + { + ++uxPendedTicks; + + /* The tick hook gets called at regular intervals, even if the + scheduler is locked. */ + #if ( configUSE_TICK_HOOK == 1 ) + { + vApplicationTickHook(); + } + #endif + } + + #if ( configUSE_PREEMPTION == 1 ) + { + if( xYieldPending != pdFALSE ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + + return xSwitchRequired; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) + { + TCB_t *xTCB; + + /* If xTask is NULL then it is the task hook of the calling task that is + getting set. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = ( TCB_t * ) xTask; + } + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + xTCB->pxTaskTag = pxHookFunction; + taskEXIT_CRITICAL(); + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) + { + TCB_t *xTCB; + TaskHookFunction_t xReturn; + + /* If xTask is NULL then we are setting our own task hook. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = ( TCB_t * ) xTask; + } + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + { + xReturn = xTCB->pxTaskTag; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) + { + TCB_t *xTCB; + BaseType_t xReturn; + + /* If xTask is NULL then we are calling our own task hook. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = ( TCB_t * ) xTask; + } + + if( xTCB->pxTaskTag != NULL ) + { + xReturn = xTCB->pxTaskTag( pvParameter ); + } + else + { + xReturn = pdFAIL; + } + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +void vTaskSwitchContext( void ) +{ + if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) + { + /* The scheduler is currently suspended - do not allow a context + switch. */ + xYieldPending = pdTRUE; + } + else + { + xYieldPending = pdFALSE; + traceTASK_SWITCHED_OUT(); + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime ); + #else + ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + + /* Add the amount of time the task has been running to the + accumulated time so far. The time the task started running was + stored in ulTaskSwitchedInTime. Note that there is no overflow + protection here so count values are only valid until the timer + overflows. The guard against negative values is to protect + against suspect run time stat counter implementations - which + are provided by the application, not the kernel. */ + if( ulTotalRunTime > ulTaskSwitchedInTime ) + { + pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + ulTaskSwitchedInTime = ulTotalRunTime; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + /* Check for stack overflow, if configured. */ + taskCHECK_FOR_STACK_OVERFLOW(); + + /* Select a new task to run using either the generic C or port + optimised asm code. */ + taskSELECT_HIGHEST_PRIORITY_TASK(); + traceTASK_SWITCHED_IN(); + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to this task. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + } +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH EITHER INTERRUPTS DISABLED OR THE + SCHEDULER SUSPENDED AND THE QUEUE BEING ACCESSED LOCKED. */ + + /* Place the event list item of the TCB in the appropriate event list. + This is placed in the list in priority order so the highest priority task + is the first to be woken by the event. The queue that contains the event + list is locked, preventing simultaneous access from interrupts. */ + vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event groups implementation. */ + configASSERT( uxSchedulerSuspended != 0 ); + + /* Store the item value in the event list item. It is safe to access the + event list item here as interrupts won't access the event list item of a + task that is not in the Blocked state. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Place the event list item of the TCB at the end of the appropriate event + list. It is safe to access the event list here because it is part of an + event group implementation - and interrupts don't access event groups + directly (instead they access them indirectly by pending function calls to + the task level). */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TIMERS == 1 ) + + void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { + configASSERT( pxEventList ); + + /* This function should not be called by application code hence the + 'Restricted' in its name. It is not part of the public API. It is + designed for use by kernel code, and has special calling requirements - + it should be called with the scheduler suspended. */ + + + /* Place the event list item of the TCB in the appropriate event list. + In this case it is assume that this is the only task that is going to + be waiting on this event list, so the faster vListInsertEnd() function + can be used in place of vListInsert. */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + /* If the task should block indefinitely then set the block time to a + value that will be recognised as an indefinite delay inside the + prvAddCurrentTaskToDelayedList() function. */ + if( xWaitIndefinitely != pdFALSE ) + { + xTicksToWait = portMAX_DELAY; + } + + traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); + } + +#endif /* configUSE_TIMERS */ +/*-----------------------------------------------------------*/ + +BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) +{ +TCB_t *pxUnblockedTCB; +BaseType_t xReturn; + + /* THIS FUNCTION MUST BE CALLED FROM A CRITICAL SECTION. It can also be + called from a critical section within an ISR. */ + + /* The event list is sorted in priority order, so the first in the list can + be removed as it is known to be the highest priority. Remove the TCB from + the delayed list, and add it to the ready list. + + If an event is for a queue that is locked then this function will never + get called - the lock count on the queue will get modified instead. This + means exclusive access to the event list is guaranteed here. + + This function assumes that a check has already been made to ensure that + pxEventList is not empty. */ + pxUnblockedTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold this task + pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); + } + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Return true if the task removed from the event list has a higher + priority than the calling task. This allows the calling task to know if + it should force a context switch now. */ + xReturn = pdTRUE; + + /* Mark that a yield is pending in case the user is not using the + "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked on a kernel object then xNextTaskUnblockTime + might be set to the blocked task's time out time. If the task is + unblocked for a reason other than a timeout xNextTaskUnblockTime is + normally left unchanged, because it is automatically reset to a new + value when the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter sleep mode + at the earliest possible time - so reset xNextTaskUnblockTime here to + ensure it is updated at the earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) +{ +TCB_t *pxUnblockedTCB; +BaseType_t xReturn; + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event flags implementation. */ + configASSERT( uxSchedulerSuspended != pdFALSE ); + + /* Store the new item value in the event list. */ + listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Remove the event list form the event flag. Interrupts do not access + event flags. */ + pxUnblockedTCB = ( TCB_t * ) listGET_LIST_ITEM_OWNER( pxEventListItem ); + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( pxEventListItem ); + + /* Remove the task from the delayed list and add it to the ready list. The + scheduler is suspended so interrupts will not be accessing the ready + lists. */ + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Return true if the task removed from the event list has + a higher priority than the calling task. This allows + the calling task to know if it should force a context + switch now. */ + xReturn = pdTRUE; + + /* Mark that a yield is pending in case the user is not using the + "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) +{ + configASSERT( pxTimeOut ); + pxTimeOut->xOverflowCount = xNumOfOverflows; + pxTimeOut->xTimeOnEntering = xTickCount; +} +/*-----------------------------------------------------------*/ + +BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) +{ +BaseType_t xReturn; + + configASSERT( pxTimeOut ); + configASSERT( pxTicksToWait ); + + taskENTER_CRITICAL(); + { + /* Minor optimisation. The tick count cannot change in this block. */ + const TickType_t xConstTickCount = xTickCount; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + if( pxCurrentTCB->ucDelayAborted != pdFALSE ) + { + /* The delay was aborted, which is not the same as a time out, + but has the same result. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + xReturn = pdTRUE; + } + else + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + if( *pxTicksToWait == portMAX_DELAY ) + { + /* If INCLUDE_vTaskSuspend is set to 1 and the block time + specified is the maximum block time then the task should block + indefinitely, and therefore never time out. */ + xReturn = pdFALSE; + } + else + #endif + + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ + { + /* The tick count is greater than the time at which + vTaskSetTimeout() was called, but has also overflowed since + vTaskSetTimeOut() was called. It must have wrapped all the way + around and gone past again. This passed since vTaskSetTimeout() + was called. */ + xReturn = pdTRUE; + } + else if( ( ( TickType_t ) ( xConstTickCount - pxTimeOut->xTimeOnEntering ) ) < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ + { + /* Not a genuine timeout. Adjust parameters for time remaining. */ + *pxTicksToWait -= ( xConstTickCount - pxTimeOut->xTimeOnEntering ); + vTaskSetTimeOutState( pxTimeOut ); + xReturn = pdFALSE; + } + else + { + xReturn = pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskMissedYield( void ) +{ + xYieldPending = pdTRUE; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) + { + UBaseType_t uxReturn; + TCB_t *pxTCB; + + if( xTask != NULL ) + { + pxTCB = ( TCB_t * ) xTask; + uxReturn = pxTCB->uxTaskNumber; + } + else + { + uxReturn = 0U; + } + + return uxReturn; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) + { + TCB_t *pxTCB; + + if( xTask != NULL ) + { + pxTCB = ( TCB_t * ) xTask; + pxTCB->uxTaskNumber = uxHandle; + } + } + +#endif /* configUSE_TRACE_FACILITY */ + +/* + * ----------------------------------------------------------- + * The Idle task. + * ---------------------------------------------------------- + * + * The portTASK_FUNCTION() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION( prvIdleTask, pvParameters ) +{ + /* Stop warnings. */ + ( void ) pvParameters; + + /** THIS IS THE RTOS IDLE TASK - WHICH IS CREATED AUTOMATICALLY WHEN THE + SCHEDULER IS STARTED. **/ + + for( ;; ) + { + /* See if any tasks have deleted themselves - if so then the idle task + is responsible for freeing the deleted task's TCB and stack. */ + prvCheckTasksWaitingTermination(); + + #if ( configUSE_PREEMPTION == 0 ) + { + /* If we are not using preemption we keep forcing a task switch to + see if any other task has become available. If we are using + preemption we don't need to do this as any task becoming available + will automatically get the processor anyway. */ + taskYIELD(); + } + #endif /* configUSE_PREEMPTION */ + + #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) + { + /* When using preemption tasks of equal priority will be + timesliced. If a task that is sharing the idle priority is ready + to run then the idle task should yield before the end of the + timeslice. + + A critical region is not required here as we are just reading from + the list, and an occasional incorrect value will not matter. If + the ready list at the idle priority contains more than one task + then a task other than the idle task is ready to execute. */ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) + { + taskYIELD(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) */ + + #if ( configUSE_IDLE_HOOK == 1 ) + { + extern void vApplicationIdleHook( void ); + + /* Call the user defined function from within the idle task. This + allows the application designer to add background functionality + without the overhead of a separate task. + NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES, + CALL A FUNCTION THAT MIGHT BLOCK. */ + vApplicationIdleHook(); + } + #endif /* configUSE_IDLE_HOOK */ + + /* This conditional compilation should use inequality to 0, not equality + to 1. This is to ensure portSUPPRESS_TICKS_AND_SLEEP() is called when + user defined low power mode implementations require + configUSE_TICKLESS_IDLE to be set to a value other than 1. */ + #if ( configUSE_TICKLESS_IDLE != 0 ) + { + TickType_t xExpectedIdleTime; + + /* It is not desirable to suspend then resume the scheduler on + each iteration of the idle task. Therefore, a preliminary + test of the expected idle time is performed without the + scheduler suspended. The result here is not necessarily + valid. */ + xExpectedIdleTime = prvGetExpectedIdleTime(); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + vTaskSuspendAll(); + { + /* Now the scheduler is suspended, the expected idle + time can be sampled again, and this time its value can + be used. */ + configASSERT( xNextTaskUnblockTime >= xTickCount ); + xExpectedIdleTime = prvGetExpectedIdleTime(); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + traceLOW_POWER_IDLE_BEGIN(); + portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ); + traceLOW_POWER_IDLE_END(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICKLESS_IDLE */ + } +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TICKLESS_IDLE != 0 ) + + eSleepModeStatus eTaskConfirmSleepModeStatus( void ) + { + /* The idle task exists in addition to the application tasks. */ + const UBaseType_t uxNonApplicationTasks = 1; + eSleepModeStatus eReturn = eStandardSleep; + + if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 ) + { + /* A task was made ready while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else if( xYieldPending != pdFALSE ) + { + /* A yield was pended while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else + { + /* If all the tasks are in the suspended list (which might mean they + have an infinite block time rather than actually being suspended) + then it is safe to turn all clocks off and just wait for external + interrupts. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) ) + { + eReturn = eNoTasksWaitingTimeout; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return eReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) + { + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToSet ); + pxTCB->pvThreadLocalStoragePointers[ xIndex ] = pvValue; + } + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) + { + void *pvReturn = NULL; + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + pvReturn = pxTCB->pvThreadLocalStoragePointers[ xIndex ]; + } + else + { + pvReturn = NULL; + } + + return pvReturn; + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( portUSING_MPU_WRAPPERS == 1 ) + + void vTaskAllocateMPURegions( TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions ) + { + TCB_t *pxTCB; + + /* If null is passed in here then we are modifying the MPU settings of + the calling task. */ + pxTCB = prvGetTCBFromHandle( xTaskToModify ); + + vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 ); + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseTaskLists( void ) +{ +UBaseType_t uxPriority; + + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) + { + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); + } + + vListInitialise( &xDelayedTaskList1 ); + vListInitialise( &xDelayedTaskList2 ); + vListInitialise( &xPendingReadyList ); + + #if ( INCLUDE_vTaskDelete == 1 ) + { + vListInitialise( &xTasksWaitingTermination ); + } + #endif /* INCLUDE_vTaskDelete */ + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + vListInitialise( &xSuspendedTaskList ); + } + #endif /* INCLUDE_vTaskSuspend */ + + /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList + using list2. */ + pxDelayedTaskList = &xDelayedTaskList1; + pxOverflowDelayedTaskList = &xDelayedTaskList2; +} +/*-----------------------------------------------------------*/ + +static void prvCheckTasksWaitingTermination( void ) +{ + + /** THIS FUNCTION IS CALLED FROM THE RTOS IDLE TASK **/ + + #if ( INCLUDE_vTaskDelete == 1 ) + { + BaseType_t xListIsEmpty; + + /* ucTasksDeleted is used to prevent vTaskSuspendAll() being called + too often in the idle task. */ + while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) + { + vTaskSuspendAll(); + { + xListIsEmpty = listLIST_IS_EMPTY( &xTasksWaitingTermination ); + } + ( void ) xTaskResumeAll(); + + if( xListIsEmpty == pdFALSE ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + pxTCB = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + --uxCurrentNumberOfTasks; + --uxDeletedTasksWaitingCleanUp; + } + taskEXIT_CRITICAL(); + + prvDeleteTCB( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #endif /* INCLUDE_vTaskDelete */ +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TRACE_FACILITY == 1 ) + + void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) + { + TCB_t *pxTCB; + + /* xTask is NULL then get the state of the calling task. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; + pxTaskStatus->pcTaskName = ( const char * ) &( pxTCB->pcTaskName [ 0 ] ); + pxTaskStatus->uxCurrentPriority = pxTCB->uxPriority; + pxTaskStatus->pxStackBase = pxTCB->pxStack; + pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber; + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* If the task is in the suspended list then there is a chance it is + actually just blocked indefinitely - so really it should be reported as + being in the Blocked state. */ + if( pxTaskStatus->eCurrentState == eSuspended ) + { + vTaskSuspendAll(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + pxTaskStatus->eCurrentState = eBlocked; + } + } + xTaskResumeAll(); + } + } + #endif /* INCLUDE_vTaskSuspend */ + + #if ( configUSE_MUTEXES == 1 ) + { + pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority; + } + #else + { + pxTaskStatus->uxBasePriority = 0; + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxTaskStatus->ulRunTimeCounter = pxTCB->ulRunTimeCounter; + } + #else + { + pxTaskStatus->ulRunTimeCounter = 0; + } + #endif + + /* Obtaining the task state is a little fiddly, so is only done if the value + of eState passed into this function is eInvalid - otherwise the state is + just set to whatever is passed in. */ + if( eState != eInvalid ) + { + pxTaskStatus->eCurrentState = eState; + } + else + { + pxTaskStatus->eCurrentState = eTaskGetState( xTask ); + } + + /* Obtaining the stack space takes some time, so the xGetFreeStackSpace + parameter is provided to allow it to be skipped. */ + if( xGetFreeStackSpace != pdFALSE ) + { + #if ( portSTACK_GROWTH > 0 ) + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxEndOfStack ); + } + #else + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxStack ); + } + #endif + } + else + { + pxTaskStatus->usStackHighWaterMark = 0; + } + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) + { + volatile TCB_t *pxNextTCB, *pxFirstTCB; + UBaseType_t uxTask = 0; + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); + + /* Populate an TaskStatus_t structure within the + pxTaskStatusArray array for each task that is referenced from + pxList. See the definition of TaskStatus_t in task.h for the + meaning of each TaskStatus_t structure member. */ + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); + vTaskGetInfo( ( TaskHandle_t ) pxNextTCB, &( pxTaskStatusArray[ uxTask ] ), pdTRUE, eState ); + uxTask++; + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) + + static uint16_t prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) + { + uint32_t ulCount = 0U; + + while( *pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE ) + { + pucStackByte -= portSTACK_GROWTH; + ulCount++; + } + + ulCount /= ( uint32_t ) sizeof( StackType_t ); /*lint !e961 Casting is not redundant on smaller architectures. */ + + return ( uint16_t ) ulCount; + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) + + UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + uint8_t *pucEndOfStack; + UBaseType_t uxReturn; + + pxTCB = prvGetTCBFromHandle( xTask ); + + #if portSTACK_GROWTH < 0 + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; + } + #else + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; + } + #endif + + uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskGetStackHighWaterMark */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) + { + /* This call is required specifically for the TriCore port. It must be + above the vPortFree() calls. The call is also used by ports/demos that + want to allocate and clean RAM statically. */ + portCLEAN_UP_TCB( pxTCB ); + + /* Free up the memory allocated by the scheduler for the task. It is up + to the task to free any memory allocated at the application level. */ + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + _reclaim_reent( &( pxTCB->xNewLib_reent ) ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( portUSING_MPU_WRAPPERS == 0 ) ) + { + /* The task can only have been allocated dynamically - free both + the stack and TCB. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE == 1 ) + { + /* The task could have been allocated statically or dynamically, so + check what was statically allocated before trying to free the + memory. */ + if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) + { + /* Both the stack and TCB were allocated dynamically, so both + must be freed. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) + { + /* Only the stack was statically allocated, so the TCB is the + only memory that must be freed. */ + vPortFree( pxTCB ); + } + else + { + /* Neither the stack nor the TCB were allocated dynamically, so + nothing needs to be freed. */ + configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ) + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +static void prvResetNextTaskUnblockTime( void ) +{ +TCB_t *pxTCB; + + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The new current delayed list is empty. Set xNextTaskUnblockTime to + the maximum possible value so it is extremely unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass until + there is an item in the delayed list. */ + xNextTaskUnblockTime = portMAX_DELAY; + } + else + { + /* The new current delayed list is not empty, get the value of + the item at the head of the delayed list. This is the time at + which the task at the head of the delayed list should be removed + from the Blocked state. */ + ( pxTCB ) = ( TCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); + } +} +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) + + TaskHandle_t xTaskGetCurrentTaskHandle( void ) + { + TaskHandle_t xReturn; + + /* A critical section is not required as this is not called from + an interrupt and the current TCB will always be the same for any + individual execution thread. */ + xReturn = pxCurrentTCB; + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + + BaseType_t xTaskGetSchedulerState( void ) + { + BaseType_t xReturn; + + if( xSchedulerRunning == pdFALSE ) + { + xReturn = taskSCHEDULER_NOT_STARTED; + } + else + { + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + xReturn = taskSCHEDULER_RUNNING; + } + else + { + xReturn = taskSCHEDULER_SUSPENDED; + } + } + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + void vTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxTCB = ( TCB_t * ) pxMutexHolder; + + /* If the mutex was given back by an interrupt while the queue was + locked then the mutex holder might now be NULL. */ + if( pxMutexHolder != NULL ) + { + /* If the holder of the mutex has a priority below the priority of + the task attempting to obtain the mutex then it will temporarily + inherit the priority of the task attempting to obtain the mutex. */ + if( pxTCB->uxPriority < pxCurrentTCB->uxPriority ) + { + /* Adjust the mutex holder state to account for its new + priority. Only reset the event list item value if the value is + not being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task being modified is in the ready state it will need + to be moved into a new list. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxTCB->uxPriority ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Inherit the priority before being moved into the new list. */ + pxTCB->uxPriority = pxCurrentTCB->uxPriority; + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* Just inherit the priority. */ + pxTCB->uxPriority = pxCurrentTCB->uxPriority; + } + + traceTASK_PRIORITY_INHERIT( pxTCB, pxCurrentTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxTCB = ( TCB_t * ) pxMutexHolder; + BaseType_t xReturn = pdFALSE; + + if( pxMutexHolder != NULL ) + { + /* A task can only have an inherited priority if it holds the mutex. + If the mutex is held by a task then it cannot be given from an + interrupt, and if a mutex is given by the holding task then it must + be the running state task. */ + configASSERT( pxTCB == pxCurrentTCB ); + + configASSERT( pxTCB->uxMutexesHeld ); + ( pxTCB->uxMutexesHeld )--; + + /* Has the holder of the mutex inherited the priority of another + task? */ + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) + { + /* Only disinherit if no other mutexes are held. */ + if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) + { + /* A task can only have an inherited priority if it holds + the mutex. If the mutex is held by a task then it cannot be + given from an interrupt, and if a mutex is given by the + holding task then it must be the running state task. Remove + the holding task from the ready list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Disinherit the priority before adding the task into the + new ready list. */ + traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); + pxTCB->uxPriority = pxTCB->uxBasePriority; + + /* Reset the event list item value. It cannot be in use for + any other purpose if this task is running, and it must be + running to give back the mutex. */ + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + prvAddTaskToReadyList( pxTCB ); + + /* Return true to indicate that a context switch is required. + This is only actually required in the corner case whereby + multiple mutexes were held and the mutexes were given back + in an order different to that in which they were taken. + If a context switch did not occur when the first mutex was + returned, even if a task was waiting on it, then a context + switch should occur when the last mutex is returned whether + a task is waiting on it or not. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskEnterCritical( void ) + { + portDISABLE_INTERRUPTS(); + + if( xSchedulerRunning != pdFALSE ) + { + ( pxCurrentTCB->uxCriticalNesting )++; + + /* This is not the interrupt safe version of the enter critical + function so assert() if it is being called from an interrupt + context. Only API functions that end in "FromISR" can be used in an + interrupt. Only assert if the critical nesting count is 1 to + protect against recursive calls if the assert function also uses a + critical section. */ + if( pxCurrentTCB->uxCriticalNesting == 1 ) + { + portASSERT_IF_IN_ISR(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskExitCritical( void ) + { + if( xSchedulerRunning != pdFALSE ) + { + if( pxCurrentTCB->uxCriticalNesting > 0U ) + { + ( pxCurrentTCB->uxCriticalNesting )--; + + if( pxCurrentTCB->uxCriticalNesting == 0U ) + { + portENABLE_INTERRUPTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) + { + size_t x; + + /* Start by copying the entire string. */ + strcpy( pcBuffer, pcTaskName ); + + /* Pad the end of the string with spaces to ensure columns line up when + printed out. */ + for( x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++ ) + { + pcBuffer[ x ] = ' '; + } + + /* Terminate. */ + pcBuffer[ x ] = 0x00; + + /* Return the new end of string. */ + return &( pcBuffer[ x ] ); + } + +#endif /* ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + void vTaskList( char * pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + volatile UBaseType_t uxArraySize, x; + char cStatus; + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskList() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that + * displays task names, states and stack usage. + * + * vTaskList() has a dependency on the sprintf() C library function that + * might bloat the code size, use a lot of stack, and provide different + * results on different platforms. An alternative, tiny, third party, + * and limited functionality implementation of sprintf() is provided in + * many of the FreeRTOS/Demo sub-directories in a file called + * printf-stdarg.c (note printf-stdarg.c does not provide a full + * snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskList(). + */ + + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! if + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL ); + + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + switch( pxTaskStatusArray[ x ].eCurrentState ) + { + case eReady: cStatus = tskREADY_CHAR; + break; + + case eBlocked: cStatus = tskBLOCKED_CHAR; + break; + + case eSuspended: cStatus = tskSUSPENDED_CHAR; + break; + + case eDeleted: cStatus = tskDELETED_CHAR; + break; + + default: /* Should not get here, but it is included + to prevent static checking errors. */ + cStatus = 0x00; + break; + } + + /* Write the task name to the string, padding with spaces so it + can be printed in tabular form more easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + /* Write the rest of the string. */ + sprintf( pcWriteBuffer, "\t%c\t%u\t%u\t%u\r\n", cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber ); + pcWriteBuffer += strlen( pcWriteBuffer ); + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) */ +/*----------------------------------------------------------*/ + +#if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + void vTaskGetRunTimeStats( char *pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + volatile UBaseType_t uxArraySize, x; + uint32_t ulTotalTime, ulStatsAsPercentage; + + #if( configUSE_TRACE_FACILITY != 1 ) + { + #error configUSE_TRACE_FACILITY must also be set to 1 in FreeRTOSConfig.h to use vTaskGetRunTimeStats(). + } + #endif + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part + * of the uxTaskGetSystemState() output into a human readable table that + * displays the amount of time each task has spent in the Running state + * in both absolute and percentage terms. + * + * vTaskGetRunTimeStats() has a dependency on the sprintf() C library + * function that might bloat the code size, use a lot of stack, and + * provide different results on different platforms. An alternative, + * tiny, third party, and limited functionality implementation of + * sprintf() is provided in many of the FreeRTOS/Demo sub-directories in + * a file called printf-stdarg.c (note printf-stdarg.c does not provide + * a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskGetRunTimeStats(). + */ + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! If + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime ); + + /* For percentage calculations. */ + ulTotalTime /= 100UL; + + /* Avoid divide by zero errors. */ + if( ulTotalTime > 0 ) + { + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + /* What percentage of the total run time has the task used? + This will always be rounded down to the nearest integer. + ulTotalRunTimeDiv100 has already been divided by 100. */ + ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime; + + /* Write the task name to the string, padding with + spaces so it can be printed in tabular form more + easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + if( ulStatsAsPercentage > 0UL ) + { + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t%u%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage ); + } + #endif + } + else + { + /* If the percentage is zero here then the task has + consumed less than 1% of the total run time. */ + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t<1%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter ); + } + #endif + } + + pcWriteBuffer += strlen( pcWriteBuffer ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) */ +/*-----------------------------------------------------------*/ + +TickType_t uxTaskResetEventItemValue( void ) +{ +TickType_t uxReturn; + + uxReturn = listGET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ) ); + + /* Reset the event list item to its normal value - so it can be used with + queues and semaphores. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + void *pvTaskIncrementMutexHeldCount( void ) + { + /* If xSemaphoreCreateMutex() is called before any tasks have been created + then pxCurrentTCB will be NULL. */ + if( pxCurrentTCB != NULL ) + { + ( pxCurrentTCB->uxMutexesHeld )++; + } + + return pxCurrentTCB; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) + { + uint32_t ulReturn; + + taskENTER_CRITICAL(); + { + /* Only block if the notification count is not already non-zero. */ + if( pxCurrentTCB->ulNotifiedValue == 0UL ) + { + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_TAKE_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_TAKE(); + ulReturn = pxCurrentTCB->ulNotifiedValue; + + if( ulReturn != 0UL ) + { + if( xClearCountOnExit != pdFALSE ) + { + pxCurrentTCB->ulNotifiedValue = 0UL; + } + else + { + pxCurrentTCB->ulNotifiedValue = ulReturn - 1; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return ulReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + /* Only block if a notification is not already pending. */ + if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) + { + /* Clear bits in the task's notification value as bits may get + set by the notifying task or interrupt. This can be used to + clear the value to zero. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnEntry; + + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_WAIT_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_WAIT(); + + if( pulNotificationValue != NULL ) + { + /* Output the current notification value, which may or may not + have changed. */ + *pulNotificationValue = pxCurrentTCB->ulNotifiedValue; + } + + /* If ucNotifyValue is set then either the task never entered the + blocked state (because a notification was already pending) or the + task unblocked because of a notification. Otherwise the task + unblocked because of a timeout. */ + if( pxCurrentTCB->ucNotifyState == taskWAITING_NOTIFICATION ) + { + /* A notification was not received. */ + xReturn = pdFALSE; + } + else + { + /* A notification was already pending or a notification was + received while the task was waiting. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnExit; + xReturn = pdTRUE; + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) + { + TCB_t * pxTCB; + BaseType_t xReturn = pdPASS; + uint8_t ucOriginalNotifyState; + + configASSERT( xTaskToNotify ); + pxTCB = ( TCB_t * ) xTaskToNotify; + + taskENTER_CRITICAL(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction: + /* The task is being notified without its notify value being + updated. */ + break; + } + + traceTASK_NOTIFY(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked waiting for a notification then + xNextTaskUnblockTime might be set to the blocked task's time + out time. If the task is unblocked for a reason other than + a timeout xNextTaskUnblockTime is normally left unchanged, + because it will automatically get reset to a new value when + the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter + sleep mode at the earliest possible time - so reset + xNextTaskUnblockTime here to ensure it is updated at the + earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + BaseType_t xReturn = pdPASS; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = ( TCB_t * ) xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction : + /* The task is being notified without its notify value being + updated. */ + break; + } + + traceTASK_NOTIFY_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter to an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = ( TCB_t * ) xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + /* 'Giving' is equivalent to incrementing a count in a counting + semaphore. */ + ( pxTCB->ulNotifiedValue )++; + + traceTASK_NOTIFY_GIVE_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter in an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ + +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + BaseType_t xReturn; + + /* If null is passed in here then it is the calling task that is having + its notification state cleared. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + taskENTER_CRITICAL(); + { + if( pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED ) + { + pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + + +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) +{ +TickType_t xTimeToWake; +const TickType_t xConstTickCount = xTickCount; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + /* About to enter a delayed list, so ensure the ucDelayAborted flag is + reset to pdFALSE so it can be detected as having been set to pdTRUE + when the task leaves the Blocked state. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Remove the task from the ready list before adding it to the blocked list + as the same list item is used for both lists. */ + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* The current task must be in a ready list, so there is no need to + check, and the port reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) + { + /* Add the task to the suspended task list instead of a delayed task + list to ensure it is not woken by a timing event. It will block + indefinitely. */ + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the + kernel will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow + list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list + is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the + head of the list of blocked tasks then xNextTaskUnblockTime + needs to be updated too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + } + #else /* INCLUDE_vTaskSuspend */ + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the kernel + will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the head of the + list of blocked tasks then xNextTaskUnblockTime needs to be updated + too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ + ( void ) xCanBlockIndefinitely; + } + #endif /* INCLUDE_vTaskSuspend */ +} + + +#ifdef FREERTOS_MODULE_TEST + #include "tasks_test_access_functions.h" +#endif + diff --git a/RTOS_IOT/NUCLEO-L053R8.xml b/RTOS_IOT/NUCLEO-L053R8.xml index 043b48e..024b465 100644 --- a/RTOS_IOT/NUCLEO-L053R8.xml +++ b/RTOS_IOT/NUCLEO-L053R8.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE targetDefinitions [ <!ELEMENT targetDefinitions (board)> <!ELEMENT board (name, dbgIF+, dbgDEV, mcuId)> @@ -8,12 +8,12 @@ <!ELEMENT mcuId (#PCDATA)> <!ATTLIST board id CDATA #REQUIRED> ]> - -<targetDefinitions> - <board id="nucleo-l053r8"> - <name>NUCLEO-L053R8</name> - <dbgIF>SWD</dbgIF> - <dbgDEV>ST-Link</dbgDEV> - <mcuId>stm32l053r8tx</mcuId> - </board> -</targetDefinitions> + +<targetDefinitions> + <board id="nucleo-l053r8"> + <name>NUCLEO-L053R8</name> + <dbgIF>SWD</dbgIF> + <dbgDEV>ST-Link</dbgDEV> + <mcuId>stm32l053r8tx</mcuId> + </board> +</targetDefinitions> diff --git a/RTOS_IOT/RTOS_IOT Debug.cfg b/RTOS_IOT/RTOS_IOT Debug.cfg index d1e9791..f195cc1 100644 --- a/RTOS_IOT/RTOS_IOT Debug.cfg +++ b/RTOS_IOT/RTOS_IOT Debug.cfg @@ -1,28 +1,28 @@ -# This is an NUCLEO-L053R8 board with a single STM32L053R8Tx chip -# -# Generated by System Workbench for STM32 -# Take care that such file, as generated, may be overridden without any early notice. Please have a look to debug launch configuration setup(s) - -source [find interface/stlink.cfg] - -set WORKAREASIZE 0x2000 - -transport select "hla_swd" - -set CHIPNAME STM32L053R8Tx - -# Enable debug when in low power modes -set ENABLE_LOW_POWER 1 - -# Stop Watchdog counters when halt -set STOP_WATCHDOG 1 - -# STlink Debug clock frequency -set CLOCK_FREQ 4000 - -# use hardware reset, connect under reset -# connect_assert_srst needed if low power mode application running (WFI...) -reset_config srst_only srst_nogate connect_assert_srst -set CONNECT_UNDER_RESET 1 - -source [find target/stm32l0x.cfg] +# This is an NUCLEO-L053R8 board with a single STM32L053R8Tx chip +# +# Generated by System Workbench for STM32 +# Take care that such file, as generated, may be overridden without any early notice. Please have a look to debug launch configuration setup(s) + +source [find interface/stlink.cfg] + +set WORKAREASIZE 0x2000 + +transport select "hla_swd" + +set CHIPNAME STM32L053R8Tx + +# Enable debug when in low power modes +set ENABLE_LOW_POWER 1 + +# Stop Watchdog counters when halt +set STOP_WATCHDOG 1 + +# STlink Debug clock frequency +set CLOCK_FREQ 4000 + +# use hardware reset, connect under reset +# connect_assert_srst needed if low power mode application running (WFI...) +reset_config srst_only srst_nogate connect_assert_srst +set CONNECT_UNDER_RESET 1 + +source [find target/stm32l0x.cfg] diff --git a/RTOS_IOT/Src/main.c b/RTOS_IOT/Src/main.c index 40dedae..87ae118 100644 --- a/RTOS_IOT/Src/main.c +++ b/RTOS_IOT/Src/main.c @@ -1,783 +1,778 @@ -/** - ****************************************************************************** - * File Name : main.c - * Description : Main program body - ****************************************************************************** - * - * Copyright (c) 2017 STMicroelectronics International N.V. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted, provided that the following conditions are met: - * - * 1. Redistribution of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * 3. Neither the name of STMicroelectronics nor the names of other - * contributors to this software may be used to endorse or promote products - * derived from this software without specific written permission. - * 4. This software, including modifications and/or derivative works of this - * software, must execute solely and exclusively on microcontroller or - * microprocessor devices manufactured by or for STMicroelectronics. - * 5. Redistribution and use of this software other than as permitted under - * this license is void and will automatically terminate your rights under - * this license. - * - * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A - * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY - * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT - * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, - * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - ****************************************************************************** - */ -/* Includes ------------------------------------------------------------------*/ -#include "main.h" -#include "stm32l0xx_hal.h" -#include "cmsis_os.h" -#include "HTS221.h" -#include "NVM_Manager.h" - -/* USER CODE BEGIN Includes */ -#define USING_EEPROM -//#define CodeTesting -#define EEPROM_START_ADDRESS (uint32_t *)0x08080000 -#define NUMBER_OF_SAMPLING (uint8_t)0x5 - -/* USER CODE END Includes */ - -/* Private variables ---------------------------------------------------------*/ -I2C_HandleTypeDef hi2c1; - -RTC_HandleTypeDef hrtc; - -IRDA_HandleTypeDef hirda1; -UART_HandleTypeDef huart2; - - -extern osMutexId MutexEeprom; - -//osThreadId defaultTaskHandle; - -/* USER CODE BEGIN PV */ -/* Private variables ---------------------------------------------------------*/ -uint32_t thread1_counter; -uint32_t Queue_number; -uint8_t updateCounter = 0; - -osThreadId Task_NVM_ReadWrite; -osThreadId Task_UartSend; -osThreadId Task_SensorRead; -osThreadId Task_HearBeatLED; -osThreadId Task_ErrorCheck; - - -osMessageQId Queue_SendTo_TaskNVM; -osMessageQId Queue_SendTo_Uart; - -QueueSetHandle_t NVM_QueueSet; - -union uDate{ - uint32_t u32_date; - struct { - uint8_t Weekday; - uint8_t Month; - uint8_t Date; - uint8_t Year; - }uStructDate; -}; - -union uTime{ - uint32_t u32_Time; - struct { - uint8_t Hours; - uint8_t Minutes; - uint8_t Seconds; - uint8_t TimeFormat; - }uStructTime; -}; - -union uDataPacket{ - uint32_t datPacket[4]; - struct { - float temperature; - float humidity; - union uDate Date; - union uTime Time; - }uStructDataPacket; -}; - -struct StructDate{ - uint8_t Weekday; - uint8_t Month; - uint8_t Date; - uint8_t Year; -}; - -struct StructTime{ - uint8_t Hours; - uint8_t Minutes; - uint8_t Secounds; - uint8_t TimeFormat; -}; - -struct StrucDataPacket{ - double temperature; - double humidity; - struct StructDate Acqdate; - struct StructTime Acqtime; -}; - -typedef enum{ - EV_ReadsFromTempSensor, - EV_ReturnFromUartSend, - EV_ReturnFromBlinkLED, -}EventId_NVM_Check; - - -typedef struct{ -// struct StrucDataPacket dataset[5]; - union uDataPacket udataset[5]; -}QMessageData_USART; - -typedef struct{ - EventId_NVM_Check EventId; -// struct StrucDataPacket TempnHumidity; - union uDataPacket uTempnHumidity; - uint8_t dataArray[4]; - uint8_t* ptr_sent_Success; -}QMessageData_ForNVM; - - -/* USER CODE END PV */ - -/* Private function prototypes -----------------------------------------------*/ -void SystemClock_Config(void); -void Error_Handler(void); -static void MX_GPIO_Init(void); -static void MX_RTC_Init(void); -static void MX_USART2_UART_Init(void); -static void MX_USART1_IRDA_Init(void); -static void MX_I2C1_Init(void); -//void StartDefaultTask(void const * argument); - -/* USER CODE BEGIN PFP */ -/* Private function prototypes -----------------------------------------------*/ - -void func_NVM_Manager(void const* argument); -void func_LEDBlink (void const* argument); -void func_UartPrint (void const* argument); -void func_SensorRead (void const* argument); -void vApplicationTickHook(void); - -/* USER CODE END PFP */ - -/* USER CODE BEGIN 0 */ - -/* USER CODE END 0 */ - -int main(void) -{ - - /* USER CODE BEGIN 1 */ - - /* USER CODE END 1 */ - - /* MCU Configuration----------------------------------------------------------*/ - - /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ - HAL_Init(); - - /* Configure the system clock */ - SystemClock_Config(); - - /* Initialize all configured peripherals */ - MX_GPIO_Init(); - MX_RTC_Init(); - MX_USART2_UART_Init(); - MX_USART1_IRDA_Init(); - MX_I2C1_Init(); - - - /* USER CODE BEGIN 2 */ - - /* Configure Event AutoWakeup */ -// TODO: Need to configure the Period of auto wakeup currently is every 30 seconds - HAL_RTCEx_SetWakeUpTimer_IT(&hrtc, 30, RTC_WAKEUPCLOCK_CK_SPRE_16BITS); - NVIC_EnableIRQ(RTC_IRQn); - NVIC_SetPriority(RTC_IRQn,0); - - /*Set Date & Time for RTC*/ - // HAL_RTC_SetDate(); - // HAL_RTC_SetTime(); - - /* USER CODE END 2 */ - - /* USER CODE BEGIN RTOS_MUTEX */ - /* add mutexes, ... */ - /* USER CODE END RTOS_MUTEX */ - - /* USER CODE BEGIN RTOS_SEMAPHORES */ - /* add semaphores, ... */ - /* USER CODE END RTOS_SEMAPHORES */ - - /* USER CODE BEGIN RTOS_TIMERS */ - /* start timers, add new ones, ... */ - /* USER CODE END RTOS_TIMERS */ - - /* Create the thread(s) */ - /* definition and creation of defaultTask */ -// osThreadDef(defaultTask, StartDefaultTask, osPriorityNormal, 0, 128); -// defaultTaskHandle = osThreadCreate(osThread(defaultTask), NULL); - - /* USER CODE BEGIN RTOS_THREADS */ - /* add threads, ... */ - - osThreadDef(HeartBeat, func_LEDBlink, osPriorityNormal, 0 , 64); - Task_HearBeatLED = osThreadCreate(osThread(HeartBeat),NULL); - - osThreadDef(HTS221_sensor, func_SensorRead, osPriorityNormal, 0, 96); - Task_SensorRead = osThreadCreate(osThread(HTS221_sensor),NULL); - - osThreadDef(NVM, func_NVM_Manager, osPriorityAboveNormal, 0 ,96); - Task_NVM_ReadWrite = osThreadCreate(osThread(NVM),NULL); - - osThreadDef(UartPrint, func_UartPrint, osPriorityAboveNormal, 0 , 128); - Task_UartSend = osThreadCreate(osThread(UartPrint),NULL); - - /* USER CODE END RTOS_THREADS */ - - /* USER CODE BEGIN RTOS_QUEUES */ - /* add queues, ... */ - -// osMessageQDef(NVM_Manager,1,QMessageData_ForNVM); -// osMessageQDef(NVM_Manager,1,uint8_t); -// Queue_SendTo_TaskNVM = osMessageCreate(osMessageQ(NVM_Manager),Task_NVM_ReadWrite); - -// osMessageQDef(QSensor, 1, QMessageData_Sensor); -// osMessageQDef(QSensor, 1, uint8_t); -// Queue_SendTo_Uart = osMessageCreate(osMessageQ(QSensor), Task_UartSend); - - Queue_SendTo_TaskNVM = xQueueCreate(1,sizeof(QMessageData_ForNVM)); - Queue_SendTo_Uart = xQueueCreate(1,sizeof(QMessageData_USART)); - -// xQueueCreateSet(1*sizeof(QMessageData_ForNVM)+1*sizeof(QMessageData_Sensor)); -// xQueueAddToSet(Queue_SendTo_TaskNVM,NVM_QueueSet); - - /* USER CODE END RTOS_QUEUES */ - - EEPROM_Initialize(); - /* Start scheduler */ - osKernelStart(); - - /* We should never get here as control is now taken by the scheduler */ - - /* Infinite loop */ - /* USER CODE BEGIN WHILE */ - while (1) - { - /* USER CODE END WHILE */ - - /* USER CODE BEGIN 3 */ - - } - /* USER CODE END 3 */ - -} - -/** System Clock Configuration -*/ -void SystemClock_Config(void) -{ - - RCC_OscInitTypeDef RCC_OscInitStruct; - RCC_ClkInitTypeDef RCC_ClkInitStruct; - RCC_PeriphCLKInitTypeDef PeriphClkInit; - - /**Configure the main internal regulator output voltage - */ - __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); - - /**Initializes the CPU, AHB and APB busses clocks - */ - RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_MSI; - RCC_OscInitStruct.LSIState = RCC_LSI_ON; - 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) - { - Error_Handler(); - } - - /**Initializes the CPU, AHB and APB busses clocks - */ - RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; - RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_MSI; - RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; - RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1; - RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; - - if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK) - { - Error_Handler(); - } - - PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART1|RCC_PERIPHCLK_USART2 - |RCC_PERIPHCLK_I2C1|RCC_PERIPHCLK_RTC; - PeriphClkInit.Usart1ClockSelection = RCC_USART1CLKSOURCE_PCLK2; - PeriphClkInit.Usart2ClockSelection = RCC_USART2CLKSOURCE_PCLK1; - PeriphClkInit.I2c1ClockSelection = RCC_I2C1CLKSOURCE_PCLK1; - PeriphClkInit.RTCClockSelection = RCC_RTCCLKSOURCE_LSI; - if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK) - { - Error_Handler(); - } - - /**Configure the Systick interrupt time - */ - HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000); - - /**Configure the Systick - */ - HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK); - - /* SysTick_IRQn interrupt configuration */ - HAL_NVIC_SetPriority(SysTick_IRQn, 2, 0); -} - -/* I2C1 init function */ -static void MX_I2C1_Init(void) -{ - - hi2c1.Instance = I2C1; - hi2c1.Init.Timing = 0x00000708; - hi2c1.Init.OwnAddress1 = 0; - hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; - hi2c1.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; - hi2c1.Init.OwnAddress2 = 0; - hi2c1.Init.OwnAddress2Masks = I2C_OA2_NOMASK; - hi2c1.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; - hi2c1.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; - if (HAL_I2C_Init(&hi2c1) != HAL_OK) - { - Error_Handler(); - } - - /**Configure Analogue filter - */ - if (HAL_I2CEx_ConfigAnalogFilter(&hi2c1, I2C_ANALOGFILTER_ENABLE) != HAL_OK) - { - Error_Handler(); - } - - /**Configure Digital filter - */ - if (HAL_I2CEx_ConfigDigitalFilter(&hi2c1, 0) != HAL_OK) - { - Error_Handler(); - } - -} - -/* RTC init function */ -static void MX_RTC_Init(void) -{ - - RTC_TimeTypeDef sTime; - RTC_DateTypeDef sDate; - - /**Initialize RTC Only - */ - hrtc.Instance = RTC; - hrtc.Init.HourFormat = RTC_HOURFORMAT_24; - hrtc.Init.AsynchPrediv = 127; - hrtc.Init.SynchPrediv = 255; - hrtc.Init.OutPut = RTC_OUTPUT_DISABLE; - hrtc.Init.OutPutRemap = RTC_OUTPUT_REMAP_NONE; - hrtc.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH; - hrtc.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN; - if (HAL_RTC_Init(&hrtc) != HAL_OK) - { - Error_Handler(); - } - - /**Initialize RTC and set the Time and Date - */ - if(HAL_RTCEx_BKUPRead(&hrtc, RTC_BKP_DR0) != 0x32F2){ - sTime.Hours = 0x0; - sTime.Minutes = 0x0; - sTime.Seconds = 0x0; - sTime.DayLightSaving = RTC_DAYLIGHTSAVING_NONE; - sTime.StoreOperation = RTC_STOREOPERATION_RESET; - if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BCD) != HAL_OK) - { - Error_Handler(); - } - - sDate.WeekDay = RTC_WEEKDAY_MONDAY; - sDate.Month = RTC_MONTH_JANUARY; - sDate.Date = 0x1; - sDate.Year = 0x0; - - if (HAL_RTC_SetDate(&hrtc, &sDate, RTC_FORMAT_BCD) != HAL_OK) - { - Error_Handler(); - } - - HAL_RTCEx_BKUPWrite(&hrtc,RTC_BKP_DR0,0x32F2); - } - -} - -/* USART1 init function */ -static void MX_USART1_IRDA_Init(void) -{ - - hirda1.Instance = USART1; - hirda1.Init.BaudRate = 115200; - hirda1.Init.WordLength = IRDA_WORDLENGTH_7B; - hirda1.Init.Parity = IRDA_PARITY_NONE; - hirda1.Init.Mode = IRDA_MODE_TX_RX; - hirda1.Init.Prescaler = 10; - hirda1.Init.PowerMode = IRDA_POWERMODE_NORMAL; - if (HAL_IRDA_Init(&hirda1) != HAL_OK) - { - Error_Handler(); - } - -} - -/* USART2 init function */ -static void MX_USART2_UART_Init(void) -{ - - huart2.Instance = USART2; - huart2.Init.BaudRate = 115200; - huart2.Init.WordLength = UART_WORDLENGTH_8B; - huart2.Init.StopBits = UART_STOPBITS_1; - huart2.Init.Parity = UART_PARITY_NONE; - huart2.Init.Mode = UART_MODE_TX_RX; - huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; - huart2.Init.OverSampling = UART_OVERSAMPLING_16; - huart2.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE; - huart2.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT; - if (HAL_UART_Init(&huart2) != HAL_OK) - { - Error_Handler(); - } - -} - -/** Configure pins as - * Analog - * Input - * Output - * EVENT_OUT - * EXTI -*/ -static void MX_GPIO_Init(void) -{ - - GPIO_InitTypeDef GPIO_InitStruct; - - /* GPIO Ports Clock Enable */ - __HAL_RCC_GPIOC_CLK_ENABLE(); - __HAL_RCC_GPIOH_CLK_ENABLE(); - __HAL_RCC_GPIOA_CLK_ENABLE(); - __HAL_RCC_GPIOB_CLK_ENABLE(); - - /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, GPIO_PIN_RESET); - - /*Configure GPIO pin : B1_Pin */ - GPIO_InitStruct.Pin = B1_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; - GPIO_InitStruct.Pull = GPIO_NOPULL; - HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); - - /*Configure GPIO pin : LD2_Pin */ - GPIO_InitStruct.Pin = LD2_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - GPIO_InitStruct.Pull = GPIO_NOPULL; - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - HAL_GPIO_Init(LD2_GPIO_Port, &GPIO_InitStruct); - -} - -/* USER CODE BEGIN 4 */ -void func_NVM_Manager(void const* argument){ - QMessageData_ForNVM Rawdata; - QMessageData_USART Uartdata; - volatile uint32_t* Ptr_address=0; - uint8_t itr, itrx; - uint8_t Uart_Updatecounter = 0; - - Ptr_address = EEPROM_START_ADDRESS; - HAL_FLASHEx_DATAEEPROM_Unlock(); - for(itr=0; itr<50; itr++){ - HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); - Ptr_address++; - } - HAL_FLASHEx_DATAEEPROM_Lock(); - - for(;;){ -// TODO: Copy data from Queue then write into the EEPROM. - xQueueReceive(Queue_SendTo_TaskNVM,&Rawdata,portMAX_DELAY); - osMutexWait(MutexEeprom, osWaitForever); - switch (Rawdata.EventId) { - case EV_ReturnFromBlinkLED: - break; - - case EV_ReadsFromTempSensor: -// TODO: Receive the data from Temperature Sensor, then Save it into the NVM -// write to EEPROM; start Counter - if (Uart_Updatecounter >= NUMBER_OF_SAMPLING){ - #ifdef USING_EEPROM - Ptr_address = EEPROM_START_ADDRESS; - for (itr=0; itr < NUMBER_OF_SAMPLING; itr++){ - for (itrx=0; itrx < 4; itrx++ ){ - Uartdata.udataset[itr].datPacket[itrx] = *Ptr_address; - Ptr_address++; - } - } - xQueueSend(Queue_SendTo_Uart,&Uartdata,100); - Uart_Updatecounter = 0; - #else - xQueueSend(Queue_SendTo_Uart,&Uartdata,100); - Uart_Updatecounter = 0; - #endif - } - - else { -// Need to write into EEPROM then increment Uart_Updatecounter - #ifdef USING_EEPROM - if (Uart_Updatecounter == 0) Ptr_address = EEPROM_START_ADDRESS; - HAL_FLASHEx_DATAEEPROM_Unlock(); - for (itr=0; itr < sizeof(Rawdata.uTempnHumidity)/sizeof(Rawdata.uTempnHumidity.datPacket[0]) ;itr++){ - HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, Rawdata.uTempnHumidity.datPacket[itr]); - Ptr_address+=(sizeof(Rawdata.uTempnHumidity.datPacket[itr])/sizeof(Ptr_address)); - } - HAL_FLASHEx_DATAEEPROM_Lock(); - Uart_Updatecounter++; - #else - Uartdata.dataset[Uart_Updatecounter]=Rawdata.TempnHumidity; - Uart_Updatecounter++; - #endif - } - break; - - case EV_ReturnFromUartSend: -// TODO: After confirm receive successful (0x01), -// delete data in NVM. -// else resend the data in NVM to UART. - if (Rawdata.dataArray[0]==0x01){ - #ifdef USING_EEPROM - Ptr_address = EEPROM_START_ADDRESS; - for(itr=0; itr<10; itr++){ - HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); - Ptr_address++; - } - #endif - #ifdef CodeTesting - Ptr_address = EEPROM_START_ADDRESS; - for(itr=0;itr<5;itr++){ - Uartdata.dataset[itr].temperature= (double)(*Ptr_address); - Ptr_address++; - } - #endif - /*Config Low Power SleepMode*/ - HAL_SuspendTick(); - __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); - HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON,PWR_SLEEPENTRY_WFI); - HAL_ResumeTick(); - } - else { - - } - break; - - default: - break; - } - } -} - - -void func_LEDBlink (void const* argument){ - uint32_t xLastTickWakeup = osKernelSysTick(); - thread1_counter = 0; - for(;;) - { - thread1_counter++; - HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); - osDelayUntil(&xLastTickWakeup,1000); - HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); - osDelayUntil(&xLastTickWakeup,1000); - -// osDelay(1000); - } -} - - -void func_UartPrint (void const* argument){ - QMessageData_ForNVM sendReturn; - QMessageData_USART receiveData; - HAL_StatusTypeDef Status = 0; - uint8_t itr = 0; - char tempText[5] = ""; - char OutputText[90]=""; - for(;;) - { - xQueueReceive(Queue_SendTo_Uart,&receiveData,portMAX_DELAY); - for(itr=0; itr< NUMBER_OF_SAMPLING; itr++){ - - strcpy(OutputText,"Thread counter: "); - itoa(thread1_counter,tempText,10); - strcat(OutputText,tempText); - strcat(OutputText,"\n"); - - strcat(OutputText,"Current Temperature is "); - itoa(receiveData.udataset[itr].uStructDataPacket.temperature,tempText,10); - strcat(OutputText,tempText); - strcat(OutputText, " Celsius\n"); - - strcat(OutputText, "Humidity is "); - itoa(receiveData.udataset[itr].uStructDataPacket.humidity,tempText,10); - strcat(OutputText,tempText); - strcat(OutputText, " %rh\n"); - - strcat(OutputText, " @ Time "); - - itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Hours,tempText,10); - strcat(OutputText,tempText); - strcat(OutputText,":"); - itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Minutes,tempText,10); - strcat(OutputText,tempText); - strcat(OutputText,":"); - itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Seconds,tempText,10); - strcat(OutputText,tempText); - strcat(OutputText, "\n \n"); - - Status += HAL_UART_Transmit(&huart2,(uint8_t *)OutputText,sizeof(OutputText),200); - } - // HAL_UART_Transmit(&huart2,(uint8_t *)"testing",10,200); - sendReturn.EventId = EV_ReturnFromUartSend; - if (Status == HAL_OK) sendReturn.dataArray[0]=0x01; - else sendReturn.dataArray[0]=0x00; - Status = 0; - xQueueSend(Queue_SendTo_TaskNVM,&sendReturn,100); - } -} - - -void func_SensorRead (void const* argument){ - uint32_t xLastTickWakeup = osKernelSysTick(); - updateCounter = 0; - QMessageData_ForNVM data; - HTS221_Init(&hi2c1); - RTC_TimeTypeDef Time; - for(;;) - { -// TODO: Need to verify the integrity of readout values from sensor - data.EventId = EV_ReadsFromTempSensor; -// osThreadSetPriority(Task_SensorRead,osPriorityAboveNormal); - data.uTempnHumidity.uStructDataPacket.temperature = (float)HTS221_GetTemperature(); - data.uTempnHumidity.uStructDataPacket.humidity = (float)HTS221_GetHumidity(); -// osThreadSetPriority(Task_SensorRead,osPriorityNormal); - HAL_RTC_GetDate(&hrtc,(RTC_DateTypeDef *)(&data.uTempnHumidity.uStructDataPacket.Date.uStructDate.Weekday),RTC_FORMAT_BIN); - HAL_RTC_GetTime(&hrtc,&Time,RTC_FORMAT_BIN ); - data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Hours = Time.Hours; - data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Minutes = Time.Minutes; - data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Seconds= Time.Seconds; - data.uTempnHumidity.uStructDataPacket.Time.uStructTime.TimeFormat= Time.TimeFormat; - - xQueueSend(Queue_SendTo_TaskNVM,&data,100); - //TODO: Need to comment the osDelay(1000) after implementation of autowakeup function event -// osDelay(1000); - osDelayUntil(&xLastTickWakeup,1000); - } -} - -void vApplicationTickHook (void){ - for(;;){ - - } -} - - -/* USER CODE END 4 */ - -/* StartDefaultTask function */ -//void StartDefaultTask(void const * argument) -//{ -// -// /* USER CODE BEGIN 5 */ -//// Infinite loop -// for(;;) -// { -// thread1_counter++; -// HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); -//// HAL_UART_Transmit(&huart2,(uint8_t *)"Next Game",10,200); -// osDelay(1000); -//// xQueueReceive(queue2,&receivebuffer,portMAX_DELAY); -//// osMessageGet(queue1,2000); -// } -// /* USER CODE END 5 */ -//} - -/** - * @brief This function is executed in case of error occurrence. - * @param None - * @retval None - */ -void Error_Handler(void) -{ - /* USER CODE BEGIN Error_Handler */ - /* User can add his own implementation to report the HAL error return state */ - while(1) - { - } - /* USER CODE END Error_Handler */ -} - -#ifdef USE_FULL_ASSERT - -/** - * @brief Reports the name of the source file and the source line number - * where the assert_param error has occurred. - * @param file: pointer to the source file name - * @param line: assert_param error line source number - * @retval None - */ -void assert_failed(uint8_t* file, uint32_t line) -{ - /* USER CODE BEGIN 6 */ - /* User can add his own implementation to report the file name and line number, - ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */ - /* USER CODE END 6 */ - -} - -#endif - -/** - * @} - */ - -/** - * @} -*/ - -/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ +/** + ****************************************************************************** + * File Name : main.c + * Description : Main program body + ****************************************************************************** + * + * Copyright (c) 2017 STMicroelectronics International N.V. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted, provided that the following conditions are met: + * + * 1. Redistribution of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of other + * contributors to this software may be used to endorse or promote products + * derived from this software without specific written permission. + * 4. This software, including modifications and/or derivative works of this + * software, must execute solely and exclusively on microcontroller or + * microprocessor devices manufactured by or for STMicroelectronics. + * 5. Redistribution and use of this software other than as permitted under + * this license is void and will automatically terminate your rights under + * this license. + * + * THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY + * RIGHTS ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT + * SHALL STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ +/* Includes ------------------------------------------------------------------*/ +#include "main.h" +#include "stm32l0xx_hal.h" +#include "cmsis_os.h" +#include "HTS221.h" +#include "NVM_Manager.h" +#include "debug_led.h" +#include "console.h" + +/* USER CODE BEGIN Includes */ +#define USING_EEPROM +//#define CodeTesting +#define EEPROM_START_ADDRESS (uint32_t *)0x08080000 +#define NUMBER_OF_SAMPLING (uint8_t)0x5 + +/* USER CODE END Includes */ + +/* Private variables ---------------------------------------------------------*/ +I2C_HandleTypeDef hi2c1; + +RTC_HandleTypeDef hrtc; + +IRDA_HandleTypeDef hirda1; +UART_HandleTypeDef huart2; + + +extern osMutexId MutexEeprom; + +//osThreadId defaultTaskHandle; + +/* USER CODE BEGIN PV */ +/* Private variables ---------------------------------------------------------*/ +uint32_t thread1_counter; +uint32_t Queue_number; +uint8_t updateCounter = 0; + +osThreadId Task_NVM_ReadWrite; +osThreadId Task_UartSend; +osThreadId Task_SensorRead; +osThreadId Task_ErrorCheck; + + +osMessageQId Queue_SendTo_TaskNVM; +osMessageQId Queue_SendTo_Uart; + +QueueSetHandle_t NVM_QueueSet; + +union uDate{ + uint32_t u32_date; + struct { + uint8_t Weekday; + uint8_t Month; + uint8_t Date; + uint8_t Year; + }uStructDate; +}; + +union uTime{ + uint32_t u32_Time; + struct { + uint8_t Hours; + uint8_t Minutes; + uint8_t Seconds; + uint8_t TimeFormat; + }uStructTime; +}; + +union uDataPacket{ + uint32_t datPacket[4]; + struct { + float temperature; + float humidity; + union uDate Date; + union uTime Time; + }uStructDataPacket; +}; + +struct StructDate{ + uint8_t Weekday; + uint8_t Month; + uint8_t Date; + uint8_t Year; +}; + +struct StructTime{ + uint8_t Hours; + uint8_t Minutes; + uint8_t Secounds; + uint8_t TimeFormat; +}; + +struct StrucDataPacket{ + double temperature; + double humidity; + struct StructDate Acqdate; + struct StructTime Acqtime; +}; + +typedef enum{ + EV_ReadsFromTempSensor, + EV_ReturnFromUartSend, + EV_ReturnFromBlinkLED, +}EventId_NVM_Check; + + +typedef struct{ +// struct StrucDataPacket dataset[5]; + union uDataPacket udataset[5]; +}QMessageData_USART; + +typedef struct{ + EventId_NVM_Check EventId; +// struct StrucDataPacket TempnHumidity; + union uDataPacket uTempnHumidity; + uint8_t dataArray[4]; + uint8_t* ptr_sent_Success; +}QMessageData_ForNVM; + + +/* USER CODE END PV */ + +/* Private function prototypes -----------------------------------------------*/ +void SystemClock_Config(void); +void Error_Handler(void); +static void MX_GPIO_Init(void); +static void MX_RTC_Init(void); +static void MX_USART2_UART_Init(void); +static void MX_USART1_IRDA_Init(void); +static void MX_I2C1_Init(void); + +/* USER CODE BEGIN PFP */ +/* Private function prototypes -----------------------------------------------*/ + +void func_NVM_Manager(void const* argument); +void func_UartPrint (void const* argument); +void func_SensorRead (void const* argument); +void vApplicationTickHook(void); + +/* USER CODE END PFP */ + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +int main(void) +{ + + GPIO_InitTypeDef GPIO_InitStruct; + /* USER CODE BEGIN 1 */ + + /* USER CODE END 1 */ + + /* MCU Configuration----------------------------------------------------------*/ + + /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ + HAL_Init(); + + /* Configure the system clock */ + SystemClock_Config(); + + /* Initialize all configured peripherals */ + MX_GPIO_Init(); + MX_RTC_Init(); + MX_USART2_UART_Init(); + MX_USART1_IRDA_Init(); + MX_I2C1_Init(); + + + /* USER CODE BEGIN 2 */ + + /* Configure Event AutoWakeup */ +// TODO: Need to configure the Period of auto wakeup currently is every 30 seconds + HAL_RTCEx_SetWakeUpTimer_IT(&hrtc, 30, RTC_WAKEUPCLOCK_CK_SPRE_16BITS); + NVIC_EnableIRQ(RTC_IRQn); + NVIC_SetPriority(RTC_IRQn,0); + + /*Set Date & Time for RTC*/ + // HAL_RTC_SetDate(); + // HAL_RTC_SetTime(); + + /* USER CODE END 2 */ + + /* USER CODE BEGIN RTOS_MUTEX */ + /* add mutexes, ... */ + /* USER CODE END RTOS_MUTEX */ + + /* USER CODE BEGIN RTOS_SEMAPHORES */ + /* add semaphores, ... */ + /* USER CODE END RTOS_SEMAPHORES */ + + /* USER CODE BEGIN RTOS_TIMERS */ + /* start timers, add new ones, ... */ + /* USER CODE END RTOS_TIMERS */ + + /* Create the thread(s) */ + /* definition and creation of defaultTask */ +// osThreadDef(defaultTask, StartDefaultTask, osPriorityNormal, 0, 128); +// defaultTaskHandle = osThreadCreate(osThread(defaultTask), NULL); + + /* USER CODE BEGIN RTOS_THREADS */ + /* add threads, ... */ + + osThreadDef(HTS221_sensor, func_SensorRead, osPriorityNormal, 0, 96); + Task_SensorRead = osThreadCreate(osThread(HTS221_sensor),NULL); + + osThreadDef(NVM, func_NVM_Manager, osPriorityAboveNormal, 0 ,96); + Task_NVM_ReadWrite = osThreadCreate(osThread(NVM),NULL); + + osThreadDef(UartPrint, func_UartPrint, osPriorityAboveNormal, 0 , 128); + Task_UartSend = osThreadCreate(osThread(UartPrint),NULL); + + /* USER CODE END RTOS_THREADS */ + + /* USER CODE BEGIN RTOS_QUEUES */ + /* add queues, ... */ + +// osMessageQDef(NVM_Manager,1,QMessageData_ForNVM); +// osMessageQDef(NVM_Manager,1,uint8_t); +// Queue_SendTo_TaskNVM = osMessageCreate(osMessageQ(NVM_Manager),Task_NVM_ReadWrite); + +// osMessageQDef(QSensor, 1, QMessageData_Sensor); +// osMessageQDef(QSensor, 1, uint8_t); +// Queue_SendTo_Uart = osMessageCreate(osMessageQ(QSensor), Task_UartSend); + + Queue_SendTo_TaskNVM = xQueueCreate(1,sizeof(QMessageData_ForNVM)); + Queue_SendTo_Uart = xQueueCreate(1,sizeof(QMessageData_USART)); + +// xQueueCreateSet(1*sizeof(QMessageData_ForNVM)+1*sizeof(QMessageData_Sensor)); +// xQueueAddToSet(Queue_SendTo_TaskNVM,NVM_QueueSet); + + /* USER CODE END RTOS_QUEUES */ + + EEPROM_Initialize(); + + GPIO_InitStruct.Pin = LD2_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + + HeartBeat_LED_Init(LD2_GPIO_Port, &GPIO_InitStruct); + + Console_link(&huart2); + + + + /* Start scheduler */ + osKernelStart(); + + /* We should never get here as control is now taken by the scheduler */ + + /* Infinite loop */ + /* USER CODE BEGIN WHILE */ + while (1) + { + /* USER CODE END WHILE */ + + /* USER CODE BEGIN 3 */ + + } + /* USER CODE END 3 */ + +} + +/** System Clock Configuration +*/ +void SystemClock_Config(void) +{ + + RCC_OscInitTypeDef RCC_OscInitStruct; + RCC_ClkInitTypeDef RCC_ClkInitStruct; + RCC_PeriphCLKInitTypeDef PeriphClkInit; + + /**Configure the main internal regulator output voltage + */ + __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); + + /**Initializes the CPU, AHB and APB busses clocks + */ + RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_MSI; + RCC_OscInitStruct.LSIState = RCC_LSI_ON; + 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) + { + Error_Handler(); + } + + /**Initializes the CPU, AHB and APB busses clocks + */ + RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK + |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; + RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_MSI; + RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; + RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1; + RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; + + if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK) + { + Error_Handler(); + } + + PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART1|RCC_PERIPHCLK_USART2 + |RCC_PERIPHCLK_I2C1|RCC_PERIPHCLK_RTC; + PeriphClkInit.Usart1ClockSelection = RCC_USART1CLKSOURCE_PCLK2; + PeriphClkInit.Usart2ClockSelection = RCC_USART2CLKSOURCE_PCLK1; + PeriphClkInit.I2c1ClockSelection = RCC_I2C1CLKSOURCE_PCLK1; + PeriphClkInit.RTCClockSelection = RCC_RTCCLKSOURCE_LSI; + if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK) + { + Error_Handler(); + } + + /**Configure the Systick interrupt time + */ + HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000); + + /**Configure the Systick + */ + HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK); + + /* SysTick_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(SysTick_IRQn, 2, 0); +} + +/* I2C1 init function */ +static void MX_I2C1_Init(void) +{ + + hi2c1.Instance = I2C1; + hi2c1.Init.Timing = 0x00000708; + hi2c1.Init.OwnAddress1 = 0; + hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; + hi2c1.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; + hi2c1.Init.OwnAddress2 = 0; + hi2c1.Init.OwnAddress2Masks = I2C_OA2_NOMASK; + hi2c1.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; + hi2c1.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; + if (HAL_I2C_Init(&hi2c1) != HAL_OK) + { + Error_Handler(); + } + + /**Configure Analogue filter + */ + if (HAL_I2CEx_ConfigAnalogFilter(&hi2c1, I2C_ANALOGFILTER_ENABLE) != HAL_OK) + { + Error_Handler(); + } + + /**Configure Digital filter + */ + if (HAL_I2CEx_ConfigDigitalFilter(&hi2c1, 0) != HAL_OK) + { + Error_Handler(); + } + +} + +/* RTC init function */ +static void MX_RTC_Init(void) +{ + + RTC_TimeTypeDef sTime; + RTC_DateTypeDef sDate; + + /**Initialize RTC Only + */ + hrtc.Instance = RTC; + hrtc.Init.HourFormat = RTC_HOURFORMAT_24; + hrtc.Init.AsynchPrediv = 127; + hrtc.Init.SynchPrediv = 255; + hrtc.Init.OutPut = RTC_OUTPUT_DISABLE; + hrtc.Init.OutPutRemap = RTC_OUTPUT_REMAP_NONE; + hrtc.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH; + hrtc.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN; + if (HAL_RTC_Init(&hrtc) != HAL_OK) + { + Error_Handler(); + } + + /**Initialize RTC and set the Time and Date + */ + if(HAL_RTCEx_BKUPRead(&hrtc, RTC_BKP_DR0) != 0x32F2){ + sTime.Hours = 0x0; + sTime.Minutes = 0x0; + sTime.Seconds = 0x0; + sTime.DayLightSaving = RTC_DAYLIGHTSAVING_NONE; + sTime.StoreOperation = RTC_STOREOPERATION_RESET; + if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BCD) != HAL_OK) + { + Error_Handler(); + } + + sDate.WeekDay = RTC_WEEKDAY_MONDAY; + sDate.Month = RTC_MONTH_JANUARY; + sDate.Date = 0x1; + sDate.Year = 0x0; + + if (HAL_RTC_SetDate(&hrtc, &sDate, RTC_FORMAT_BCD) != HAL_OK) + { + Error_Handler(); + } + + HAL_RTCEx_BKUPWrite(&hrtc,RTC_BKP_DR0,0x32F2); + } + +} + +/* USART1 init function */ +static void MX_USART1_IRDA_Init(void) +{ + + hirda1.Instance = USART1; + hirda1.Init.BaudRate = 115200; + hirda1.Init.WordLength = IRDA_WORDLENGTH_7B; + hirda1.Init.Parity = IRDA_PARITY_NONE; + hirda1.Init.Mode = IRDA_MODE_TX_RX; + hirda1.Init.Prescaler = 10; + hirda1.Init.PowerMode = IRDA_POWERMODE_NORMAL; + if (HAL_IRDA_Init(&hirda1) != HAL_OK) + { + Error_Handler(); + } + +} + +/* USART2 init function */ +static void MX_USART2_UART_Init(void) +{ + + huart2.Instance = USART2; + huart2.Init.BaudRate = 115200; + huart2.Init.WordLength = UART_WORDLENGTH_8B; + huart2.Init.StopBits = UART_STOPBITS_1; + huart2.Init.Parity = UART_PARITY_NONE; + huart2.Init.Mode = UART_MODE_TX_RX; + huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; + huart2.Init.OverSampling = UART_OVERSAMPLING_16; + huart2.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE; + huart2.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT; + if (HAL_UART_Init(&huart2) != HAL_OK) + { + Error_Handler(); + } + +} + +/** Configure pins as + * Analog + * Input + * Output + * EVENT_OUT + * EXTI +*/ +static void MX_GPIO_Init(void) +{ + + GPIO_InitTypeDef GPIO_InitStruct; + + /* GPIO Ports Clock Enable */ + __HAL_RCC_GPIOC_CLK_ENABLE(); + __HAL_RCC_GPIOH_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); + __HAL_RCC_GPIOB_CLK_ENABLE(); + + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, GPIO_PIN_RESET); + + /*Configure GPIO pin : B1_Pin */ + GPIO_InitStruct.Pin = B1_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; + GPIO_InitStruct.Pull = GPIO_NOPULL; + HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); + + /*Configure GPIO pin : LD2_Pin */ + GPIO_InitStruct.Pin = LD2_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + HAL_GPIO_Init(LD2_GPIO_Port, &GPIO_InitStruct); + +} + +/* USER CODE BEGIN 4 */ +void func_NVM_Manager(void const* argument){ + QMessageData_ForNVM Rawdata; + QMessageData_USART Uartdata; + volatile uint32_t* Ptr_address=0; + uint8_t itr, itrx; + uint8_t Uart_Updatecounter = 0; + + Ptr_address = EEPROM_START_ADDRESS; + HAL_FLASHEx_DATAEEPROM_Unlock(); + for(itr=0; itr<50; itr++){ + HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); + Ptr_address++; + } + HAL_FLASHEx_DATAEEPROM_Lock(); + + for(;;){ +// TODO: Copy data from Queue then write into the EEPROM. + xQueueReceive(Queue_SendTo_TaskNVM,&Rawdata,portMAX_DELAY); + switch (Rawdata.EventId) { + case EV_ReturnFromBlinkLED: + break; + + case EV_ReadsFromTempSensor: +// TODO: Receive the data from Temperature Sensor, then Save it into the NVM +// write to EEPROM; start Counter + if (Uart_Updatecounter >= NUMBER_OF_SAMPLING){ + #ifdef USING_EEPROM + Ptr_address = EEPROM_START_ADDRESS; + for (itr=0; itr < NUMBER_OF_SAMPLING; itr++){ + for (itrx=0; itrx < 4; itrx++ ){ + Uartdata.udataset[itr].datPacket[itrx] = *Ptr_address; + Ptr_address++; + } + } + xQueueSend(Queue_SendTo_Uart,&Uartdata,0); + Uart_Updatecounter = 0; + #else + xQueueSend(Queue_SendTo_Uart,&Uartdata,0); + Uart_Updatecounter = 0; + #endif + } + + else { +// Need to write into EEPROM then increment Uart_Updatecounter + #ifdef USING_EEPROM + if (Uart_Updatecounter == 0) Ptr_address = EEPROM_START_ADDRESS; + HAL_FLASHEx_DATAEEPROM_Unlock(); + for (itr=0; itr < sizeof(Rawdata.uTempnHumidity)/sizeof(Rawdata.uTempnHumidity.datPacket[0]) ;itr++){ + HAL_FLASHEx_DATAEEPROM_Program(FLASH_TYPEPROGRAMDATA_WORD, (uint32_t)Ptr_address, Rawdata.uTempnHumidity.datPacket[itr]); + Ptr_address+=(sizeof(Rawdata.uTempnHumidity.datPacket[itr])/sizeof(Ptr_address)); + } + HAL_FLASHEx_DATAEEPROM_Lock(); + Uart_Updatecounter++; + #else + Uartdata.dataset[Uart_Updatecounter]=Rawdata.TempnHumidity; + Uart_Updatecounter++; + #endif + } + break; + + case EV_ReturnFromUartSend: +// TODO: After confirm receive successful (0x01), +// delete data in NVM. +// else resend the data in NVM to UART. + if (Rawdata.dataArray[0]==0x01){ + #ifdef USING_EEPROM + Ptr_address = EEPROM_START_ADDRESS; + for(itr=0; itr<10; itr++){ + HAL_FLASHEx_DATAEEPROM_Erase((uint32_t)Ptr_address); + Ptr_address++; + } + #endif + #ifdef CodeTesting + Ptr_address = EEPROM_START_ADDRESS; + for(itr=0;itr<5;itr++){ + Uartdata.dataset[itr].temperature= (double)(*Ptr_address); + Ptr_address++; + } + #endif + /*Config Low Power SleepMode*/ +// HAL_SuspendTick(); +// __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU); +// HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON,PWR_SLEEPENTRY_WFI); +// HAL_ResumeTick(); + } + else { + + } + break; + + default: + break; + } + } +} + + +void func_UartPrint (void const* argument){ + QMessageData_ForNVM sendReturn; + QMessageData_USART receiveData; + HAL_StatusTypeDef Status = 0; + uint8_t itr = 0; + char tempText[5] = ""; + char OutputText[90]=""; + for(;;) + { + xQueueReceive(Queue_SendTo_Uart,&receiveData,portMAX_DELAY); + for(itr=0; itr< NUMBER_OF_SAMPLING; itr++){ + + + strcpy(OutputText,"Thread counter: "); + itoa(uxTaskPriorityGet(NULL),tempText,10); +// itoa(thread1_counter,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText,"\n"); + + strcat(OutputText,"Current Temperature is "); + itoa(receiveData.udataset[itr].uStructDataPacket.temperature,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText, " Celsius\n"); + + strcat(OutputText, "Humidity is "); + itoa(receiveData.udataset[itr].uStructDataPacket.humidity,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText, " %rh\n"); + + strcat(OutputText, " @ Time "); + + itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Hours,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText,":"); + itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Minutes,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText,":"); + itoa(receiveData.udataset[itr].uStructDataPacket.Time.uStructTime.Seconds,tempText,10); + strcat(OutputText,tempText); + strcat(OutputText, "\n \n"); + + Status += HAL_UART_Transmit(&huart2,(uint8_t *)OutputText,sizeof(OutputText),200); + } + // HAL_UART_Transmit(&huart2,(uint8_t *)"testing",10,200); + sendReturn.EventId = EV_ReturnFromUartSend; + if (Status == HAL_OK) sendReturn.dataArray[0]=0x01; + else sendReturn.dataArray[0]=0x00; + Status = 0; + xQueueSend(Queue_SendTo_TaskNVM,&sendReturn,0); + } +} + + +void func_SensorRead (void const* argument){ + uint32_t xLastTickWakeup = osKernelSysTick(); + updateCounter = 0; + QMessageData_ForNVM data; + HTS221_Init(&hi2c1); + RTC_TimeTypeDef Time; + for(;;) + { +// TODO: Need to verify the integrity of readout values from sensor + data.EventId = EV_ReadsFromTempSensor; +// osThreadSetPriority(Task_SensorRead,osPriorityAboveNormal); + data.uTempnHumidity.uStructDataPacket.temperature = (float)HTS221_GetTemperature(); + data.uTempnHumidity.uStructDataPacket.humidity = (float)HTS221_GetHumidity(); +// osThreadSetPriority(Task_SensorRead,osPriorityNormal); + HAL_RTC_GetDate(&hrtc,(RTC_DateTypeDef *)(&data.uTempnHumidity.uStructDataPacket.Date.uStructDate.Weekday),RTC_FORMAT_BIN); + HAL_RTC_GetTime(&hrtc,&Time,RTC_FORMAT_BIN ); + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Hours = Time.Hours; + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Minutes = Time.Minutes; + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.Seconds= Time.Seconds; + data.uTempnHumidity.uStructDataPacket.Time.uStructTime.TimeFormat= Time.TimeFormat; + + xQueueSend(Queue_SendTo_TaskNVM,&data,0); + //TODO: Need to comment the osDelay(1000) after implementation of autowakeup function event +// osDelay(1000); + osDelayUntil(&xLastTickWakeup,1000); + } +} + +void vApplicationTickHook (void){ + for(;;){ + + } +} + + +/* USER CODE END 4 */ + +/* StartDefaultTask function */ +//void StartDefaultTask(void const * argument) +//{ +// +// /* USER CODE BEGIN 5 */ +//// Infinite loop +// for(;;) +// { +// thread1_counter++; +// HAL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin); +//// HAL_UART_Transmit(&huart2,(uint8_t *)"Next Game",10,200); +// osDelay(1000); +//// xQueueReceive(queue2,&receivebuffer,portMAX_DELAY); +//// osMessageGet(queue1,2000); +// } +// /* USER CODE END 5 */ +//} + +/** + * @brief This function is executed in case of error occurrence. + * @param None + * @retval None + */ +void Error_Handler(void) +{ + /* USER CODE BEGIN Error_Handler */ + /* User can add his own implementation to report the HAL error return state */ + while(1) + { + LED_HeartBeat(NULL); + } + /* USER CODE END Error_Handler */ +} + +#ifdef USE_FULL_ASSERT + +/** + * @brief Reports the name of the source file and the source line number + * where the assert_param error has occurred. + * @param file: pointer to the source file name + * @param line: assert_param error line source number + * @retval None + */ +void assert_failed(uint8_t* file, uint32_t line) +{ + /* USER CODE BEGIN 6 */ + /* User can add his own implementation to report the file name and line number, + ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */ + /* USER CODE END 6 */ + +} + +#endif + +/** + * @} + */ + +/** + * @} +*/ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/RTOS_IOT/Src/stm32l0xx_it.c b/RTOS_IOT/Src/stm32l0xx_it.c index 4aacbc6..43c66c5 100644 --- a/RTOS_IOT/Src/stm32l0xx_it.c +++ b/RTOS_IOT/Src/stm32l0xx_it.c @@ -1,79 +1,89 @@ -/** - ****************************************************************************** - * @file stm32l0xx_it.c - * @brief Interrupt Service Routines. - ****************************************************************************** - * - * COPYRIGHT(c) 2017 STMicroelectronics - * - * Redistribution and use in source and binary forms, with or without modification, - * are permitted provided that the following conditions are met: - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * 3. Neither the name of STMicroelectronics nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - ****************************************************************************** - */ -/* Includes ------------------------------------------------------------------*/ -#include "stm32l0xx_hal.h" -#include "stm32l0xx.h" -#include "stm32l0xx_it.h" -#include "cmsis_os.h" - - -/* USER CODE BEGIN 0 */ -extern RTC_HandleTypeDef hrtc; -extern UART_HandleTypeDef huart2; -/* USER CODE END 0 */ - -/* External variables --------------------------------------------------------*/ - -/******************************************************************************/ -/* Cortex-M0+ Processor Interruption and Exception Handlers */ -/******************************************************************************/ - -/** -* @brief This function handles System tick timer. -*/ -void SysTick_Handler(void) -{ - /* USER CODE BEGIN SysTick_IRQn 0 */ - - /* USER CODE END SysTick_IRQn 0 */ - HAL_IncTick(); - osSystickHandler(); - /* USER CODE BEGIN SysTick_IRQn 1 */ - - /* USER CODE END SysTick_IRQn 1 */ -} - -/******************************************************************************/ -/* STM32L0xx Peripheral Interrupt Handlers */ -/* Add here the Interrupt Handlers for the used peripherals. */ -/* For the available peripheral interrupt handler names, */ -/* please refer to the startup file (startup_stm32l0xx.s). */ -/******************************************************************************/ - -/* USER CODE BEGIN 1 */ -void RTC_IRQHandler (void){ - HAL_RTCEx_WakeUpTimerIRQHandler(&hrtc); - HAL_UART_Transmit(&huart2,(uint8_t*)"RTC IRQ \n",9,10); -} -/* USER CODE END 1 */ -/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ +/** + ****************************************************************************** + * @file stm32l0xx_it.c + * @brief Interrupt Service Routines. + ****************************************************************************** + * + * COPYRIGHT(c) 2017 STMicroelectronics + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of STMicroelectronics nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ****************************************************************************** + */ +/* Includes ------------------------------------------------------------------*/ +#include "stm32l0xx_hal.h" +#include "stm32l0xx.h" +#include "stm32l0xx_it.h" +#include "cmsis_os.h" +#include "console.h" + + +/* USER CODE BEGIN 0 */ +extern RTC_HandleTypeDef hrtc; +extern UART_HandleTypeDef huart2; +/* USER CODE END 0 */ + +/* External variables --------------------------------------------------------*/ + +/******************************************************************************/ +/* Cortex-M0+ Processor Interruption and Exception Handlers */ +/******************************************************************************/ + +/** +* @brief This function handles System tick timer. +*/ +void SysTick_Handler(void) +{ + /* USER CODE BEGIN SysTick_IRQn 0 */ + + /* USER CODE END SysTick_IRQn 0 */ + HAL_IncTick(); + osSystickHandler(); + /* USER CODE BEGIN SysTick_IRQn 1 */ + + /* USER CODE END SysTick_IRQn 1 */ +} + +/******************************************************************************/ +/* STM32L0xx Peripheral Interrupt Handlers */ +/* Add here the Interrupt Handlers for the used peripherals. */ +/* For the available peripheral interrupt handler names, */ +/* please refer to the startup file (startup_stm32l0xx.s). */ +/******************************************************************************/ + +/* USER CODE BEGIN 1 */ +void RTC_IRQHandler (void){ + HAL_RTCEx_WakeUpTimerIRQHandler(&hrtc); +} + + + +void USART2_IRQHandler (void) +{ + HAL_UART_IRQHandler(&huart2); + Console_NVIC(&huart2); +} + + +/* USER CODE END 1 */ +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ From 3e4db662b1eb68b0e6c0ec6e372be0e241635d94 Mon Sep 17 00:00:00 2001 From: tiongpatrick86 <tiongpatrick1014@gmail.com> Date: Tue, 9 Jan 2018 06:10:59 +0800 Subject: [PATCH 18/18] test --- RTOS_IOT/Inc/console.h | 30 +++ RTOS_IOT/Inc/debug_led.h | 30 +++ RTOS_IOT/Middlewares/SerialManager/console.c | 244 +++++++++++++++++++ RTOS_IOT/Src/Debug_led.c | 149 +++++++++++ 4 files changed, 453 insertions(+) create mode 100644 RTOS_IOT/Inc/console.h create mode 100644 RTOS_IOT/Inc/debug_led.h create mode 100644 RTOS_IOT/Middlewares/SerialManager/console.c create mode 100644 RTOS_IOT/Src/Debug_led.c diff --git a/RTOS_IOT/Inc/console.h b/RTOS_IOT/Inc/console.h new file mode 100644 index 0000000..e0d7e24 --- /dev/null +++ b/RTOS_IOT/Inc/console.h @@ -0,0 +1,30 @@ +/* + * console.h + * + * Created on: Jan 8, 2018 + * Author: pt + */ +#include "main.h" +#include "cmsis_os.h" +#include "stm32l0xx_hal.h" +#include <string.h> + +#define USE_CMSIS_FREERTOS + + + +#ifdef USE_CMSIS_FREERTOS + +#endif + + +typedef enum { + Console_Help, + Console_Back, + Console_Wait, + Console_Exit, +}eConsoleRespond; + + +void Console_link (UART_HandleTypeDef *serial); +void Console_NVIC (UART_HandleTypeDef *serial); diff --git a/RTOS_IOT/Inc/debug_led.h b/RTOS_IOT/Inc/debug_led.h new file mode 100644 index 0000000..698641a --- /dev/null +++ b/RTOS_IOT/Inc/debug_led.h @@ -0,0 +1,30 @@ +/* + * debug_led.h + * + * Created on: Jan 7, 2018 + * Author: pt + */ + +#ifndef DEBUG_LED_H_ +#define DEBUG_LED_H_ + +#include "main.h" +#include "stm32l0xx_hal.h" + +/*** Configuration Option***********************/ +// CONFIG: Need to comment below based on usage + +#define USE_CMSIS_FREERTOS +//#define TESTING_IN_RTOS +/**********************************************/ + + +void HeartBeat_LED_Init (GPIO_TypeDef * LED_Port , GPIO_InitTypeDef * GPIO); +void LED_HeartBeat (void const * argument); + + + + + + +#endif /* DEBUG_LED_H_ */ diff --git a/RTOS_IOT/Middlewares/SerialManager/console.c b/RTOS_IOT/Middlewares/SerialManager/console.c new file mode 100644 index 0000000..643a4c9 --- /dev/null +++ b/RTOS_IOT/Middlewares/SerialManager/console.c @@ -0,0 +1,244 @@ +/* + * console.c + * + * Created on: Jan 8, 2018 + * Author: pt + */ +#include "console.h" + +#define SIZEOFBUFFER 0x20 + + +static UART_HandleTypeDef * hConsoleUart; +static uint8_t RXBUFFER[SIZEOFBUFFER]; + +#ifdef USE_CMSIS_FREERTOS + + #include "cmsis_os.h" + TaskHandle_t Task_console; + QueueHandle_t QueueConsole; + SemaphoreHandle_t MutexConsole; + +#endif + + +static uint8_t* ScanChar (uint8_t* achar, uint8_t c, uint32_t maxlen){ + uint32_t i=0; + while (i++<=maxlen){ + if (*achar == c){ + return achar; + } + } + return 0; +} + + +eConsoleRespond _swReply(char * Command ){ + if (strcmp(Command,"HELP")==0)return Console_Help; + if (strcmp(Command,"BACK")==0)return Console_Back; + if (strcmp(Command,"EXIT")==0)return Console_Exit; + return Console_Wait; +} + + + +__weak void _cbTaskConsole ( void *argument ){ +// char *pData = 0; + TickType_t QueueDelay = portMAX_DELAY; + uint32_t data = 0; + char aText[SIZEOFBUFFER]; + char *pText = 0; + eConsoleRespond prog; + + for (;;){ + +#ifdef USE_CMSIS_FREERTOS + + xQueueReceive(QueueConsole, &data ,QueueDelay); + strcpy(aText,(char *)data); + free((char *)data); + memset((char *)data, 0x00, strlen((char *)data)); + + prog = _swReply(aText); + + if (QueueDelay == portMAX_DELAY) { + pText = (char *)"\nThe System will now enter the Idle Mode. \nKey In HELP for more Command information."; + HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); + QueueDelay = 0; + } + else { + switch (prog){ + case Console_Help: + HAL_UART_Transmit(hConsoleUart,(uint8_t*)aText,strlen(aText),100); + + pText = (char *)"\n*EXIT \n*BACK"; + HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); + + pText = (char *)"\n>>"; + HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); + break; + + case Console_Back: + HAL_UART_Transmit(hConsoleUart,(uint8_t*)aText,strlen(aText),100); + + pText = (char *)"\nBACK command is pressed"; + HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); + + pText = (char *)"\n>>"; + HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); + break; + + case Console_Wait: + + break; + + case Console_Exit: + pText = (char *)"\nSystem will return to Normal Operation."; + HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); + + QueueDelay = portMAX_DELAY; + break; + + default: + HAL_UART_Transmit(hConsoleUart,aText,strlen(aText),100); + break; + } + + } + +// xQueueReceive(QueueConsole, &data ,QueueDelay); +// pData = (char *)data; +// HAL_UART_Transmit(hConsoleUart,(uint8_t*)pData,strlen(pData),50); +// +// if (QueueDelay == portMAX_DELAY) { +// pText = (char *)"\nThe System will now enter the Idle Mode. \nKey In HELP for more Command information."; +// HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); +// QueueDelay = 0; +// free(pData); +// } +// else { +// switch (_swReply(pData)){ +// case Console_Help: +// pText = (char *)"\n*EXIT \n*BACK"; +// HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); +// +// pText = (char *)"\n>>"; +// HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); +// +// free(pData); +// memset(pData,0x00,strlen(pData)); +// break; +// +// case Console_Back: +// pText = (char *)"\nBACK command is pressed"; +// HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); +// +// pText = (char *)"\n>>"; +// HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); +// +// free(pData); +// memset(pData,0x00,strlen(pData)); +// break; +// +// case Console_Exit: +// pText = (char *)"\nSystem will return to Normal Operation."; +// HAL_UART_Transmit(hConsoleUart,(uint8_t*)pText,strlen(pText),50); +// +// QueueDelay = portMAX_DELAY; +// +// free(pData); +// memset(pData,0x00,strlen(pData)); +// break; +// +// case Console_Wait: +// break; +// +// default: +// break; +// } +// } +#endif + } +} + + +void Console_link (UART_HandleTypeDef *serial){ + + hConsoleUart = serial; + + memset(RXBUFFER,(uint8_t)0x00, SIZEOFBUFFER); + + if (HAL_UART_Receive_IT(hConsoleUart,&RXBUFFER[0],SIZEOFBUFFER)!=HAL_OK){ + while(1); + } + + HAL_NVIC_EnableIRQ(USART2_IRQn); + HAL_NVIC_SetPriority(USART2_IRQn,2,0); + +#ifdef USE_CMSIS_FREERTOS + xTaskCreate(_cbTaskConsole, "Console_Thread", 128, NULL, 4, &Task_console); + QueueConsole = xQueueCreate(1, sizeof(uint8_t *)); + MutexConsole = xSemaphoreCreateMutex(); +#endif + +} + + +void Console_NVIC (UART_HandleTypeDef *serial){ + +#ifdef USE_CMSIS_FREERTOS + uint8_t* pRxBuff = serial->pRxBuffPtr; + uint8_t seq = (serial->RxXferSize - serial->RxXferCount); + uint32_t pAddress = 0; + + if (*(pRxBuff-1)== 0x0D){ + + *(pRxBuff-1) = 0; + pRxBuff = (uint8_t *)malloc(seq + 1); + + serial->pRxBuffPtr -= seq; + serial->RxXferCount = serial->RxXferSize; + + strcpy((char *)pRxBuff, (char *)serial->pRxBuffPtr); + + pAddress = (uint32_t)pRxBuff; + xQueueSendFromISR(QueueConsole,&pAddress,0); + memset(RXBUFFER,(uint8_t)0x00, SIZEOFBUFFER); + } + else if(serial->RxXferCount == 0){ + + serial->pRxBuffPtr -= seq; + serial->RxXferCount = serial->RxXferSize; + + memset(RXBUFFER,(uint8_t)0x00, SIZEOFBUFFER); + } + else { + + } + +#else + + uint8_t* pRxBuff = serial->pRxBuffPtr; + uint8_t seq = 0; + + seq = (serial->RxXferSize - serial->RxXferCount); + + if (*(pRxBuff-1)=='\n'){ + serial->pRxBuffPtr -= seq; + serial->RxXferCount = serial->RxXferSize; + HAL_UART_Transmit(serial,serial->pRxBuffPtr,seq,100); + memset(RXBUFFER,(uint8_t)0x00, SIZEOFBUFFER); + } + else if(serial->RxXferCount == 0){ + serial->pRxBuffPtr -= seq; + serial->RxXferCount = serial->RxXferSize; + memset(RXBUFFER,(uint8_t)0x00, SIZEOFBUFFER); + } + else { + + } +#endif +} + + + diff --git a/RTOS_IOT/Src/Debug_led.c b/RTOS_IOT/Src/Debug_led.c new file mode 100644 index 0000000..e4e0377 --- /dev/null +++ b/RTOS_IOT/Src/Debug_led.c @@ -0,0 +1,149 @@ +#include "debug_led.h" + + +#ifdef USE_CMSIS_FREERTOS + + #include "cmsis_os.h" + osThreadId taskLED_HEARTBEAT; + +#else + + typedef enum { + StartCycle, + Systolic, + Systolic_rest, + diastolic, + diastolic_rest, + }eCardiacCycle; + + static uint32_t NextCycleTime = 0; + static eCardiacCycle LEDCycle = StartCycle; + +#endif + +#ifdef TESTING_IN_RTOS + #include "cmsis_os.h" + osThreadId taskLED_HEARTBEAT; +#endif + + +static GPIO_TypeDef* PortLED; +static uint32_t LED_PIN; + + + +void HeartBeat_LED_Init (GPIO_TypeDef * LED_Port , GPIO_InitTypeDef * GPIO){ + + PortLED = LED_Port; + LED_PIN = GPIO->Pin; + + HAL_GPIO_Init(LED_Port, GPIO); + +#ifdef USE_CMSIS_FREERTOS + + osThreadDef(HeartBeat, LED_HeartBeat, osPriorityNormal, 0 , configMINIMAL_STACK_SIZE); + taskLED_HEARTBEAT = osThreadCreate(osThread(HeartBeat),NULL); + +#endif + +#ifdef TESTING_IN_RTOS + osThreadDef(HeartBeat, LED_HeartBeat, osPriorityNormal, 0 , configMINIMAL_STACK_SIZE); + taskLED_HEARTBEAT = osThreadCreate(osThread(HeartBeat),NULL); +#endif + + +} + + + +void LED_HeartBeat (void const * argument){ + +#ifdef USE_CMSIS_FREERTOS + uint32_t xLastTickWakeup = osKernelSysTick(); + + for(;;) + { + HAL_GPIO_TogglePin(PortLED, LED_PIN); +#ifdef INCLUDE_vTaskDelayUntil + osDelayUntil(&xLastTickWakeup,220); +#else + osDelay(220); +#endif + HAL_GPIO_TogglePin(PortLED, LED_PIN); +#ifdef INCLUDE_vTaskDelayUntil + osDelayUntil(&xLastTickWakeup,320); +#else + osDelay(320); +#endif + HAL_GPIO_TogglePin(PortLED, LED_PIN); +#ifdef INCLUDE_vTaskDelayUntil + osDelayUntil(&xLastTickWakeup,220); +#else + osDelay(220); +#endif + HAL_GPIO_TogglePin(PortLED, LED_PIN); +#ifdef INCLUDE_vTaskDelayUntil + osDelayUntil(&xLastTickWakeup,1240); +#else + osDelay(1240); +#endif + + } +#else +#ifdef TESTING_IN_RTOS + + for(;;){ + +#endif + + switch (LEDCycle){ + case StartCycle: + NextCycleTime = HAL_GetTick() + 220; + LEDCycle = Systolic; + HAL_GPIO_WritePin(PortLED, LED_PIN, GPIO_PIN_SET); + break; + + case Systolic: + if (HAL_GetTick() >= NextCycleTime){ + NextCycleTime = HAL_GetTick() + 320; + LEDCycle++; + HAL_GPIO_WritePin(PortLED, LED_PIN, GPIO_PIN_RESET); + } + break; + + case Systolic_rest: + if (HAL_GetTick() >= NextCycleTime){ + NextCycleTime = HAL_GetTick() + 220; + LEDCycle++; + HAL_GPIO_WritePin(PortLED, LED_PIN, GPIO_PIN_SET); + } + break; + + case diastolic: + if (HAL_GetTick() >= NextCycleTime){ + NextCycleTime = HAL_GetTick() + 1240; + LEDCycle++; + HAL_GPIO_WritePin(PortLED, LED_PIN, GPIO_PIN_RESET); + } + break; + + case diastolic_rest: + if (HAL_GetTick() >= NextCycleTime){ + NextCycleTime = HAL_GetTick() + 220; + LEDCycle = Systolic ; + HAL_GPIO_WritePin(PortLED, LED_PIN, GPIO_PIN_SET); + } + break; + + default: + break; + } + +#ifdef TESTING_IN_RTOS + +} + +#endif + +#endif +}