实例介绍
资源包括:STM32L1系列低功耗单片机的源码例程,PWR、EXTI、SPI、I2C、ADC、NRF24L、DS18B20、DS1307等源码以及对应的说明文档
【实例截图】
【核心代码】
fb7e75f9-34bc-43b0-9f02-957729370cda
└── STM32L151源码例程及说明文档
├── STM32L系列培训资料
│ ├── STM32L15x —— Flash和EEPROM.pdf
│ ├── STM32L15x —— LCD控制器.pdf
│ ├── STM32L15x —— 从STM32F1xx到STM32Lxx.pdf
│ ├── STM32L15x —— 存储器直接访问DMA.pdf
│ ├── STM32L15x —— 实时时钟RTC.pdf
│ ├── STM32L15x —— 数模转换器DAC.pdf
│ ├── STM32L15x —— 时钟和复位系统RCC.pdf
│ ├── STM32L15x —— 概述.pdf
│ ├── STM32L15x —— 模拟比较器COMP.pdf
│ ├── STM32L15x —— 模数转换器ADC.pdf
│ ├── STM32L15x —— 独立看门狗IWDG和窗口看门狗WWDG.pdf
│ ├── STM32L15x —— 电源管理PWR.pdf
│ ├── STM32L15x —— 电源管理PWR和低功耗模式.pdf
│ ├── STM32L15x —— 系统配置管理(SYSCFG)和ROUTING INTERFACE(RI).pdf
│ ├── STM32L15x —— 通信外设I2C.pdf
│ ├── STM32L15x —— 通信外设SPI.pdf
│ ├── STM32L15x —— 通信外设USART.pdf
│ ├── STM32L15x —— 通用GPIO和外部中断EXTI.pdf
│ └── STM32L15x —— 通用定时器(TIM).pdf
└── 例程源代码
├── ADC
│ └── DMA-Continuous
│ ├── ADC-DMA连续模式注意事项.docx
│ ├── BSP
│ │ ├── BSP_drive.c
│ │ └── BSP_drive.h
│ ├── DMA-Continuous_Configuration.pdf
│ ├── DMA-Continuous.ioc
│ ├── DMA-Continuous.txt
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_adc_ex.h
│ │ │ ├── stm32l1xx_hal_adc.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_spi_ex.h
│ │ │ ├── stm32l1xx_hal_spi.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal_adc.c
│ │ ├── stm32l1xx_hal_adc_ex.c
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_spi.c
│ │ ├── stm32l1xx_hal_spi_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── EWARM
│ │ ├── DMA-Continuous
│ │ │ ├── Exe
│ │ │ │ ├── DMA-Continuous.out
│ │ │ │ └── DMA-Continuous.sim
│ │ │ └── Obj
│ │ │ ├── DMA-Continuous.pbd
│ │ │ └── DMA-Continuous.pbd.browse
│ │ ├── DMA-Continuous Configuration
│ │ │ ├── Exe
│ │ │ │ ├── DMA-Continuous Configuration.out
│ │ │ │ ├── DMA-Continuous Configuration.sim
│ │ │ │ └── DMA-Continuous.hex
│ │ │ └── Obj
│ │ │ ├── DMA-Continuous.pbd
│ │ │ └── DMA-Continuous.pbd.browse
│ │ ├── DMA-Continuous.ewd
│ │ ├── DMA-Continuous.ewp
│ │ ├── DMA-Continuous.ewt
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── DMA-Continuous.crun
│ │ │ ├── DMA-Continuous.dbgdt
│ │ │ ├── DMA-Continuous.DMA-Continuous Configuration.cspy.bat
│ │ │ ├── DMA-Continuous.DMA-Continuous Configuration.driver.xcl
│ │ │ ├── DMA-Continuous.DMA-Continuous Configuration.general.xcl
│ │ │ ├── DMA-Continuous_DMA-Continuous Configuration.jlink
│ │ │ ├── DMA-Continuous.DMA-Continuous.cspy.bat
│ │ │ ├── DMA-Continuous.DMA-Continuous.driver.xcl
│ │ │ ├── DMA-Continuous.DMA-Continuous.general.xcl
│ │ │ ├── DMA-Continuous_DMA-Continuous.jlink
│ │ │ ├── DMA-Continuous.dni
│ │ │ ├── Project.wsdt
│ │ │ └── Project.wspos
│ │ ├── stm32l151xba_flash.icf
│ │ └── stm32l151xba_sram.icf
│ ├── Inc
│ │ ├── adc.h
│ │ ├── dma.h
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── spi.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── MDK-ARM
│ │ ├── DMA-Continuous
│ │ │ └── DMA-Continuous.hex
│ │ ├── DMA-Continuous.uvguix.Waiman
│ │ ├── DMA-Continuous.uvguix.win7
│ │ ├── DMA-Continuous.uvoptx
│ │ ├── DMA-Continuous.uvprojx
│ │ ├── JLinkSettings.ini
│ │ ├── RTE
│ │ │ └── RTE_Components.h
│ │ └── startup_stm32l151xba.s
│ └── Src
│ ├── adc.c
│ ├── dma.c
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ └── usart.c
├── DS1307
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_spi_ex.h
│ │ │ ├── stm32l1xx_hal_spi.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_spi.c
│ │ ├── stm32l1xx_hal_spi_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── DS1307.ioc
│ ├── EWARM
│ │ ├── DS1307
│ │ │ └── Obj
│ │ │ ├── DS1307.pbd
│ │ │ ├── DS1307.pbd.browse
│ │ │ ├── gpio.pbi
│ │ │ ├── gpio.pbi.cout
│ │ │ ├── i2c.pbi
│ │ │ ├── i2c.pbi.cout
│ │ │ ├── main.pbi
│ │ │ ├── main.pbi.cout
│ │ │ ├── spi.pbi
│ │ │ ├── spi.pbi.cout
│ │ │ ├── stm32l1xx_hal_cortex.pbi
│ │ │ ├── stm32l1xx_hal_cortex.pbi.cout
│ │ │ ├── stm32l1xx_hal_dma.pbi
│ │ │ ├── stm32l1xx_hal_dma.pbi.cout
│ │ │ ├── stm32l1xx_hal_flash_ex.pbi
│ │ │ ├── stm32l1xx_hal_flash_ex.pbi.cout
│ │ │ ├── stm32l1xx_hal_flash.pbi
│ │ │ ├── stm32l1xx_hal_flash.pbi.cout
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.pbi
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.pbi.cout
│ │ │ ├── stm32l1xx_hal_gpio.pbi
│ │ │ ├── stm32l1xx_hal_gpio.pbi.cout
│ │ │ ├── stm32l1xx_hal_i2c.pbi
│ │ │ ├── stm32l1xx_hal_i2c.pbi.cout
│ │ │ ├── stm32l1xx_hal_msp.pbi
│ │ │ ├── stm32l1xx_hal_msp.pbi.cout
│ │ │ ├── stm32l1xx_hal.pbi
│ │ │ ├── stm32l1xx_hal.pbi.cout
│ │ │ ├── stm32l1xx_hal_pwr_ex.pbi
│ │ │ ├── stm32l1xx_hal_pwr_ex.pbi.cout
│ │ │ ├── stm32l1xx_hal_pwr.pbi
│ │ │ ├── stm32l1xx_hal_pwr.pbi.cout
│ │ │ ├── stm32l1xx_hal_rcc_ex.pbi
│ │ │ ├── stm32l1xx_hal_rcc_ex.pbi.cout
│ │ │ ├── stm32l1xx_hal_rcc.pbi
│ │ │ ├── stm32l1xx_hal_rcc.pbi.cout
│ │ │ ├── stm32l1xx_hal_rtc_ex.pbi
│ │ │ ├── stm32l1xx_hal_rtc_ex.pbi.cout
│ │ │ ├── stm32l1xx_hal_rtc.pbi
│ │ │ ├── stm32l1xx_hal_rtc.pbi.cout
│ │ │ ├── stm32l1xx_hal_spi_ex.pbi
│ │ │ ├── stm32l1xx_hal_spi_ex.pbi.cout
│ │ │ ├── stm32l1xx_hal_spi.pbi
│ │ │ ├── stm32l1xx_hal_spi.pbi.cout
│ │ │ ├── stm32l1xx_hal_tim_ex.pbi
│ │ │ ├── stm32l1xx_hal_tim_ex.pbi.cout
│ │ │ ├── stm32l1xx_hal_tim.pbi
│ │ │ ├── stm32l1xx_hal_tim.pbi.cout
│ │ │ ├── stm32l1xx_hal_uart.pbi
│ │ │ ├── stm32l1xx_hal_uart.pbi.cout
│ │ │ ├── stm32l1xx_it.pbi
│ │ │ ├── stm32l1xx_it.pbi.cout
│ │ │ ├── system_stm32l1xx.pbi
│ │ │ ├── system_stm32l1xx.pbi.cout
│ │ │ ├── usart.pbi
│ │ │ └── usart.pbi.cout
│ │ ├── DS1307.ewd
│ │ ├── DS1307.ewp
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── DS1307.DS1307.cspy.bat
│ │ │ ├── DS1307.DS1307.driver.xcl
│ │ │ └── DS1307.DS1307.general.xcl
│ │ ├── stm32l151xb_flash.icf
│ │ └── stm32l151xb_sram.icf
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── spi.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── MDK-ARM
│ │ ├── DS1307.uvoptx
│ │ ├── DS1307.uvprojx
│ │ └── startup_stm32l151xb.s
│ └── Src
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ └── usart.c
├── DS18B20
│ ├── BSP
│ │ ├── BSP_drive.c
│ │ ├── BSP_drive.h
│ │ ├── delay.c
│ │ ├── delay.h
│ │ ├── ds18b20.c
│ │ └── ds18b20.h
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ ├── gcc
│ │ │ │ │ ├── startup_stm32l100xba.s
│ │ │ │ │ ├── startup_stm32l100xb.s
│ │ │ │ │ ├── startup_stm32l100xc.s
│ │ │ │ │ ├── startup_stm32l151xba.s
│ │ │ │ │ ├── startup_stm32l151xb.s
│ │ │ │ │ ├── startup_stm32l151xca.s
│ │ │ │ │ ├── startup_stm32l151xc.s
│ │ │ │ │ ├── startup_stm32l151xd.s
│ │ │ │ │ ├── startup_stm32l151xdx.s
│ │ │ │ │ ├── startup_stm32l151xe.s
│ │ │ │ │ ├── startup_stm32l152xba.s
│ │ │ │ │ ├── startup_stm32l152xb.s
│ │ │ │ │ ├── startup_stm32l152xca.s
│ │ │ │ │ ├── startup_stm32l152xc.s
│ │ │ │ │ ├── startup_stm32l152xd.s
│ │ │ │ │ ├── startup_stm32l152xdx.s
│ │ │ │ │ ├── startup_stm32l152xe.s
│ │ │ │ │ ├── startup_stm32l162xca.s
│ │ │ │ │ ├── startup_stm32l162xc.s
│ │ │ │ │ ├── startup_stm32l162xd.s
│ │ │ │ │ ├── startup_stm32l162xdx.s
│ │ │ │ │ └── startup_stm32l162xe.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ ├── DSP_Lib
│ │ │ │ └── Source
│ │ │ │ ├── BasicMathFunctions
│ │ │ │ │ ├── arm_abs_f32.c
│ │ │ │ │ ├── arm_abs_q15.c
│ │ │ │ │ ├── arm_abs_q31.c
│ │ │ │ │ ├── arm_abs_q7.c
│ │ │ │ │ ├── arm_add_f32.c
│ │ │ │ │ ├── arm_add_q15.c
│ │ │ │ │ ├── arm_add_q31.c
│ │ │ │ │ ├── arm_add_q7.c
│ │ │ │ │ ├── arm_dot_prod_f32.c
│ │ │ │ │ ├── arm_dot_prod_q15.c
│ │ │ │ │ ├── arm_dot_prod_q31.c
│ │ │ │ │ ├── arm_dot_prod_q7.c
│ │ │ │ │ ├── arm_mult_f32.c
│ │ │ │ │ ├── arm_mult_q15.c
│ │ │ │ │ ├── arm_mult_q31.c
│ │ │ │ │ ├── arm_mult_q7.c
│ │ │ │ │ ├── arm_negate_f32.c
│ │ │ │ │ ├── arm_negate_q15.c
│ │ │ │ │ ├── arm_negate_q31.c
│ │ │ │ │ ├── arm_negate_q7.c
│ │ │ │ │ ├── arm_offset_f32.c
│ │ │ │ │ ├── arm_offset_q15.c
│ │ │ │ │ ├── arm_offset_q31.c
│ │ │ │ │ ├── arm_offset_q7.c
│ │ │ │ │ ├── arm_scale_f32.c
│ │ │ │ │ ├── arm_scale_q15.c
│ │ │ │ │ ├── arm_scale_q31.c
│ │ │ │ │ ├── arm_scale_q7.c
│ │ │ │ │ ├── arm_shift_q15.c
│ │ │ │ │ ├── arm_shift_q31.c
│ │ │ │ │ ├── arm_shift_q7.c
│ │ │ │ │ ├── arm_sub_f32.c
│ │ │ │ │ ├── arm_sub_q15.c
│ │ │ │ │ ├── arm_sub_q31.c
│ │ │ │ │ └── arm_sub_q7.c
│ │ │ │ ├── CommonTables
│ │ │ │ │ ├── arm_common_tables.c
│ │ │ │ │ └── arm_const_structs.c
│ │ │ │ ├── ComplexMathFunctions
│ │ │ │ │ ├── arm_cmplx_conj_f32.c
│ │ │ │ │ ├── arm_cmplx_conj_q15.c
│ │ │ │ │ ├── arm_cmplx_conj_q31.c
│ │ │ │ │ ├── arm_cmplx_dot_prod_f32.c
│ │ │ │ │ ├── arm_cmplx_dot_prod_q15.c
│ │ │ │ │ ├── arm_cmplx_dot_prod_q31.c
│ │ │ │ │ ├── arm_cmplx_mag_f32.c
│ │ │ │ │ ├── arm_cmplx_mag_q15.c
│ │ │ │ │ ├── arm_cmplx_mag_q31.c
│ │ │ │ │ ├── arm_cmplx_mag_squared_f32.c
│ │ │ │ │ ├── arm_cmplx_mag_squared_q15.c
│ │ │ │ │ ├── arm_cmplx_mag_squared_q31.c
│ │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c
│ │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c
│ │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c
│ │ │ │ │ ├── arm_cmplx_mult_real_f32.c
│ │ │ │ │ ├── arm_cmplx_mult_real_q15.c
│ │ │ │ │ └── arm_cmplx_mult_real_q31.c
│ │ │ │ ├── ControllerFunctions
│ │ │ │ │ ├── arm_pid_init_f32.c
│ │ │ │ │ ├── arm_pid_init_q15.c
│ │ │ │ │ ├── arm_pid_init_q31.c
│ │ │ │ │ ├── arm_pid_reset_f32.c
│ │ │ │ │ ├── arm_pid_reset_q15.c
│ │ │ │ │ ├── arm_pid_reset_q31.c
│ │ │ │ │ ├── arm_sin_cos_f32.c
│ │ │ │ │ └── arm_sin_cos_q31.c
│ │ │ │ ├── FastMathFunctions
│ │ │ │ │ ├── arm_cos_f32.c
│ │ │ │ │ ├── arm_cos_q15.c
│ │ │ │ │ ├── arm_cos_q31.c
│ │ │ │ │ ├── arm_sin_f32.c
│ │ │ │ │ ├── arm_sin_q15.c
│ │ │ │ │ ├── arm_sin_q31.c
│ │ │ │ │ ├── arm_sqrt_q15.c
│ │ │ │ │ └── arm_sqrt_q31.c
│ │ │ │ ├── FilteringFunctions
│ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_f32.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_q15.c
│ │ │ │ │ ├── arm_biquad_cascade_df1_q31.c
│ │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c
│ │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c
│ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c
│ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c
│ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c
│ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c
│ │ │ │ │ ├── arm_conv_f32.c
│ │ │ │ │ ├── arm_conv_fast_opt_q15.c
│ │ │ │ │ ├── arm_conv_fast_q15.c
│ │ │ │ │ ├── arm_conv_fast_q31.c
│ │ │ │ │ ├── arm_conv_opt_q15.c
│ │ │ │ │ ├── arm_conv_opt_q7.c
│ │ │ │ │ ├── arm_conv_partial_f32.c
│ │ │ │ │ ├── arm_conv_partial_fast_opt_q15.c
│ │ │ │ │ ├── arm_conv_partial_fast_q15.c
│ │ │ │ │ ├── arm_conv_partial_fast_q31.c
│ │ │ │ │ ├── arm_conv_partial_opt_q15.c
│ │ │ │ │ ├── arm_conv_partial_opt_q7.c
│ │ │ │ │ ├── arm_conv_partial_q15.c
│ │ │ │ │ ├── arm_conv_partial_q31.c
│ │ │ │ │ ├── arm_conv_partial_q7.c
│ │ │ │ │ ├── arm_conv_q15.c
│ │ │ │ │ ├── arm_conv_q31.c
│ │ │ │ │ ├── arm_conv_q7.c
│ │ │ │ │ ├── arm_correlate_f32.c
│ │ │ │ │ ├── arm_correlate_fast_opt_q15.c
│ │ │ │ │ ├── arm_correlate_fast_q15.c
│ │ │ │ │ ├── arm_correlate_fast_q31.c
│ │ │ │ │ ├── arm_correlate_opt_q15.c
│ │ │ │ │ ├── arm_correlate_opt_q7.c
│ │ │ │ │ ├── arm_correlate_q15.c
│ │ │ │ │ ├── arm_correlate_q31.c
│ │ │ │ │ ├── arm_correlate_q7.c
│ │ │ │ │ ├── arm_fir_decimate_f32.c
│ │ │ │ │ ├── arm_fir_decimate_fast_q15.c
│ │ │ │ │ ├── arm_fir_decimate_fast_q31.c
│ │ │ │ │ ├── arm_fir_decimate_init_f32.c
│ │ │ │ │ ├── arm_fir_decimate_init_q15.c
│ │ │ │ │ ├── arm_fir_decimate_init_q31.c
│ │ │ │ │ ├── arm_fir_decimate_q15.c
│ │ │ │ │ ├── arm_fir_decimate_q31.c
│ │ │ │ │ ├── arm_fir_f32.c
│ │ │ │ │ ├── arm_fir_fast_q15.c
│ │ │ │ │ ├── arm_fir_fast_q31.c
│ │ │ │ │ ├── arm_fir_init_f32.c
│ │ │ │ │ ├── arm_fir_init_q15.c
│ │ │ │ │ ├── arm_fir_init_q31.c
│ │ │ │ │ ├── arm_fir_init_q7.c
│ │ │ │ │ ├── arm_fir_interpolate_f32.c
│ │ │ │ │ ├── arm_fir_interpolate_init_f32.c
│ │ │ │ │ ├── arm_fir_interpolate_init_q15.c
│ │ │ │ │ ├── arm_fir_interpolate_init_q31.c
│ │ │ │ │ ├── arm_fir_interpolate_q15.c
│ │ │ │ │ ├── arm_fir_interpolate_q31.c
│ │ │ │ │ ├── arm_fir_lattice_f32.c
│ │ │ │ │ ├── arm_fir_lattice_init_f32.c
│ │ │ │ │ ├── arm_fir_lattice_init_q15.c
│ │ │ │ │ ├── arm_fir_lattice_init_q31.c
│ │ │ │ │ ├── arm_fir_lattice_q15.c
│ │ │ │ │ ├── arm_fir_lattice_q31.c
│ │ │ │ │ ├── arm_fir_q15.c
│ │ │ │ │ ├── arm_fir_q31.c
│ │ │ │ │ ├── arm_fir_q7.c
│ │ │ │ │ ├── arm_fir_sparse_f32.c
│ │ │ │ │ ├── arm_fir_sparse_init_f32.c
│ │ │ │ │ ├── arm_fir_sparse_init_q15.c
│ │ │ │ │ ├── arm_fir_sparse_init_q31.c
│ │ │ │ │ ├── arm_fir_sparse_init_q7.c
│ │ │ │ │ ├── arm_fir_sparse_q15.c
│ │ │ │ │ ├── arm_fir_sparse_q31.c
│ │ │ │ │ ├── arm_fir_sparse_q7.c
│ │ │ │ │ ├── arm_iir_lattice_f32.c
│ │ │ │ │ ├── arm_iir_lattice_init_f32.c
│ │ │ │ │ ├── arm_iir_lattice_init_q15.c
│ │ │ │ │ ├── arm_iir_lattice_init_q31.c
│ │ │ │ │ ├── arm_iir_lattice_q15.c
│ │ │ │ │ ├── arm_iir_lattice_q31.c
│ │ │ │ │ ├── arm_lms_f32.c
│ │ │ │ │ ├── arm_lms_init_f32.c
│ │ │ │ │ ├── arm_lms_init_q15.c
│ │ │ │ │ ├── arm_lms_init_q31.c
│ │ │ │ │ ├── arm_lms_norm_f32.c
│ │ │ │ │ ├── arm_lms_norm_init_f32.c
│ │ │ │ │ ├── arm_lms_norm_init_q15.c
│ │ │ │ │ ├── arm_lms_norm_init_q31.c
│ │ │ │ │ ├── arm_lms_norm_q15.c
│ │ │ │ │ ├── arm_lms_norm_q31.c
│ │ │ │ │ ├── arm_lms_q15.c
│ │ │ │ │ └── arm_lms_q31.c
│ │ │ │ ├── MatrixFunctions
│ │ │ │ │ ├── arm_mat_add_f32.c
│ │ │ │ │ ├── arm_mat_add_q15.c
│ │ │ │ │ ├── arm_mat_add_q31.c
│ │ │ │ │ ├── arm_mat_cmplx_mult_f32.c
│ │ │ │ │ ├── arm_mat_cmplx_mult_q15.c
│ │ │ │ │ ├── arm_mat_cmplx_mult_q31.c
│ │ │ │ │ ├── arm_mat_init_f32.c
│ │ │ │ │ ├── arm_mat_init_q15.c
│ │ │ │ │ ├── arm_mat_init_q31.c
│ │ │ │ │ ├── arm_mat_inverse_f32.c
│ │ │ │ │ ├── arm_mat_inverse_f64.c
│ │ │ │ │ ├── arm_mat_mult_f32.c
│ │ │ │ │ ├── arm_mat_mult_fast_q15.c
│ │ │ │ │ ├── arm_mat_mult_fast_q31.c
│ │ │ │ │ ├── arm_mat_mult_q15.c
│ │ │ │ │ ├── arm_mat_mult_q31.c
│ │ │ │ │ ├── arm_mat_scale_f32.c
│ │ │ │ │ ├── arm_mat_scale_q15.c
│ │ │ │ │ ├── arm_mat_scale_q31.c
│ │ │ │ │ ├── arm_mat_sub_f32.c
│ │ │ │ │ ├── arm_mat_sub_q15.c
│ │ │ │ │ ├── arm_mat_sub_q31.c
│ │ │ │ │ ├── arm_mat_trans_f32.c
│ │ │ │ │ ├── arm_mat_trans_q15.c
│ │ │ │ │ └── arm_mat_trans_q31.c
│ │ │ │ ├── StatisticsFunctions
│ │ │ │ │ ├── arm_max_f32.c
│ │ │ │ │ ├── arm_max_q15.c
│ │ │ │ │ ├── arm_max_q31.c
│ │ │ │ │ ├── arm_max_q7.c
│ │ │ │ │ ├── arm_mean_f32.c
│ │ │ │ │ ├── arm_mean_q15.c
│ │ │ │ │ ├── arm_mean_q31.c
│ │ │ │ │ ├── arm_mean_q7.c
│ │ │ │ │ ├── arm_min_f32.c
│ │ │ │ │ ├── arm_min_q15.c
│ │ │ │ │ ├── arm_min_q31.c
│ │ │ │ │ ├── arm_min_q7.c
│ │ │ │ │ ├── arm_power_f32.c
│ │ │ │ │ ├── arm_power_q15.c
│ │ │ │ │ ├── arm_power_q31.c
│ │ │ │ │ ├── arm_power_q7.c
│ │ │ │ │ ├── arm_rms_f32.c
│ │ │ │ │ ├── arm_rms_q15.c
│ │ │ │ │ ├── arm_rms_q31.c
│ │ │ │ │ ├── arm_std_f32.c
│ │ │ │ │ ├── arm_std_q15.c
│ │ │ │ │ ├── arm_std_q31.c
│ │ │ │ │ ├── arm_var_f32.c
│ │ │ │ │ ├── arm_var_q15.c
│ │ │ │ │ └── arm_var_q31.c
│ │ │ │ ├── SupportFunctions
│ │ │ │ │ ├── arm_copy_f32.c
│ │ │ │ │ ├── arm_copy_q15.c
│ │ │ │ │ ├── arm_copy_q31.c
│ │ │ │ │ ├── arm_copy_q7.c
│ │ │ │ │ ├── arm_fill_f32.c
│ │ │ │ │ ├── arm_fill_q15.c
│ │ │ │ │ ├── arm_fill_q31.c
│ │ │ │ │ ├── arm_fill_q7.c
│ │ │ │ │ ├── arm_float_to_q15.c
│ │ │ │ │ ├── arm_float_to_q31.c
│ │ │ │ │ ├── arm_float_to_q7.c
│ │ │ │ │ ├── arm_q15_to_float.c
│ │ │ │ │ ├── arm_q15_to_q31.c
│ │ │ │ │ ├── arm_q15_to_q7.c
│ │ │ │ │ ├── arm_q31_to_float.c
│ │ │ │ │ ├── arm_q31_to_q15.c
│ │ │ │ │ ├── arm_q31_to_q7.c
│ │ │ │ │ ├── arm_q7_to_float.c
│ │ │ │ │ ├── arm_q7_to_q15.c
│ │ │ │ │ └── arm_q7_to_q31.c
│ │ │ │ └── TransformFunctions
│ │ │ │ ├── arm_bitreversal.c
│ │ │ │ ├── arm_cfft_f32.c
│ │ │ │ ├── arm_cfft_q15.c
│ │ │ │ ├── arm_cfft_q31.c
│ │ │ │ ├── arm_cfft_radix2_f32.c
│ │ │ │ ├── arm_cfft_radix2_init_f32.c
│ │ │ │ ├── arm_cfft_radix2_init_q15.c
│ │ │ │ ├── arm_cfft_radix2_init_q31.c
│ │ │ │ ├── arm_cfft_radix2_q15.c
│ │ │ │ ├── arm_cfft_radix2_q31.c
│ │ │ │ ├── arm_cfft_radix4_f32.c
│ │ │ │ ├── arm_cfft_radix4_init_f32.c
│ │ │ │ ├── arm_cfft_radix4_init_q15.c
│ │ │ │ ├── arm_cfft_radix4_init_q31.c
│ │ │ │ ├── arm_cfft_radix4_q15.c
│ │ │ │ ├── arm_cfft_radix4_q31.c
│ │ │ │ ├── arm_cfft_radix8_f32.c
│ │ │ │ ├── arm_dct4_f32.c
│ │ │ │ ├── arm_dct4_init_f32.c
│ │ │ │ ├── arm_dct4_init_q15.c
│ │ │ │ ├── arm_dct4_init_q31.c
│ │ │ │ ├── arm_dct4_q15.c
│ │ │ │ ├── arm_dct4_q31.c
│ │ │ │ ├── arm_rfft_f32.c
│ │ │ │ ├── arm_rfft_fast_f32.c
│ │ │ │ ├── arm_rfft_fast_init_f32.c
│ │ │ │ ├── arm_rfft_init_f32.c
│ │ │ │ ├── arm_rfft_init_q15.c
│ │ │ │ ├── arm_rfft_init_q31.c
│ │ │ │ ├── arm_rfft_q15.c
│ │ │ │ └── arm_rfft_q31.c
│ │ │ ├── Include
│ │ │ │ ├── arm_common_tables.h
│ │ │ │ ├── arm_const_structs.h
│ │ │ │ ├── arm_math.h
│ │ │ │ ├── core_cm0.h
│ │ │ │ ├── core_cm0plus.h
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── core_cm4.h
│ │ │ │ ├── core_cm7.h
│ │ │ │ ├── core_cmFunc.h
│ │ │ │ ├── core_cmInstr.h
│ │ │ │ ├── core_cmSimd.h
│ │ │ │ ├── core_sc000.h
│ │ │ │ └── core_sc300.h
│ │ │ └── RTOS
│ │ │ └── Template
│ │ │ └── cmsis_os.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── DS18B20.ioc
│ ├── EWARM
│ │ ├── DS18B20
│ │ │ ├── Exe
│ │ │ │ ├── DS18B20.out
│ │ │ │ └── DS18B20.sim
│ │ │ └── Obj
│ │ │ ├── DS18B20.pbd
│ │ │ └── DS18B20.pbd.browse
│ │ ├── DS18B20.ewd
│ │ ├── DS18B20.ewp
│ │ ├── DS18B20.ewt
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── DS18B20.crun
│ │ │ ├── DS18B20.dbgdt
│ │ │ ├── DS18B20.dni
│ │ │ ├── DS18B20.DS18B20.cspy.bat
│ │ │ ├── DS18B20.DS18B20.driver.xcl
│ │ │ ├── DS18B20.DS18B20.general.xcl
│ │ │ ├── DS18B20_DS18B20.jlink
│ │ │ ├── Project.wsdt
│ │ │ └── Project.wspos
│ │ ├── stm32l151xb_flash.icf
│ │ └── stm32l151xb_sram.icf
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── MDK-ARM
│ │ ├── DS18B20
│ │ │ ├── bsp_drive.crf
│ │ │ ├── bsp_drive.d
│ │ │ ├── bsp_drive.o
│ │ │ ├── delay.crf
│ │ │ ├── delay.d
│ │ │ ├── delay.o
│ │ │ ├── DS18B20.axf
│ │ │ ├── DS18B20.build_log.htm
│ │ │ ├── ds18b20.crf
│ │ │ ├── ds18b20.d
│ │ │ ├── DS18B20_DS18B20.dep
│ │ │ ├── DS18B20.htm
│ │ │ ├── DS18B20.lnp
│ │ │ ├── DS18B20.map
│ │ │ ├── ds18b20.o
│ │ │ ├── DS18B20.sct
│ │ │ ├── gpio.crf
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ ├── i2c.crf
│ │ │ ├── i2c.d
│ │ │ ├── i2c.o
│ │ │ ├── main.crf
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── startup_stm32l151xb.d
│ │ │ ├── startup_stm32l151xb.o
│ │ │ ├── stm32l1xx_hal_cortex.crf
│ │ │ ├── stm32l1xx_hal_cortex.d
│ │ │ ├── stm32l1xx_hal_cortex.o
│ │ │ ├── stm32l1xx_hal.crf
│ │ │ ├── stm32l1xx_hal.d
│ │ │ ├── stm32l1xx_hal_dma.crf
│ │ │ ├── stm32l1xx_hal_dma.d
│ │ │ ├── stm32l1xx_hal_dma.o
│ │ │ ├── stm32l1xx_hal_flash.crf
│ │ │ ├── stm32l1xx_hal_flash.d
│ │ │ ├── stm32l1xx_hal_flash_ex.crf
│ │ │ ├── stm32l1xx_hal_flash_ex.d
│ │ │ ├── stm32l1xx_hal_flash_ex.o
│ │ │ ├── stm32l1xx_hal_flash.o
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.crf
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.d
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.o
│ │ │ ├── stm32l1xx_hal_gpio.crf
│ │ │ ├── stm32l1xx_hal_gpio.d
│ │ │ ├── stm32l1xx_hal_gpio.o
│ │ │ ├── stm32l1xx_hal_i2c.crf
│ │ │ ├── stm32l1xx_hal_i2c.d
│ │ │ ├── stm32l1xx_hal_i2c.o
│ │ │ ├── stm32l1xx_hal_msp.crf
│ │ │ ├── stm32l1xx_hal_msp.d
│ │ │ ├── stm32l1xx_hal_msp.o
│ │ │ ├── stm32l1xx_hal.o
│ │ │ ├── stm32l1xx_hal_pwr.crf
│ │ │ ├── stm32l1xx_hal_pwr.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.crf
│ │ │ ├── stm32l1xx_hal_pwr_ex.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.o
│ │ │ ├── stm32l1xx_hal_pwr.o
│ │ │ ├── stm32l1xx_hal_rcc.crf
│ │ │ ├── stm32l1xx_hal_rcc.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.crf
│ │ │ ├── stm32l1xx_hal_rcc_ex.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.o
│ │ │ ├── stm32l1xx_hal_rcc.o
│ │ │ ├── stm32l1xx_hal_rtc.crf
│ │ │ ├── stm32l1xx_hal_rtc.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.crf
│ │ │ ├── stm32l1xx_hal_rtc_ex.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.o
│ │ │ ├── stm32l1xx_hal_rtc.o
│ │ │ ├── stm32l1xx_hal_tim.crf
│ │ │ ├── stm32l1xx_hal_tim.d
│ │ │ ├── stm32l1xx_hal_tim_ex.crf
│ │ │ ├── stm32l1xx_hal_tim_ex.d
│ │ │ ├── stm32l1xx_hal_tim_ex.o
│ │ │ ├── stm32l1xx_hal_tim.o
│ │ │ ├── stm32l1xx_hal_uart.crf
│ │ │ ├── stm32l1xx_hal_uart.d
│ │ │ ├── stm32l1xx_hal_uart.o
│ │ │ ├── stm32l1xx_it.crf
│ │ │ ├── stm32l1xx_it.d
│ │ │ ├── stm32l1xx_it.o
│ │ │ ├── system_stm32l1xx.crf
│ │ │ ├── system_stm32l1xx.d
│ │ │ ├── system_stm32l1xx.o
│ │ │ ├── usart.crf
│ │ │ ├── usart.d
│ │ │ └── usart.o
│ │ ├── DS18B20.uvguix.QW
│ │ ├── DS18B20.uvguix.Waiman
│ │ ├── DS18B20.uvoptx
│ │ ├── DS18B20.uvprojx
│ │ ├── JLinkSettings.ini
│ │ ├── RTE
│ │ │ └── _DS18B20
│ │ │ └── RTE_Components.h
│ │ ├── startup_stm32l151xb.lst
│ │ └── startup_stm32l151xb.s
│ ├── Src
│ │ ├── gpio.c
│ │ ├── i2c.c
│ │ ├── main.c
│ │ ├── stm32l1xx_hal_msp.c
│ │ ├── stm32l1xx_it.c
│ │ └── usart.c
│ └── 接法.jpg
├── EXTI_KEY
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_spi_ex.h
│ │ │ ├── stm32l1xx_hal_spi.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_spi.c
│ │ ├── stm32l1xx_hal_spi_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── EWARM
│ │ ├── EXTI_KEY.ewd
│ │ ├── EXTI_KEY.ewp
│ │ ├── Project.eww
│ │ ├── stm32l151xb_flash.icf
│ │ └── stm32l151xb_sram.icf
│ ├── EXTI_KEY.ioc
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── spi.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── MDK-ARM
│ │ ├── EXTI_KEY
│ │ │ ├── ExtDll.iex
│ │ │ ├── EXTI_KEY.axf
│ │ │ ├── EXTI_KEY.build_log.htm
│ │ │ ├── EXTI_KEY_EXTI_KEY.dep
│ │ │ ├── EXTI_KEY.htm
│ │ │ ├── EXTI_KEY.lnp
│ │ │ ├── EXTI_KEY.map
│ │ │ ├── EXTI_KEY.sct
│ │ │ ├── gpio.crf
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ ├── i2c.crf
│ │ │ ├── i2c.d
│ │ │ ├── i2c.o
│ │ │ ├── main.crf
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── spi.crf
│ │ │ ├── spi.d
│ │ │ ├── spi.o
│ │ │ ├── startup_stm32l151xb.d
│ │ │ ├── startup_stm32l151xb.o
│ │ │ ├── stm32l1xx_hal_cortex.crf
│ │ │ ├── stm32l1xx_hal_cortex.d
│ │ │ ├── stm32l1xx_hal_cortex.o
│ │ │ ├── stm32l1xx_hal.crf
│ │ │ ├── stm32l1xx_hal.d
│ │ │ ├── stm32l1xx_hal_dma.crf
│ │ │ ├── stm32l1xx_hal_dma.d
│ │ │ ├── stm32l1xx_hal_dma.o
│ │ │ ├── stm32l1xx_hal_flash.crf
│ │ │ ├── stm32l1xx_hal_flash.d
│ │ │ ├── stm32l1xx_hal_flash_ex.crf
│ │ │ ├── stm32l1xx_hal_flash_ex.d
│ │ │ ├── stm32l1xx_hal_flash_ex.o
│ │ │ ├── stm32l1xx_hal_flash.o
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.crf
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.d
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.o
│ │ │ ├── stm32l1xx_hal_gpio.crf
│ │ │ ├── stm32l1xx_hal_gpio.d
│ │ │ ├── stm32l1xx_hal_gpio.o
│ │ │ ├── stm32l1xx_hal_i2c.crf
│ │ │ ├── stm32l1xx_hal_i2c.d
│ │ │ ├── stm32l1xx_hal_i2c.o
│ │ │ ├── stm32l1xx_hal_msp.crf
│ │ │ ├── stm32l1xx_hal_msp.d
│ │ │ ├── stm32l1xx_hal_msp.o
│ │ │ ├── stm32l1xx_hal.o
│ │ │ ├── stm32l1xx_hal_pwr.crf
│ │ │ ├── stm32l1xx_hal_pwr.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.crf
│ │ │ ├── stm32l1xx_hal_pwr_ex.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.o
│ │ │ ├── stm32l1xx_hal_pwr.o
│ │ │ ├── stm32l1xx_hal_rcc.crf
│ │ │ ├── stm32l1xx_hal_rcc.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.crf
│ │ │ ├── stm32l1xx_hal_rcc_ex.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.o
│ │ │ ├── stm32l1xx_hal_rcc.o
│ │ │ ├── stm32l1xx_hal_rtc.crf
│ │ │ ├── stm32l1xx_hal_rtc.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.crf
│ │ │ ├── stm32l1xx_hal_rtc_ex.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.o
│ │ │ ├── stm32l1xx_hal_rtc.o
│ │ │ ├── stm32l1xx_hal_spi.crf
│ │ │ ├── stm32l1xx_hal_spi.d
│ │ │ ├── stm32l1xx_hal_spi_ex.crf
│ │ │ ├── stm32l1xx_hal_spi_ex.d
│ │ │ ├── stm32l1xx_hal_spi_ex.o
│ │ │ ├── stm32l1xx_hal_spi.o
│ │ │ ├── stm32l1xx_hal_tim.crf
│ │ │ ├── stm32l1xx_hal_tim.d
│ │ │ ├── stm32l1xx_hal_tim_ex.crf
│ │ │ ├── stm32l1xx_hal_tim_ex.d
│ │ │ ├── stm32l1xx_hal_tim_ex.o
│ │ │ ├── stm32l1xx_hal_tim.o
│ │ │ ├── stm32l1xx_hal_uart.crf
│ │ │ ├── stm32l1xx_hal_uart.d
│ │ │ ├── stm32l1xx_hal_uart.o
│ │ │ ├── stm32l1xx_it.crf
│ │ │ ├── stm32l1xx_it.d
│ │ │ ├── stm32l1xx_it.o
│ │ │ ├── system_stm32l1xx.crf
│ │ │ ├── system_stm32l1xx.d
│ │ │ ├── system_stm32l1xx.o
│ │ │ ├── usart.crf
│ │ │ ├── usart.d
│ │ │ └── usart.o
│ │ ├── EXTI_KEY.uvguix.Administrator
│ │ ├── EXTI_KEY.uvguix.QW
│ │ ├── EXTI_KEY.uvguix.Waiman
│ │ ├── EXTI_KEY.uvoptx
│ │ ├── EXTI_KEY.uvprojx
│ │ ├── JLinkLog.txt
│ │ ├── JLinkSettings.ini
│ │ ├── RTE
│ │ │ └── _EXTI_KEY
│ │ │ └── RTE_Components.h
│ │ ├── startup_stm32l151xb.lst
│ │ └── startup_stm32l151xb.s
│ └── Src
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ └── usart.c
├── GPIO
│ └── LED
│ ├── BSP
│ │ ├── BSP_drive.c
│ │ ├── BSP_drive.h
│ │ ├── DS1307.c
│ │ ├── DS1307.h
│ │ ├── SHT2x.c
│ │ └── SHT2x.h
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_spi_ex.h
│ │ │ ├── stm32l1xx_hal_spi.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_spi.c
│ │ ├── stm32l1xx_hal_spi_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── EWARM
│ │ ├── LED
│ │ │ ├── Exe
│ │ │ │ ├── LED.hex
│ │ │ │ ├── LED.out
│ │ │ │ └── LED.sim
│ │ │ └── Obj
│ │ │ └── LED.pbd.browse
│ │ ├── LED.ewd
│ │ ├── LED.ewp
│ │ ├── LED.ewt
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── LED.crun
│ │ │ ├── LED.dbgdt
│ │ │ ├── LED.dni
│ │ │ ├── LED.LED.cspy.bat
│ │ │ ├── LED.LED.driver.xcl
│ │ │ ├── LED.LED.general.xcl
│ │ │ ├── LED_LED.jlink
│ │ │ ├── Project.wsdt
│ │ │ └── Project.wspos
│ │ ├── stm32l151xb_flash.icf
│ │ └── stm32l151xb_sram.icf
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── spi.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── LED.ioc
│ ├── MDK-ARM
│ │ ├── JLinkLog.txt
│ │ ├── JLinkSettings.ini
│ │ ├── LED
│ │ │ ├── bsp_drive.crf
│ │ │ ├── bsp_drive.d
│ │ │ ├── bsp_drive.o
│ │ │ ├── ExtDll.iex
│ │ │ ├── gpio.crf
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ ├── i2c.crf
│ │ │ ├── i2c.d
│ │ │ ├── i2c.o
│ │ │ ├── LED.axf
│ │ │ ├── LED.build_log.htm
│ │ │ ├── LED.hex
│ │ │ ├── LED.htm
│ │ │ ├── LED_LED.dep
│ │ │ ├── LED.lnp
│ │ │ ├── LED.map
│ │ │ ├── LED.sct
│ │ │ ├── main.crf
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── spi.crf
│ │ │ ├── spi.d
│ │ │ ├── spi.o
│ │ │ ├── startup_stm32l151xb.d
│ │ │ ├── startup_stm32l151xb.o
│ │ │ ├── stm32l1xx_hal_cortex.crf
│ │ │ ├── stm32l1xx_hal_cortex.d
│ │ │ ├── stm32l1xx_hal_cortex.o
│ │ │ ├── stm32l1xx_hal.crf
│ │ │ ├── stm32l1xx_hal.d
│ │ │ ├── stm32l1xx_hal_dma.crf
│ │ │ ├── stm32l1xx_hal_dma.d
│ │ │ ├── stm32l1xx_hal_dma.o
│ │ │ ├── stm32l1xx_hal_flash.crf
│ │ │ ├── stm32l1xx_hal_flash.d
│ │ │ ├── stm32l1xx_hal_flash_ex.crf
│ │ │ ├── stm32l1xx_hal_flash_ex.d
│ │ │ ├── stm32l1xx_hal_flash_ex.o
│ │ │ ├── stm32l1xx_hal_flash.o
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.crf
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.d
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.o
│ │ │ ├── stm32l1xx_hal_gpio.crf
│ │ │ ├── stm32l1xx_hal_gpio.d
│ │ │ ├── stm32l1xx_hal_gpio.o
│ │ │ ├── stm32l1xx_hal_i2c.crf
│ │ │ ├── stm32l1xx_hal_i2c.d
│ │ │ ├── stm32l1xx_hal_i2c.o
│ │ │ ├── stm32l1xx_hal_msp.crf
│ │ │ ├── stm32l1xx_hal_msp.d
│ │ │ ├── stm32l1xx_hal_msp.o
│ │ │ ├── stm32l1xx_hal.o
│ │ │ ├── stm32l1xx_hal_pwr.crf
│ │ │ ├── stm32l1xx_hal_pwr.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.crf
│ │ │ ├── stm32l1xx_hal_pwr_ex.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.o
│ │ │ ├── stm32l1xx_hal_pwr.o
│ │ │ ├── stm32l1xx_hal_rcc.crf
│ │ │ ├── stm32l1xx_hal_rcc.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.crf
│ │ │ ├── stm32l1xx_hal_rcc_ex.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.o
│ │ │ ├── stm32l1xx_hal_rcc.o
│ │ │ ├── stm32l1xx_hal_rtc.crf
│ │ │ ├── stm32l1xx_hal_rtc.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.crf
│ │ │ ├── stm32l1xx_hal_rtc_ex.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.o
│ │ │ ├── stm32l1xx_hal_rtc.o
│ │ │ ├── stm32l1xx_hal_spi.crf
│ │ │ ├── stm32l1xx_hal_spi.d
│ │ │ ├── stm32l1xx_hal_spi_ex.crf
│ │ │ ├── stm32l1xx_hal_spi_ex.d
│ │ │ ├── stm32l1xx_hal_spi_ex.o
│ │ │ ├── stm32l1xx_hal_spi.o
│ │ │ ├── stm32l1xx_hal_tim.crf
│ │ │ ├── stm32l1xx_hal_tim.d
│ │ │ ├── stm32l1xx_hal_tim_ex.crf
│ │ │ ├── stm32l1xx_hal_tim_ex.d
│ │ │ ├── stm32l1xx_hal_tim_ex.o
│ │ │ ├── stm32l1xx_hal_tim.o
│ │ │ ├── stm32l1xx_hal_uart.crf
│ │ │ ├── stm32l1xx_hal_uart.d
│ │ │ ├── stm32l1xx_hal_uart.o
│ │ │ ├── stm32l1xx_it.crf
│ │ │ ├── stm32l1xx_it.d
│ │ │ ├── stm32l1xx_it.o
│ │ │ ├── system_stm32l1xx.crf
│ │ │ ├── system_stm32l1xx.d
│ │ │ ├── system_stm32l1xx.o
│ │ │ ├── usart.crf
│ │ │ ├── usart.d
│ │ │ └── usart.o
│ │ ├── LED.uvguix.Administrator
│ │ ├── LED.uvguix.Waiman
│ │ ├── LED.uvoptx
│ │ ├── LED.uvprojx
│ │ ├── RTE
│ │ │ └── RTE_Components.h
│ │ ├── startup_stm32l151xb.lst
│ │ └── startup_stm32l151xb.s
│ └── Src
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ └── usart.c
├── I2C
│ └── EEPROM
│ ├── BSP
│ │ ├── BSP_drive.c
│ │ ├── BSP_drive.h
│ │ ├── DS1307.c
│ │ ├── DS1307.h
│ │ ├── SHT2x.c
│ │ └── SHT2x.h
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_spi_ex.h
│ │ │ ├── stm32l1xx_hal_spi.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_spi.c
│ │ ├── stm32l1xx_hal_spi_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── EEPROM.ioc
│ ├── EWARM
│ │ ├── EEPROM
│ │ │ ├── Exe
│ │ │ │ ├── EEPROM.out
│ │ │ │ └── EEPROM.sim
│ │ │ └── Obj
│ │ │ ├── EEPROM.pbd
│ │ │ └── EEPROM.pbd.browse
│ │ ├── EEPROM.ewd
│ │ ├── EEPROM.ewp
│ │ ├── EEPROM.ewt
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── EEPROM.crun
│ │ │ ├── EEPROM.dbgdt
│ │ │ ├── EEPROM.dni
│ │ │ ├── EEPROM.EEPROM.cspy.bat
│ │ │ ├── EEPROM.EEPROM.driver.xcl
│ │ │ ├── EEPROM.EEPROM.general.xcl
│ │ │ ├── EEPROM_EEPROM.jlink
│ │ │ ├── Project.wsdt
│ │ │ └── Project.wspos
│ │ ├── stm32l151xb_flash.icf
│ │ └── stm32l151xb_sram.icf
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── spi.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── MDK-ARM
│ │ ├── EEPROM.uvguix.Waiman
│ │ ├── EEPROM.uvoptx
│ │ ├── EEPROM.uvprojx
│ │ ├── JLinkSettings.ini
│ │ ├── RTE
│ │ │ └── RTE_Components.h
│ │ └── startup_stm32l151xb.s
│ └── Src
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ └── usart.c
├── LED
│ ├── BSP
│ │ ├── BSP_drive.c
│ │ ├── BSP_drive.h
│ │ ├── DS1307.c
│ │ ├── DS1307.h
│ │ ├── SHT2x.c
│ │ └── SHT2x.h
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_spi_ex.h
│ │ │ ├── stm32l1xx_hal_spi.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_spi.c
│ │ ├── stm32l1xx_hal_spi_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── EWARM
│ │ ├── LED
│ │ │ ├── Exe
│ │ │ │ ├── LED.hex
│ │ │ │ ├── LED.out
│ │ │ │ └── LED.sim
│ │ │ └── Obj
│ │ │ └── LED.pbd.browse
│ │ ├── LED.ewd
│ │ ├── LED.ewp
│ │ ├── LED.ewt
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── LED.crun
│ │ │ ├── LED.dbgdt
│ │ │ ├── LED.dni
│ │ │ ├── LED.LED.cspy.bat
│ │ │ ├── LED.LED.driver.xcl
│ │ │ ├── LED.LED.general.xcl
│ │ │ ├── LED_LED.jlink
│ │ │ ├── Project.wsdt
│ │ │ └── Project.wspos
│ │ ├── stm32l151xb_flash.icf
│ │ └── stm32l151xb_sram.icf
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── spi.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── LED.ioc
│ ├── MDK-ARM
│ │ ├── JLinkSettings.ini
│ │ ├── LED
│ │ │ ├── bsp_drive.crf
│ │ │ ├── bsp_drive.d
│ │ │ ├── bsp_drive.o
│ │ │ ├── gpio.crf
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ ├── i2c.crf
│ │ │ ├── i2c.d
│ │ │ ├── i2c.o
│ │ │ ├── LED.axf
│ │ │ ├── LED.build_log.htm
│ │ │ ├── LED.hex
│ │ │ ├── LED.htm
│ │ │ ├── LED_LED.dep
│ │ │ ├── LED.lnp
│ │ │ ├── LED.map
│ │ │ ├── LED.sct
│ │ │ ├── main.crf
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── spi.crf
│ │ │ ├── spi.d
│ │ │ ├── spi.o
│ │ │ ├── startup_stm32l151xb.d
│ │ │ ├── startup_stm32l151xb.o
│ │ │ ├── stm32l1xx_hal_cortex.crf
│ │ │ ├── stm32l1xx_hal_cortex.d
│ │ │ ├── stm32l1xx_hal_cortex.o
│ │ │ ├── stm32l1xx_hal.crf
│ │ │ ├── stm32l1xx_hal.d
│ │ │ ├── stm32l1xx_hal_dma.crf
│ │ │ ├── stm32l1xx_hal_dma.d
│ │ │ ├── stm32l1xx_hal_dma.o
│ │ │ ├── stm32l1xx_hal_flash.crf
│ │ │ ├── stm32l1xx_hal_flash.d
│ │ │ ├── stm32l1xx_hal_flash_ex.crf
│ │ │ ├── stm32l1xx_hal_flash_ex.d
│ │ │ ├── stm32l1xx_hal_flash_ex.o
│ │ │ ├── stm32l1xx_hal_flash.o
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.crf
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.d
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.o
│ │ │ ├── stm32l1xx_hal_gpio.crf
│ │ │ ├── stm32l1xx_hal_gpio.d
│ │ │ ├── stm32l1xx_hal_gpio.o
│ │ │ ├── stm32l1xx_hal_i2c.crf
│ │ │ ├── stm32l1xx_hal_i2c.d
│ │ │ ├── stm32l1xx_hal_i2c.o
│ │ │ ├── stm32l1xx_hal_msp.crf
│ │ │ ├── stm32l1xx_hal_msp.d
│ │ │ ├── stm32l1xx_hal_msp.o
│ │ │ ├── stm32l1xx_hal.o
│ │ │ ├── stm32l1xx_hal_pwr.crf
│ │ │ ├── stm32l1xx_hal_pwr.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.crf
│ │ │ ├── stm32l1xx_hal_pwr_ex.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.o
│ │ │ ├── stm32l1xx_hal_pwr.o
│ │ │ ├── stm32l1xx_hal_rcc.crf
│ │ │ ├── stm32l1xx_hal_rcc.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.crf
│ │ │ ├── stm32l1xx_hal_rcc_ex.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.o
│ │ │ ├── stm32l1xx_hal_rcc.o
│ │ │ ├── stm32l1xx_hal_rtc.crf
│ │ │ ├── stm32l1xx_hal_rtc.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.crf
│ │ │ ├── stm32l1xx_hal_rtc_ex.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.o
│ │ │ ├── stm32l1xx_hal_rtc.o
│ │ │ ├── stm32l1xx_hal_spi.crf
│ │ │ ├── stm32l1xx_hal_spi.d
│ │ │ ├── stm32l1xx_hal_spi_ex.crf
│ │ │ ├── stm32l1xx_hal_spi_ex.d
│ │ │ ├── stm32l1xx_hal_spi_ex.o
│ │ │ ├── stm32l1xx_hal_spi.o
│ │ │ ├── stm32l1xx_hal_tim.crf
│ │ │ ├── stm32l1xx_hal_tim.d
│ │ │ ├── stm32l1xx_hal_tim_ex.crf
│ │ │ ├── stm32l1xx_hal_tim_ex.d
│ │ │ ├── stm32l1xx_hal_tim_ex.o
│ │ │ ├── stm32l1xx_hal_tim.o
│ │ │ ├── stm32l1xx_hal_uart.crf
│ │ │ ├── stm32l1xx_hal_uart.d
│ │ │ ├── stm32l1xx_hal_uart.o
│ │ │ ├── stm32l1xx_it.crf
│ │ │ ├── stm32l1xx_it.d
│ │ │ ├── stm32l1xx_it.o
│ │ │ ├── system_stm32l1xx.crf
│ │ │ ├── system_stm32l1xx.d
│ │ │ ├── system_stm32l1xx.o
│ │ │ ├── usart.crf
│ │ │ ├── usart.d
│ │ │ └── usart.o
│ │ ├── LED.uvguix.QW
│ │ ├── LED.uvguix.Waiman
│ │ ├── LED.uvguix.win7
│ │ ├── LED.uvoptx
│ │ ├── LED.uvprojx
│ │ ├── RTE
│ │ │ └── _LED
│ │ │ └── RTE_Components.h
│ │ ├── startup_stm32l151xb.lst
│ │ └── startup_stm32l151xb.s
│ └── Src
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ └── usart.c
├── NRF24_Rx
│ ├── BSP
│ │ ├── BSP_drive.c
│ │ ├── BSP_drive.h
│ │ ├── NRF24L01.c
│ │ └── NRF24L01.h
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xb.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_i2c.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_spi_ex.h
│ │ │ ├── stm32l1xx_hal_spi.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_i2c.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_spi.c
│ │ ├── stm32l1xx_hal_spi_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── EWARM
│ │ ├── NRF24_Rx
│ │ │ ├── Exe
│ │ │ │ └── NRF24_Rx.out
│ │ │ └── Obj
│ │ │ ├── NRF24_Rx.pbd
│ │ │ └── NRF24_Rx.pbd.browse
│ │ ├── NRF24_Rx.ewd
│ │ ├── NRF24_Rx.ewp
│ │ ├── NRF24_Rx.ewt
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── NRF24_Rx.crun
│ │ │ ├── NRF24_Rx.dbgdt
│ │ │ ├── NRF24_Rx.dni
│ │ │ ├── NRF24_Rx.NRF24_Rx.cspy.bat
│ │ │ ├── NRF24_Rx.NRF24_Rx.driver.xcl
│ │ │ ├── NRF24_Rx.NRF24_Rx.general.xcl
│ │ │ ├── Project.wsdt
│ │ │ └── Project.wspos
│ │ ├── stm32l151xb_flash.icf
│ │ └── stm32l151xb_sram.icf
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── i2c.h
│ │ ├── mxconstants.h
│ │ ├── spi.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── NRF24_Rx.ioc
│ └── Src
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ └── usart.c
├── POWER
│ ├── LP.ioc
│ ├── LPRUN
│ │ ├── Drivers
│ │ │ ├── CMSIS
│ │ │ │ ├── Device
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32L1xx
│ │ │ │ │ ├── Include
│ │ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ │ └── Source
│ │ │ │ │ └── Templates
│ │ │ │ │ ├── arm
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ ├── iar
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ └── system_stm32l1xx.c
│ │ │ │ └── Include
│ │ │ │ ├── arm_common_tables.h
│ │ │ │ ├── arm_const_structs.h
│ │ │ │ ├── arm_math.h
│ │ │ │ ├── core_cm0.h
│ │ │ │ ├── core_cm0plus.h
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── core_cm4.h
│ │ │ │ ├── core_cm7.h
│ │ │ │ ├── core_cmFunc.h
│ │ │ │ ├── core_cmInstr.h
│ │ │ │ ├── core_cmSimd.h
│ │ │ │ ├── core_sc000.h
│ │ │ │ └── core_sc300.h
│ │ │ └── STM32L1xx_HAL_Driver
│ │ │ ├── Inc
│ │ │ │ ├── Legacy
│ │ │ │ │ └── stm32_hal_legacy.h
│ │ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ │ ├── stm32l1xx_hal_def.h
│ │ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ │ ├── stm32l1xx_hal.h
│ │ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ │ └── stm32l1xx_hal_uart.h
│ │ │ └── Src
│ │ │ ├── stm32l1xx_hal.c
│ │ │ ├── stm32l1xx_hal_cortex.c
│ │ │ ├── stm32l1xx_hal_dma.c
│ │ │ ├── stm32l1xx_hal_flash.c
│ │ │ ├── stm32l1xx_hal_flash_ex.c
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ │ ├── stm32l1xx_hal_gpio.c
│ │ │ ├── stm32l1xx_hal_pwr.c
│ │ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ │ ├── stm32l1xx_hal_rcc.c
│ │ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ │ ├── stm32l1xx_hal_rtc.c
│ │ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ │ ├── stm32l1xx_hal_tim.c
│ │ │ ├── stm32l1xx_hal_tim_ex.c
│ │ │ └── stm32l1xx_hal_uart.c
│ │ ├── EWARM
│ │ │ ├── LPRUN
│ │ │ │ ├── Exe
│ │ │ │ │ └── LPRUN.out
│ │ │ │ └── Obj
│ │ │ │ ├── LPRUN.pbd
│ │ │ │ └── LPRUN.pbd.browse
│ │ │ ├── LPRUN Configuration
│ │ │ │ ├── Exe
│ │ │ │ │ ├── LPRUN Configuration.out
│ │ │ │ │ └── LPRUN Configuration.sim
│ │ │ │ └── Obj
│ │ │ │ ├── LPRUN.pbd
│ │ │ │ └── LPRUN.pbd.browse
│ │ │ ├── LPRUN.ewd
│ │ │ ├── LPRUN.ewp
│ │ │ ├── LPRUN.ewt
│ │ │ ├── Project.eww
│ │ │ ├── settings
│ │ │ │ ├── LPRUN.crun
│ │ │ │ ├── LPRUN.dbgdt
│ │ │ │ ├── LPRUN.dni
│ │ │ │ ├── LPRUN.LPRUN Configuration.cspy.bat
│ │ │ │ ├── LPRUN.LPRUN Configuration.driver.xcl
│ │ │ │ ├── LPRUN.LPRUN Configuration.general.xcl
│ │ │ │ ├── LPRUN_LPRUN Configuration.jlink
│ │ │ │ ├── LPRUN.LPRUN.cspy.bat
│ │ │ │ ├── LPRUN.LPRUN.driver.xcl
│ │ │ │ ├── LPRUN.LPRUN.general.xcl
│ │ │ │ ├── Project.wsdt
│ │ │ │ └── Project.wspos
│ │ │ ├── stm32l151xba_flash.icf
│ │ │ └── stm32l151xba_sram.icf
│ │ ├── Inc
│ │ │ ├── gpio.h
│ │ │ ├── mxconstants.h
│ │ │ ├── stm32l1xx_hal_conf.h
│ │ │ ├── stm32l1xx_it.h
│ │ │ └── usart.h
│ │ ├── LPRUN.ioc
│ │ ├── MDK-ARM
│ │ │ ├── LPRUN.uvoptx
│ │ │ ├── LPRUN.uvprojx
│ │ │ └── startup_stm32l151xba.s
│ │ └── Src
│ │ ├── gpio.c
│ │ ├── main.c
│ │ ├── stm32l1xx_hal_msp.c
│ │ ├── stm32l1xx_it.c
│ │ └── usart.c
│ ├── STANDBY-EXTI
│ │ ├── Drivers
│ │ │ ├── CMSIS
│ │ │ │ ├── Device
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32L1xx
│ │ │ │ │ ├── Include
│ │ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ │ └── Source
│ │ │ │ │ └── Templates
│ │ │ │ │ ├── arm
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ ├── iar
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ └── system_stm32l1xx.c
│ │ │ │ └── Include
│ │ │ │ ├── arm_common_tables.h
│ │ │ │ ├── arm_const_structs.h
│ │ │ │ ├── arm_math.h
│ │ │ │ ├── core_cm0.h
│ │ │ │ ├── core_cm0plus.h
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── core_cm4.h
│ │ │ │ ├── core_cm7.h
│ │ │ │ ├── core_cmFunc.h
│ │ │ │ ├── core_cmInstr.h
│ │ │ │ ├── core_cmSimd.h
│ │ │ │ ├── core_sc000.h
│ │ │ │ └── core_sc300.h
│ │ │ └── STM32L1xx_HAL_Driver
│ │ │ ├── Inc
│ │ │ │ ├── Legacy
│ │ │ │ │ └── stm32_hal_legacy.h
│ │ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ │ ├── stm32l1xx_hal_def.h
│ │ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ │ ├── stm32l1xx_hal.h
│ │ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ │ └── stm32l1xx_hal_uart.h
│ │ │ └── Src
│ │ │ ├── stm32l1xx_hal.c
│ │ │ ├── stm32l1xx_hal_cortex.c
│ │ │ ├── stm32l1xx_hal_dma.c
│ │ │ ├── stm32l1xx_hal_flash.c
│ │ │ ├── stm32l1xx_hal_flash_ex.c
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ │ ├── stm32l1xx_hal_gpio.c
│ │ │ ├── stm32l1xx_hal_pwr.c
│ │ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ │ ├── stm32l1xx_hal_rcc.c
│ │ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ │ ├── stm32l1xx_hal_rtc.c
│ │ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ │ ├── stm32l1xx_hal_tim.c
│ │ │ ├── stm32l1xx_hal_tim_ex.c
│ │ │ └── stm32l1xx_hal_uart.c
│ │ ├── EWARM
│ │ │ ├── Project.eww
│ │ │ ├── settings
│ │ │ │ ├── Project.wsdt
│ │ │ │ ├── Project.wspos
│ │ │ │ ├── STANDBY-EXTI.crun
│ │ │ │ ├── STANDBY-EXTI.dbgdt
│ │ │ │ ├── STANDBY-EXTI.dni
│ │ │ │ ├── STANDBY-EXTI.STANDBY-EXTI Configuration.cspy.bat
│ │ │ │ ├── STANDBY-EXTI.STANDBY-EXTI Configuration.driver.xcl
│ │ │ │ ├── STANDBY-EXTI.STANDBY-EXTI Configuration.general.xcl
│ │ │ │ ├── STANDBY-EXTI_STANDBY-EXTI Configuration.jlink
│ │ │ │ ├── STANDBY-EXTI.STANDBY-EXTI.cspy.bat
│ │ │ │ ├── STANDBY-EXTI.STANDBY-EXTI.driver.xcl
│ │ │ │ └── STANDBY-EXTI.STANDBY-EXTI.general.xcl
│ │ │ ├── STANDBY-EXTI
│ │ │ │ ├── Exe
│ │ │ │ │ └── STANDBY-EXTI.out
│ │ │ │ └── Obj
│ │ │ │ └── STANDBY-EXTI.pbd.browse
│ │ │ ├── STANDBY-EXTI Configuration
│ │ │ │ ├── Exe
│ │ │ │ │ ├── STANDBY-EXTI Configuration.out
│ │ │ │ │ └── STANDBY-EXTI Configuration.sim
│ │ │ │ └── Obj
│ │ │ │ ├── STANDBY-EXTI.pbd
│ │ │ │ └── STANDBY-EXTI.pbd.browse
│ │ │ ├── STANDBY-EXTI.ewd
│ │ │ ├── STANDBY-EXTI.ewp
│ │ │ ├── STANDBY-EXTI.ewt
│ │ │ ├── stm32l151xba_flash.icf
│ │ │ └── stm32l151xba_sram.icf
│ │ ├── Inc
│ │ │ ├── gpio.h
│ │ │ ├── mxconstants.h
│ │ │ ├── stm32l1xx_hal_conf.h
│ │ │ ├── stm32l1xx_it.h
│ │ │ └── usart.h
│ │ ├── MDK-ARM
│ │ │ ├── STANDBY-EXTI.uvoptx
│ │ │ ├── STANDBY-EXTI.uvprojx
│ │ │ └── startup_stm32l151xba.s
│ │ ├── Src
│ │ │ ├── gpio.c
│ │ │ ├── main.c
│ │ │ ├── stm32l1xx_hal_msp.c
│ │ │ ├── stm32l1xx_it.c
│ │ │ └── usart.c
│ │ └── STANDBY-EXTI.ioc
│ ├── STANDBY-RTC
│ │ ├── Drivers
│ │ │ ├── CMSIS
│ │ │ │ ├── Device
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32L1xx
│ │ │ │ │ ├── Include
│ │ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ │ └── Source
│ │ │ │ │ └── Templates
│ │ │ │ │ ├── arm
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ ├── iar
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ └── system_stm32l1xx.c
│ │ │ │ └── Include
│ │ │ │ ├── arm_common_tables.h
│ │ │ │ ├── arm_const_structs.h
│ │ │ │ ├── arm_math.h
│ │ │ │ ├── core_cm0.h
│ │ │ │ ├── core_cm0plus.h
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── core_cm4.h
│ │ │ │ ├── core_cm7.h
│ │ │ │ ├── core_cmFunc.h
│ │ │ │ ├── core_cmInstr.h
│ │ │ │ ├── core_cmSimd.h
│ │ │ │ ├── core_sc000.h
│ │ │ │ └── core_sc300.h
│ │ │ └── STM32L1xx_HAL_Driver
│ │ │ ├── Inc
│ │ │ │ ├── Legacy
│ │ │ │ │ └── stm32_hal_legacy.h
│ │ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ │ ├── stm32l1xx_hal_def.h
│ │ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ │ ├── stm32l1xx_hal.h
│ │ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ │ └── stm32l1xx_hal_uart.h
│ │ │ └── Src
│ │ │ ├── stm32l1xx_hal.c
│ │ │ ├── stm32l1xx_hal_cortex.c
│ │ │ ├── stm32l1xx_hal_dma.c
│ │ │ ├── stm32l1xx_hal_flash.c
│ │ │ ├── stm32l1xx_hal_flash_ex.c
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ │ ├── stm32l1xx_hal_gpio.c
│ │ │ ├── stm32l1xx_hal_pwr.c
│ │ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ │ ├── stm32l1xx_hal_rcc.c
│ │ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ │ ├── stm32l1xx_hal_rtc.c
│ │ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ │ ├── stm32l1xx_hal_tim.c
│ │ │ ├── stm32l1xx_hal_tim_ex.c
│ │ │ └── stm32l1xx_hal_uart.c
│ │ ├── EWARM
│ │ │ ├── Project.eww
│ │ │ ├── settings
│ │ │ │ ├── Project.wsdt
│ │ │ │ ├── Project.wspos
│ │ │ │ ├── STANDBY-RTC.crun
│ │ │ │ ├── STANDBY-RTC.dbgdt
│ │ │ │ ├── STANDBY-RTC.dni
│ │ │ │ ├── STANDBY-RTC.STANDBY-RTC Configuration.cspy.bat
│ │ │ │ ├── STANDBY-RTC.STANDBY-RTC Configuration.driver.xcl
│ │ │ │ ├── STANDBY-RTC.STANDBY-RTC Configuration.general.xcl
│ │ │ │ ├── STANDBY-RTC_STANDBY-RTC Configuration.jlink
│ │ │ │ ├── STANDBY-RTC.STANDBY-RTC.cspy.bat
│ │ │ │ ├── STANDBY-RTC.STANDBY-RTC.driver.xcl
│ │ │ │ └── STANDBY-RTC.STANDBY-RTC.general.xcl
│ │ │ ├── STANDBY-RTC
│ │ │ │ ├── Exe
│ │ │ │ │ └── STANDBY-RTC.out
│ │ │ │ └── Obj
│ │ │ │ ├── STANDBY-RTC.pbd
│ │ │ │ └── STANDBY-RTC.pbd.browse
│ │ │ ├── STANDBY-RTC Configuration
│ │ │ │ ├── Exe
│ │ │ │ │ ├── STANDBY-RTC Configuration.out
│ │ │ │ │ └── STANDBY-RTC Configuration.sim
│ │ │ │ └── Obj
│ │ │ │ ├── STANDBY-RTC.pbd
│ │ │ │ └── STANDBY-RTC.pbd.browse
│ │ │ ├── STANDBY-RTC.ewd
│ │ │ ├── STANDBY-RTC.ewp
│ │ │ ├── STANDBY-RTC.ewt
│ │ │ ├── stm32l151xba_flash.icf
│ │ │ └── stm32l151xba_sram.icf
│ │ ├── Inc
│ │ │ ├── gpio.h
│ │ │ ├── mxconstants.h
│ │ │ ├── rtc.h
│ │ │ ├── stm32l1xx_hal_conf.h
│ │ │ ├── stm32l1xx_it.h
│ │ │ └── usart.h
│ │ ├── MDK-ARM
│ │ │ ├── RTE
│ │ │ │ └── _STANDBY-RTC
│ │ │ │ └── RTE_Components.h
│ │ │ ├── STANDBY-RTC
│ │ │ │ ├── gpio.crf
│ │ │ │ ├── gpio.d
│ │ │ │ ├── gpio.o
│ │ │ │ ├── main.crf
│ │ │ │ ├── main.d
│ │ │ │ ├── main.o
│ │ │ │ ├── rtc.crf
│ │ │ │ ├── rtc.d
│ │ │ │ ├── rtc.o
│ │ │ │ ├── STANDBY-RTC.axf
│ │ │ │ ├── STANDBY-RTC.build_log.htm
│ │ │ │ ├── STANDBY-RTC.htm
│ │ │ │ ├── STANDBY-RTC.lnp
│ │ │ │ ├── STANDBY-RTC.map
│ │ │ │ ├── STANDBY-RTC.sct
│ │ │ │ ├── STANDBY-RTC_STANDBY-RTC.dep
│ │ │ │ ├── startup_stm32l151xba.d
│ │ │ │ ├── startup_stm32l151xba.o
│ │ │ │ ├── stm32l1xx_hal_cortex.crf
│ │ │ │ ├── stm32l1xx_hal_cortex.d
│ │ │ │ ├── stm32l1xx_hal_cortex.o
│ │ │ │ ├── stm32l1xx_hal.crf
│ │ │ │ ├── stm32l1xx_hal.d
│ │ │ │ ├── stm32l1xx_hal_dma.crf
│ │ │ │ ├── stm32l1xx_hal_dma.d
│ │ │ │ ├── stm32l1xx_hal_dma.o
│ │ │ │ ├── stm32l1xx_hal_flash.crf
│ │ │ │ ├── stm32l1xx_hal_flash.d
│ │ │ │ ├── stm32l1xx_hal_flash_ex.crf
│ │ │ │ ├── stm32l1xx_hal_flash_ex.d
│ │ │ │ ├── stm32l1xx_hal_flash_ex.o
│ │ │ │ ├── stm32l1xx_hal_flash.o
│ │ │ │ ├── stm32l1xx_hal_flash_ramfunc.crf
│ │ │ │ ├── stm32l1xx_hal_flash_ramfunc.d
│ │ │ │ ├── stm32l1xx_hal_flash_ramfunc.o
│ │ │ │ ├── stm32l1xx_hal_gpio.crf
│ │ │ │ ├── stm32l1xx_hal_gpio.d
│ │ │ │ ├── stm32l1xx_hal_gpio.o
│ │ │ │ ├── stm32l1xx_hal_msp.crf
│ │ │ │ ├── stm32l1xx_hal_msp.d
│ │ │ │ ├── stm32l1xx_hal_msp.o
│ │ │ │ ├── stm32l1xx_hal.o
│ │ │ │ ├── stm32l1xx_hal_pwr.crf
│ │ │ │ ├── stm32l1xx_hal_pwr.d
│ │ │ │ ├── stm32l1xx_hal_pwr_ex.crf
│ │ │ │ ├── stm32l1xx_hal_pwr_ex.d
│ │ │ │ ├── stm32l1xx_hal_pwr_ex.o
│ │ │ │ ├── stm32l1xx_hal_pwr.o
│ │ │ │ ├── stm32l1xx_hal_rcc.crf
│ │ │ │ ├── stm32l1xx_hal_rcc.d
│ │ │ │ ├── stm32l1xx_hal_rcc_ex.crf
│ │ │ │ ├── stm32l1xx_hal_rcc_ex.d
│ │ │ │ ├── stm32l1xx_hal_rcc_ex.o
│ │ │ │ ├── stm32l1xx_hal_rcc.o
│ │ │ │ ├── stm32l1xx_hal_rtc.crf
│ │ │ │ ├── stm32l1xx_hal_rtc.d
│ │ │ │ ├── stm32l1xx_hal_rtc_ex.crf
│ │ │ │ ├── stm32l1xx_hal_rtc_ex.d
│ │ │ │ ├── stm32l1xx_hal_rtc_ex.o
│ │ │ │ ├── stm32l1xx_hal_rtc.o
│ │ │ │ ├── stm32l1xx_hal_tim.crf
│ │ │ │ ├── stm32l1xx_hal_tim.d
│ │ │ │ ├── stm32l1xx_hal_tim_ex.crf
│ │ │ │ ├── stm32l1xx_hal_tim_ex.d
│ │ │ │ ├── stm32l1xx_hal_tim_ex.o
│ │ │ │ ├── stm32l1xx_hal_tim.o
│ │ │ │ ├── stm32l1xx_hal_uart.crf
│ │ │ │ ├── stm32l1xx_hal_uart.d
│ │ │ │ ├── stm32l1xx_hal_uart.o
│ │ │ │ ├── stm32l1xx_it.crf
│ │ │ │ ├── stm32l1xx_it.d
│ │ │ │ ├── stm32l1xx_it.o
│ │ │ │ ├── system_stm32l1xx.crf
│ │ │ │ ├── system_stm32l1xx.d
│ │ │ │ ├── system_stm32l1xx.o
│ │ │ │ ├── usart.crf
│ │ │ │ ├── usart.d
│ │ │ │ └── usart.o
│ │ │ ├── STANDBY-RTC.uvguix.QW
│ │ │ ├── STANDBY-RTC.uvoptx
│ │ │ ├── STANDBY-RTC.uvprojx
│ │ │ ├── startup_stm32l151xba.lst
│ │ │ └── startup_stm32l151xba.s
│ │ ├── Src
│ │ │ ├── gpio.c
│ │ │ ├── main.c
│ │ │ ├── rtc.c
│ │ │ ├── stm32l1xx_hal_msp.c
│ │ │ ├── stm32l1xx_it.c
│ │ │ └── usart.c
│ │ └── STANDBY-RTC.ioc
│ ├── StopMode-EXTI
│ │ ├── Drivers
│ │ │ ├── CMSIS
│ │ │ │ ├── Device
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32L1xx
│ │ │ │ │ ├── Include
│ │ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ │ └── Source
│ │ │ │ │ └── Templates
│ │ │ │ │ ├── arm
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ ├── iar
│ │ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ │ └── system_stm32l1xx.c
│ │ │ │ └── Include
│ │ │ │ ├── arm_common_tables.h
│ │ │ │ ├── arm_const_structs.h
│ │ │ │ ├── arm_math.h
│ │ │ │ ├── core_cm0.h
│ │ │ │ ├── core_cm0plus.h
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── core_cm4.h
│ │ │ │ ├── core_cm7.h
│ │ │ │ ├── core_cmFunc.h
│ │ │ │ ├── core_cmInstr.h
│ │ │ │ ├── core_cmSimd.h
│ │ │ │ ├── core_sc000.h
│ │ │ │ └── core_sc300.h
│ │ │ └── STM32L1xx_HAL_Driver
│ │ │ ├── Inc
│ │ │ │ ├── Legacy
│ │ │ │ │ └── stm32_hal_legacy.h
│ │ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ │ ├── stm32l1xx_hal_def.h
│ │ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ │ ├── stm32l1xx_hal.h
│ │ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ │ └── stm32l1xx_hal_uart.h
│ │ │ └── Src
│ │ │ ├── stm32l1xx_hal.c
│ │ │ ├── stm32l1xx_hal_cortex.c
│ │ │ ├── stm32l1xx_hal_dma.c
│ │ │ ├── stm32l1xx_hal_flash.c
│ │ │ ├── stm32l1xx_hal_flash_ex.c
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ │ ├── stm32l1xx_hal_gpio.c
│ │ │ ├── stm32l1xx_hal_pwr.c
│ │ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ │ ├── stm32l1xx_hal_rcc.c
│ │ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ │ ├── stm32l1xx_hal_rtc.c
│ │ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ │ ├── stm32l1xx_hal_tim.c
│ │ │ ├── stm32l1xx_hal_tim_ex.c
│ │ │ └── stm32l1xx_hal_uart.c
│ │ ├── EWARM
│ │ │ ├── Project.eww
│ │ │ ├── settings
│ │ │ │ ├── Project.wsdt
│ │ │ │ ├── Project.wspos
│ │ │ │ ├── StopMode-EXTI.crun
│ │ │ │ ├── StopMode-EXTI.dbgdt
│ │ │ │ ├── StopMode-EXTI.dni
│ │ │ │ ├── StopMode-EXTI.StopMode-EXTI Configuration.cspy.bat
│ │ │ │ ├── StopMode-EXTI.StopMode-EXTI Configuration.driver.xcl
│ │ │ │ ├── StopMode-EXTI.StopMode-EXTI Configuration.general.xcl
│ │ │ │ ├── StopMode-EXTI_StopMode-EXTI Configuration.jlink
│ │ │ │ ├── StopMode-EXTI.StopMode-EXTI.cspy.bat
│ │ │ │ ├── StopMode-EXTI.StopMode-EXTI.driver.xcl
│ │ │ │ └── StopMode-EXTI.StopMode-EXTI.general.xcl
│ │ │ ├── stm32l151xba_flash.icf
│ │ │ ├── stm32l151xba_sram.icf
│ │ │ ├── StopMode-EXTI
│ │ │ │ └── Exe
│ │ │ │ └── StopMode-EXTI.out
│ │ │ ├── StopMode-EXTI Configuration
│ │ │ │ ├── Exe
│ │ │ │ │ ├── StopMode-EXTI Configuration.out
│ │ │ │ │ └── StopMode-EXTI Configuration.sim
│ │ │ │ └── Obj
│ │ │ │ ├── StopMode-EXTI.pbd
│ │ │ │ └── StopMode-EXTI.pbd.browse
│ │ │ ├── StopMode-EXTI.ewd
│ │ │ ├── StopMode-EXTI.ewp
│ │ │ └── StopMode-EXTI.ewt
│ │ ├── Inc
│ │ │ ├── gpio.h
│ │ │ ├── mxconstants.h
│ │ │ ├── stm32l1xx_hal_conf.h
│ │ │ ├── stm32l1xx_it.h
│ │ │ └── usart.h
│ │ ├── MDK-ARM
│ │ │ ├── RTE
│ │ │ │ └── RTE_Components.h
│ │ │ ├── startup_stm32l151xba.s
│ │ │ ├── StopMode-EXTI.uvguix.win7
│ │ │ ├── StopMode-EXTI.uvoptx
│ │ │ └── StopMode-EXTI.uvprojx
│ │ ├── Src
│ │ │ ├── gpio.c
│ │ │ ├── main.c
│ │ │ ├── stm32l1xx_hal_msp.c
│ │ │ ├── stm32l1xx_it.c
│ │ │ └── usart.c
│ │ └── StopMode-EXTI.ioc
│ └── StopMode-RTC
│ ├── Drivers
│ │ ├── CMSIS
│ │ │ ├── Device
│ │ │ │ └── ST
│ │ │ │ └── STM32L1xx
│ │ │ │ ├── Include
│ │ │ │ │ ├── stm32l100xba.h
│ │ │ │ │ ├── stm32l100xb.h
│ │ │ │ │ ├── stm32l100xc.h
│ │ │ │ │ ├── stm32l151xba.h
│ │ │ │ │ ├── stm32l151xb.h
│ │ │ │ │ ├── stm32l151xca.h
│ │ │ │ │ ├── stm32l151xc.h
│ │ │ │ │ ├── stm32l151xd.h
│ │ │ │ │ ├── stm32l151xdx.h
│ │ │ │ │ ├── stm32l151xe.h
│ │ │ │ │ ├── stm32l152xba.h
│ │ │ │ │ ├── stm32l152xb.h
│ │ │ │ │ ├── stm32l152xca.h
│ │ │ │ │ ├── stm32l152xc.h
│ │ │ │ │ ├── stm32l152xd.h
│ │ │ │ │ ├── stm32l152xdx.h
│ │ │ │ │ ├── stm32l152xe.h
│ │ │ │ │ ├── stm32l162xca.h
│ │ │ │ │ ├── stm32l162xc.h
│ │ │ │ │ ├── stm32l162xd.h
│ │ │ │ │ ├── stm32l162xdx.h
│ │ │ │ │ ├── stm32l162xe.h
│ │ │ │ │ ├── stm32l1xx.h
│ │ │ │ │ └── system_stm32l1xx.h
│ │ │ │ └── Source
│ │ │ │ └── Templates
│ │ │ │ ├── arm
│ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ ├── iar
│ │ │ │ │ └── startup_stm32l151xba.s
│ │ │ │ └── system_stm32l1xx.c
│ │ │ └── Include
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_const_structs.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ ├── core_cmSimd.h
│ │ │ ├── core_sc000.h
│ │ │ └── core_sc300.h
│ │ └── STM32L1xx_HAL_Driver
│ │ ├── Inc
│ │ │ ├── Legacy
│ │ │ │ └── stm32_hal_legacy.h
│ │ │ ├── stm32l1xx_hal_cortex.h
│ │ │ ├── stm32l1xx_hal_def.h
│ │ │ ├── stm32l1xx_hal_dma_ex.h
│ │ │ ├── stm32l1xx_hal_dma.h
│ │ │ ├── stm32l1xx_hal_flash_ex.h
│ │ │ ├── stm32l1xx_hal_flash.h
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ │ ├── stm32l1xx_hal_gpio.h
│ │ │ ├── stm32l1xx_hal.h
│ │ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ │ ├── stm32l1xx_hal_pwr.h
│ │ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ │ ├── stm32l1xx_hal_rcc.h
│ │ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ │ ├── stm32l1xx_hal_rtc.h
│ │ │ ├── stm32l1xx_hal_tim_ex.h
│ │ │ ├── stm32l1xx_hal_tim.h
│ │ │ └── stm32l1xx_hal_uart.h
│ │ └── Src
│ │ ├── stm32l1xx_hal.c
│ │ ├── stm32l1xx_hal_cortex.c
│ │ ├── stm32l1xx_hal_dma.c
│ │ ├── stm32l1xx_hal_flash.c
│ │ ├── stm32l1xx_hal_flash_ex.c
│ │ ├── stm32l1xx_hal_flash_ramfunc.c
│ │ ├── stm32l1xx_hal_gpio.c
│ │ ├── stm32l1xx_hal_pwr.c
│ │ ├── stm32l1xx_hal_pwr_ex.c
│ │ ├── stm32l1xx_hal_rcc.c
│ │ ├── stm32l1xx_hal_rcc_ex.c
│ │ ├── stm32l1xx_hal_rtc.c
│ │ ├── stm32l1xx_hal_rtc_ex.c
│ │ ├── stm32l1xx_hal_tim.c
│ │ ├── stm32l1xx_hal_tim_ex.c
│ │ └── stm32l1xx_hal_uart.c
│ ├── EWARM
│ │ ├── Project.eww
│ │ ├── settings
│ │ │ ├── Project.wsdt
│ │ │ ├── Project.wspos
│ │ │ ├── StopMode3.crun
│ │ │ ├── StopMode3.dbgdt
│ │ │ ├── StopMode3.dni
│ │ │ ├── StopMode3.StopMode3 Configuration.cspy.bat
│ │ │ ├── StopMode3.StopMode3 Configuration.driver.xcl
│ │ │ ├── StopMode3.StopMode3 Configuration.general.xcl
│ │ │ ├── StopMode3_StopMode3 Configuration.jlink
│ │ │ ├── StopMode-RTC.crun
│ │ │ ├── StopMode-RTC.dbgdt
│ │ │ ├── StopMode-RTC.dni
│ │ │ ├── StopMode-RTC.StopMode-RTC Configuration.cspy.bat
│ │ │ ├── StopMode-RTC.StopMode-RTC Configuration.driver.xcl
│ │ │ ├── StopMode-RTC.StopMode-RTC Configuration.general.xcl
│ │ │ ├── StopMode-RTC_StopMode-RTC Configuration.jlink
│ │ │ ├── StopMode-RTC.StopMode-RTC.cspy.bat
│ │ │ ├── StopMode-RTC.StopMode-RTC.driver.xcl
│ │ │ └── StopMode-RTC.StopMode-RTC.general.xcl
│ │ ├── stm32l151xba_flash.icf
│ │ ├── stm32l151xba_sram.icf
│ │ ├── StopMode3 Configuration
│ │ │ ├── Exe
│ │ │ │ ├── StopMode3 Configuration.out
│ │ │ │ └── StopMode3 Configuration.sim
│ │ │ └── Obj
│ │ │ ├── StopMode3.pbd
│ │ │ └── StopMode3.pbd.browse
│ │ ├── StopMode3.ewt
│ │ ├── StopMode-RTC
│ │ │ ├── Exe
│ │ │ │ └── StopMode-RTC.out
│ │ │ └── Obj
│ │ │ └── StopMode-RTC.pbd.browse
│ │ ├── StopMode-RTC Configuration
│ │ │ ├── Exe
│ │ │ │ ├── StopMode-RTC Configuration.out
│ │ │ │ └── StopMode-RTC Configuration.sim
│ │ │ └── Obj
│ │ │ ├── StopMode-RTC.pbd
│ │ │ └── StopMode-RTC.pbd.browse
│ │ ├── StopMode-RTC.ewd
│ │ ├── StopMode-RTC.ewp
│ │ └── StopMode-RTC.ewt
│ ├── Inc
│ │ ├── gpio.h
│ │ ├── mxconstants.h
│ │ ├── rtc.h
│ │ ├── stm32l1xx_hal_conf.h
│ │ ├── stm32l1xx_it.h
│ │ └── usart.h
│ ├── MDK-ARM
│ │ ├── RTE
│ │ │ └── _StopMode-RTC
│ │ │ └── RTE_Components.h
│ │ ├── startup_stm32l151xba.lst
│ │ ├── startup_stm32l151xba.s
│ │ ├── StopMode-RTC
│ │ │ ├── gpio.crf
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ ├── main.crf
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── rtc.crf
│ │ │ ├── rtc.d
│ │ │ ├── rtc.o
│ │ │ ├── startup_stm32l151xba.d
│ │ │ ├── startup_stm32l151xba.o
│ │ │ ├── stm32l1xx_hal_cortex.crf
│ │ │ ├── stm32l1xx_hal_cortex.d
│ │ │ ├── stm32l1xx_hal_cortex.o
│ │ │ ├── stm32l1xx_hal.crf
│ │ │ ├── stm32l1xx_hal.d
│ │ │ ├── stm32l1xx_hal_dma.crf
│ │ │ ├── stm32l1xx_hal_dma.d
│ │ │ ├── stm32l1xx_hal_dma.o
│ │ │ ├── stm32l1xx_hal_flash.crf
│ │ │ ├── stm32l1xx_hal_flash.d
│ │ │ ├── stm32l1xx_hal_flash_ex.crf
│ │ │ ├── stm32l1xx_hal_flash_ex.d
│ │ │ ├── stm32l1xx_hal_flash_ex.o
│ │ │ ├── stm32l1xx_hal_flash.o
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.crf
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.d
│ │ │ ├── stm32l1xx_hal_flash_ramfunc.o
│ │ │ ├── stm32l1xx_hal_gpio.crf
│ │ │ ├── stm32l1xx_hal_gpio.d
│ │ │ ├── stm32l1xx_hal_gpio.o
│ │ │ ├── stm32l1xx_hal_msp.crf
│ │ │ ├── stm32l1xx_hal_msp.d
│ │ │ ├── stm32l1xx_hal_msp.o
│ │ │ ├── stm32l1xx_hal.o
│ │ │ ├── stm32l1xx_hal_pwr.crf
│ │ │ ├── stm32l1xx_hal_pwr.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.crf
│ │ │ ├── stm32l1xx_hal_pwr_ex.d
│ │ │ ├── stm32l1xx_hal_pwr_ex.o
│ │ │ ├── stm32l1xx_hal_pwr.o
│ │ │ ├── stm32l1xx_hal_rcc.crf
│ │ │ ├── stm32l1xx_hal_rcc.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.crf
│ │ │ ├── stm32l1xx_hal_rcc_ex.d
│ │ │ ├── stm32l1xx_hal_rcc_ex.o
│ │ │ ├── stm32l1xx_hal_rcc.o
│ │ │ ├── stm32l1xx_hal_rtc.crf
│ │ │ ├── stm32l1xx_hal_rtc.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.crf
│ │ │ ├── stm32l1xx_hal_rtc_ex.d
│ │ │ ├── stm32l1xx_hal_rtc_ex.o
│ │ │ ├── stm32l1xx_hal_rtc.o
│ │ │ ├── stm32l1xx_hal_tim.crf
│ │ │ ├── stm32l1xx_hal_tim.d
│ │ │ ├── stm32l1xx_hal_tim_ex.crf
│ │ │ ├── stm32l1xx_hal_tim_ex.d
│ │ │ ├── stm32l1xx_hal_tim_ex.o
│ │ │ ├── stm32l1xx_hal_tim.o
│ │ │ ├── stm32l1xx_hal_uart.crf
│ │ │ ├── stm32l1xx_hal_uart.d
│ │ │ ├── stm32l1xx_hal_uart.o
│ │ │ ├── stm32l1xx_it.crf
│ │ │ ├── stm32l1xx_it.d
│ │ │ ├── stm32l1xx_it.o
│ │ │ ├── StopMode-RTC.axf
│ │ │ ├── StopMode-RTC.build_log.htm
│ │ │ ├── StopMode-RTC.htm
│ │ │ ├── StopMode-RTC.lnp
│ │ │ ├── StopMode-RTC.map
│ │ │ ├── StopMode-RTC.sct
│ │ │ ├── StopMode-RTC_StopMode-RTC.dep
│ │ │ ├── system_stm32l1xx.crf
│ │ │ ├── system_stm32l1xx.d
│ │ │ ├── system_stm32l1xx.o
│ │ │ ├── usart.crf
│ │ │ ├── usart.d
│ │ │ └── usart.o
│ │ ├── StopMode-RTC.uvguix.QW
│ │ ├── StopMode-RTC.uvoptx
│ │ └── StopMode-RTC.uvprojx
│ ├── Src
│ │ ├── gpio.c
│ │ ├── main.c
│ │ ├── rtc.c
│ │ ├── stm32l1xx_hal_msp.c
│ │ ├── stm32l1xx_it.c
│ │ └── usart.c
│ └── StopMode-RTC.ioc
├── SPI
│ ├── nrf 2015-10-16
│ │ ├── NRF24L01.c
│ │ └── NRF24L01.h
│ └── nrf 2015-10-16.rar
└── USB
└── CDC
├── BSP
│ ├── BSP_drive.c
│ └── BSP_drive.h
├── CDC.ioc
├── Drivers
│ ├── CMSIS
│ │ ├── Device
│ │ │ └── ST
│ │ │ └── STM32L1xx
│ │ │ ├── Include
│ │ │ │ ├── stm32l100xba.h
│ │ │ │ ├── stm32l100xb.h
│ │ │ │ ├── stm32l100xc.h
│ │ │ │ ├── stm32l151xba.h
│ │ │ │ ├── stm32l151xb.h
│ │ │ │ ├── stm32l151xca.h
│ │ │ │ ├── stm32l151xc.h
│ │ │ │ ├── stm32l151xd.h
│ │ │ │ ├── stm32l151xdx.h
│ │ │ │ ├── stm32l151xe.h
│ │ │ │ ├── stm32l152xba.h
│ │ │ │ ├── stm32l152xb.h
│ │ │ │ ├── stm32l152xca.h
│ │ │ │ ├── stm32l152xc.h
│ │ │ │ ├── stm32l152xd.h
│ │ │ │ ├── stm32l152xdx.h
│ │ │ │ ├── stm32l152xe.h
│ │ │ │ ├── stm32l162xca.h
│ │ │ │ ├── stm32l162xc.h
│ │ │ │ ├── stm32l162xd.h
│ │ │ │ ├── stm32l162xdx.h
│ │ │ │ ├── stm32l162xe.h
│ │ │ │ ├── stm32l1xx.h
│ │ │ │ └── system_stm32l1xx.h
│ │ │ └── Source
│ │ │ └── Templates
│ │ │ ├── arm
│ │ │ │ └── startup_stm32l151xb.s
│ │ │ ├── iar
│ │ │ │ └── startup_stm32l151xb.s
│ │ │ └── system_stm32l1xx.c
│ │ └── Include
│ │ ├── arm_common_tables.h
│ │ ├── arm_const_structs.h
│ │ ├── arm_math.h
│ │ ├── core_cm0.h
│ │ ├── core_cm0plus.h
│ │ ├── core_cm3.h
│ │ ├── core_cm4.h
│ │ ├── core_cm7.h
│ │ ├── core_cmFunc.h
│ │ ├── core_cmInstr.h
│ │ ├── core_cmSimd.h
│ │ ├── core_sc000.h
│ │ └── core_sc300.h
│ └── STM32L1xx_HAL_Driver
│ ├── Inc
│ │ ├── Legacy
│ │ │ └── stm32_hal_legacy.h
│ │ ├── stm32l1xx_hal_adc_ex.h
│ │ ├── stm32l1xx_hal_adc.h
│ │ ├── stm32l1xx_hal_cortex.h
│ │ ├── stm32l1xx_hal_def.h
│ │ ├── stm32l1xx_hal_dma_ex.h
│ │ ├── stm32l1xx_hal_dma.h
│ │ ├── stm32l1xx_hal_flash_ex.h
│ │ ├── stm32l1xx_hal_flash.h
│ │ ├── stm32l1xx_hal_flash_ramfunc.h
│ │ ├── stm32l1xx_hal_gpio_ex.h
│ │ ├── stm32l1xx_hal_gpio.h
│ │ ├── stm32l1xx_hal.h
│ │ ├── stm32l1xx_hal_i2c.h
│ │ ├── stm32l1xx_hal_pcd_ex.h
│ │ ├── stm32l1xx_hal_pcd.h
│ │ ├── stm32l1xx_hal_pwr_ex.h
│ │ ├── stm32l1xx_hal_pwr.h
│ │ ├── stm32l1xx_hal_rcc_ex.h
│ │ ├── stm32l1xx_hal_rcc.h
│ │ ├── stm32l1xx_hal_rtc_ex.h
│ │ ├── stm32l1xx_hal_rtc.h
│ │ ├── stm32l1xx_hal_spi_ex.h
│ │ ├── stm32l1xx_hal_spi.h
│ │ ├── stm32l1xx_hal_tim_ex.h
│ │ ├── stm32l1xx_hal_tim.h
│ │ └── stm32l1xx_hal_uart.h
│ └── Src
│ ├── stm32l1xx_hal_adc.c
│ ├── stm32l1xx_hal_adc_ex.c
│ ├── stm32l1xx_hal.c
│ ├── stm32l1xx_hal_cortex.c
│ ├── stm32l1xx_hal_dma.c
│ ├── stm32l1xx_hal_flash.c
│ ├── stm32l1xx_hal_flash_ex.c
│ ├── stm32l1xx_hal_flash_ramfunc.c
│ ├── stm32l1xx_hal_gpio.c
│ ├── stm32l1xx_hal_i2c.c
│ ├── stm32l1xx_hal_pcd.c
│ ├── stm32l1xx_hal_pcd_ex.c
│ ├── stm32l1xx_hal_pwr.c
│ ├── stm32l1xx_hal_pwr_ex.c
│ ├── stm32l1xx_hal_rcc.c
│ ├── stm32l1xx_hal_rcc_ex.c
│ ├── stm32l1xx_hal_rtc.c
│ ├── stm32l1xx_hal_rtc_ex.c
│ ├── stm32l1xx_hal_spi.c
│ ├── stm32l1xx_hal_spi_ex.c
│ ├── stm32l1xx_hal_tim.c
│ ├── stm32l1xx_hal_tim_ex.c
│ └── stm32l1xx_hal_uart.c
├── EWARM
│ ├── CDC Configuration
│ │ ├── Exe
│ │ │ ├── CDC Configuration.out
│ │ │ └── CDC Configuration.sim
│ │ └── Obj
│ │ ├── CDC.pbd
│ │ └── CDC.pbd.browse
│ ├── CDC.ewd
│ ├── CDC.ewp
│ ├── CDC.ewt
│ ├── Project.eww
│ ├── settings
│ │ ├── CDC.CDC Configuration.cspy.bat
│ │ ├── CDC.CDC Configuration.driver.xcl
│ │ ├── CDC.CDC Configuration.general.xcl
│ │ ├── CDC_CDC Configuration.jlink
│ │ ├── CDC.crun
│ │ ├── CDC.dbgdt
│ │ ├── CDC.dni
│ │ ├── Project.wsdt
│ │ └── Project.wspos
│ ├── stm32l151xb_flash.icf
│ └── stm32l151xb_sram.icf
├── Inc
│ ├── adc.h
│ ├── gpio.h
│ ├── i2c.h
│ ├── mxconstants.h
│ ├── spi.h
│ ├── stm32l1xx_hal_conf.h
│ ├── stm32l1xx_it.h
│ ├── tim.h
│ ├── usart.h
│ ├── usbd_cdc_if.h
│ ├── usbd_conf.h
│ ├── usbd_desc.h
│ └── usb_device.h
├── MDK-ARM
│ ├── CDC.uvguix.win7
│ ├── CDC.uvoptx
│ ├── CDC.uvprojx
│ ├── RTE
│ │ └── RTE_Components.h
│ └── startup_stm32l151xb.s
├── Middlewares
│ └── ST
│ └── STM32_USB_Device_Library
│ ├── Class
│ │ └── CDC
│ │ ├── Inc
│ │ │ └── usbd_cdc.h
│ │ └── Src
│ │ └── usbd_cdc.c
│ └── Core
│ ├── Inc
│ │ ├── usbd_core.h
│ │ ├── usbd_ctlreq.h
│ │ ├── usbd_def.h
│ │ └── usbd_ioreq.h
│ └── Src
│ ├── usbd_core.c
│ ├── usbd_ctlreq.c
│ └── usbd_ioreq.c
├── Src
│ ├── adc.c
│ ├── gpio.c
│ ├── i2c.c
│ ├── main.c
│ ├── spi.c
│ ├── stm32l1xx_hal_msp.c
│ ├── stm32l1xx_it.c
│ ├── tim.c
│ ├── usart.c
│ ├── usbd_cdc_if.c
│ ├── usbd_conf.c
│ ├── usbd_desc.c
│ └── usb_device.c
└── usbd_cdc_if.c
413 directories, 2645 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论