├── .travis.yml ├── Makefile ├── Makefile.common ├── README.md ├── _config.yml ├── libs ├── Makefile ├── STM32_USB-FS-Device_Lib_V4.0.0 │ ├── Libraries │ │ ├── CMSIS │ │ │ ├── CMSIS END USER LICENCE AGREEMENT.pdf │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ ├── STM32F10x │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f10x.h │ │ │ │ │ │ └── system_stm32f10x.h │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ └── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ ├── TASKING │ │ │ │ │ │ └── cstart_thumb2.asm │ │ │ │ │ │ ├── TrueSTUDIO │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ │ │ │ ├── gcc_ride7 │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ │ │ │ ├── iar │ │ │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ │ │ │ └── system_stm32f10x.c │ │ │ │ │ ├── STM32F30x │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f30x.h │ │ │ │ │ │ └── system_stm32f30x.h │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ └── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ ├── TrueSTUDIO │ │ │ │ │ │ └── startup_stm32f30x.s │ │ │ │ │ │ ├── arm │ │ │ │ │ │ └── startup_stm32f30x.s │ │ │ │ │ │ ├── gcc_ride7 │ │ │ │ │ │ └── startup_stm32f30x.s │ │ │ │ │ │ ├── iar │ │ │ │ │ │ └── startup_stm32f30x.s │ │ │ │ │ │ └── system_stm32f30x.c │ │ │ │ │ ├── STM32F37x │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f37x.h │ │ │ │ │ │ └── system_stm32f37x.h │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ └── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ ├── TrueSTUDIO │ │ │ │ │ │ └── startup_stm32f37x.s │ │ │ │ │ │ ├── arm │ │ │ │ │ │ └── startup_stm32f37x.s │ │ │ │ │ │ ├── gcc_ride7 │ │ │ │ │ │ └── startup_stm32f37x.s │ │ │ │ │ │ ├── iar │ │ │ │ │ │ └── startup_stm32f37x.s │ │ │ │ │ │ └── system_stm32f37x.c │ │ │ │ │ └── STM32L1xx │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32l1xx.h │ │ │ │ │ └── system_stm32l1xx.h │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ └── Source │ │ │ │ │ └── Templates │ │ │ │ │ ├── TASKING │ │ │ │ │ └── cstart_thumb2.asm │ │ │ │ │ ├── TrueSTUDIO │ │ │ │ │ ├── startup_stm32l1xx_hd.s │ │ │ │ │ ├── startup_stm32l1xx_md.s │ │ │ │ │ └── startup_stm32l1xx_mdp.s │ │ │ │ │ ├── arm │ │ │ │ │ ├── startup_stm32l1xx_hd.s │ │ │ │ │ ├── startup_stm32l1xx_md.s │ │ │ │ │ └── startup_stm32l1xx_mdp.s │ │ │ │ │ ├── gcc_ride7 │ │ │ │ │ ├── startup_stm32l1xx_hd.s │ │ │ │ │ ├── startup_stm32l1xx_md.s │ │ │ │ │ └── startup_stm32l1xx_mdp.s │ │ │ │ │ ├── iar │ │ │ │ │ ├── startup_stm32l1xx_hd.s │ │ │ │ │ ├── startup_stm32l1xx_md.s │ │ │ │ │ └── startup_stm32l1xx_mdp.s │ │ │ │ │ └── system_stm32l1xx.c │ │ │ ├── Documentation │ │ │ │ ├── Core │ │ │ │ │ └── html │ │ │ │ │ │ ├── CMSIS_CORE_Files.png │ │ │ │ │ │ ├── CMSIS_CORE_Files_user.png │ │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ │ ├── _c_o_r_e__m_i_s_r_a__exceptions_pg.html │ │ │ │ │ │ ├── _reg_map_pg.html │ │ │ │ │ │ ├── _templates_pg.html │ │ │ │ │ │ ├── _using__a_r_m_pg.html │ │ │ │ │ │ ├── _using_pg.html │ │ │ │ │ │ ├── annotated.html │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── cmsis.css │ │ │ │ │ │ ├── device_h_pg.html │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ │ ├── globals.html │ │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ │ ├── globals_func.html │ │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ │ ├── group___core___register__gr.html │ │ │ │ │ │ ├── group___i_t_m___debug__gr.html │ │ │ │ │ │ ├── group___n_v_i_c__gr.html │ │ │ │ │ │ ├── group___sys_tick__gr.html │ │ │ │ │ │ ├── group__intrinsic___c_p_u__gr.html │ │ │ │ │ │ ├── group__intrinsic___s_i_m_d__gr.html │ │ │ │ │ │ ├── group__peripheral__gr.html │ │ │ │ │ │ ├── group__system__init__gr.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── installdox │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── navtree.css │ │ │ │ │ │ ├── navtree.js │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── pages.html │ │ │ │ │ │ ├── resize.js │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ ├── search │ │ │ │ │ │ ├── all_5f.html │ │ │ │ │ │ ├── all_61.html │ │ │ │ │ │ ├── all_62.html │ │ │ │ │ │ ├── all_63.html │ │ │ │ │ │ ├── all_64.html │ │ │ │ │ │ ├── all_65.html │ │ │ │ │ │ ├── all_66.html │ │ │ │ │ │ ├── all_68.html │ │ │ │ │ │ ├── all_69.html │ │ │ │ │ │ ├── all_6c.html │ │ │ │ │ │ ├── all_6d.html │ │ │ │ │ │ ├── all_6e.html │ │ │ │ │ │ ├── all_6f.html │ │ │ │ │ │ ├── all_70.html │ │ │ │ │ │ ├── all_71.html │ │ │ │ │ │ ├── all_72.html │ │ │ │ │ │ ├── all_73.html │ │ │ │ │ │ ├── all_74.html │ │ │ │ │ │ ├── all_75.html │ │ │ │ │ │ ├── all_76.html │ │ │ │ │ │ ├── all_77.html │ │ │ │ │ │ ├── all_78.html │ │ │ │ │ │ ├── all_7a.html │ │ │ │ │ │ ├── classes_61.html │ │ │ │ │ │ ├── classes_63.html │ │ │ │ │ │ ├── classes_64.html │ │ │ │ │ │ ├── classes_66.html │ │ │ │ │ │ ├── classes_69.html │ │ │ │ │ │ ├── classes_6d.html │ │ │ │ │ │ ├── classes_6e.html │ │ │ │ │ │ ├── classes_73.html │ │ │ │ │ │ ├── classes_74.html │ │ │ │ │ │ ├── classes_78.html │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── enums_69.html │ │ │ │ │ │ ├── enumvalues_62.html │ │ │ │ │ │ ├── enumvalues_64.html │ │ │ │ │ │ ├── enumvalues_68.html │ │ │ │ │ │ ├── enumvalues_6d.html │ │ │ │ │ │ ├── enumvalues_6e.html │ │ │ │ │ │ ├── enumvalues_70.html │ │ │ │ │ │ ├── enumvalues_73.html │ │ │ │ │ │ ├── enumvalues_75.html │ │ │ │ │ │ ├── enumvalues_77.html │ │ │ │ │ │ ├── files_6d.html │ │ │ │ │ │ ├── files_6f.html │ │ │ │ │ │ ├── files_72.html │ │ │ │ │ │ ├── files_74.html │ │ │ │ │ │ ├── files_75.html │ │ │ │ │ │ ├── functions_5f.html │ │ │ │ │ │ ├── functions_69.html │ │ │ │ │ │ ├── functions_6e.html │ │ │ │ │ │ ├── functions_73.html │ │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── search_l.png │ │ │ │ │ │ ├── search_m.png │ │ │ │ │ │ ├── search_r.png │ │ │ │ │ │ ├── variables_5f.html │ │ │ │ │ │ ├── variables_61.html │ │ │ │ │ │ ├── variables_62.html │ │ │ │ │ │ ├── variables_63.html │ │ │ │ │ │ ├── variables_64.html │ │ │ │ │ │ ├── variables_65.html │ │ │ │ │ │ ├── variables_66.html │ │ │ │ │ │ ├── variables_68.html │ │ │ │ │ │ ├── variables_69.html │ │ │ │ │ │ ├── variables_6c.html │ │ │ │ │ │ ├── variables_6d.html │ │ │ │ │ │ ├── variables_6e.html │ │ │ │ │ │ ├── variables_70.html │ │ │ │ │ │ ├── variables_71.html │ │ │ │ │ │ ├── variables_72.html │ │ │ │ │ │ ├── variables_73.html │ │ │ │ │ │ ├── variables_74.html │ │ │ │ │ │ ├── variables_75.html │ │ │ │ │ │ ├── variables_76.html │ │ │ │ │ │ ├── variables_77.html │ │ │ │ │ │ └── variables_7a.html │ │ │ │ │ │ ├── startup_s_pg.html │ │ │ │ │ │ ├── struct_core_debug___type.html │ │ │ │ │ │ ├── struct_d_w_t___type.html │ │ │ │ │ │ ├── struct_f_p_u___type.html │ │ │ │ │ │ ├── struct_i_t_m___type.html │ │ │ │ │ │ ├── struct_m_p_u___type.html │ │ │ │ │ │ ├── struct_n_v_i_c___type.html │ │ │ │ │ │ ├── struct_s_c_b___type.html │ │ │ │ │ │ ├── struct_s_cn_s_c_b___type.html │ │ │ │ │ │ ├── struct_sys_tick___type.html │ │ │ │ │ │ ├── struct_t_p_i___type.html │ │ │ │ │ │ ├── system_c_pg.html │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ │ ├── tabs.css │ │ │ │ │ │ ├── union_a_p_s_r___type.html │ │ │ │ │ │ ├── union_c_o_n_t_r_o_l___type.html │ │ │ │ │ │ ├── union_i_p_s_r___type.html │ │ │ │ │ │ └── unionx_p_s_r___type.html │ │ │ │ ├── General │ │ │ │ │ └── html │ │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ │ ├── CMSIS_V3_small.png │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── cmsis.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── navtree.css │ │ │ │ │ │ ├── navtree.js │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── resize.js │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ │ └── tabs.css │ │ │ │ ├── RTOS │ │ │ │ │ └── html │ │ │ │ │ │ ├── API_Structure.png │ │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ │ ├── CMSIS_RTOS_Files.png │ │ │ │ │ │ ├── MailQueue.png │ │ │ │ │ │ ├── MessageQueue.png │ │ │ │ │ │ ├── Mutex.png │ │ │ │ │ │ ├── Semaphore.png │ │ │ │ │ │ ├── ThreadStatus.png │ │ │ │ │ │ ├── Timer.png │ │ │ │ │ │ ├── _function_overview.html │ │ │ │ │ │ ├── _using_o_s.html │ │ │ │ │ │ ├── annotated.html │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── cmsis.css │ │ │ │ │ │ ├── cmsis__os_8h.html │ │ │ │ │ │ ├── cmsis__os_8txt.html │ │ │ │ │ │ ├── cmsis_os_h.html │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ │ ├── globals.html │ │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ │ ├── globals_func.html │ │ │ │ │ │ ├── globals_type.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___definitions.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mail.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___message.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___pool_mgmt.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___signal_mgmt.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___status.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___thread_mgmt.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___timer_mgmt.html │ │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___wait.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── installdox │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── navtree.css │ │ │ │ │ │ ├── navtree.js │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── pages.html │ │ │ │ │ │ ├── resize.js │ │ │ │ │ │ ├── search │ │ │ │ │ │ ├── all_63.html │ │ │ │ │ │ ├── all_64.html │ │ │ │ │ │ ├── all_69.html │ │ │ │ │ │ ├── all_6d.html │ │ │ │ │ │ ├── all_6f.html │ │ │ │ │ │ ├── all_70.html │ │ │ │ │ │ ├── all_71.html │ │ │ │ │ │ ├── all_73.html │ │ │ │ │ │ ├── all_74.html │ │ │ │ │ │ ├── all_76.html │ │ │ │ │ │ ├── classes_6f.html │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── defines_6f.html │ │ │ │ │ │ ├── enums_6f.html │ │ │ │ │ │ ├── enumvalues_6f.html │ │ │ │ │ │ ├── files_63.html │ │ │ │ │ │ ├── functions_6f.html │ │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── search_l.png │ │ │ │ │ │ ├── search_m.png │ │ │ │ │ │ ├── search_r.png │ │ │ │ │ │ ├── typedefs_6f.html │ │ │ │ │ │ ├── variables_64.html │ │ │ │ │ │ ├── variables_69.html │ │ │ │ │ │ ├── variables_6d.html │ │ │ │ │ │ ├── variables_70.html │ │ │ │ │ │ ├── variables_71.html │ │ │ │ │ │ ├── variables_73.html │ │ │ │ │ │ ├── variables_74.html │ │ │ │ │ │ └── variables_76.html │ │ │ │ │ │ ├── structos_mail_q_def__t.html │ │ │ │ │ │ ├── structos_message_q_def__t.html │ │ │ │ │ │ ├── structos_mutex_def__t.html │ │ │ │ │ │ ├── structos_pool_def__t.html │ │ │ │ │ │ ├── structos_semaphore_def__t.html │ │ │ │ │ │ ├── structos_thread_def__t.html │ │ │ │ │ │ ├── structos_timer_def__t.html │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ │ └── tabs.css │ │ │ │ └── SVD │ │ │ │ │ └── html │ │ │ │ │ ├── Access_SVD_DD_Manage.png │ │ │ │ │ ├── Access_SVD_Vendor.png │ │ │ │ │ ├── CMSIS-SVD_Schema_1_0.xsd │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── CMSIS_SVD_Schema_Gen.png │ │ │ │ │ ├── CMSIS_SVD_Vendor_DD.png │ │ │ │ │ ├── CMSIS_SVD_WEB_DATABASE.png │ │ │ │ │ ├── Manage_SVD_DD.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2node.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__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__gr.html │ │ │ │ │ ├── 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 │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── 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_public_pg.html │ │ │ │ │ ├── svd_web_restricted_pg.html │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ └── tabs.css │ │ │ ├── Include │ │ │ │ ├── arm_common_tables.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 │ │ │ ├── README.txt │ │ │ ├── RTOS │ │ │ │ └── cmsis_os.h │ │ │ ├── SVD │ │ │ │ ├── ARM_Sample.svd │ │ │ │ ├── ARM_Sample_1_1.svd │ │ │ │ ├── CMSIS-SVD_Schema_1_0.xsd │ │ │ │ └── CMSIS-SVD_Schema_1_1_draft.xsd │ │ │ └── index.html │ │ ├── STM32F10x_StdPeriph_Driver │ │ │ └── Release_Notes.html │ │ ├── STM32F30x_StdPeriph_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ │ ├── stm32f30x_adc.h │ │ │ │ ├── stm32f30x_can.h │ │ │ │ ├── stm32f30x_comp.h │ │ │ │ ├── stm32f30x_crc.h │ │ │ │ ├── stm32f30x_dac.h │ │ │ │ ├── stm32f30x_dbgmcu.h │ │ │ │ ├── stm32f30x_dma.h │ │ │ │ ├── stm32f30x_exti.h │ │ │ │ ├── stm32f30x_flash.h │ │ │ │ ├── stm32f30x_gpio.h │ │ │ │ ├── stm32f30x_i2c.h │ │ │ │ ├── stm32f30x_iwdg.h │ │ │ │ ├── stm32f30x_misc.h │ │ │ │ ├── stm32f30x_opamp.h │ │ │ │ ├── stm32f30x_pwr.h │ │ │ │ ├── stm32f30x_rcc.h │ │ │ │ ├── stm32f30x_rtc.h │ │ │ │ ├── stm32f30x_spi.h │ │ │ │ ├── stm32f30x_syscfg.h │ │ │ │ ├── stm32f30x_tim.h │ │ │ │ ├── stm32f30x_usart.h │ │ │ │ └── stm32f30x_wwdg.h │ │ │ └── src │ │ │ │ ├── stm32f30x_adc.c │ │ │ │ ├── stm32f30x_can.c │ │ │ │ ├── stm32f30x_comp.c │ │ │ │ ├── stm32f30x_crc.c │ │ │ │ ├── stm32f30x_dac.c │ │ │ │ ├── stm32f30x_dbgmcu.c │ │ │ │ ├── stm32f30x_dma.c │ │ │ │ ├── stm32f30x_exti.c │ │ │ │ ├── stm32f30x_flash.c │ │ │ │ ├── stm32f30x_gpio.c │ │ │ │ ├── stm32f30x_i2c.c │ │ │ │ ├── stm32f30x_iwdg.c │ │ │ │ ├── stm32f30x_misc.c │ │ │ │ ├── stm32f30x_opamp.c │ │ │ │ ├── stm32f30x_pwr.c │ │ │ │ ├── stm32f30x_rcc.c │ │ │ │ ├── stm32f30x_rtc.c │ │ │ │ ├── stm32f30x_spi.c │ │ │ │ ├── stm32f30x_syscfg.c │ │ │ │ ├── stm32f30x_tim.c │ │ │ │ ├── stm32f30x_usart.c │ │ │ │ └── stm32f30x_wwdg.c │ │ ├── STM32F37x_StdPeriph_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ │ ├── stm32f37x_adc.h │ │ │ │ ├── stm32f37x_can.h │ │ │ │ ├── stm32f37x_cec.h │ │ │ │ ├── stm32f37x_comp.h │ │ │ │ ├── stm32f37x_crc.h │ │ │ │ ├── stm32f37x_dac.h │ │ │ │ ├── stm32f37x_dbgmcu.h │ │ │ │ ├── stm32f37x_dma.h │ │ │ │ ├── stm32f37x_exti.h │ │ │ │ ├── stm32f37x_flash.h │ │ │ │ ├── stm32f37x_gpio.h │ │ │ │ ├── stm32f37x_i2c.h │ │ │ │ ├── stm32f37x_iwdg.h │ │ │ │ ├── stm32f37x_misc.h │ │ │ │ ├── stm32f37x_pwr.h │ │ │ │ ├── stm32f37x_rcc.h │ │ │ │ ├── stm32f37x_rtc.h │ │ │ │ ├── stm32f37x_sdadc.h │ │ │ │ ├── stm32f37x_spi.h │ │ │ │ ├── stm32f37x_syscfg.h │ │ │ │ ├── stm32f37x_tim.h │ │ │ │ ├── stm32f37x_usart.h │ │ │ │ └── stm32f37x_wwdg.h │ │ │ └── src │ │ │ │ ├── stm32f37x_adc.c │ │ │ │ ├── stm32f37x_can.c │ │ │ │ ├── stm32f37x_cec.c │ │ │ │ ├── stm32f37x_comp.c │ │ │ │ ├── stm32f37x_crc.c │ │ │ │ ├── stm32f37x_dac.c │ │ │ │ ├── stm32f37x_dbgmcu.c │ │ │ │ ├── stm32f37x_dma.c │ │ │ │ ├── stm32f37x_exti.c │ │ │ │ ├── stm32f37x_flash.c │ │ │ │ ├── stm32f37x_gpio.c │ │ │ │ ├── stm32f37x_i2c.c │ │ │ │ ├── stm32f37x_iwdg.c │ │ │ │ ├── stm32f37x_misc.c │ │ │ │ ├── stm32f37x_pwr.c │ │ │ │ ├── stm32f37x_rcc.c │ │ │ │ ├── stm32f37x_rtc.c │ │ │ │ ├── stm32f37x_sdadc.c │ │ │ │ ├── stm32f37x_spi.c │ │ │ │ ├── stm32f37x_syscfg.c │ │ │ │ ├── stm32f37x_tim.c │ │ │ │ ├── stm32f37x_usart.c │ │ │ │ └── stm32f37x_wwdg.c │ │ ├── STM32L1xx_StdPeriph_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32l1xx_adc.h │ │ │ │ ├── stm32l1xx_aes.h │ │ │ │ ├── stm32l1xx_comp.h │ │ │ │ ├── stm32l1xx_crc.h │ │ │ │ ├── stm32l1xx_dac.h │ │ │ │ ├── stm32l1xx_dbgmcu.h │ │ │ │ ├── stm32l1xx_dma.h │ │ │ │ ├── stm32l1xx_exti.h │ │ │ │ ├── stm32l1xx_flash.h │ │ │ │ ├── stm32l1xx_fsmc.h │ │ │ │ ├── stm32l1xx_gpio.h │ │ │ │ ├── stm32l1xx_i2c.h │ │ │ │ ├── stm32l1xx_iwdg.h │ │ │ │ ├── stm32l1xx_lcd.h │ │ │ │ ├── stm32l1xx_opamp.h │ │ │ │ ├── stm32l1xx_pwr.h │ │ │ │ ├── stm32l1xx_rcc.h │ │ │ │ ├── stm32l1xx_rtc.h │ │ │ │ ├── stm32l1xx_sdio.h │ │ │ │ ├── stm32l1xx_spi.h │ │ │ │ ├── stm32l1xx_syscfg.h │ │ │ │ ├── stm32l1xx_tim.h │ │ │ │ ├── stm32l1xx_usart.h │ │ │ │ └── stm32l1xx_wwdg.h │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32l1xx_adc.c │ │ │ │ ├── stm32l1xx_aes.c │ │ │ │ ├── stm32l1xx_aes_util.c │ │ │ │ ├── stm32l1xx_comp.c │ │ │ │ ├── stm32l1xx_crc.c │ │ │ │ ├── stm32l1xx_dac.c │ │ │ │ ├── stm32l1xx_dbgmcu.c │ │ │ │ ├── stm32l1xx_dma.c │ │ │ │ ├── stm32l1xx_exti.c │ │ │ │ ├── stm32l1xx_flash.c │ │ │ │ ├── stm32l1xx_flash_ramfunc.c │ │ │ │ ├── stm32l1xx_fsmc.c │ │ │ │ ├── stm32l1xx_gpio.c │ │ │ │ ├── stm32l1xx_i2c.c │ │ │ │ ├── stm32l1xx_iwdg.c │ │ │ │ ├── stm32l1xx_lcd.c │ │ │ │ ├── stm32l1xx_opamp.c │ │ │ │ ├── stm32l1xx_pwr.c │ │ │ │ ├── stm32l1xx_rcc.c │ │ │ │ ├── stm32l1xx_rtc.c │ │ │ │ ├── stm32l1xx_sdio.c │ │ │ │ ├── stm32l1xx_spi.c │ │ │ │ ├── stm32l1xx_syscfg.c │ │ │ │ ├── stm32l1xx_tim.c │ │ │ │ ├── stm32l1xx_usart.c │ │ │ │ └── stm32l1xx_wwdg.c │ │ └── STM32_USB-FS-Device_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ ├── usb_core.h │ │ │ ├── usb_def.h │ │ │ ├── usb_init.h │ │ │ ├── usb_int.h │ │ │ ├── usb_lib.h │ │ │ ├── usb_mem.h │ │ │ ├── usb_regs.h │ │ │ ├── usb_sil.h │ │ │ └── usb_type.h │ │ │ └── src │ │ │ ├── usb_core.c │ │ │ ├── usb_init.c │ │ │ ├── usb_int.c │ │ │ ├── usb_mem.c │ │ │ ├── usb_regs.c │ │ │ └── usb_sil.c │ ├── MCD-ST Liberty SW License Agreement V2.pdf │ ├── Projects │ │ ├── Audio_Speaker │ │ │ ├── EWARM │ │ │ │ ├── AudioSpeaker.ewd │ │ │ │ ├── AudioSpeaker.ewp │ │ │ │ ├── AudioSpeaker.eww │ │ │ │ ├── stm32f10x_flash.icf │ │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ │ ├── AudioSpeaker.uvopt │ │ │ │ └── AudioSpeaker.uvproj │ │ │ ├── RIDE │ │ │ │ ├── AudioSpeaker.rapp │ │ │ │ └── AudioSpeaker.rprj │ │ │ ├── TASKING │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210B-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL_XL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ └── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ ├── TrueSTUDIO │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ └── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ └── STM32_flash.ld │ │ │ ├── inc │ │ │ │ ├── hw_config.h │ │ │ │ ├── i2s_codec.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── stm32_it.h │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ ├── stm32l1xx_conf.h │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_desc.h │ │ │ │ ├── usb_istr.h │ │ │ │ ├── usb_prop.h │ │ │ │ └── usb_pwr.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── hw_config.c │ │ │ │ ├── i2s_codec.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32_it.c │ │ │ │ ├── system_stm32f10x.c │ │ │ │ ├── system_stm32l1xx.c │ │ │ │ ├── usb_desc.c │ │ │ │ ├── usb_endp.c │ │ │ │ ├── usb_istr.c │ │ │ │ ├── usb_prop.c │ │ │ │ └── usb_pwr.c │ │ ├── Composite_Example │ │ │ ├── EWARM │ │ │ │ ├── Composite_Example.ewd │ │ │ │ ├── Composite_Example.ewp │ │ │ │ ├── Composite_Example.eww │ │ │ │ ├── stm32f10x_flash.icf │ │ │ │ ├── stm32f30x_flash.icf │ │ │ │ ├── stm32f37x_flash.icf │ │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ │ ├── Composite_Example.uvopt │ │ │ │ └── Composite_Example.uvproj │ │ │ ├── RIDE │ │ │ │ ├── Composite_Example.rapp │ │ │ │ └── Composite_Example.rprj │ │ │ ├── TASKING │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ ├── STM32303C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32303C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f30x.lsl │ │ │ │ ├── STM32373C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32373C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f37x.lsl │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ ├── TrueSTUDIO │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ ├── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ ├── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ ├── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM32303C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ ├── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ │ ├── STM32373C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ ├── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ ├── org.eclipse.cdt.core.prefs │ │ │ │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ ├── inc │ │ │ │ ├── fsmc_nand.h │ │ │ │ ├── hw_config.h │ │ │ │ ├── mass_mal.h │ │ │ │ ├── memory.h │ │ │ │ ├── nand_if.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── stm32_it.h │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ ├── stm32f30x_conf.h │ │ │ │ ├── stm32f37x_conf.h │ │ │ │ ├── stm32l1xx_conf.h │ │ │ │ ├── usb_bot.h │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_desc.h │ │ │ │ ├── usb_istr.h │ │ │ │ ├── usb_prop.h │ │ │ │ ├── usb_pwr.h │ │ │ │ └── usb_scsi.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── fsmc_nand.c │ │ │ │ ├── hw_config.c │ │ │ │ ├── main.c │ │ │ │ ├── mass_mal.c │ │ │ │ ├── memory.c │ │ │ │ ├── nand_if.c │ │ │ │ ├── scsi_data.c │ │ │ │ ├── stm32_it.c │ │ │ │ ├── system_stm32f10x.c │ │ │ │ ├── system_stm32f30x.c │ │ │ │ ├── system_stm32f37x.c │ │ │ │ ├── system_stm32l1xx.c │ │ │ │ ├── usb_bot.c │ │ │ │ ├── usb_desc.c │ │ │ │ ├── usb_endp.c │ │ │ │ ├── usb_istr.c │ │ │ │ ├── usb_prop.c │ │ │ │ ├── usb_pwr.c │ │ │ │ └── usb_scsi.c │ │ ├── Custom_HID │ │ │ ├── EWARM │ │ │ │ ├── Custom_HID.ewd │ │ │ │ ├── Custom_HID.ewp │ │ │ │ ├── Custom_HID.eww │ │ │ │ ├── stm32f10x_flash.icf │ │ │ │ ├── stm32f30x_flash.icf │ │ │ │ ├── stm32f37x_flash.icf │ │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ │ ├── Custom_HID.uvopt │ │ │ │ └── Custom_HID.uvproj │ │ │ ├── RIDE │ │ │ │ ├── Custom_HID.rapp │ │ │ │ └── Custom_HID.rprj │ │ │ ├── TASKING │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210B-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL_XL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ ├── STM32303C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32303C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f30x.lsl │ │ │ │ ├── STM32373C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32373C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f37x.lsl │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152D-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ ├── TrueSTUDIO │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM32303C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ │ ├── STM32373C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ ├── inc │ │ │ │ ├── hw_config.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── stm32_it.h │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ ├── stm32f30x_conf.h │ │ │ │ ├── stm32f37x_conf.h │ │ │ │ ├── stm32l1xx_conf.h │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_desc.h │ │ │ │ ├── usb_istr.h │ │ │ │ ├── usb_prop.h │ │ │ │ └── usb_pwr.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── hw_config.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32_it.c │ │ │ │ ├── system_stm32f10x.c │ │ │ │ ├── system_stm32f30x.c │ │ │ │ ├── system_stm32f37x.c │ │ │ │ ├── system_stm32l1xx.c │ │ │ │ ├── usb_desc.c │ │ │ │ ├── usb_endp.c │ │ │ │ ├── usb_istr.c │ │ │ │ ├── usb_prop.c │ │ │ │ └── usb_pwr.c │ │ ├── Device_Firmware_Upgrade │ │ │ ├── EWARM │ │ │ │ ├── DFU.ewd │ │ │ │ ├── DFU.ewp │ │ │ │ ├── DFU.eww │ │ │ │ ├── stm32f10x_flash.icf │ │ │ │ ├── stm32f30x_flash.icf │ │ │ │ ├── stm32f37x_flash.icf │ │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ │ ├── DFU.uvopt │ │ │ │ └── DFU.uvproj │ │ │ ├── RIDE │ │ │ │ ├── DFU.rapp │ │ │ │ └── DFU.rprj │ │ │ ├── TASKING │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210B-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL_XL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ ├── STM32303C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32303C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f30x.lsl │ │ │ │ ├── STM32373C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32373C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f37x.lsl │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152D-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ ├── TrueSTUDIO │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM32303C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ │ ├── STM32373C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ ├── binary_template │ │ │ │ ├── EWARM │ │ │ │ │ ├── SysTick.ewd │ │ │ │ │ ├── SysTick.ewp │ │ │ │ │ ├── SysTick.eww │ │ │ │ │ ├── stm32f10x_flash_offset.icf │ │ │ │ │ ├── stm32f30x_flash_offset.icf │ │ │ │ │ ├── stm32f37x_flash_offset.icf │ │ │ │ │ └── stm32l1xx_flash_offset.icf │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── SysTick.uvopt │ │ │ │ │ └── SysTick.uvproj │ │ │ │ ├── RIDE │ │ │ │ │ ├── SysTick.rapp │ │ │ │ │ ├── SysTick.rprj │ │ │ │ │ ├── stm32f10x_hd_flash_offset.ld │ │ │ │ │ ├── stm32f10x_md_flash_offset.ld │ │ │ │ │ ├── stm32f10x_xl_flash_offset.ld │ │ │ │ │ ├── stm32f30x_flash_offset.ld │ │ │ │ │ ├── stm32f37x_flash_offset.ld │ │ │ │ │ ├── stm32l1xx_hd_flash_offset.ld │ │ │ │ │ └── stm32l1xx_md_flash_offset.ld │ │ │ │ ├── TASKING │ │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM3210B-EVAL.hex │ │ │ │ │ │ ├── STM3210B-EVAL.launch │ │ │ │ │ │ └── TASKING │ │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM3210E-EVAL.hex │ │ │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ │ │ ├── STM3210E.dfu │ │ │ │ │ │ └── TASKING │ │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM3210E-EVAL_XL.hex │ │ │ │ │ │ ├── STM3210E-EVAL_XL.launch │ │ │ │ │ │ └── TASKING │ │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ │ ├── STM32303C_EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .launch │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM32303C_EVAL.hex │ │ │ │ │ │ ├── STM32F30.dfu │ │ │ │ │ │ └── TASKING │ │ │ │ │ │ │ └── stm32f30x.lsl │ │ │ │ │ ├── STM32373C_EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .launch │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM32373C_EVAL.hex │ │ │ │ │ │ ├── STM32F37.dfu │ │ │ │ │ │ └── TASKING │ │ │ │ │ │ │ └── stm32f37x.lsl │ │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM32L152-EVAL.hex │ │ │ │ │ │ ├── STM32L152-EVAL.launch │ │ │ │ │ │ └── TASKING │ │ │ │ │ │ │ ├── stm32l1xx_md.lsl │ │ │ │ │ │ │ └── vssver.scc │ │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM32L152D-EVAL.hex │ │ │ │ │ │ ├── STM32L152D-EVAL.launch │ │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ │ ├── TrueSTUDIO │ │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── .settings │ │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ │ └── stm32_flash.ld │ │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── .settings │ │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ │ └── stm32_flash.ld │ │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── .settings │ │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ │ └── stm32_flash.ld │ │ │ │ │ ├── STM32303C-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── .settings │ │ │ │ │ │ │ ├── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ │ │ ├── STM32373C-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── .settings │ │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── .settings │ │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ │ └── stm32_flash.ld │ │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── platform_config.h │ │ │ │ │ ├── stm32_it.h │ │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ │ ├── stm32f30x_conf.h │ │ │ │ │ ├── stm32f37x_conf.h │ │ │ │ │ └── stm32l1xx_conf.h │ │ │ │ ├── readme.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32_it.c │ │ │ │ │ ├── system_stm32f10x.c │ │ │ │ │ ├── system_stm32f30x.c │ │ │ │ │ ├── system_stm32f37x.c │ │ │ │ │ └── system_stm32l1xx.c │ │ │ ├── inc │ │ │ │ ├── dfu_mal.h │ │ │ │ ├── flash_if.h │ │ │ │ ├── fsmc_nor.h │ │ │ │ ├── hw_config.h │ │ │ │ ├── nor_if.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── spi_if.h │ │ │ │ ├── stm32_it.h │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ ├── stm32f30x_conf.h │ │ │ │ ├── stm32f37x_conf.h │ │ │ │ ├── stm32l1xx_conf.h │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_desc.h │ │ │ │ ├── usb_istr.h │ │ │ │ ├── usb_prop.h │ │ │ │ └── usb_pwr.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── dfu_mal.c │ │ │ │ ├── flash_if.c │ │ │ │ ├── fsmc_nor.c │ │ │ │ ├── hw_config.c │ │ │ │ ├── main.c │ │ │ │ ├── nor_if.c │ │ │ │ ├── spi_if.c │ │ │ │ ├── stm32_it.c │ │ │ │ ├── system_stm32f10x.c │ │ │ │ ├── system_stm32f30x.c │ │ │ │ ├── system_stm32f37x.c │ │ │ │ ├── system_stm32l1xx.c │ │ │ │ ├── usb_desc.c │ │ │ │ ├── usb_istr.c │ │ │ │ ├── usb_prop.c │ │ │ │ └── usb_pwr.c │ │ ├── JoyStickMouse │ │ │ ├── EWARM │ │ │ │ ├── JoyStickMouse.ewd │ │ │ │ ├── JoyStickMouse.ewp │ │ │ │ ├── JoyStickMouse.eww │ │ │ │ ├── stm32f10x_flash.icf │ │ │ │ ├── stm32f30x_flash.icf │ │ │ │ ├── stm32f37x_flash.icf │ │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ │ ├── JoyStickMouse.uvopt │ │ │ │ └── JoyStickMouse.uvproj │ │ │ ├── RIDE │ │ │ │ ├── JoyStickMouse.rapp │ │ │ │ └── JoyStickMouse.rprj │ │ │ ├── TASKING │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210B-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL_XL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ ├── STM32303C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32303C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f30x.lsl │ │ │ │ ├── STM32373C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32373C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f37x.lsl │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152D-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ ├── TrueSTUDIO │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM32303C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ │ ├── STM32373C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ ├── inc │ │ │ │ ├── hw_config.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── stm32_it.h │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ ├── stm32f30x_conf.h │ │ │ │ ├── stm32f37x_conf.h │ │ │ │ ├── stm32l1xx_conf.h │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_desc.h │ │ │ │ ├── usb_istr.h │ │ │ │ ├── usb_prop.h │ │ │ │ └── usb_pwr.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── hw_config.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32_it.c │ │ │ │ ├── system_stm32f10x.c │ │ │ │ ├── system_stm32f30x.c │ │ │ │ ├── system_stm32f37x.c │ │ │ │ ├── system_stm32l1xx.c │ │ │ │ ├── usb_desc.c │ │ │ │ ├── usb_endp.c │ │ │ │ ├── usb_istr.c │ │ │ │ ├── usb_prop.c │ │ │ │ └── usb_pwr.c │ │ ├── Mass_Storage │ │ │ ├── EWARM │ │ │ │ ├── MassStorageSimpleBuffer.ewd │ │ │ │ ├── MassStorageSimpleBuffer.ewp │ │ │ │ ├── MassStorageSimpleBuffer.eww │ │ │ │ ├── stm32f10x_flash.icf │ │ │ │ ├── stm32f30x_flash.icf │ │ │ │ ├── stm32f37x_flash.icf │ │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ │ ├── MassStorageSimpleBuffer.uvopt │ │ │ │ └── MassStorageSimpleBuffer.uvproj │ │ │ ├── RIDE │ │ │ │ ├── MassStorageSimpleBuffer.rapp │ │ │ │ └── MassStorageSimpleBuffer.rprj │ │ │ ├── TASKING │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210B-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM3210E-EVAL_XL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ ├── STM32303C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32303C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f30x.lsl │ │ │ │ ├── STM32373C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32373C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f37x.lsl │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32L152D-EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ ├── TrueSTUDIO │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM32303C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ │ ├── STM32373C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ ├── inc │ │ │ │ ├── fsmc_nand.h │ │ │ │ ├── hw_config.h │ │ │ │ ├── mass_mal.h │ │ │ │ ├── memory.h │ │ │ │ ├── nand_if.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── stm32_it.h │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ ├── stm32f30x_conf.h │ │ │ │ ├── stm32f37x_conf.h │ │ │ │ ├── stm32l1xx_conf.h │ │ │ │ ├── usb_bot.h │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_desc.h │ │ │ │ ├── usb_istr.h │ │ │ │ ├── usb_prop.h │ │ │ │ ├── usb_pwr.h │ │ │ │ └── usb_scsi.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── fsmc_nand.c │ │ │ │ ├── hw_config.c │ │ │ │ ├── main.c │ │ │ │ ├── mass_mal.c │ │ │ │ ├── memory.c │ │ │ │ ├── nand_if.c │ │ │ │ ├── scsi_data.c │ │ │ │ ├── stm32_it.c │ │ │ │ ├── system_stm32f10x.c │ │ │ │ ├── system_stm32f30x.c │ │ │ │ ├── system_stm32f37x.c │ │ │ │ ├── system_stm32l1xx.c │ │ │ │ ├── usb_bot.c │ │ │ │ ├── usb_desc.c │ │ │ │ ├── usb_endp.c │ │ │ │ ├── usb_istr.c │ │ │ │ ├── usb_prop.c │ │ │ │ ├── usb_pwr.c │ │ │ │ └── usb_scsi.c │ │ ├── VirtualComport_Loopback │ │ │ ├── EWARM │ │ │ │ ├── VirtualComport_Loopback.ewd │ │ │ │ ├── VirtualComport_Loopback.ewp │ │ │ │ ├── VirtualComport_Loopback.eww │ │ │ │ ├── stm32f10x_flash.icf │ │ │ │ ├── stm32f30x_flash.icf │ │ │ │ ├── stm32f37x_flash.icf │ │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ │ ├── VirtualComport_Loopback.uvopt │ │ │ │ └── VirtualComport_Loopback.uvproj │ │ │ ├── RIDE │ │ │ │ ├── VirtualComport_Loopback.rapp │ │ │ │ └── VirtualComport_Loopback.rprj │ │ │ ├── TASKING │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ │ ├── STM32303C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32303C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f30x.lsl │ │ │ │ ├── STM32373C_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── STM32373C_EVAL.launch │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32f37x.lsl │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .launch │ │ │ │ │ ├── .project │ │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ ├── TrueSTUDIO │ │ │ │ ├── STM3210B-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ ├── STM32303C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ │ ├── STM32373C-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ │ ├── STM32L152-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ │ └── STM32L152D-EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ │ └── stm32_flash.ld │ │ │ ├── inc │ │ │ │ ├── hw_config.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── stm32_it.h │ │ │ │ ├── stm32f10x_conf.h │ │ │ │ ├── stm32f30x_conf.h │ │ │ │ ├── stm32f37x_conf.h │ │ │ │ ├── stm32l1xx_conf.h │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_desc.h │ │ │ │ ├── usb_istr.h │ │ │ │ ├── usb_prop.h │ │ │ │ └── usb_pwr.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── hw_config.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32_it.c │ │ │ │ ├── system_stm32f10x.c │ │ │ │ ├── system_stm32f30x.c │ │ │ │ ├── system_stm32f37x.c │ │ │ │ ├── system_stm32l1xx.c │ │ │ │ ├── usb_desc.c │ │ │ │ ├── usb_endp.c │ │ │ │ ├── usb_istr.c │ │ │ │ ├── usb_prop.c │ │ │ │ └── usb_pwr.c │ │ └── Virtual_COM_Port │ │ │ ├── EWARM │ │ │ ├── VirtualCOMPort.ewd │ │ │ ├── VirtualCOMPort.ewp │ │ │ ├── VirtualCOMPort.eww │ │ │ ├── stm32f10x_flash.icf │ │ │ ├── stm32f30x_flash.icf │ │ │ ├── stm32f37x_flash.icf │ │ │ └── stm32l1xx_flash.icf │ │ │ ├── MDK-ARM │ │ │ ├── VirtualCOMPort.uvopt │ │ │ └── VirtualCOMPort.uvproj │ │ │ ├── RIDE │ │ │ ├── VirtualCOMPort.rapp │ │ │ └── VirtualCOMPort.rprj │ │ │ ├── TASKING │ │ │ ├── STM3210B-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── STM3210B-EVAL.launch │ │ │ │ └── TASKING │ │ │ │ │ └── STM32F10x_md.lsl │ │ │ ├── STM3210E-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── STM3210E-EVAL.launch │ │ │ │ └── TASKING │ │ │ │ │ └── STM32F10x_hd.lsl │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── STM3210E-EVAL_XL.launch │ │ │ │ └── TASKING │ │ │ │ │ └── STM32F10x_XL.lsl │ │ │ ├── STM32303C_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .launch │ │ │ │ ├── .project │ │ │ │ ├── STM32303C_EVAL.launch │ │ │ │ └── TASKING │ │ │ │ │ └── stm32f30x.lsl │ │ │ ├── STM32373C_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── STM32373C_EVAL.launch │ │ │ │ └── TASKING │ │ │ │ │ └── stm32f37x.lsl │ │ │ ├── STM32L152-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── STM32L152-EVAL.launch │ │ │ │ └── TASKING │ │ │ │ │ └── stm32l1xx_md.lsl │ │ │ └── STM32L152D-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── STM32L152D-EVAL.launch │ │ │ │ └── TASKING │ │ │ │ └── stm32l1xx_hd.lsl │ │ │ ├── TrueSTUDIO │ │ │ ├── STM3210B-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ ├── STM3210B-EVAL.elf.launch │ │ │ │ └── stm32_flash.ld │ │ │ ├── STM3210E-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ ├── STM3210E-EVAL.elf.launch │ │ │ │ └── stm32_flash.ld │ │ │ ├── STM3210E-EVAL_XL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ ├── STM32F10X_XL.elf.launch │ │ │ │ └── stm32_flash.ld │ │ │ ├── STM32303C-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ ├── STM32303C-EVAL.elf.launch │ │ │ │ └── STM32F303VC_FLASH.ld │ │ │ ├── STM32373C-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ ├── STM32373C-EVAL.elf.launch │ │ │ │ └── STM32F373VC_FLASH.ld │ │ │ ├── STM32L152-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ ├── STM32L152-EVAL.elf.launch │ │ │ │ └── stm32_flash.ld │ │ │ └── STM32L152D-EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ └── com.atollic.truestudio.debug.hardware_device.prefs │ │ │ │ ├── STM32L152D-EVAL.elf.launch │ │ │ │ └── stm32_flash.ld │ │ │ ├── inc │ │ │ ├── hw_config.h │ │ │ ├── platform_config.h │ │ │ ├── stm32_it.h │ │ │ ├── stm32f10x_conf.h │ │ │ ├── stm32f30x_conf.h │ │ │ ├── stm32f37x_conf.h │ │ │ ├── stm32l1xx_conf.h │ │ │ ├── usb_conf.h │ │ │ ├── usb_desc.h │ │ │ ├── usb_istr.h │ │ │ ├── usb_prop.h │ │ │ └── usb_pwr.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ ├── hw_config.c │ │ │ ├── main.c │ │ │ ├── stm32_it.c │ │ │ ├── system_stm32f10x.c │ │ │ ├── system_stm32f30x.c │ │ │ ├── system_stm32f37x.c │ │ │ ├── system_stm32l1xx.c │ │ │ ├── usb_desc.c │ │ │ ├── usb_endp.c │ │ │ ├── usb_istr.c │ │ │ ├── usb_prop.c │ │ │ └── usb_pwr.c │ ├── Release_Notes.html │ ├── Utilities │ │ ├── Binary │ │ │ ├── TrueSTUDIO_elf2bin.bat │ │ │ ├── axftobin.bat │ │ │ ├── cygwin1.dll │ │ │ └── hextobin.bat │ │ ├── DFU_images │ │ │ ├── STM3210B-EVAL_AudioSpeaker.dfu │ │ │ ├── STM3210B-EVAL_Composite_Example.dfu │ │ │ ├── STM3210B-EVAL_CustomHID.dfu │ │ │ ├── STM3210B-EVAL_JoystickMouse.dfu │ │ │ ├── STM3210B-EVAL_MassStorage.dfu │ │ │ ├── STM3210B-EVAL_VirtualCOMPort.dfu │ │ │ ├── STM3210B-EVAL_VirtualComport_Loopback.dfu │ │ │ ├── STM3210E-EVAL_AudioSpeaker.dfu │ │ │ ├── STM3210E-EVAL_Composite_Example.dfu │ │ │ ├── STM3210E-EVAL_CustomHID.dfu │ │ │ ├── STM3210E-EVAL_JoystickMouse.dfu │ │ │ ├── STM3210E-EVAL_MassStorage.dfu │ │ │ ├── STM3210E-EVAL_VirtualCOMPort.dfu │ │ │ ├── STM3210E-EVAL_VirtualComport_Loopback.dfu │ │ │ ├── STM3210E-EVAL_XL_AudioSpeaker.dfu │ │ │ ├── STM3210E-EVAL_XL_Composite_Example.dfu │ │ │ ├── STM3210E-EVAL_XL_CustomHID.dfu │ │ │ ├── STM3210E-EVAL_XL_JoyStickMouse.dfu │ │ │ ├── STM3210E-EVAL_XL_MassStorage.dfu │ │ │ ├── STM3210E-EVAL_XL_VirtualCOMPort.dfu │ │ │ ├── STM3210E-EVAL_XL_VirtualComport_Loopback.dfu │ │ │ ├── STM32303C-EVAL_Composite_Example.dfu │ │ │ ├── STM32303C-EVAL_CustomHID.dfu │ │ │ ├── STM32303C-EVAL_JoyStickMouse.dfu │ │ │ ├── STM32303C-EVAL_MassStorage.dfu │ │ │ ├── STM32303C-EVAL_VirtualCOMPort.dfu │ │ │ ├── STM32303C-EVAL_VirtualComport_Loopback.dfu │ │ │ ├── STM32373C-EVAL_Composite_Example.dfu │ │ │ ├── STM32373C-EVAL_CustomHID.dfu │ │ │ ├── STM32373C-EVAL_JoyStickMouse.dfu │ │ │ ├── STM32373C-EVAL_MassStorage.dfu │ │ │ ├── STM32373C-EVAL_VirtualCOMPort.dfu │ │ │ ├── STM32373C-EVAL_VirtualComport_Loopback.dfu │ │ │ ├── STM32L152-EVAL_AudioSpeaker.dfu │ │ │ ├── STM32L152-EVAL_Composite_Example.dfu │ │ │ ├── STM32L152-EVAL_Custom_HID.dfu │ │ │ ├── STM32L152-EVAL_JoyStickMouse.dfu │ │ │ ├── STM32L152-EVAL_MassStorage.dfu │ │ │ ├── STM32L152-EVAL_VirtualCOMPort.dfu │ │ │ ├── STM32L152-EVAL_VirtualComport_Loopback.dfu │ │ │ ├── STM32L152D-EVAL_Composite_Example.dfu │ │ │ ├── STM32L152D-EVAL_Custom_HID.dfu │ │ │ ├── STM32L152D-EVAL_JoyStickMouse.dfu │ │ │ ├── STM32L152D-EVAL_MassStorage.dfu │ │ │ ├── STM32L152D-EVAL_VirtualCOMPort.dfu │ │ │ └── STM32L152D-EVAL_VirtualComport_Loopback.dfu │ │ └── STM32_EVAL │ │ │ ├── Common │ │ │ ├── Release_Notes.html │ │ │ ├── fonts.c │ │ │ ├── fonts.h │ │ │ ├── lcd_log.c │ │ │ ├── lcd_log.h │ │ │ ├── lcd_log_conf_template.h │ │ │ └── stm32_eval_legacy.h │ │ │ ├── STM3210B_EVAL │ │ │ ├── Release_Notes.html │ │ │ ├── stm3210b_eval.c │ │ │ ├── stm3210b_eval.h │ │ │ ├── stm3210b_eval_i2c_tsensor.c │ │ │ ├── stm3210b_eval_i2c_tsensor.h │ │ │ ├── stm3210b_eval_lcd.c │ │ │ ├── stm3210b_eval_lcd.h │ │ │ ├── stm3210b_eval_spi_flash.c │ │ │ ├── stm3210b_eval_spi_flash.h │ │ │ ├── stm3210b_eval_spi_sd.c │ │ │ └── stm3210b_eval_spi_sd.h │ │ │ ├── STM3210E_EVAL │ │ │ ├── Release_Notes.html │ │ │ ├── stm3210e_eval.c │ │ │ ├── stm3210e_eval.h │ │ │ ├── stm3210e_eval_fsmc_nand.c │ │ │ ├── stm3210e_eval_fsmc_nand.h │ │ │ ├── stm3210e_eval_fsmc_nor.c │ │ │ ├── stm3210e_eval_fsmc_nor.h │ │ │ ├── stm3210e_eval_fsmc_sram.c │ │ │ ├── stm3210e_eval_fsmc_sram.h │ │ │ ├── stm3210e_eval_i2c_tsensor.c │ │ │ ├── stm3210e_eval_i2c_tsensor.h │ │ │ ├── stm3210e_eval_lcd.c │ │ │ ├── stm3210e_eval_lcd.h │ │ │ ├── stm3210e_eval_sdio_sd.c │ │ │ ├── stm3210e_eval_sdio_sd.h │ │ │ ├── stm3210e_eval_spi_flash.c │ │ │ └── stm3210e_eval_spi_flash.h │ │ │ ├── STM32303C_EVAL │ │ │ ├── Release_Notes.html │ │ │ ├── stm32303c_eval.c │ │ │ ├── stm32303c_eval.h │ │ │ ├── stm32303c_eval_audio_codec.c │ │ │ ├── stm32303c_eval_audio_codec.h │ │ │ ├── stm32303c_eval_i2c_ee.c │ │ │ ├── stm32303c_eval_i2c_ee.h │ │ │ ├── stm32303c_eval_i2c_ee_cpal.c │ │ │ ├── stm32303c_eval_i2c_ee_cpal.h │ │ │ ├── stm32303c_eval_i2c_tsensor.c │ │ │ ├── stm32303c_eval_i2c_tsensor.h │ │ │ ├── stm32303c_eval_lcd.c │ │ │ ├── stm32303c_eval_lcd.h │ │ │ ├── stm32303c_eval_spi_ee.c │ │ │ ├── stm32303c_eval_spi_ee.h │ │ │ ├── stm32303c_eval_spi_sd.c │ │ │ └── stm32303c_eval_spi_sd.h │ │ │ ├── STM32373C_EVAL │ │ │ ├── Release_Notes.html │ │ │ ├── stm32373c_eval.c │ │ │ ├── stm32373c_eval.h │ │ │ ├── stm32373c_eval_audio_codec.c │ │ │ ├── stm32373c_eval_audio_codec.h │ │ │ ├── stm32373c_eval_cec.c │ │ │ ├── stm32373c_eval_cec.h │ │ │ ├── stm32373c_eval_i2c_ee.c │ │ │ ├── stm32373c_eval_i2c_ee.h │ │ │ ├── stm32373c_eval_i2c_ee_cpal.c │ │ │ ├── stm32373c_eval_i2c_ee_cpal.h │ │ │ ├── stm32373c_eval_i2c_tsensor.c │ │ │ ├── stm32373c_eval_i2c_tsensor.h │ │ │ ├── stm32373c_eval_i2c_tsensor_cpal.c │ │ │ ├── stm32373c_eval_i2c_tsensor_cpal.h │ │ │ ├── stm32373c_eval_lcd.c │ │ │ ├── stm32373c_eval_lcd.h │ │ │ ├── stm32373c_eval_spi_sd.c │ │ │ └── stm32373c_eval_spi_sd.h │ │ │ ├── STM32L152D_EVAL │ │ │ ├── Release_Notes.html │ │ │ ├── stm32l152d_eval.c │ │ │ ├── stm32l152d_eval.h │ │ │ ├── stm32l152d_eval_audio_codec.c │ │ │ ├── stm32l152d_eval_audio_codec.h │ │ │ ├── stm32l152d_eval_fsmc_nor.c │ │ │ ├── stm32l152d_eval_fsmc_nor.h │ │ │ ├── stm32l152d_eval_fsmc_sram.c │ │ │ ├── stm32l152d_eval_fsmc_sram.h │ │ │ ├── stm32l152d_eval_glass_lcd.c │ │ │ ├── stm32l152d_eval_glass_lcd.h │ │ │ ├── stm32l152d_eval_i2c_ee.c │ │ │ ├── stm32l152d_eval_i2c_ee.h │ │ │ ├── stm32l152d_eval_i2c_tsensor.c │ │ │ ├── stm32l152d_eval_i2c_tsensor.h │ │ │ ├── stm32l152d_eval_lcd.c │ │ │ ├── stm32l152d_eval_lcd.h │ │ │ ├── stm32l152d_eval_sdio_sd.c │ │ │ ├── stm32l152d_eval_sdio_sd.h │ │ │ ├── stm32l152d_eval_spi_ee.c │ │ │ └── stm32l152d_eval_spi_ee.h │ │ │ └── STM32L152_EVAL │ │ │ ├── Release_Notes.html │ │ │ ├── stm32l152_eval.c │ │ │ ├── stm32l152_eval.h │ │ │ ├── stm32l152_eval_glass_lcd.c │ │ │ ├── stm32l152_eval_glass_lcd.h │ │ │ ├── stm32l152_eval_i2c_ee.c │ │ │ ├── stm32l152_eval_i2c_ee.h │ │ │ ├── stm32l152_eval_i2c_tsensor.c │ │ │ ├── stm32l152_eval_i2c_tsensor.h │ │ │ ├── stm32l152_eval_lcd.c │ │ │ ├── stm32l152_eval_lcd.h │ │ │ ├── stm32l152_eval_spi_sd.c │ │ │ └── stm32l152_eval_spi_sd.h │ └── _htmresc │ │ ├── CMSIS_Logo_Final.jpg │ │ ├── USB-RGB-1008.jpg │ │ ├── ar_s.gif │ │ ├── bulb16.gif │ │ ├── logo.bmp │ │ └── stm32_ryc.jpg └── module │ ├── avm_bit.h │ ├── avm_core.c │ ├── avm_core.h │ ├── avm_tty.h │ ├── avm_uart.c │ └── avm_uart.h ├── linker.ld └── src ├── Makefile ├── main.c └── startup.c /.travis.yml: -------------------------------------------------------------------------------- 1 | os: osx 2 | osx_image: xcode 3 | language: c 4 | before_install: 5 | - brew update 6 | - make install 7 | script: make 8 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-midnight -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/CMSIS END USER LICENCE AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/CMSIS END USER LICENCE AGREEMENT.pdf -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32F10x/Include/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32F10x/Include/stm32f10x.h -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32F30x/Include/stm32f30x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32F30x/Include/stm32f30x.h -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32F37x/Include/stm32f37x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32F37x/Include/stm32f37x.h -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32L1xx/Include/stm32l1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32L1xx/Include/stm32l1xx.h -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32L1xx/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Device/ST/STM32L1xx/Release_Notes.html -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/CMSIS_CORE_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/CMSIS_CORE_Files.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/CMSIS_CORE_Files_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/CMSIS_CORE_Files_user.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/bc_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/check.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/closed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/doxygen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2blank.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2doc.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2folderopen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2lastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2link.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2mnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2node.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2plastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2pnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2splitbar.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/ftv2vertline.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/nav_f.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/nav_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/open.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/all_65.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | EXCCNT 13 | DWT_Type 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/all_6f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | Overview.txt 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/all_78.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | xPSR_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/classes_61.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | APSR_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/classes_64.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | DWT_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/classes_66.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | FPU_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/classes_6d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | MPU_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/classes_6e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | NVIC_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/classes_74.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | TPI_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/classes_78.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | xPSR_Type 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/close.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enums_69.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | IRQn_Type 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enumvalues_62.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | BusFault_IRQn 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enumvalues_64.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | DebugMonitor_IRQn 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enumvalues_68.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | HardFault_IRQn 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enumvalues_6d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | MemoryManagement_IRQn 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enumvalues_6e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | NonMaskableInt_IRQn 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enumvalues_75.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | UsageFault_IRQn 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/enumvalues_77.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | WWDG_STM_IRQn 13 | Ref_NVIC.txt 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/files_6d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | MISRA.txt 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/files_6f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | Overview.txt 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/files_74.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | Template.txt 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/files_75.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | Using.txt 13 |
14 |
15 |
Searching...
16 |
No Matches
17 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/mag_sel.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/search_l.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/search_m.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/search_r.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/variables_65.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | EXCCNT 13 | DWT_Type 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/search/variables_68.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | HFSR 13 | SCB_Type 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_a.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_b.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/Core/html/tab_topnav.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/CMSIS_V3_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/CMSIS_V3_small.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/bc_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/closed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/doxygen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2blank.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2doc.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2folderopen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2lastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2link.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2mnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2node.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2plastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2pnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2splitbar.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/ftv2vertline.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/nav_f.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/nav_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/open.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_a.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_b.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/General/html/tab_topnav.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/API_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/API_Structure.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/CMSIS_RTOS_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/CMSIS_RTOS_Files.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/MailQueue.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/MessageQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/MessageQueue.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/Mutex.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/Semaphore.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ThreadStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ThreadStatus.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/Timer.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/bc_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/closed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/doxygen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2blank.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2doc.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2folderopen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2lastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2link.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2mnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2node.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2plastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2pnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2splitbar.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/ftv2vertline.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/nav_f.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/nav_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/open.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/all_74.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | tpriority 13 | osThreadDef_t 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/close.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/mag_sel.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/search_l.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/search_m.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/search_r.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/search/variables_74.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
Loading...
10 |
11 |
12 | tpriority 13 | osThreadDef_t 14 |
15 |
16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_a.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_b.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/RTOS/html/tab_topnav.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/Access_SVD_DD_Manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/Access_SVD_DD_Manage.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/Access_SVD_Vendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/Access_SVD_Vendor.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_SVD_Schema_Gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_SVD_Schema_Gen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_SVD_Vendor_DD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_SVD_Vendor_DD.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_SVD_WEB_DATABASE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/CMSIS_SVD_WEB_DATABASE.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/Manage_SVD_DD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/Manage_SVD_DD.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/bc_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/closed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/doxygen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2blank.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2doc.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2folderopen.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2lastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2link.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2mnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2node.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2plastnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2pnode.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2splitbar.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/ftv2vertline.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/nav_f.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/nav_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/open.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_a.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_b.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_h.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_s.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Documentation/SVD/html/tab_topnav.png -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- 1 | /* ---------------------------------------------------------------------- 2 | * Copyright (C) 2010 ARM Limited. All rights reserved. 3 | * 4 | * $Date: 11. November 2010 5 | * $Revision: V1.0.2 6 | * 7 | * Project: CMSIS DSP Library 8 | * Title: arm_common_tables.h 9 | * 10 | * Description: This file has extern declaration for common tables like Bitreverse, reciprocal etc which are used across different functions 11 | * 12 | * Target Processor: Cortex-M4/Cortex-M3 13 | * 14 | * Version 1.0.2 2010/11/11 15 | * Documentation updated. 16 | * 17 | * Version 1.0.1 2010/10/05 18 | * Production release and review comments incorporated. 19 | * 20 | * Version 1.0.0 2010/09/20 21 | * Production release and review comments incorporated. 22 | * -------------------------------------------------------------------- */ 23 | 24 | #ifndef _ARM_COMMON_TABLES_H 25 | #define _ARM_COMMON_TABLES_H 26 | 27 | #include "arm_math.h" 28 | 29 | extern const uint16_t armBitRevTable[1024]; 30 | extern const q15_t armRecipTableQ15[64]; 31 | extern const q31_t armRecipTableQ31[64]; 32 | extern const q31_t realCoefAQ31[1024]; 33 | extern const q31_t realCoefBQ31[1024]; 34 | extern const float32_t twiddleCoef[6144]; 35 | extern const q31_t twiddleCoefQ31[6144]; 36 | extern const q15_t twiddleCoefQ15[6144]; 37 | 38 | #endif /* ARM_COMMON_TABLES_H */ 39 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/CMSIS/index.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Redirect to the CMSIS main page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click open CMSIS Documentation. 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/STM32F30x_StdPeriph_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/STM32F30x_StdPeriph_Driver/Release_Notes.html -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/STM32L1xx_StdPeriph_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Libraries/STM32L1xx_StdPeriph_Driver/Release_Notes.html -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/MCD-ST Liberty SW License Agreement V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/MCD-ST Liberty SW License Agreement V2.pdf -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/EWARM/AudioSpeaker.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\AudioSpeaker.ewp 6 | 7 | 8 | 9 | USB-Package-AudioSpeaker 10 | 11 | AudioSpeaker 12 | STM3210B-EVAL 13 | 14 | 15 | AudioSpeaker 16 | STM3210C-EVAL 17 | 18 | 19 | AudioSpeaker 20 | STM3210E-EVAL 21 | 22 | 23 | AudioSpeaker 24 | STM3210E-EVAL_XL 25 | 26 | 27 | AudioSpeaker 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/EWARM/stm32l1xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000 ; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF; 11 | /*-Sizes-*/ 12 | define symbol __ICFEDIT_size_cstack__ = 0x400; 13 | define symbol __ICFEDIT_size_heap__ = 0x200; 14 | /**** End of ICF editor section. ###ICF###*/ 15 | 16 | 17 | define memory mem with size = 4G; 18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 20 | 21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 23 | 24 | initialize by copy { readwrite }; 25 | do not initialize { section .noinit }; 26 | 27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 28 | 29 | place in ROM_region { readonly }; 30 | place in RAM_region { readwrite, 31 | block CSTACK, block HEAP }; 32 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/RIDE/AudioSpeaker.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 |
11 | 12 |
13 | 14 |
15 | 16 |
17 |
-------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:53:23 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:53:58 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:54:24 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:55:31 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM32L152-EVAL/STM32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Audio_Speaker/TrueSTUDIO/STM32L152-EVAL/STM32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/EWARM/Composite_Example.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\Composite_Example.ewp 6 | 7 | 8 | 9 | USB-Package-Composite_Example 10 | 11 | Composite_Example 12 | STM3210B-EVAL 13 | 14 | 15 | Composite_Example 16 | STM3210C-EVAL 17 | 18 | 19 | Composite_Example 20 | STM3210E-EVAL 21 | 22 | 23 | Composite_Example 24 | STM3210E-EVAL_XL 25 | 26 | 27 | Composite_Example 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/RIDE/Composite_Example.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:15:49 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210B-EVAL/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 16:43:25 GMT+01:00 2012 2 | eclipse.preferences.version=1 3 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.316348137/CPATH/delimiter=; 4 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.316348137/CPATH/operation=remove 5 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.316348137/C_INCLUDE_PATH/delimiter=; 6 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.316348137/C_INCLUDE_PATH/operation=remove 7 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.316348137/append=true 8 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.316348137/appendContributed=true 9 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.316348137/LIBRARY_PATH/delimiter=; 10 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.316348137/LIBRARY_PATH/operation=remove 11 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.316348137/append=true 12 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.316348137/appendContributed=true 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:16:40 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 16:43:41 GMT+01:00 2012 2 | eclipse.preferences.version=1 3 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/delimiter=; 4 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/operation=remove 5 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/delimiter=; 6 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/operation=remove 7 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/append=true 8 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 9 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/delimiter=; 10 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/operation=remove 11 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/append=true 12 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:17:04 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL_XL/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 16:43:56 GMT+01:00 2012 2 | eclipse.preferences.version=1 3 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.189815562/CPATH/delimiter=; 4 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.189815562/CPATH/operation=remove 5 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.189815562/C_INCLUDE_PATH/delimiter=; 6 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.189815562/C_INCLUDE_PATH/operation=remove 7 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.189815562/append=true 8 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.189815562/appendContributed=true 9 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.189815562/LIBRARY_PATH/delimiter=; 10 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.189815562/LIBRARY_PATH/operation=remove 11 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.189815562/append=true 12 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.189815562/appendContributed=true 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:40:41 GMT+01:00 2012 2 | BOARD=STM32303C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F303VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32303C-EVAL/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 16:43:41 GMT+01:00 2012 2 | eclipse.preferences.version=1 3 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/delimiter=; 4 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/operation=remove 5 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/delimiter=; 6 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/operation=remove 7 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/append=true 8 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 9 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/delimiter=; 10 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/operation=remove 11 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/append=true 12 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Fri Dec 14 08:51:00 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32373C-EVAL/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Fri Dec 14 09:47:22 GMT+01:00 2012 2 | eclipse.preferences.version=1 3 | environment/project/com.atollic.truestudio.exe.debug.311825581/append=true 4 | environment/project/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 5 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32373C-EVAL/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 16:43:41 GMT+01:00 2012 2 | eclipse.preferences.version=1 3 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/delimiter=; 4 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/operation=remove 5 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/delimiter=; 6 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/operation=remove 7 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/append=true 8 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 9 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/delimiter=; 10 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/operation=remove 11 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/append=true 12 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:18:43 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/EWARM/Custom_HID.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\Custom_HID.ewp 6 | 7 | 8 | 9 | USB-Package-Custom_HID 10 | 11 | Custom_HID 12 | STM3210B-EVAL 13 | 14 | 15 | Custom_HID 16 | STM3210C-EVAL 17 | 18 | 19 | Custom_HID 20 | STM3210E-EVAL 21 | 22 | 23 | Custom_HID 24 | STM3210E-EVAL_XL 25 | 26 | 27 | Custom_HID 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/EWARM/stm32f30x_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | /*-Sizes-*/ 12 | define symbol __ICFEDIT_size_cstack__ = 0x400; 13 | define symbol __ICFEDIT_size_heap__ = 0x200; 14 | /**** End of ICF editor section. ###ICF###*/ 15 | 16 | 17 | define memory mem with size = 4G; 18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 20 | 21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 23 | 24 | initialize by copy { readwrite }; 25 | do not initialize { section .noinit }; 26 | 27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 28 | 29 | place in ROM_region { readonly }; 30 | place in RAM_region { readwrite, 31 | block CSTACK, block HEAP }; -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/RIDE/Custom_HID.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:15:49 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:16:40 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:17:04 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:37:51 GMT+01:00 2012 2 | BOARD=STM32303C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F303VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:34:36 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:18:43 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Custom_HID/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/EWARM/DFU.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\DFU.ewp 6 | 7 | 8 | 9 | USB-Package-DFU 10 | 11 | DFU 12 | STM3210B-EVAL 13 | 14 | 15 | DFU 16 | STM3210C-EVAL 17 | 18 | 19 | DFU 20 | STM3210E-EVAL 21 | 22 | 23 | DFU 24 | STM3210E-EVAL_XL 25 | 26 | 27 | DFU 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/RIDE/DFU.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:36:47 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:37:30 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:37:55 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:37:51 GMT+01:00 2012 2 | BOARD=STM32303C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F303VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:34:36 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:38:58 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/EWARM/SysTick.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\SysTick.ewp 6 | 7 | 8 | 9 | USB-Package-SysTick 10 | 11 | SysTick 12 | STM3210B-EVAL 13 | 14 | 15 | SysTick 16 | STM3210C-EVAL 17 | 18 | 19 | SysTick 20 | STM3210E-EVAL 21 | 22 | 23 | SysTick 24 | STM3210E-EVAL_XL 25 | 26 | 27 | SysTick 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/RIDE/SysTick.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/RIDE/stm32l1xx_hd_flash_offset.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/RIDE/stm32l1xx_hd_flash_offset.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/RIDE/stm32l1xx_md_flash_offset.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/RIDE/stm32l1xx_md_flash_offset.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM3210E-EVAL/STM3210E.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM3210E-EVAL/STM3210E.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM32303C_EVAL/STM32F30.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM32303C_EVAL/STM32F30.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM32373C_EVAL/STM32F37.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM32373C_EVAL/STM32F37.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM32L152-EVAL/TASKING/vssver.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TASKING/STM32L152-EVAL/TASKING/vssver.scc -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:00:38 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:01:09 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:01:27 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:37:51 GMT+01:00 2012 2 | BOARD=STM32303C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F303VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32303C-EVAL/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Dec 26 09:33:09 GMT+01:00 2012 2 | eclipse.preferences.version=1 3 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/delimiter=; 4 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/CPATH/operation=remove 5 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/delimiter=; 6 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/C_INCLUDE_PATH/operation=remove 7 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/append=true 8 | environment/buildEnvironmentInclude/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 9 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/delimiter=; 10 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/LIBRARY_PATH/operation=remove 11 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/append=true 12 | environment/buildEnvironmentLibrary/com.atollic.truestudio.exe.debug.311825581/appendContributed=true 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:34:36 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:02:03 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Device_Firmware_Upgrade/binary_template/readme.txt -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/EWARM/JoyStickMouse.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\JoyStickMouse.ewp 6 | 7 | 8 | 9 | USB-Package-JoyStickMouse 10 | 11 | JoyStickMouse 12 | STM3210B-EVAL 13 | 14 | 15 | JoyStickMouse 16 | STM3210C-EVAL 17 | 18 | 19 | JoyStickMouse 20 | STM3210E-EVAL 21 | 22 | 23 | JoyStickMouse 24 | STM3210E-EVAL_XL 25 | 26 | 27 | JoyStickMouse 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/EWARM/stm32f10x_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20017FFF; 11 | /*-Sizes-*/ 12 | define symbol __ICFEDIT_size_cstack__ = 0x400; 13 | define symbol __ICFEDIT_size_heap__ = 0x200; 14 | /**** End of ICF editor section. ###ICF###*/ 15 | 16 | 17 | define memory mem with size = 4G; 18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 20 | 21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 23 | 24 | initialize by copy { readwrite }; 25 | do not initialize { section .noinit }; 26 | 27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 28 | 29 | place in ROM_region { readonly }; 30 | place in RAM_region { readwrite, 31 | block CSTACK, block HEAP }; -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/EWARM/stm32f30x_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | /*-Sizes-*/ 12 | define symbol __ICFEDIT_size_cstack__ = 0x400; 13 | define symbol __ICFEDIT_size_heap__ = 0x200; 14 | /**** End of ICF editor section. ###ICF###*/ 15 | 16 | 17 | define memory mem with size = 4G; 18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 20 | 21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 23 | 24 | initialize by copy { readwrite }; 25 | do not initialize { section .noinit }; 26 | 27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 28 | 29 | place in ROM_region { readonly }; 30 | place in RAM_region { readwrite, 31 | block CSTACK, block HEAP }; -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/EWARM/stm32l1xx_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000 ; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0805FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x2000BFFF; 11 | /*-Sizes-*/ 12 | define symbol __ICFEDIT_size_cstack__ = 0x400; 13 | define symbol __ICFEDIT_size_heap__ = 0x200; 14 | /**** End of ICF editor section. ###ICF###*/ 15 | 16 | 17 | define memory mem with size = 4G; 18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 20 | 21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 23 | 24 | initialize by copy { readwrite }; 25 | do not initialize { section .noinit }; 26 | 27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 28 | 29 | place in ROM_region { readonly }; 30 | place in RAM_region { readwrite, 31 | block CSTACK, block HEAP }; -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/RIDE/JoyStickMouse.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:23:57 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:24:34 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:24:57 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:37:51 GMT+01:00 2012 2 | BOARD=STM32303C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F303VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:34:36 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 14:38:58 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/JoyStickMouse/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/EWARM/MassStorageSimpleBuffer.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\MassStorageSimpleBuffer.ewp 6 | 7 | 8 | 9 | USB-Package-MassStorage 10 | 11 | MassStorageSimpleBuffer 12 | STM3210B-EVAL 13 | 14 | 15 | MassStorageSimpleBuffer 16 | STM3210C-EVAL 17 | 18 | 19 | MassStorageSimpleBuffer 20 | STM3210E-EVAL 21 | 22 | 23 | MassStorageSimpleBuffer 24 | STM3210E-EVAL_XL 25 | 26 | 27 | MassStorageSimpleBuffer 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/EWARM/stm32f30x_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | /*-Sizes-*/ 12 | define symbol __ICFEDIT_size_cstack__ = 0x400; 13 | define symbol __ICFEDIT_size_heap__ = 0x200; 14 | /**** End of ICF editor section. ###ICF###*/ 15 | 16 | 17 | define memory mem with size = 4G; 18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 20 | 21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 23 | 24 | initialize by copy { readwrite }; 25 | do not initialize { section .noinit }; 26 | 27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 28 | 29 | place in ROM_region { readonly }; 30 | place in RAM_region { readwrite, 31 | block CSTACK, block HEAP }; -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/RIDE/MassStorageSimpleBuffer.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:57:46 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:58:30 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:58:40 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:37:51 GMT+01:00 2012 2 | BOARD=STM32303C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F303VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:34:36 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 15:59:01 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Mass_Storage/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/EWARM/VirtualComport_Loopback.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\VirtualComport_Loopback.ewp 6 | 7 | 8 | 9 | USB-Package-VCOMPort 10 | 11 | CDC_LoopBack 12 | STM3210B-EVAL 13 | 14 | 15 | CDC_LoopBack 16 | STM3210C-EVAL 17 | 18 | 19 | CDC_LoopBack 20 | STM3210E-EVAL 21 | 22 | 23 | CDC_LoopBack 24 | STM3210E-EVAL_XL 25 | 26 | 27 | CDC_LoopBack 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/RIDE/VirtualComport_Loopback.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:23:19 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:23:55 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:24:15 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:37:51 GMT+01:00 2012 2 | BOARD=STM32303C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F303VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:34:36 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:25:12 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/VirtualComport_Loopback/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/EWARM/VirtualCOMPort.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $WS_DIR$\VirtualCOMPort.ewp 6 | 7 | 8 | 9 | USB-Package-VCOMPort 10 | 11 | VirtualCOMPort 12 | STM3210B-EVAL 13 | 14 | 15 | VirtualCOMPort 16 | STM3210C-EVAL 17 | 18 | 19 | VirtualCOMPort 20 | STM3210E-EVAL 21 | 22 | 23 | VirtualCOMPort 24 | STM3210E-EVAL_XL 25 | 26 | 27 | VirtualCOMPort 28 | STM32L152-EVAL 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/EWARM/stm32f30x_flash.icf: -------------------------------------------------------------------------------- 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ 2 | /*-Editor annotation file-*/ 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ 4 | /*-Specials-*/ 5 | define symbol __ICFEDIT_intvec_start__ = 0x08000000; 6 | /*-Memory Regions-*/ 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0803FFFF; 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; 11 | /*-Sizes-*/ 12 | define symbol __ICFEDIT_size_cstack__ = 0x400; 13 | define symbol __ICFEDIT_size_heap__ = 0x200; 14 | /**** End of ICF editor section. ###ICF###*/ 15 | 16 | 17 | define memory mem with size = 4G; 18 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; 19 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; 20 | 21 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; 22 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; 23 | 24 | initialize by copy { readwrite }; 25 | do not initialize { section .noinit }; 26 | 27 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; 28 | 29 | place in ROM_region { readonly }; 30 | place in RAM_region { readwrite, 31 | block CSTACK, block HEAP }; -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/RIDE/VirtualCOMPort.rprj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210B-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:23:19 GMT+01:00 2012 2 | BOARD=STM3210B-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210B-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210E-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:23:55 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZE 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210E-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210E-EVAL_XL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:24:15 GMT+01:00 2012 2 | BOARD=STM3210E-EVAL_XL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F103ZG 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM3210E-EVAL_XL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32303C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | <<<<<<< .mine 2 | #Thu Dec 13 17:37:51 GMT+01:00 2012 3 | BOARD=STM32303C-EVAL 4 | ======= 5 | #Thu Dec 13 17:34:36 GMT+01:00 2012 6 | BOARD=STM32373C-EVAL 7 | >>>>>>> .r415 8 | CODE_LOCATION=FLASH 9 | ENDIAN=Little-endian 10 | <<<<<<< .mine 11 | MCU=STM32F303VC 12 | ======= 13 | MCU=STM32F373VC 14 | >>>>>>> .r415 15 | MCU_VENDOR=STMicroelectronics 16 | MODEL=Pro 17 | PROBE=ST-LINK 18 | PROJECT_FORMAT_VERSION=2 19 | TARGET=ARM\u00AE 20 | VERSION=3.3.0 21 | eclipse.preferences.version=1 22 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32303C-EVAL/STM32F303VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32373C-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 13 17:34:36 GMT+01:00 2012 2 | BOARD=STM32373C-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32F373VC 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Pro 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=ARM\u00AE 11 | VERSION=3.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32373C-EVAL/STM32F373VC_FLASH.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32L152-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 16:25:12 GMT+01:00 2012 2 | BOARD=STM32L152-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152VB 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32L152-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32L152D-EVAL/.settings/com.atollic.truestudio.debug.hardware_device.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 19 11:48:58 GMT+01:00 2012 2 | BOARD=STM32L152D-EVAL 3 | CODE_LOCATION=FLASH 4 | ENDIAN=Little-endian 5 | MCU=STM32L152ZD 6 | MCU_VENDOR=STMicroelectronics 7 | MODEL=Lite 8 | PROBE=ST-LINK 9 | PROJECT_FORMAT_VERSION=2 10 | TARGET=STMicroelectronics\u00AE STM32\u2122 11 | VERSION=2.3.0 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Virtual_COM_Port/TrueSTUDIO/STM32L152D-EVAL/stm32_flash.ld -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/Binary/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/Binary/cygwin1.dll -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_AudioSpeaker.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_AudioSpeaker.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_Composite_Example.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_Composite_Example.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_CustomHID.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_CustomHID.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_JoystickMouse.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_JoystickMouse.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_MassStorage.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_MassStorage.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_VirtualCOMPort.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_VirtualCOMPort.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_VirtualComport_Loopback.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210B-EVAL_VirtualComport_Loopback.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_AudioSpeaker.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_AudioSpeaker.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_Composite_Example.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_Composite_Example.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_CustomHID.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_CustomHID.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_JoystickMouse.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_JoystickMouse.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_MassStorage.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_MassStorage.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_VirtualCOMPort.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_VirtualCOMPort.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_VirtualComport_Loopback.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_VirtualComport_Loopback.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_AudioSpeaker.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_AudioSpeaker.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_Composite_Example.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_Composite_Example.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_CustomHID.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_CustomHID.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_JoyStickMouse.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_JoyStickMouse.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_MassStorage.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_MassStorage.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_VirtualCOMPort.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_VirtualCOMPort.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_VirtualComport_Loopback.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM3210E-EVAL_XL_VirtualComport_Loopback.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_Composite_Example.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_Composite_Example.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_CustomHID.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_CustomHID.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_JoyStickMouse.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_JoyStickMouse.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_MassStorage.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_MassStorage.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_VirtualCOMPort.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_VirtualCOMPort.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_VirtualComport_Loopback.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32303C-EVAL_VirtualComport_Loopback.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_Composite_Example.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_Composite_Example.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_CustomHID.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_CustomHID.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_JoyStickMouse.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_JoyStickMouse.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_MassStorage.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_MassStorage.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_VirtualCOMPort.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_VirtualCOMPort.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_VirtualComport_Loopback.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32373C-EVAL_VirtualComport_Loopback.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_AudioSpeaker.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_AudioSpeaker.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_Composite_Example.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_Composite_Example.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_Custom_HID.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_Custom_HID.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_JoyStickMouse.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_JoyStickMouse.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_MassStorage.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_MassStorage.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_VirtualCOMPort.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_VirtualCOMPort.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_VirtualComport_Loopback.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152-EVAL_VirtualComport_Loopback.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_Composite_Example.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_Composite_Example.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_Custom_HID.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_Custom_HID.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_JoyStickMouse.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_JoyStickMouse.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_MassStorage.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_MassStorage.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_VirtualCOMPort.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_VirtualCOMPort.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_VirtualComport_Loopback.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/DFU_images/STM32L152D-EVAL_VirtualComport_Loopback.dfu -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/STM32303C_EVAL/stm32303c_eval_audio_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/STM32303C_EVAL/stm32303c_eval_audio_codec.c -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/STM32373C_EVAL/stm32373c_eval_audio_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/STM32373C_EVAL/stm32373c_eval_audio_codec.c -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/STM32373C_EVAL/stm32373c_eval_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/STM32373C_EVAL/stm32373c_eval_cec.c -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/CMSIS_Logo_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/CMSIS_Logo_Final.jpg -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/USB-RGB-1008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/USB-RGB-1008.jpg -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/ar_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/ar_s.gif -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/bulb16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/bulb16.gif -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/logo.bmp -------------------------------------------------------------------------------- /libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/stm32_ryc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but0n/stm32_MacOS/b9a999d4af8e0e365797b0fc793b341ec676d59a/libs/STM32_USB-FS-Device_Lib_V4.0.0/_htmresc/stm32_ryc.jpg -------------------------------------------------------------------------------- /libs/module/avm_bit.h: -------------------------------------------------------------------------------- 1 | #ifndef _AVM_BIT_H_ 2 | #define _AVM_BIT_H_ 3 | 4 | #define BITBAND(addr, bitnum) (((addr) & 0xF0000000) + 0x2000000 + (((addr) & 0xFFFFF) << 5) + ((bitnum)<<2)) 5 | #define BIT_ADDR(addr, bitnum) *((volatile unsigned long *)(BITBAND((unsigned int)(addr), bitnum))) 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /libs/module/avm_core.h: -------------------------------------------------------------------------------- 1 | #ifndef _AVM_CORE_H_ 2 | #define _AVM_CORE_H_ 3 | 4 | typedef struct avm_module_s avm_module_t; 5 | // typedef struct avm_string_s avm_string_t; 6 | 7 | #include 8 | #include 9 | // #include 10 | #include 11 | #include 12 | #include 13 | 14 | struct avm_module_s { 15 | unsigned short index; 16 | unsigned int *confs; 17 | unsigned char (*init_module)(void *arg); 18 | unsigned char (*enable_module)(void); 19 | unsigned char (*disable_module)(void); 20 | }; 21 | 22 | extern avm_module_t *avm_modules_pool[]; 23 | extern avm_module_t avm_core_module_st; 24 | 25 | void delay_ms(unsigned int t); 26 | void delay_us(unsigned int t); 27 | 28 | #define NVIC_GROUPING 3 29 | // Jump to built-in bootloader 30 | #define ISP_ADDR 0x1FFFF000 31 | void jump2ISP(); 32 | 33 | 34 | #endif -------------------------------------------------------------------------------- /libs/module/avm_tty.h: -------------------------------------------------------------------------------- 1 | #ifndef _AVM_TTY_H_ 2 | #define _AVM_TTY_H_ 3 | 4 | #define TTY_NONE() uart_sendStr("\033[m") 5 | #define TTY_RED() uart_sendStr("\033[41;30m") 6 | #define TTY_LIGHT_RED() uart_sendStr("\033[1;31m") 7 | #define TTY_GREEN() uart_sendStr("\033[0;32;32m") 8 | #define TTY_LIGHT_GREEN() uart_sendStr("\033[1;32m") 9 | #define TTY_BLUE() uart_sendStr("\033[46;30m") 10 | #define TTY_LIGHT_BLUE() uart_sendStr("\033[1;34m") 11 | #define TTY_DARY_GRAY() uart_sendStr("\033[1;30m") 12 | #define TTY_CYAN() uart_sendStr("\033[0;36m") 13 | #define TTY_LIGHT_CYAN() uart_sendStr("\033[1;36m") 14 | #define TTY_PURPLE() uart_sendStr("\033[0;35m") 15 | #define TTY_LIGHT_PURPLE() uart_sendStr("\033[1;35m") 16 | #define TTY_BROWN() uart_sendStr("\033[0;33m") 17 | #define TTY_YELLOW() uart_sendStr("\033[1;33m") 18 | #define TTY_LIGHT_GRAY() uart_sendStr("\033[0;37m") 19 | #define TTY_WHITE() uart_sendStr("\033[1;37m") 20 | 21 | #define TTY_COLORRTN() uart_sendStr("\33[7m") 22 | #define TTY_CLEAR() uart_sendStr("\33[2J") 23 | #define TTY_UNDERLINE() uart_sendStr("\33[4m") 24 | #define TTY_FLASH() uart_sendStr("\33[5m") 25 | #define TTY_OPTOFF() uart_sendStr("\33[0m") 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /libs/module/avm_uart.h: -------------------------------------------------------------------------------- 1 | #ifndef _AVM_UART_H_ 2 | #define _AVM_UART_H_ 3 | 4 | 5 | void uart_init(unsigned int pclk2, unsigned int bound); 6 | void uart_sendData(unsigned char data); 7 | void uart_short2char(short k); 8 | void uart_int2char(unsigned int k); 9 | unsigned char uart_Float2Char(float value); 10 | void uart_sendStr(char *cmd); 11 | void USART1_IRQHandler(void); 12 | 13 | extern avm_module_t avm_uart_module_st; 14 | 15 | #define UART_CR() do {\ 16 | uart_sendData(0x0D);\ 17 | uart_sendData(0x0A);\ 18 | } while(0) 19 | 20 | #define UART_CLEAR() uart_sendStr("\033[H\033[J") 21 | 22 | 23 | #endif 24 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- 1 | # src Makefile 2 | 3 | include ../Makefile.common 4 | 5 | OBJS+=startup.o 6 | OBJS+=main.o 7 | 8 | all: src 9 | 10 | src: app.a 11 | 12 | app.a: $(OBJS) 13 | $(AR) cr app.a $(OBJS) 14 | .PHONY: src clean tshow 15 | 16 | clean: 17 | rm -f app.a $(OBJS) 18 | tshow: 19 | @echo "######################################################################################################" 20 | @echo "################# optimize settings: $(InfoTextLib), $(InfoTextSrc)" 21 | @echo "######################################################################################################" 22 | -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | 5 | avm_core_module_st.init_module(NULL); 6 | 7 | while(1) { 8 | uart_sendStr("Hello World!\r\n"); 9 | } 10 | } 11 | --------------------------------------------------------------------------------