在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → STM32L0代码

STM32L0代码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:15.14M
  • 下载次数:11
  • 浏览次数:138
  • 发布时间:2021-03-04
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
适用于STM32L0系列单片机开发,提供各种功能的例程代码
【实例截图】
【核心代码】
4cd01d69-624f-46b5-931d-6fde7a40ce09
└── STM32Cube_FW_L0_V1.1.0
├── Documentation
│   └── STM32CubeL0GettingStarted.pdf
├── Drivers
│   ├── BSP
│   │   ├── Adafruit_Shield
│   │   │   ├── Release_Notes.html
│   │   │   ├── stm32_adafruit_lcd.c
│   │   │   ├── stm32_adafruit_lcd.h
│   │   │   ├── stm32_adafruit_sd.c
│   │   │   └── stm32_adafruit_sd.h
│   │   ├── Components
│   │   │   ├── Common
│   │   │   │   ├── accelero.h
│   │   │   │   ├── audio.h
│   │   │   │   ├── camera.h
│   │   │   │   ├── epd.h
│   │   │   │   ├── gyro.h
│   │   │   │   ├── io.h
│   │   │   │   ├── lcd.h
│   │   │   │   ├── Release_Notes.html
│   │   │   │   ├── tsensor.h
│   │   │   │   └── ts.h
│   │   │   ├── gde021a1
│   │   │   │   ├── gde021a1.c
│   │   │   │   ├── gde021a1.h
│   │   │   │   └── Release_Notes.html
│   │   │   └── st7735
│   │   │   ├── Release_Notes.html
│   │   │   ├── st7735.c
│   │   │   └── st7735.h
│   │   ├── STM32L0538-Discovery
│   │   │   ├── font12epd.c
│   │   │   ├── font16epd.c
│   │   │   ├── font20epd.c
│   │   │   ├── font8epd.c
│   │   │   ├── fontsepd.h
│   │   │   ├── Release_Notes.html
│   │   │   ├── stm32l0538_discovery.c
│   │   │   ├── stm32l0538_discovery_epd.c
│   │   │   ├── stm32l0538_discovery_epd.h
│   │   │   └── stm32l0538_discovery.h
│   │   └── STM32L0xx_Nucleo
│   │   ├── Release_Notes.html
│   │   ├── stm32l0xx_nucleo.c
│   │   └── stm32l0xx_nucleo.h
│   ├── CMSIS
│   │   ├── CMSIS END USER LICENCE AGREEMENT.pdf
│   │   ├── Device
│   │   │   └── ST
│   │   │   └── STM32L0xx
│   │   │   ├── Include
│   │   │   │   ├── stm32l051xx.h
│   │   │   │   ├── stm32l052xx.h
│   │   │   │   ├── stm32l053xx.h
│   │   │   │   ├── stm32l061xx.h
│   │   │   │   ├── stm32l062xx.h
│   │   │   │   ├── stm32l063xx.h
│   │   │   │   ├── stm32l0xx.h
│   │   │   │   └── system_stm32l0xx.h
│   │   │   ├── Release_Notes.html
│   │   │   └── Source
│   │   │   └── Templates
│   │   │   ├── arm
│   │   │   │   ├── startup_stm32l051xx.s
│   │   │   │   ├── startup_stm32l052xx.s
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   ├── startup_stm32l061xx.s
│   │   │   │   ├── startup_stm32l062xx.s
│   │   │   │   └── startup_stm32l063xx.s
│   │   │   ├── gcc
│   │   │   │   ├── startup_stm32l051xx.s
│   │   │   │   ├── startup_stm32l052xx.s
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   ├── startup_stm32l061xx.s
│   │   │   │   ├── startup_stm32l062xx.s
│   │   │   │   └── startup_stm32l063xx.s
│   │   │   ├── iar
│   │   │   │   ├── linker
│   │   │   │   │   ├── stm32l051xx_flash.icf
│   │   │   │   │   ├── stm32l051xx_sram.icf
│   │   │   │   │   ├── stm32l052xx_flash.icf
│   │   │   │   │   ├── stm32l052xx_sram.icf
│   │   │   │   │   ├── stm32l053xx_flash.icf
│   │   │   │   │   ├── stm32l053xx_sram.icf
│   │   │   │   │   ├── stm32l061xx_flash.icf
│   │   │   │   │   ├── stm32l061xx_sram.icf
│   │   │   │   │   ├── stm32l062xx_flash.icf
│   │   │   │   │   ├── stm32l062xx_sram.icf
│   │   │   │   │   ├── stm32l063xx_flash.icf
│   │   │   │   │   └── stm32l063xx_sram.icf
│   │   │   │   ├── startup_stm32l051xx.s
│   │   │   │   ├── startup_stm32l052xx.s
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   ├── startup_stm32l061xx.s
│   │   │   │   ├── startup_stm32l062xx.s
│   │   │   │   └── startup_stm32l063xx.s
│   │   │   └── system_stm32l0xx.c
│   │   ├── Documentation
│   │   │   ├── Core
│   │   │   │   └── html
│   │   │   │   ├── annotated.html
│   │   │   │   ├── annotated.js
│   │   │   │   ├── bc_s.png
│   │   │   │   ├── bdwn.png
│   │   │   │   ├── check.png
│   │   │   │   ├── classes.html
│   │   │   │   ├── closed.png
│   │   │   │   ├── CMSIS_CORE_Files.png
│   │   │   │   ├── CMSIS_CORE_Files_user.png
│   │   │   │   ├── cmsis.css
│   │   │   │   ├── CMSIS_Logo_Final.png
│   │   │   │   ├── _c_o_r_e__m_i_s_r_a__exceptions_pg.html
│   │   │   │   ├── device_h_pg.html
│   │   │   │   ├── doxygen.png
│   │   │   │   ├── dynsections.js
│   │   │   │   ├── ftv2blank.png
│   │   │   │   ├── ftv2cl.png
│   │   │   │   ├── ftv2doc.png
│   │   │   │   ├── ftv2folderclosed.png
│   │   │   │   ├── ftv2folderopen.png
│   │   │   │   ├── ftv2lastnode.png
│   │   │   │   ├── ftv2link.png
│   │   │   │   ├── ftv2mlastnode.png
│   │   │   │   ├── ftv2mnode.png
│   │   │   │   ├── ftv2mo.png
│   │   │   │   ├── ftv2node.png
│   │   │   │   ├── ftv2ns.png
│   │   │   │   ├── ftv2plastnode.png
│   │   │   │   ├── ftv2pnode.png
│   │   │   │   ├── ftv2splitbar.png
│   │   │   │   ├── ftv2vertline.png
│   │   │   │   ├── functions.html
│   │   │   │   ├── functions_vars.html
│   │   │   │   ├── globals_enum.html
│   │   │   │   ├── globals_eval.html
│   │   │   │   ├── globals_func.html
│   │   │   │   ├── globals.html
│   │   │   │   ├── globals_vars.html
│   │   │   │   ├── group___core___register__gr.html
│   │   │   │   ├── group___core___register__gr.js
│   │   │   │   ├── group__intrinsic___c_p_u__gr.html
│   │   │   │   ├── group__intrinsic___c_p_u__gr.js
│   │   │   │   ├── group__intrinsic___s_i_m_d__gr.html
│   │   │   │   ├── group__intrinsic___s_i_m_d__gr.js
│   │   │   │   ├── group___i_t_m___debug__gr.html
│   │   │   │   ├── group___i_t_m___debug__gr.js
│   │   │   │   ├── group___n_v_i_c__gr.html
│   │   │   │   ├── group___n_v_i_c__gr.js
│   │   │   │   ├── group__peripheral__gr.html
│   │   │   │   ├── group__system__init__gr.html
│   │   │   │   ├── group__system__init__gr.js
│   │   │   │   ├── group___sys_tick__gr.html
│   │   │   │   ├── group___sys_tick__gr.js
│   │   │   │   ├── index.html
│   │   │   │   ├── jquery.js
│   │   │   │   ├── modules.html
│   │   │   │   ├── modules.js
│   │   │   │   ├── nav_f.png
│   │   │   │   ├── nav_g.png
│   │   │   │   ├── nav_h.png
│   │   │   │   ├── navtree.css
│   │   │   │   ├── navtreeindex0.js
│   │   │   │   ├── navtreeindex1.js
│   │   │   │   ├── navtree.js
│   │   │   │   ├── open.png
│   │   │   │   ├── pages.html
│   │   │   │   ├── _reg_map_pg.html
│   │   │   │   ├── resize.js
│   │   │   │   ├── search
│   │   │   │   │   ├── all_5f.html
│   │   │   │   │   ├── all_5f.js
│   │   │   │   │   ├── all_61.html
│   │   │   │   │   ├── all_61.js
│   │   │   │   │   ├── all_62.html
│   │   │   │   │   ├── all_62.js
│   │   │   │   │   ├── all_63.html
│   │   │   │   │   ├── all_63.js
│   │   │   │   │   ├── all_64.html
│   │   │   │   │   ├── all_64.js
│   │   │   │   │   ├── all_65.html
│   │   │   │   │   ├── all_65.js
│   │   │   │   │   ├── all_66.html
│   │   │   │   │   ├── all_66.js
│   │   │   │   │   ├── all_68.html
│   │   │   │   │   ├── all_68.js
│   │   │   │   │   ├── all_69.html
│   │   │   │   │   ├── all_69.js
│   │   │   │   │   ├── all_6c.html
│   │   │   │   │   ├── all_6c.js
│   │   │   │   │   ├── all_6d.html
│   │   │   │   │   ├── all_6d.js
│   │   │   │   │   ├── all_6e.html
│   │   │   │   │   ├── all_6e.js
│   │   │   │   │   ├── all_6f.html
│   │   │   │   │   ├── all_6f.js
│   │   │   │   │   ├── all_70.html
│   │   │   │   │   ├── all_70.js
│   │   │   │   │   ├── all_71.html
│   │   │   │   │   ├── all_71.js
│   │   │   │   │   ├── all_72.html
│   │   │   │   │   ├── all_72.js
│   │   │   │   │   ├── all_73.html
│   │   │   │   │   ├── all_73.js
│   │   │   │   │   ├── all_74.html
│   │   │   │   │   ├── all_74.js
│   │   │   │   │   ├── all_75.html
│   │   │   │   │   ├── all_75.js
│   │   │   │   │   ├── all_76.html
│   │   │   │   │   ├── all_76.js
│   │   │   │   │   ├── all_77.html
│   │   │   │   │   ├── all_77.js
│   │   │   │   │   ├── all_78.html
│   │   │   │   │   ├── all_78.js
│   │   │   │   │   ├── all_7a.html
│   │   │   │   │   ├── all_7a.js
│   │   │   │   │   ├── classes_61.html
│   │   │   │   │   ├── classes_61.js
│   │   │   │   │   ├── classes_63.html
│   │   │   │   │   ├── classes_63.js
│   │   │   │   │   ├── classes_64.html
│   │   │   │   │   ├── classes_64.js
│   │   │   │   │   ├── classes_66.html
│   │   │   │   │   ├── classes_66.js
│   │   │   │   │   ├── classes_69.html
│   │   │   │   │   ├── classes_69.js
│   │   │   │   │   ├── classes_6d.html
│   │   │   │   │   ├── classes_6d.js
│   │   │   │   │   ├── classes_6e.html
│   │   │   │   │   ├── classes_6e.js
│   │   │   │   │   ├── classes_73.html
│   │   │   │   │   ├── classes_73.js
│   │   │   │   │   ├── classes_74.html
│   │   │   │   │   ├── classes_74.js
│   │   │   │   │   ├── classes_78.html
│   │   │   │   │   ├── classes_78.js
│   │   │   │   │   ├── close.png
│   │   │   │   │   ├── enums_69.html
│   │   │   │   │   ├── enums_69.js
│   │   │   │   │   ├── enumvalues_62.html
│   │   │   │   │   ├── enumvalues_62.js
│   │   │   │   │   ├── enumvalues_64.html
│   │   │   │   │   ├── enumvalues_64.js
│   │   │   │   │   ├── enumvalues_68.html
│   │   │   │   │   ├── enumvalues_68.js
│   │   │   │   │   ├── enumvalues_6d.html
│   │   │   │   │   ├── enumvalues_6d.js
│   │   │   │   │   ├── enumvalues_6e.html
│   │   │   │   │   ├── enumvalues_6e.js
│   │   │   │   │   ├── enumvalues_70.html
│   │   │   │   │   ├── enumvalues_70.js
│   │   │   │   │   ├── enumvalues_73.html
│   │   │   │   │   ├── enumvalues_73.js
│   │   │   │   │   ├── enumvalues_75.html
│   │   │   │   │   ├── enumvalues_75.js
│   │   │   │   │   ├── enumvalues_77.html
│   │   │   │   │   ├── enumvalues_77.js
│   │   │   │   │   ├── files_6d.html
│   │   │   │   │   ├── files_6d.js
│   │   │   │   │   ├── files_6f.html
│   │   │   │   │   ├── files_6f.js
│   │   │   │   │   ├── files_72.html
│   │   │   │   │   ├── files_72.js
│   │   │   │   │   ├── files_74.html
│   │   │   │   │   ├── files_74.js
│   │   │   │   │   ├── files_75.html
│   │   │   │   │   ├── files_75.js
│   │   │   │   │   ├── functions_5f.html
│   │   │   │   │   ├── functions_5f.js
│   │   │   │   │   ├── functions_69.html
│   │   │   │   │   ├── functions_69.js
│   │   │   │   │   ├── functions_6e.html
│   │   │   │   │   ├── functions_6e.js
│   │   │   │   │   ├── functions_73.html
│   │   │   │   │   ├── functions_73.js
│   │   │   │   │   ├── groups_63.html
│   │   │   │   │   ├── groups_63.js
│   │   │   │   │   ├── groups_64.html
│   │   │   │   │   ├── groups_64.js
│   │   │   │   │   ├── groups_69.html
│   │   │   │   │   ├── groups_69.js
│   │   │   │   │   ├── groups_70.html
│   │   │   │   │   ├── groups_70.js
│   │   │   │   │   ├── groups_73.html
│   │   │   │   │   ├── groups_73.js
│   │   │   │   │   ├── mag_sel.png
│   │   │   │   │   ├── nomatches.html
│   │   │   │   │   ├── pages_64.html
│   │   │   │   │   ├── pages_64.js
│   │   │   │   │   ├── pages_6d.html
│   │   │   │   │   ├── pages_6d.js
│   │   │   │   │   ├── pages_6f.html
│   │   │   │   │   ├── pages_6f.js
│   │   │   │   │   ├── pages_72.html
│   │   │   │   │   ├── pages_72.js
│   │   │   │   │   ├── pages_73.html
│   │   │   │   │   ├── pages_73.js
│   │   │   │   │   ├── pages_74.html
│   │   │   │   │   ├── pages_74.js
│   │   │   │   │   ├── pages_75.html
│   │   │   │   │   ├── pages_75.js
│   │   │   │   │   ├── search.css
│   │   │   │   │   ├── search.js
│   │   │   │   │   ├── search_l.png
│   │   │   │   │   ├── search_m.png
│   │   │   │   │   ├── search_r.png
│   │   │   │   │   ├── variables_5f.html
│   │   │   │   │   ├── variables_5f.js
│   │   │   │   │   ├── variables_61.html
│   │   │   │   │   ├── variables_61.js
│   │   │   │   │   ├── variables_62.html
│   │   │   │   │   ├── variables_62.js
│   │   │   │   │   ├── variables_63.html
│   │   │   │   │   ├── variables_63.js
│   │   │   │   │   ├── variables_64.html
│   │   │   │   │   ├── variables_64.js
│   │   │   │   │   ├── variables_65.html
│   │   │   │   │   ├── variables_65.js
│   │   │   │   │   ├── variables_66.html
│   │   │   │   │   ├── variables_66.js
│   │   │   │   │   ├── variables_68.html
│   │   │   │   │   ├── variables_68.js
│   │   │   │   │   ├── variables_69.html
│   │   │   │   │   ├── variables_69.js
│   │   │   │   │   ├── variables_6c.html
│   │   │   │   │   ├── variables_6c.js
│   │   │   │   │   ├── variables_6d.html
│   │   │   │   │   ├── variables_6d.js
│   │   │   │   │   ├── variables_6e.html
│   │   │   │   │   ├── variables_6e.js
│   │   │   │   │   ├── variables_70.html
│   │   │   │   │   ├── variables_70.js
│   │   │   │   │   ├── variables_71.html
│   │   │   │   │   ├── variables_71.js
│   │   │   │   │   ├── variables_72.html
│   │   │   │   │   ├── variables_72.js
│   │   │   │   │   ├── variables_73.html
│   │   │   │   │   ├── variables_73.js
│   │   │   │   │   ├── variables_74.html
│   │   │   │   │   ├── variables_74.js
│   │   │   │   │   ├── variables_75.html
│   │   │   │   │   ├── variables_75.js
│   │   │   │   │   ├── variables_76.html
│   │   │   │   │   ├── variables_76.js
│   │   │   │   │   ├── variables_77.html
│   │   │   │   │   ├── variables_77.js
│   │   │   │   │   ├── variables_7a.html
│   │   │   │   │   └── variables_7a.js
│   │   │   │   ├── search.css
│   │   │   │   ├── startup_s_pg.html
│   │   │   │   ├── struct_core_debug___type.html
│   │   │   │   ├── struct_core_debug___type.js
│   │   │   │   ├── struct_d_w_t___type.html
│   │   │   │   ├── struct_d_w_t___type.js
│   │   │   │   ├── struct_f_p_u___type.html
│   │   │   │   ├── struct_f_p_u___type.js
│   │   │   │   ├── struct_i_t_m___type.html
│   │   │   │   ├── struct_i_t_m___type.js
│   │   │   │   ├── struct_m_p_u___type.html
│   │   │   │   ├── struct_m_p_u___type.js
│   │   │   │   ├── struct_n_v_i_c___type.html
│   │   │   │   ├── struct_n_v_i_c___type.js
│   │   │   │   ├── struct_s_c_b___type.html
│   │   │   │   ├── struct_s_c_b___type.js
│   │   │   │   ├── struct_s_cn_s_c_b___type.html
│   │   │   │   ├── struct_s_cn_s_c_b___type.js
│   │   │   │   ├── struct_sys_tick___type.html
│   │   │   │   ├── struct_sys_tick___type.js
│   │   │   │   ├── struct_t_p_i___type.html
│   │   │   │   ├── struct_t_p_i___type.js
│   │   │   │   ├── sync_off.png
│   │   │   │   ├── sync_on.png
│   │   │   │   ├── system_c_pg.html
│   │   │   │   ├── tab_a.png
│   │   │   │   ├── tab_b.png
│   │   │   │   ├── tab_h.png
│   │   │   │   ├── tabs.css
│   │   │   │   ├── tab_s.png
│   │   │   │   ├── tab_topnav.png
│   │   │   │   ├── _templates_pg.html
│   │   │   │   ├── _templates_pg.js
│   │   │   │   ├── union_a_p_s_r___type.html
│   │   │   │   ├── union_a_p_s_r___type.js
│   │   │   │   ├── union_c_o_n_t_r_o_l___type.html
│   │   │   │   ├── union_c_o_n_t_r_o_l___type.js
│   │   │   │   ├── union_i_p_s_r___type.html
│   │   │   │   ├── union_i_p_s_r___type.js
│   │   │   │   ├── unionx_p_s_r___type.html
│   │   │   │   ├── unionx_p_s_r___type.js
│   │   │   │   ├── _using__a_r_m_pg.html
│   │   │   │   ├── _using_pg.html
│   │   │   │   └── _using_pg.js
│   │   │   ├── General
│   │   │   │   └── html
│   │   │   │   ├── bc_s.png
│   │   │   │   ├── bdwn.png
│   │   │   │   ├── closed.png
│   │   │   │   ├── cmsis.css
│   │   │   │   ├── CMSIS_Logo_Final.png
│   │   │   │   ├── CMSIS_V3_small.png
│   │   │   │   ├── doxygen.png
│   │   │   │   ├── dynsections.js
│   │   │   │   ├── ftv2blank.png
│   │   │   │   ├── ftv2cl.png
│   │   │   │   ├── ftv2doc.png
│   │   │   │   ├── ftv2folderclosed.png
│   │   │   │   ├── ftv2folderopen.png
│   │   │   │   ├── ftv2lastnode.png
│   │   │   │   ├── ftv2link.png
│   │   │   │   ├── ftv2mlastnode.png
│   │   │   │   ├── ftv2mnode.png
│   │   │   │   ├── ftv2mo.png
│   │   │   │   ├── ftv2node.png
│   │   │   │   ├── ftv2ns.png
│   │   │   │   ├── ftv2plastnode.png
│   │   │   │   ├── ftv2pnode.png
│   │   │   │   ├── ftv2splitbar.png
│   │   │   │   ├── ftv2vertline.png
│   │   │   │   ├── index.html
│   │   │   │   ├── jquery.js
│   │   │   │   ├── nav_f.png
│   │   │   │   ├── nav_g.png
│   │   │   │   ├── nav_h.png
│   │   │   │   ├── navtree.css
│   │   │   │   ├── navtreeindex0.js
│   │   │   │   ├── navtree.js
│   │   │   │   ├── open.png
│   │   │   │   ├── resize.js
│   │   │   │   ├── sync_off.png
│   │   │   │   ├── sync_on.png
│   │   │   │   ├── tab_a.png
│   │   │   │   ├── tab_b.png
│   │   │   │   ├── tab_h.png
│   │   │   │   ├── tabs.css
│   │   │   │   ├── tab_s.png
│   │   │   │   └── tab_topnav.png
│   │   │   ├── RTOS
│   │   │   │   └── html
│   │   │   │   ├── annotated.html
│   │   │   │   ├── annotated.js
│   │   │   │   ├── API_Structure.png
│   │   │   │   ├── bc_s.png
│   │   │   │   ├── bdwn.png
│   │   │   │   ├── classes.html
│   │   │   │   ├── closed.png
│   │   │   │   ├── cmsis.css
│   │   │   │   ├── CMSIS_Logo_Final.png
│   │   │   │   ├── cmsis__os_8h.html
│   │   │   │   ├── cmsis__os_8txt.html
│   │   │   │   ├── cmsis_os_h.html
│   │   │   │   ├── CMSIS_RTOS_Files.png
│   │   │   │   ├── dir_67baed4ff719a838d401a6dc7774cf41.html
│   │   │   │   ├── dir_9afdeffb8e409a4e0df5c5bf9ab1a7d2.html
│   │   │   │   ├── doxygen.png
│   │   │   │   ├── dynsections.js
│   │   │   │   ├── files.html
│   │   │   │   ├── ftv2blank.png
│   │   │   │   ├── ftv2cl.png
│   │   │   │   ├── ftv2doc.png
│   │   │   │   ├── ftv2folderclosed.png
│   │   │   │   ├── ftv2folderopen.png
│   │   │   │   ├── ftv2lastnode.png
│   │   │   │   ├── ftv2link.png
│   │   │   │   ├── ftv2mlastnode.png
│   │   │   │   ├── ftv2mnode.png
│   │   │   │   ├── ftv2mo.png
│   │   │   │   ├── ftv2node.png
│   │   │   │   ├── ftv2ns.png
│   │   │   │   ├── ftv2plastnode.png
│   │   │   │   ├── ftv2pnode.png
│   │   │   │   ├── ftv2splitbar.png
│   │   │   │   ├── ftv2vertline.png
│   │   │   │   ├── _function_overview.html
│   │   │   │   ├── functions.html
│   │   │   │   ├── functions_vars.html
│   │   │   │   ├── globals_defs.html
│   │   │   │   ├── globals_enum.html
│   │   │   │   ├── globals_eval.html
│   │   │   │   ├── globals_func.html
│   │   │   │   ├── globals.html
│   │   │   │   ├── globals_type.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___definitions.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___definitions.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___kernel_ctrl.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___mail.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___mail.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___message.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___message.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___mutex_mgmt.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___pool_mgmt.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___pool_mgmt.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___signal_mgmt.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___signal_mgmt.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___status.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___status.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___thread_mgmt.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___thread_mgmt.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___timer_mgmt.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___timer_mgmt.js
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___wait.html
│   │   │   │   ├── group___c_m_s_i_s___r_t_o_s___wait.js
│   │   │   │   ├── index.html
│   │   │   │   ├── jquery.js
│   │   │   │   ├── MailQueue.png
│   │   │   │   ├── MessageQueue.png
│   │   │   │   ├── modules.html
│   │   │   │   ├── modules.js
│   │   │   │   ├── Mutex.png
│   │   │   │   ├── nav_f.png
│   │   │   │   ├── nav_g.png
│   │   │   │   ├── nav_h.png
│   │   │   │   ├── navtree.css
│   │   │   │   ├── navtreeindex0.js
│   │   │   │   ├── navtree.js
│   │   │   │   ├── open.png
│   │   │   │   ├── pages.html
│   │   │   │   ├── resize.js
│   │   │   │   ├── search
│   │   │   │   │   ├── all_63.html
│   │   │   │   │   ├── all_63.js
│   │   │   │   │   ├── all_64.html
│   │   │   │   │   ├── all_64.js
│   │   │   │   │   ├── all_66.html
│   │   │   │   │   ├── all_66.js
│   │   │   │   │   ├── all_67.html
│   │   │   │   │   ├── all_67.js
│   │   │   │   │   ├── all_68.html
│   │   │   │   │   ├── all_68.js
│   │   │   │   │   ├── all_69.html
│   │   │   │   │   ├── all_69.js
│   │   │   │   │   ├── all_6b.html
│   │   │   │   │   ├── all_6b.js
│   │   │   │   │   ├── all_6d.html
│   │   │   │   │   ├── all_6d.js
│   │   │   │   │   ├── all_6f.html
│   │   │   │   │   ├── all_6f.js
│   │   │   │   │   ├── all_70.html
│   │   │   │   │   ├── all_70.js
│   │   │   │   │   ├── all_71.html
│   │   │   │   │   ├── all_71.js
│   │   │   │   │   ├── all_73.html
│   │   │   │   │   ├── all_73.js
│   │   │   │   │   ├── all_74.html
│   │   │   │   │   ├── all_74.js
│   │   │   │   │   ├── all_75.html
│   │   │   │   │   ├── all_75.js
│   │   │   │   │   ├── all_76.html
│   │   │   │   │   ├── all_76.js
│   │   │   │   │   ├── classes_6f.html
│   │   │   │   │   ├── classes_6f.js
│   │   │   │   │   ├── close.png
│   │   │   │   │   ├── defines_6f.html
│   │   │   │   │   ├── defines_6f.js
│   │   │   │   │   ├── enums_6f.html
│   │   │   │   │   ├── enums_6f.js
│   │   │   │   │   ├── enumvalues_6f.html
│   │   │   │   │   ├── enumvalues_6f.js
│   │   │   │   │   ├── files_63.html
│   │   │   │   │   ├── files_63.js
│   │   │   │   │   ├── functions_6f.html
│   │   │   │   │   ├── functions_6f.js
│   │   │   │   │   ├── groups_63.html
│   │   │   │   │   ├── groups_63.js
│   │   │   │   │   ├── groups_67.html
│   │   │   │   │   ├── groups_67.js
│   │   │   │   │   ├── groups_6b.html
│   │   │   │   │   ├── groups_6b.js
│   │   │   │   │   ├── groups_6d.html
│   │   │   │   │   ├── groups_6d.js
│   │   │   │   │   ├── groups_73.html
│   │   │   │   │   ├── groups_73.js
│   │   │   │   │   ├── groups_74.html
│   │   │   │   │   ├── groups_74.js
│   │   │   │   │   ├── mag_sel.png
│   │   │   │   │   ├── nomatches.html
│   │   │   │   │   ├── pages_66.html
│   │   │   │   │   ├── pages_66.js
│   │   │   │   │   ├── pages_68.html
│   │   │   │   │   ├── pages_68.js
│   │   │   │   │   ├── pages_6f.html
│   │   │   │   │   ├── pages_6f.js
│   │   │   │   │   ├── pages_75.html
│   │   │   │   │   ├── pages_75.js
│   │   │   │   │   ├── search.css
│   │   │   │   │   ├── search.js
│   │   │   │   │   ├── search_l.png
│   │   │   │   │   ├── search_m.png
│   │   │   │   │   ├── search_r.png
│   │   │   │   │   ├── typedefs_6f.html
│   │   │   │   │   ├── typedefs_6f.js
│   │   │   │   │   ├── variables_64.html
│   │   │   │   │   ├── variables_64.js
│   │   │   │   │   ├── variables_69.html
│   │   │   │   │   ├── variables_69.js
│   │   │   │   │   ├── variables_6d.html
│   │   │   │   │   ├── variables_6d.js
│   │   │   │   │   ├── variables_70.html
│   │   │   │   │   ├── variables_70.js
│   │   │   │   │   ├── variables_71.html
│   │   │   │   │   ├── variables_71.js
│   │   │   │   │   ├── variables_73.html
│   │   │   │   │   ├── variables_73.js
│   │   │   │   │   ├── variables_74.html
│   │   │   │   │   ├── variables_74.js
│   │   │   │   │   ├── variables_76.html
│   │   │   │   │   └── variables_76.js
│   │   │   │   ├── Semaphore.png
│   │   │   │   ├── structos_mail_q_def__t.html
│   │   │   │   ├── structos_mail_q_def__t.js
│   │   │   │   ├── structos_message_q_def__t.html
│   │   │   │   ├── structos_message_q_def__t.js
│   │   │   │   ├── structos_mutex_def__t.html
│   │   │   │   ├── structos_mutex_def__t.js
│   │   │   │   ├── structos_pool_def__t.html
│   │   │   │   ├── structos_pool_def__t.js
│   │   │   │   ├── structos_semaphore_def__t.html
│   │   │   │   ├── structos_semaphore_def__t.js
│   │   │   │   ├── structos_thread_def__t.html
│   │   │   │   ├── structos_thread_def__t.js
│   │   │   │   ├── structos_timer_def__t.html
│   │   │   │   ├── structos_timer_def__t.js
│   │   │   │   ├── sync_off.png
│   │   │   │   ├── sync_on.png
│   │   │   │   ├── tab_a.png
│   │   │   │   ├── tab_b.png
│   │   │   │   ├── tab_h.png
│   │   │   │   ├── tabs.css
│   │   │   │   ├── tab_s.png
│   │   │   │   ├── tab_topnav.png
│   │   │   │   ├── ThreadStatus.png
│   │   │   │   ├── Timer.png
│   │   │   │   └── _using_o_s.html
│   │   │   └── SVD
│   │   │   └── html
│   │   │   ├── Access_SVD_DD_Manage.png
│   │   │   ├── Access_SVD_Vendor.png
│   │   │   ├── bc_s.png
│   │   │   ├── bdwn.png
│   │   │   ├── closed.png
│   │   │   ├── cmsis.css
│   │   │   ├── CMSIS_Logo_Final.png
│   │   │   ├── CMSIS-SVD_Schema_1_0.xsd
│   │   │   ├── CMSIS_SVD_Schema_Gen.png
│   │   │   ├── CMSIS_SVD_Vendor_DD.png
│   │   │   ├── CMSIS_SVD_WEB_DATABASE.png
│   │   │   ├── doxygen.png
│   │   │   ├── dynsections.js
│   │   │   ├── ftv2blank.png
│   │   │   ├── ftv2cl.png
│   │   │   ├── ftv2doc.png
│   │   │   ├── ftv2folderclosed.png
│   │   │   ├── ftv2folderopen.png
│   │   │   ├── ftv2lastnode.png
│   │   │   ├── ftv2link.png
│   │   │   ├── ftv2mlastnode.png
│   │   │   ├── ftv2mnode.png
│   │   │   ├── ftv2mo.png
│   │   │   ├── ftv2node.png
│   │   │   ├── ftv2ns.png
│   │   │   ├── ftv2plastnode.png
│   │   │   ├── ftv2pnode.png
│   │   │   ├── ftv2splitbar.png
│   │   │   ├── ftv2vertline.png
│   │   │   ├── group__cluster_level__gr.html
│   │   │   ├── group__cpu_section__gr.html
│   │   │   ├── group__device_section_extensions__gr.html
│   │   │   ├── group__dim_element_group__gr.html
│   │   │   ├── group__elem__type__gr.html
│   │   │   ├── group__elem__type__gr.js
│   │   │   ├── group__peripheral_section_extensions__gr.html
│   │   │   ├── group__register_properties_group__gr.html
│   │   │   ├── group__register_section_extensions__gr.html
│   │   │   ├── group__schema__1__1__gr.html
│   │   │   ├── group__schema__gr.html
│   │   │   ├── group__svd___format__1__1__gr.html
│   │   │   ├── group__svd___format__1__1__gr.js
│   │   │   ├── group__svd___format__gr.html
│   │   │   ├── group__svd___format__gr.js
│   │   │   ├── group__svd__xml__device__gr.html
│   │   │   ├── group__svd__xml__enum__gr.html
│   │   │   ├── group__svd__xml__fields__gr.html
│   │   │   ├── group__svd__xml__peripherals__gr.html
│   │   │   ├── group__svd__xml__registers__gr.html
│   │   │   ├── index.html
│   │   │   ├── index.js
│   │   │   ├── jquery.js
│   │   │   ├── Manage_SVD_DD.png
│   │   │   ├── modules.html
│   │   │   ├── modules.js
│   │   │   ├── nav_f.png
│   │   │   ├── nav_g.png
│   │   │   ├── nav_h.png
│   │   │   ├── navtree.css
│   │   │   ├── navtreeindex0.js
│   │   │   ├── navtree.js
│   │   │   ├── open.png
│   │   │   ├── pages.html
│   │   │   ├── resize.js
│   │   │   ├── svd__example_pg.html
│   │   │   ├── svd__outline_pg.html
│   │   │   ├── svd__usage_pg.html
│   │   │   ├── svd_validate_file_pg.html
│   │   │   ├── svd_web_pg.html
│   │   │   ├── svd_web_pg.js
│   │   │   ├── svd_web_public_pg.html
│   │   │   ├── svd_web_restricted_pg.html
│   │   │   ├── sync_off.png
│   │   │   ├── sync_on.png
│   │   │   ├── tab_a.png
│   │   │   ├── tab_b.png
│   │   │   ├── tab_h.png
│   │   │   ├── tabs.css
│   │   │   ├── tab_s.png
│   │   │   └── tab_topnav.png
│   │   ├── 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_cm4_simd.h
│   │   │   ├── core_cmFunc.h
│   │   │   ├── core_cmInstr.h
│   │   │   ├── core_sc000.h
│   │   │   └── core_sc300.h
│   │   ├── index.html
│   │   ├── README.txt
│   │   ├── RTOS
│   │   │   └── cmsis_os.h
│   │   └── SVD
│   │   ├── ARM_Sample_1_1.svd
│   │   ├── ARM_Sample.svd
│   │   ├── CMSIS-SVD_Schema_1_0.xsd
│   │   ├── CMSIS-SVD_Schema_1_1_draft.xsd
│   │   └── SVDConv.exe
│   └── STM32L0xx_HAL_Driver
│   ├── Inc
│   │   ├── stm32l0xx_hal_adc_ex.h
│   │   ├── stm32l0xx_hal_adc.h
│   │   ├── stm32l0xx_hal_comp.h
│   │   ├── stm32l0xx_hal_conf_template.h
│   │   ├── stm32l0xx_hal_cortex.h
│   │   ├── stm32l0xx_hal_crc_ex.h
│   │   ├── stm32l0xx_hal_crc.h
│   │   ├── stm32l0xx_hal_cryp_ex.h
│   │   ├── stm32l0xx_hal_cryp.h
│   │   ├── stm32l0xx_hal_dac_ex.h
│   │   ├── stm32l0xx_hal_dac.h
│   │   ├── stm32l0xx_hal_def.h
│   │   ├── stm32l0xx_hal_dma.h
│   │   ├── stm32l0xx_hal_flash_ex.h
│   │   ├── stm32l0xx_hal_flash.h
│   │   ├── stm32l0xx_hal_flash_ramfunc.h
│   │   ├── stm32l0xx_hal_gpio_ex.h
│   │   ├── stm32l0xx_hal_gpio.h
│   │   ├── stm32l0xx_hal.h
│   │   ├── stm32l0xx_hal_i2c_ex.h
│   │   ├── stm32l0xx_hal_i2c.h
│   │   ├── stm32l0xx_hal_i2s.h
│   │   ├── stm32l0xx_hal_irda_ex.h
│   │   ├── stm32l0xx_hal_irda.h
│   │   ├── stm32l0xx_hal_iwdg.h
│   │   ├── stm32l0xx_hal_lcd.h
│   │   ├── stm32l0xx_hal_lptim.h
│   │   ├── stm32l0xx_hal_pcd_ex.h
│   │   ├── stm32l0xx_hal_pcd.h
│   │   ├── stm32l0xx_hal_pwr_ex.h
│   │   ├── stm32l0xx_hal_pwr.h
│   │   ├── stm32l0xx_hal_rcc_ex.h
│   │   ├── stm32l0xx_hal_rcc.h
│   │   ├── stm32l0xx_hal_rng.h
│   │   ├── stm32l0xx_hal_rtc_ex.h
│   │   ├── stm32l0xx_hal_rtc.h
│   │   ├── stm32l0xx_hal_smartcard_ex.h
│   │   ├── stm32l0xx_hal_smartcard.h
│   │   ├── stm32l0xx_hal_smbus.h
│   │   ├── stm32l0xx_hal_spi.h
│   │   ├── stm32l0xx_hal_tim_ex.h
│   │   ├── stm32l0xx_hal_tim.h
│   │   ├── stm32l0xx_hal_tsc.h
│   │   ├── stm32l0xx_hal_uart_ex.h
│   │   ├── stm32l0xx_hal_uart.h
│   │   ├── stm32l0xx_hal_usart_ex.h
│   │   ├── stm32l0xx_hal_usart.h
│   │   └── stm32l0xx_hal_wwdg.h
│   ├── Release_Notes.html
│   └── Src
│   ├── stm32l0xx_hal_adc.c
│   ├── stm32l0xx_hal_adc_ex.c
│   ├── stm32l0xx_hal.c
│   ├── stm32l0xx_hal_comp.c
│   ├── stm32l0xx_hal_cortex.c
│   ├── stm32l0xx_hal_crc.c
│   ├── stm32l0xx_hal_crc_ex.c
│   ├── stm32l0xx_hal_cryp.c
│   ├── stm32l0xx_hal_cryp_ex.c
│   ├── stm32l0xx_hal_dac.c
│   ├── stm32l0xx_hal_dac_ex.c
│   ├── stm32l0xx_hal_dma.c
│   ├── stm32l0xx_hal_flash.c
│   ├── stm32l0xx_hal_flash_ex.c
│   ├── stm32l0xx_hal_flash_ramfunc.c
│   ├── stm32l0xx_hal_gpio.c
│   ├── stm32l0xx_hal_i2c.c
│   ├── stm32l0xx_hal_i2c_ex.c
│   ├── stm32l0xx_hal_i2s.c
│   ├── stm32l0xx_hal_irda.c
│   ├── stm32l0xx_hal_iwdg.c
│   ├── stm32l0xx_hal_lcd.c
│   ├── stm32l0xx_hal_lptim.c
│   ├── stm32l0xx_hal_msp_template.c
│   ├── stm32l0xx_hal_pcd.c
│   ├── stm32l0xx_hal_pcd_ex.c
│   ├── stm32l0xx_hal_pwr.c
│   ├── stm32l0xx_hal_pwr_ex.c
│   ├── stm32l0xx_hal_rcc.c
│   ├── stm32l0xx_hal_rcc_ex.c
│   ├── stm32l0xx_hal_rng.c
│   ├── stm32l0xx_hal_rtc.c
│   ├── stm32l0xx_hal_rtc_ex.c
│   ├── stm32l0xx_hal_smartcard.c
│   ├── stm32l0xx_hal_smartcard_ex.c
│   ├── stm32l0xx_hal_smbus.c
│   ├── stm32l0xx_hal_spi.c
│   ├── stm32l0xx_hal_tim.c
│   ├── stm32l0xx_hal_tim_ex.c
│   ├── stm32l0xx_hal_tsc.c
│   ├── stm32l0xx_hal_uart.c
│   ├── stm32l0xx_hal_uart_ex.c
│   ├── stm32l0xx_hal_usart.c
│   └── stm32l0xx_hal_wwdg.c
├── _htmresc
│   ├── CMSIS_Logo_Final.jpg
│   ├── Eval_archi.bmp
│   ├── logo.bmp
│   ├── ReleaseNotes.html
│   ├── st_logo.png
│   └── STM32Cube_components.bmp
├── Middlewares
│   ├── ST
│   │   ├── STM32_TouchSensing_Library
│   │   │   ├── inc
│   │   │   │   ├── tsl_acq.h
│   │   │   │   ├── tsl_acq_tsc.h
│   │   │   │   ├── tsl_check_config.h
│   │   │   │   ├── tsl_check_config_tsc.h
│   │   │   │   ├── tsl_conf_tsc_template.h
│   │   │   │   ├── tsl_dxs.h
│   │   │   │   ├── tsl_ecs.h
│   │   │   │   ├── tsl_filter.h
│   │   │   │   ├── tsl_globals.h
│   │   │   │   ├── tsl.h
│   │   │   │   ├── tsl_linrot.h
│   │   │   │   ├── tsl_object.h
│   │   │   │   ├── tsl_time.h
│   │   │   │   ├── tsl_touchkey.h
│   │   │   │   └── tsl_types.h
│   │   │   ├── Release_Notes.html
│   │   │   └── src
│   │   │   ├── tsl_acq.c
│   │   │   ├── tsl_acq_tsc.c
│   │   │   ├── tsl.c
│   │   │   ├── tsl_dxs.c
│   │   │   ├── tsl_ecs.c
│   │   │   ├── tsl_filter.c
│   │   │   ├── tsl_globals.c
│   │   │   ├── tsl_linrot.c
│   │   │   ├── tsl_object.c
│   │   │   ├── tsl_time.c
│   │   │   └── tsl_touchkey.c
│   │   └── STM32_USB_Device_Library
│   │   ├── Class
│   │   │   ├── AUDIO
│   │   │   │   ├── Inc
│   │   │   │   │   ├── usbd_audio.h
│   │   │   │   │   └── usbd_audio_if_template.h
│   │   │   │   └── Src
│   │   │   │   ├── usbd_audio.c
│   │   │   │   └── usbd_audio_if_template.c
│   │   │   ├── CDC
│   │   │   │   ├── Inc
│   │   │   │   │   ├── usbd_cdc.h
│   │   │   │   │   └── usbd_cdc_if_template.h
│   │   │   │   └── Src
│   │   │   │   ├── usbd_cdc.c
│   │   │   │   └── usbd_cdc_if_template.c
│   │   │   ├── CustomHID
│   │   │   │   ├── Inc
│   │   │   │   │   ├── usbd_customhid.h
│   │   │   │   │   └── usbd_customhid_if_template.h
│   │   │   │   └── Src
│   │   │   │   ├── usbd_customhid.c
│   │   │   │   └── usbd_customhid_if_template.c
│   │   │   ├── DFU
│   │   │   │   ├── Inc
│   │   │   │   │   ├── usbd_dfu.h
│   │   │   │   │   └── usbd_dfu_media_template.h
│   │   │   │   └── Src
│   │   │   │   ├── usbd_dfu.c
│   │   │   │   └── usbd_dfu_media_template.c
│   │   │   ├── HID
│   │   │   │   ├── Inc
│   │   │   │   │   └── usbd_hid.h
│   │   │   │   └── Src
│   │   │   │   └── usbd_hid.c
│   │   │   ├── MSC
│   │   │   │   ├── Inc
│   │   │   │   │   ├── usbd_msc_bot.h
│   │   │   │   │   ├── usbd_msc_data.h
│   │   │   │   │   ├── usbd_msc.h
│   │   │   │   │   ├── usbd_msc_scsi.h
│   │   │   │   │   └── usbd_msc_storage_template.h
│   │   │   │   └── Src
│   │   │   │   ├── usbd_msc_bot.c
│   │   │   │   ├── usbd_msc.c
│   │   │   │   ├── usbd_msc_data.c
│   │   │   │   ├── usbd_msc_scsi.c
│   │   │   │   └── usbd_msc_storage_template.c
│   │   │   └── Template
│   │   │   ├── Inc
│   │   │   │   └── usbd_template.h
│   │   │   └── Src
│   │   │   └── usbd_template.c
│   │   ├── Core
│   │   │   ├── Inc
│   │   │   │   ├── usbd_conf_template.h
│   │   │   │   ├── usbd_core.h
│   │   │   │   ├── usbd_ctlreq.h
│   │   │   │   ├── usbd_def.h
│   │   │   │   └── usbd_ioreq.h
│   │   │   └── Src
│   │   │   ├── usbd_conf_template.c
│   │   │   ├── usbd_core.c
│   │   │   ├── usbd_ctlreq.c
│   │   │   └── usbd_ioreq.c
│   │   └── Release_Notes.html
│   └── Third_Party
│   ├── FatFs
│   │   ├── doc
│   │   │   ├── 00index_e.html
│   │   │   ├── 00index_j.html
│   │   │   ├── css_e.css
│   │   │   ├── css_j.css
│   │   │   ├── en
│   │   │   │   ├── appnote.html
│   │   │   │   ├── chdir.html
│   │   │   │   ├── chdrive.html
│   │   │   │   ├── chmod.html
│   │   │   │   ├── closedir.html
│   │   │   │   ├── close.html
│   │   │   │   ├── dinit.html
│   │   │   │   ├── dioctl.html
│   │   │   │   ├── dread.html
│   │   │   │   ├── dstat.html
│   │   │   │   ├── dwrite.html
│   │   │   │   ├── eof.html
│   │   │   │   ├── error.html
│   │   │   │   ├── fattime.html
│   │   │   │   ├── fdisk.html
│   │   │   │   ├── filename.html
│   │   │   │   ├── forward.html
│   │   │   │   ├── getcwd.html
│   │   │   │   ├── getfree.html
│   │   │   │   ├── getlabel.html
│   │   │   │   ├── gets.html
│   │   │   │   ├── lseek.html
│   │   │   │   ├── mkdir.html
│   │   │   │   ├── mkfs.html
│   │   │   │   ├── mount.html
│   │   │   │   ├── opendir.html
│   │   │   │   ├── open.html
│   │   │   │   ├── printf.html
│   │   │   │   ├── putc.html
│   │   │   │   ├── puts.html
│   │   │   │   ├── rc.html
│   │   │   │   ├── readdir.html
│   │   │   │   ├── read.html
│   │   │   │   ├── rename.html
│   │   │   │   ├── sdir.html
│   │   │   │   ├── setlabel.html
│   │   │   │   ├── sfatfs.html
│   │   │   │   ├── sfile.html
│   │   │   │   ├── sfileinfo.html
│   │   │   │   ├── size.html
│   │   │   │   ├── stat.html
│   │   │   │   ├── sync.html
│   │   │   │   ├── tell.html
│   │   │   │   ├── truncate.html
│   │   │   │   ├── unlink.html
│   │   │   │   ├── utime.html
│   │   │   │   └── write.html
│   │   │   ├── img
│   │   │   │   ├── app1.c
│   │   │   │   ├── app2.c
│   │   │   │   ├── app3.c
│   │   │   │   ├── f1.png
│   │   │   │   ├── f2.png
│   │   │   │   ├── f3.png
│   │   │   │   ├── f4.png
│   │   │   │   ├── f5.png
│   │   │   │   ├── f6.png
│   │   │   │   ├── f7.png
│   │   │   │   ├── layers3.png
│   │   │   │   ├── layers.png
│   │   │   │   ├── modules.png
│   │   │   │   ├── rwtest2.png
│   │   │   │   ├── rwtest3.png
│   │   │   │   └── rwtest.png
│   │   │   ├── ja
│   │   │   │   ├── appnote.html
│   │   │   │   ├── chdir.html
│   │   │   │   ├── chdrive.html
│   │   │   │   ├── chmod.html
│   │   │   │   ├── closedir.html
│   │   │   │   ├── close.html
│   │   │   │   ├── dinit.html
│   │   │   │   ├── dioctl.html
│   │   │   │   ├── dread.html
│   │   │   │   ├── dstat.html
│   │   │   │   ├── dwrite.html
│   │   │   │   ├── eof.html
│   │   │   │   ├── error.html
│   │   │   │   ├── fattime.html
│   │   │   │   ├── fdisk.html
│   │   │   │   ├── filename.html
│   │   │   │   ├── forward.html
│   │   │   │   ├── getcwd.html
│   │   │   │   ├── getfree.html
│   │   │   │   ├── getlabel.html
│   │   │   │   ├── gets.html
│   │   │   │   ├── lseek.html
│   │   │   │   ├── mkdir.html
│   │   │   │   ├── mkfs.html
│   │   │   │   ├── mount.html
│   │   │   │   ├── opendir.html
│   │   │   │   ├── open.html
│   │   │   │   ├── printf.html
│   │   │   │   ├── putc.html
│   │   │   │   ├── puts.html
│   │   │   │   ├── rc.html
│   │   │   │   ├── readdir.html
│   │   │   │   ├── read.html
│   │   │   │   ├── rename.html
│   │   │   │   ├── sdir.html
│   │   │   │   ├── setlabel.html
│   │   │   │   ├── sfatfs.html
│   │   │   │   ├── sfile.html
│   │   │   │   ├── sfileinfo.html
│   │   │   │   ├── size.html
│   │   │   │   ├── stat.html
│   │   │   │   ├── sync.html
│   │   │   │   ├── tell.html
│   │   │   │   ├── truncate.html
│   │   │   │   ├── unlink.html
│   │   │   │   ├── utime.html
│   │   │   │   └── write.html
│   │   │   └── updates.txt
│   │   └── src
│   │   ├── 00readme.txt
│   │   ├── diskio.c
│   │   ├── diskio.h
│   │   ├── drivers
│   │   │   ├── sd_diskio.c
│   │   │   ├── sd_diskio.h
│   │   │   ├── sdram_diskio.c
│   │   │   ├── sdram_diskio.h
│   │   │   ├── sram_diskio.c
│   │   │   ├── sram_diskio.h
│   │   │   ├── usbh_diskio.c
│   │   │   └── usbh_diskio.h
│   │   ├── ff.c
│   │   ├── ffconf_template.h
│   │   ├── ff_gen_drv.c
│   │   ├── ff_gen_drv.h
│   │   ├── ff.h
│   │   ├── integer.h
│   │   ├── option
│   │   │   ├── cc932.c
│   │   │   ├── cc936.c
│   │   │   ├── cc949.c
│   │   │   ├── cc950.c
│   │   │   ├── ccsbcs.c
│   │   │   ├── syscall.c
│   │   │   └── unicode.c
│   │   └── st_readme.txt
│   └── FreeRTOS
│   ├── License
│   │   └── license.txt
│   ├── Quick_Start_Guide.url
│   └── Source
│   ├── CMSIS_RTOS
│   │   ├── cmsis_os.c
│   │   └── cmsis_os.h
│   ├── croutine.c
│   ├── include
│   │   ├── croutine.h
│   │   ├── FreeRTOSConfig_template.h
│   │   ├── FreeRTOS.h
│   │   ├── list.h
│   │   ├── mpu_wrappers.h
│   │   ├── portable.h
│   │   ├── projdefs.h
│   │   ├── queue.h
│   │   ├── semphr.h
│   │   ├── StackMacros.h
│   │   ├── task.h
│   │   └── timers.h
│   ├── list.c
│   ├── portable
│   │   ├── GCC
│   │   │   ├── ARM_CM0
│   │   │   │   ├── port.c
│   │   │   │   └── portmacro.h
│   │   │   ├── ARM_CM3
│   │   │   │   ├── port.c
│   │   │   │   └── portmacro.h
│   │   │   ├── ARM_CM3_MPU
│   │   │   │   ├── port.c
│   │   │   │   └── portmacro.h
│   │   │   └── ARM_CM4F
│   │   │   ├── port.c
│   │   │   └── portmacro.h
│   │   ├── IAR
│   │   │   ├── ARM_CM0
│   │   │   │   ├── portasm.s
│   │   │   │   ├── port.c
│   │   │   │   └── portmacro.h
│   │   │   ├── ARM_CM3
│   │   │   │   ├── portasm.s
│   │   │   │   ├── port.c
│   │   │   │   └── portmacro.h
│   │   │   └── ARM_CM4F
│   │   │   ├── portasm.s
│   │   │   ├── port.c
│   │   │   └── portmacro.h
│   │   ├── Keil
│   │   │   └── See-also-the-RVDS-directory.txt
│   │   ├── MemMang
│   │   │   ├── heap_1.c
│   │   │   ├── heap_2.c
│   │   │   ├── heap_3.c
│   │   │   └── heap_4.c
│   │   ├── readme.txt
│   │   ├── RVDS
│   │   │   ├── ARM_CM0
│   │   │   │   ├── port.c
│   │   │   │   └── portmacro.h
│   │   │   ├── ARM_CM3
│   │   │   │   ├── port.c
│   │   │   │   └── portmacro.h
│   │   │   └── ARM_CM4F
│   │   │   ├── port.c
│   │   │   └── portmacro.h
│   │   └── Tasking
│   │   └── ARM_CM4F
│   │   ├── port_asm.asm
│   │   ├── port.c
│   │   └── portmacro.h
│   ├── queue.c
│   ├── readme.txt
│   ├── st_readme.txt
│   ├── tasks.c
│   └── timers.c
├── package.xml
├── Projects
│   ├── STM32L053C8-Discovery
│   │   ├── Applications
│   │   │   ├── FreeRTOS
│   │   │   │   ├── FreeRTOS_LowPower
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── FreeRTOS_Mutexes
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── FreeRTOS_Queues
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── FreeRTOS_Semaphore
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── FreeRTOS_SemaphoreFromISR
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── FreeRTOS_ThreadCreation
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── FreeRTOS_Timers
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── Release_Notes.html
│   │   │   ├── TouchSensing
│   │   │   │   └── TouchSensing_Linear
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   │   ├── stmCriticalSection.h
│   │   │   │   │   ├── tsl_conf.h
│   │   │   │   │   └── tsl_user.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   ├── stmCriticalSection.c
│   │   │   │   │   ├── system_stm32l0xx.c
│   │   │   │   │   └── tsl_user.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8-Discovery
│   │   │   │   ├── STM32L053C8-Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   └── USB_Device
│   │   │   ├── DFU_Standalone
│   │   │   │   ├── Binary
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   └── STM32L0xx_Discovery_SysTick_0x08007000.dfu
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   ├── stm32l053xx_flash.icf
│   │   │   │   │   ├── USBD_DFU.ewd
│   │   │   │   │   ├── USBD_DFU.ewp
│   │   │   │   │   └── USBD_DFU.eww
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   │   ├── usbd_conf.h
│   │   │   │   │   ├── usbd_desc.h
│   │   │   │   │   └── usbd_dfu_flash.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   ├── system_stm32l0xx.c
│   │   │   │   │   ├── usbd_conf.c
│   │   │   │   │   ├── usbd_desc.c
│   │   │   │   │   └── usbd_dfu_flash.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   └── HID_TSL_Standalone
│   │   │   ├── EWARM
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   ├── stm32l053xx_flash.icf
│   │   │   │   ├── USBD_HID_TSL.ewd
│   │   │   │   ├── USBD_HID_TSL.ewp
│   │   │   │   └── USBD_HID_TSL.eww
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   ├── tsl_conf.h
│   │   │   │   ├── tsl_user.h
│   │   │   │   ├── usbd_conf.h
│   │   │   │   └── usbd_desc.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   ├── system_stm32l0xx.c
│   │   │   │   ├── tsl_user.c
│   │   │   │   ├── usbd_conf.c
│   │   │   │   └── usbd_desc.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053C8_Discovery
│   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   └── STM32L053C8_FLASH.ld
│   │   ├── Demonstrations
│   │   │   ├── Binary
│   │   │   │   └── STM32L053C8-Discovery_Demo_V1.0.1.hex
│   │   │   ├── Config
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   ├── tsl_conf.h
│   │   │   │   ├── usbd_conf.c
│   │   │   │   ├── usbd_conf.h
│   │   │   │   └── usbd_desc.h
│   │   │   ├── Core
│   │   │   │   ├── Inc
│   │   │   │   │   ├── bsp.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── menu.h
│   │   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   │   ├── stmCriticalSection.h
│   │   │   │   │   ├── tsl_config.h
│   │   │   │   │   └── tsl_user.h
│   │   │   │   └── Src
│   │   │   │   ├── bsp.c
│   │   │   │   ├── main.c
│   │   │   │   ├── menu.c
│   │   │   │   ├── menu_res.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   ├── system_stm32l0xx.c
│   │   │   │   └── tsl_user.c
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── Modules
│   │   │   │   ├── iddmeasurement
│   │   │   │   │   ├── idd_res.c
│   │   │   │   │   ├── power.c
│   │   │   │   │   └── power.h
│   │   │   │   └── usbHID
│   │   │   │   ├── usbdapp.c
│   │   │   │   ├── usbdapp.h
│   │   │   │   ├── usbd_conf.c
│   │   │   │   ├── usbd_desc.c
│   │   │   │   └── usbdevice_res.c
│   │   │   ├── readme.txt
│   │   │   └── Release_Notes.html
│   │   ├── Examples
│   │   │   ├── ADC
│   │   │   │   ├── ADC_DMA_Transfer
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── ADC_OverSampler
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── ADC_RegularConversion_Interrupt
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── COMP
│   │   │   │   ├── COMP_AnalogWatchdog
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── COMP_PulseWidthMeasurement
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── COMP_PWMSignalControl
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── Cortex
│   │   │   │   ├── CORTEXM_ModePrivilege
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32F030C6_FLASH.ld
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── CORTEXM_MPU
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   │   │   └── stm32_mpu.h
│   │   │   │   │   ├── Linker
│   │   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   │   └── stm32F_flash_ROAarray.ld
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   ├── stm32_mpu.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── CORTEXM_SysTick
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── CRC
│   │   │   │   └── CRC_Example
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── DAC
│   │   │   │   ├── DAC_SignalsGeneration
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── DAC_SimpleConversion
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── DMA
│   │   │   │   ├── DMA_FLASHToRAM
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── DMA_RAMToDAC
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── FLASH
│   │   │   │   ├── FLASH_EraseProgram
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── FLASH_WriteProtection
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── GPIO
│   │   │   │   ├── GPIO_EXTI
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── GPIO_IOToggle_MaxFrequency
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── HAL
│   │   │   │   └── HAL_TimeBase
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── I2C
│   │   │   │   ├── I2C_TwoBoards_AdvComIT
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── I2C_TwoBoards_ComDMA
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── I2C_TwoBoards_ComIT
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── IWDG
│   │   │   │   ├── IWDG_Reset
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── IWDG_WindowMode
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── LPTIM
│   │   │   │   ├── LPTIM_PulseCounter
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── LPTIM_PWMExternalClock
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── LPTIM_PWM_LSE
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── LPTIM_Timeout
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── PWR
│   │   │   │   ├── PWR_LPRUN
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── PWR_LPSLEEP
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── PWR_PVD
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── PWR_SLEEP
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── PWR_STANDBY
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── PWR_STANDBY_RTC
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── PWR_STOP
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── PWR_STOP_RTC
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── RCC
│   │   │   │   ├── RCC_CRS_Synchonization_IT
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── RCC_CRS_Synchonization_Polling
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── Release_Notes.html
│   │   │   ├── RNG
│   │   │   │   └── RNG_MultiRNG
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── RTC
│   │   │   │   ├── RTC_Alarm
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── RTC_Calendar
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── RTC_LSI
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── RTC_Tamper
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── RTC_TimeStamp
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── SPI
│   │   │   │   ├── SPI_FullDuplex_ComDMA
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── SPI_FullDuplex_ComIT
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── TIM
│   │   │   │   ├── TIM_DMA
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── TIM_DMABurst
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── TIM_InputCapture
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── TIM_OCActive
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── TIM_OCToggle
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── TIM_PWMOutput
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── TIM_TimeBase
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   ├── UART
│   │   │   │   ├── LPUART_TwoBoards_ComIT
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── LPUART_WakeUpFromStop
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   ├── UART_TwoBoards_ComDMA
│   │   │   │   │   ├── EWARM
│   │   │   │   │   │   ├── Project.ewd
│   │   │   │   │   │   ├── Project.ewp
│   │   │   │   │   │   ├── Project.eww
│   │   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   │   ├── Inc
│   │   │   │   │   │   ├── main.h
│   │   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   │   ├── MDK-ARM
│   │   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   │   ├── readme.txt
│   │   │   │   │   ├── Src
│   │   │   │   │   │   ├── main.c
│   │   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   │   └── UART_TwoBoards_ComIT
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053C8_Discovery
│   │   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   │   └── STM32L053C8_FLASH.ld
│   │   │   └── WWDG
│   │   │   └── WWDG_Example
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053C8_Discovery
│   │   │   ├── STM32L053C8_Discovery.elf.launch
│   │   │   └── STM32L053C8_FLASH.ld
│   │   └── Templates
│   │   ├── EWARM
│   │   │   ├── Project.ewd
│   │   │   ├── Project.ewp
│   │   │   ├── Project.eww
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── stm32l053xx_flash.icf
│   │   ├── Inc
│   │   │   ├── main.h
│   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   └── stm32l0xx_it.h
│   │   ├── MDK-ARM
│   │   │   ├── Project.uvopt
│   │   │   ├── Project.uvproj
│   │   │   └── startup_stm32l053xx.s
│   │   ├── readme.txt
│   │   ├── Release_Notes.html
│   │   ├── Src
│   │   │   ├── main.c
│   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   ├── stm32l0xx_it.c
│   │   │   └── system_stm32l0xx.c
│   │   └── TrueSTUDIO
│   │   ├── startup_stm32l053xx.s
│   │   └── STM32L053C8_Discovery
│   │   ├── STM32L053C8_Discovery.elf.launch
│   │   └── STM32L053C8_FLASH.ld
│   └── STM32L053R8-Nucleo
│   ├── Applications
│   │   ├── FatFs
│   │   │   ├── FatFs_uSD
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── ffconf.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── FatFs_uSD_RTOS
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── ffconf.h
│   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── FreeRTOS
│   │   │   ├── FreeRTOS_LowPower
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── FreeRTOS_Mutexes
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── FreeRTOS_Queues
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── FreeRTOS_Semaphore
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── FreeRTOS_SemaphoreFromISR
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── FreeRTOS_ThreadCreation
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── FreeRTOS_Timers
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── Release_Notes.html
│   │   └── USB_Device
│   │   ├── DFU_Standalone
│   │   │   ├── Binary
│   │   │   │   ├── readme.txt
│   │   │   │   └── STM32L0xx_Nucleo_SysTick_0x08007000.dfu
│   │   │   ├── EWARM
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   ├── stm32l053xx_flash.icf
│   │   │   │   ├── USBD_DFU.ewd
│   │   │   │   ├── USBD_DFU.ewp
│   │   │   │   └── USBD_DFU.eww
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   ├── usbd_conf.h
│   │   │   │   ├── usbd_desc.h
│   │   │   │   └── usbd_dfu_flash.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   ├── system_stm32l0xx.c
│   │   │   │   ├── usbd_conf.c
│   │   │   │   ├── usbd_desc.c
│   │   │   │   └── usbd_dfu_flash.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO_USB
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO_USB.elf.launch
│   │   └── HID_Standalone
│   │   ├── EWARM
│   │   │   ├── stm32l053xx_flash.icf
│   │   │   ├── USBD_HID.ewd
│   │   │   ├── USBD_HID.ewp
│   │   │   └── USBD_HID.eww
│   │   ├── Inc
│   │   │   ├── main.h
│   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   ├── stm32l0xx_it.h
│   │   │   ├── usbd_conf.h
│   │   │   └── usbd_desc.h
│   │   ├── MDK-ARM
│   │   │   ├── Project.uvopt
│   │   │   ├── Project.uvproj
│   │   │   └── startup_stm32l053xx.s
│   │   ├── readme.txt
│   │   ├── Src
│   │   │   ├── main.c
│   │   │   ├── stm32l0xx_it.c
│   │   │   ├── system_stm32l0xx.c
│   │   │   ├── usbd_conf.c
│   │   │   └── usbd_desc.c
│   │   └── TrueSTUDIO
│   │   ├── startup_stm32l053xx.s
│   │   └── STM32L053R8_NUCLEO_USB
│   │   ├── STM32L053R8_FLASH.ld
│   │   └── STM32L053R8_NUCLEO_USB.elf.launch
│   ├── Demonstrations
│   │   ├── Binary
│   │   │   ├── readme.txt
│   │   │   └── STM32CubeL0_Demo_Nucleo.hex
│   │   ├── EWARM
│   │   │   ├── Project.ewd
│   │   │   ├── Project.ewp
│   │   │   ├── Project.eww
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── stm32l053xx_flash.icf
│   │   ├── Inc
│   │   │   ├── fatfs_storage.h
│   │   │   ├── ffconf.h
│   │   │   ├── main.h
│   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   └── stm32l0xx_it.h
│   │   ├── MDK-ARM
│   │   │   ├── Project.uvopt
│   │   │   ├── Project.uvproj
│   │   │   └── startup_stm32l053xx.s
│   │   ├── Media
│   │   │   ├── 10_16.bmp
│   │   │   ├── 1_16.bmp
│   │   │   ├── 12_16.bmp
│   │   │   ├── 2_16.bmp
│   │   │   ├── 3_16.bmp
│   │   │   ├── 4_16.bmp
│   │   │   ├── 5_16.bmp
│   │   │   ├── 6_16.bmp
│   │   │   ├── 7_16.bmp
│   │   │   ├── 8_16.bmp
│   │   │   ├── 9_16.bmp
│   │   │   └── l0.bmp
│   │   ├── readme.txt
│   │   ├── Release_Notes.html
│   │   └── Src
│   │   ├── fatfs_storage.c
│   │   ├── main.c
│   │   ├── stm32l0xx_it.c
│   │   └── system_stm32l0xx.c
│   ├── Examples
│   │   ├── ADC
│   │   │   ├── ADC_DMA_Transfer
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── ADC_OverSampler
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── ADC_RegularConversion_Interrupt
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── ADC_RegularConversion_Polling
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── AES
│   │   │   ├── AES_DMA
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l063xx.s
│   │   │   │   │   └── stm32l063xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l063xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l063xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── AES_Modes
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l063xx.s
│   │   │   │   └── stm32l063xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l063xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l063xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── BSP
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── lcd_log_conf.h
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── joystick.c
│   │   │   │   ├── lcd.c
│   │   │   │   ├── main.c
│   │   │   │   ├── sd.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── COMP
│   │   │   ├── COMP_AnalogWatchdog
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── COMP_Interrupt
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── COMP_PulseWidthMeasurement
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── COMP_PWMSignalControl
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── Cortex
│   │   │   ├── CORTEXM_ModePrivilege
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── CORTEXM_MPU
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   │   └── stm32_mpu.h
│   │   │   │   ├── Linker
│   │   │   │   │   └── TrueSTUDIO
│   │   │   │   │   └── stm32F_flash_ROAarray.ld
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   ├── stm32_mpu.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── CORTEXM_SysTick
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── CRC
│   │   │   └── CRC_Example
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── DAC
│   │   │   ├── DAC_SignalsGeneration
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── DAC_SimpleConversion
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── DMA
│   │   │   ├── DMA_FLASHToRAM
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── DMA_RAMToDAC
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── FLASH
│   │   │   ├── FLASH_EraseProgram
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── FLASH_WriteProtection
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── GPIO
│   │   │   ├── GPIO_EXTI
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── GPIO_IOToggle
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── GPIO_IOToggle_MaxFrequency
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── HAL
│   │   │   └── HAL_TimeBase
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── I2C
│   │   │   ├── I2C_TwoBoards_AdvComIT
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── I2C_TwoBoards_ComDMA
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── I2C_TwoBoards_ComIT
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── I2C_TwoBoards_ComPolling
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── IWDG
│   │   │   ├── IWDG_Reset
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── IWDG_WindowMode
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── LCD
│   │   │   ├── LCD_Blink_Frequency
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   │   ├── stm32l152c_discovery.h
│   │   │   │   │   └── stm32l152c_discovery_lcd.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   ├── stm32l152c_discovery.c
│   │   │   │   │   ├── stm32l152c_discovery_lcd.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── LCD_SegmentsDrive
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   ├── stm32l0xx_it.h
│   │   │   │   ├── stm32l152c_discovery.h
│   │   │   │   └── stm32l152c_discovery_lcd.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   ├── stm32l152c_discovery.c
│   │   │   │   ├── stm32l152c_discovery_lcd.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── LPTIM
│   │   │   ├── LPTIM_PulseCounter
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── LPTIM_PWMExternalClock
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── LPTIM_PWM_LSE
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── LPTIM_Timeout
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── PWR
│   │   │   ├── PWR_LPRUN
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── PWR_LPSLEEP
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── PWR_PVD
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── PWR_SLEEP
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── PWR_STANDBY
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── PWR_STANDBY_RTC
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── PWR_STOP
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── PWR_STOP_RTC
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── RCC
│   │   │   └── RCC_ClockConfig
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── Release_Notes.html
│   │   ├── RNG
│   │   │   └── RNG_MultiRNG
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── RTC
│   │   │   ├── RTC_Alarm
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── RTC_Calendar
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── RTC_LSI
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── RTC_Tamper
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── RTC_TimeStamp
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── SPI
│   │   │   ├── SPI_FullDuplex_ComDMA
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── SPI_FullDuplex_ComIT
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── SPI_FullDuplex_ComPolling
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── TIM
│   │   │   ├── TIM_DMA
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_DMABurst
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_ExtTriggerSynchro
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_InputCapture
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_OCActive
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_OCInactive
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_OCToggle
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_OnePulse
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_PWMIntput
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── TIM_PWMOutput
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── TIM_TimeBase
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   ├── UART
│   │   │   ├── UART_TwoBoards_ComDMA
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   ├── UART_TwoBoards_ComIT
│   │   │   │   ├── EWARM
│   │   │   │   │   ├── Project.ewd
│   │   │   │   │   ├── Project.ewp
│   │   │   │   │   ├── Project.eww
│   │   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   │   └── stm32l053xx_flash.icf
│   │   │   │   ├── Inc
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   │   └── stm32l0xx_it.h
│   │   │   │   ├── MDK-ARM
│   │   │   │   │   ├── Project.uvopt
│   │   │   │   │   ├── Project.uvproj
│   │   │   │   │   └── startup_stm32l053xx.s
│   │   │   │   ├── readme.txt
│   │   │   │   ├── Src
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   │   └── system_stm32l0xx.c
│   │   │   │   └── TrueSTUDIO
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── STM32L053R8_NUCLEO
│   │   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   │   └── UART_TwoBoards_ComPolling
│   │   │   ├── EWARM
│   │   │   │   ├── Project.ewd
│   │   │   │   ├── Project.ewp
│   │   │   │   ├── Project.eww
│   │   │   │   ├── startup_stm32l053xx.s
│   │   │   │   └── stm32l053xx_flash.icf
│   │   │   ├── Inc
│   │   │   │   ├── main.h
│   │   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   │   └── stm32l0xx_it.h
│   │   │   ├── MDK-ARM
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── startup_stm32l053xx.s
│   │   │   ├── readme.txt
│   │   │   ├── Src
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   │   ├── stm32l0xx_it.c
│   │   │   │   └── system_stm32l0xx.c
│   │   │   └── TrueSTUDIO
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── STM32L053R8_NUCLEO
│   │   │   ├── STM32L053R8_FLASH.ld
│   │   │   └── STM32L053R8_NUCLEO.elf.launch
│   │   └── WWDG
│   │   └── WWDG_Example
│   │   ├── EWARM
│   │   │   ├── Project.ewd
│   │   │   ├── Project.ewp
│   │   │   ├── Project.eww
│   │   │   ├── startup_stm32l053xx.s
│   │   │   └── stm32l053xx_flash.icf
│   │   ├── Inc
│   │   │   ├── main.h
│   │   │   ├── stm32l0xx_hal_conf.h
│   │   │   └── stm32l0xx_it.h
│   │   ├── MDK-ARM
│   │   │   ├── Project.uvopt
│   │   │   ├── Project.uvproj
│   │   │   └── startup_stm32l053xx.s
│   │   ├── readme.txt
│   │   ├── Src
│   │   │   ├── main.c
│   │   │   ├── stm32l0xx_hal_msp.c
│   │   │   ├── stm32l0xx_it.c
│   │   │   └── system_stm32l0xx.c
│   │   └── TrueSTUDIO
│   │   ├── startup_stm32l053xx.s
│   │   └── STM32L053R8_NUCLEO
│   │   ├── STM32L053R8_FLASH.ld
│   │   └── STM32L053R8_NUCLEO.elf.launch
│   └── Templates
│   ├── EWARM
│   │   ├── Project.ewd
│   │   ├── Project.ewp
│   │   ├── Project.eww
│   │   ├── startup_stm32l053xx.s
│   │   └── stm32l053xx_flash.icf
│   ├── Inc
│   │   ├── main.h
│   │   ├── stm32l0xx_hal_conf.h
│   │   └── stm32l0xx_it.h
│   ├── MDK-ARM
│   │   ├── Project.uvopt
│   │   ├── Project.uvproj
│   │   └── startup_stm32l053xx.s
│   ├── readme.txt
│   ├── Release_Notes.html
│   ├── Src
│   │   ├── main.c
│   │   ├── stm32l0xx_hal_msp.c
│   │   ├── stm32l0xx_it.c
│   │   └── system_stm32l0xx.c
│   └── TrueSTUDIO
│   ├── startup_stm32l053xx.s
│   └── STM32L053R8_NUCLEO
│   ├── STM32L053R8_FLASH.ld
│   └── STM32L053R8_NUCLEO.elf.launch
├── Release_Notes.html
└── Utilities
├── CPU
│   ├── cpu_utils.c
│   ├── cpu_utils.h
│   └── Release_Notes.html
├── Fonts
│   ├── font12.c
│   ├── font16.c
│   ├── font20.c
│   ├── font24.c
│   ├── font8.c
│   ├── fonts.h
│   └── Release_Notes.html
├── Log
│   ├── lcd_log.c
│   ├── lcd_log_conf_template.h
│   ├── lcd_log.h
│   └── Release_Notes.html
└── PC_Software
└── STM32CubeUpdater
├── readme.txt
└── SetupSTM32CubeUpdater-4.2.0.exe

1245 directories, 4061 files

标签:

实例下载地址

STM32L0代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警