gitextract_fx4jhopb/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── question.yml ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Drivers/ │ ├── BSP/ │ │ └── Adafruit_Shield/ │ │ ├── LICENSE.md │ │ ├── Release_Notes.html │ │ ├── _htmresc/ │ │ │ └── mini-st_2020.css │ │ ├── stm32_adafruit_lcd.c │ │ ├── stm32_adafruit_lcd.h │ │ ├── stm32_adafruit_sd.c │ │ └── stm32_adafruit_sd.h │ └── CMSIS/ │ ├── ARM.CMSIS.pdsc │ ├── Core/ │ │ ├── Include/ │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_armclang_ltm.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv81mml.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm35p.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ │ └── Template/ │ │ └── ARMv8-M/ │ │ ├── main_s.c │ │ └── tz_context.c │ ├── DSP/ │ │ ├── DSP_Lib_TestSuite/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Common/ │ │ │ │ ├── JTest/ │ │ │ │ │ ├── FVP.ini │ │ │ │ │ ├── MPS2.ini │ │ │ │ │ ├── README.org │ │ │ │ │ ├── Simulator.ini │ │ │ │ │ ├── inc/ │ │ │ │ │ │ ├── arr_desc/ │ │ │ │ │ │ │ └── arr_desc.h │ │ │ │ │ │ ├── jtest.h │ │ │ │ │ │ ├── jtest_cycle.h │ │ │ │ │ │ ├── jtest_define.h │ │ │ │ │ │ ├── jtest_fw.h │ │ │ │ │ │ ├── jtest_group.h │ │ │ │ │ │ ├── jtest_group_call.h │ │ │ │ │ │ ├── jtest_group_define.h │ │ │ │ │ │ ├── jtest_pf.h │ │ │ │ │ │ ├── jtest_systick.h │ │ │ │ │ │ ├── jtest_test.h │ │ │ │ │ │ ├── jtest_test_call.h │ │ │ │ │ │ ├── jtest_test_define.h │ │ │ │ │ │ ├── jtest_test_ret.h │ │ │ │ │ │ ├── jtest_util.h │ │ │ │ │ │ ├── opt_arg/ │ │ │ │ │ │ │ ├── opt_arg.h │ │ │ │ │ │ │ ├── pp_narg.h │ │ │ │ │ │ │ └── splice.h │ │ │ │ │ │ └── util/ │ │ │ │ │ │ └── util.h │ │ │ │ │ ├── jtest_FVP.ini │ │ │ │ │ ├── jtest_MPS2.ini │ │ │ │ │ ├── jtest_Simulator.ini │ │ │ │ │ ├── jtest_Simulator.ini.withCoverage │ │ │ │ │ ├── jtest_fns.ini │ │ │ │ │ ├── jtest_log_FVP.ini │ │ │ │ │ ├── jtest_log_MPS2.ini │ │ │ │ │ ├── jtest_log_Simulator.ini │ │ │ │ │ └── src/ │ │ │ │ │ ├── jtest_cycle.c │ │ │ │ │ ├── jtest_dump_str_segments.c │ │ │ │ │ ├── jtest_fw.c │ │ │ │ │ └── jtest_trigger_action.c │ │ │ │ ├── inc/ │ │ │ │ │ ├── all_tests.h │ │ │ │ │ ├── basic_math_tests/ │ │ │ │ │ │ ├── basic_math_templates.h │ │ │ │ │ │ ├── basic_math_test_data.h │ │ │ │ │ │ ├── basic_math_test_group.h │ │ │ │ │ │ └── basic_math_tests.h │ │ │ │ │ ├── complex_math_tests/ │ │ │ │ │ │ ├── complex_math_templates.h │ │ │ │ │ │ ├── complex_math_test_data.h │ │ │ │ │ │ ├── complex_math_test_group.h │ │ │ │ │ │ └── complex_math_tests.h │ │ │ │ │ ├── controller_tests/ │ │ │ │ │ │ ├── controller_templates.h │ │ │ │ │ │ ├── controller_test_data.h │ │ │ │ │ │ ├── controller_test_group.h │ │ │ │ │ │ └── controller_tests.h │ │ │ │ │ ├── fast_math_tests/ │ │ │ │ │ │ ├── fast_math_templates.h │ │ │ │ │ │ ├── fast_math_test_data.h │ │ │ │ │ │ └── fast_math_test_group.h │ │ │ │ │ ├── filtering_tests/ │ │ │ │ │ │ ├── filtering_templates.h │ │ │ │ │ │ ├── filtering_test_data.h │ │ │ │ │ │ ├── filtering_test_group.h │ │ │ │ │ │ └── filtering_tests.h │ │ │ │ │ ├── intrinsics_tests/ │ │ │ │ │ │ ├── intrinsics_templates.h │ │ │ │ │ │ ├── intrinsics_test_data.h │ │ │ │ │ │ └── intrinsics_test_group.h │ │ │ │ │ ├── math_helper.h │ │ │ │ │ ├── matrix_tests/ │ │ │ │ │ │ ├── matrix_templates.h │ │ │ │ │ │ ├── matrix_test_data.h │ │ │ │ │ │ ├── matrix_test_group.h │ │ │ │ │ │ └── matrix_tests.h │ │ │ │ │ ├── statistics_tests/ │ │ │ │ │ │ ├── statistics_templates.h │ │ │ │ │ │ ├── statistics_test_data.h │ │ │ │ │ │ ├── statistics_test_group.h │ │ │ │ │ │ └── statistics_tests.h │ │ │ │ │ ├── support_tests/ │ │ │ │ │ │ ├── support_templates.h │ │ │ │ │ │ ├── support_test_data.h │ │ │ │ │ │ ├── support_test_group.h │ │ │ │ │ │ └── support_tests.h │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── template.h │ │ │ │ │ │ └── test_templates.h │ │ │ │ │ ├── transform_tests/ │ │ │ │ │ │ ├── transform_templates.h │ │ │ │ │ │ ├── transform_test_data.h │ │ │ │ │ │ ├── transform_test_group.h │ │ │ │ │ │ └── transform_tests.h │ │ │ │ │ └── type_abbrev.h │ │ │ │ ├── platform/ │ │ │ │ │ ├── ARMCC/ │ │ │ │ │ │ ├── Retarget.c │ │ │ │ │ │ ├── armcc5_arm.sct │ │ │ │ │ │ ├── startup_armv6-m.s │ │ │ │ │ │ ├── startup_armv6-m.s.noSCT │ │ │ │ │ │ ├── startup_armv7-m.s │ │ │ │ │ │ └── startup_armv7-m.s.noSCT │ │ │ │ │ ├── ARMCLANG/ │ │ │ │ │ │ ├── armcc6_arm.sct │ │ │ │ │ │ ├── startup_armv6-m.S │ │ │ │ │ │ ├── startup_armv6-m.S.noSCT │ │ │ │ │ │ ├── startup_armv7-m.S │ │ │ │ │ │ └── startup_armv7-m.S.noSCT │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── ARMCMx.ld │ │ │ │ │ │ ├── ARMCMx_IoT.ld │ │ │ │ │ │ ├── Retarget.c │ │ │ │ │ │ ├── startup_armv6-m.S │ │ │ │ │ │ └── startup_armv7-m.S │ │ │ │ │ ├── startup_generic.S │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM23.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ ├── system_ARMCM33.c │ │ │ │ │ ├── system_ARMCM4.c │ │ │ │ │ ├── system_ARMCM7.c │ │ │ │ │ ├── system_ARMSC000.c │ │ │ │ │ ├── system_ARMSC300.c │ │ │ │ │ ├── system_ARMv8MBL.c │ │ │ │ │ ├── system_ARMv8MML.c │ │ │ │ │ └── system_generic.c │ │ │ │ └── src/ │ │ │ │ ├── all_tests.c │ │ │ │ ├── basic_math_tests/ │ │ │ │ │ ├── abs_tests.c │ │ │ │ │ ├── add_tests.c │ │ │ │ │ ├── basic_math_test_common_data.c │ │ │ │ │ ├── basic_math_test_group.c │ │ │ │ │ ├── dot_prod_tests.c │ │ │ │ │ ├── mult_tests.c │ │ │ │ │ ├── negate_tests.c │ │ │ │ │ ├── offset_tests.c │ │ │ │ │ ├── scale_tests.c │ │ │ │ │ ├── shift_tests.c │ │ │ │ │ └── sub_tests.c │ │ │ │ ├── complex_math_tests/ │ │ │ │ │ ├── cmplx_conj_tests.c │ │ │ │ │ ├── cmplx_dot_prod_tests.c │ │ │ │ │ ├── cmplx_mag_squared_tests.c │ │ │ │ │ ├── cmplx_mag_tests.c │ │ │ │ │ ├── cmplx_mult_cmplx_tests.c │ │ │ │ │ ├── cmplx_mult_real_test.c │ │ │ │ │ ├── complex_math_test_common_data.c │ │ │ │ │ └── complex_math_test_group.c │ │ │ │ ├── controller_tests/ │ │ │ │ │ ├── controller_test_common_data.c │ │ │ │ │ ├── controller_test_group.c │ │ │ │ │ ├── pid_reset_tests.c │ │ │ │ │ ├── pid_tests.c │ │ │ │ │ └── sin_cos_tests.c │ │ │ │ ├── fast_math_tests/ │ │ │ │ │ ├── fast_math_tests.c │ │ │ │ │ └── fast_math_tests_common_data.c │ │ │ │ ├── filtering_tests/ │ │ │ │ │ ├── biquad_tests.c │ │ │ │ │ ├── conv_tests.c │ │ │ │ │ ├── correlate_tests.c │ │ │ │ │ ├── filtering_test_common_data.c │ │ │ │ │ ├── filtering_test_group.c │ │ │ │ │ ├── fir_tests.c │ │ │ │ │ ├── iir_tests.c │ │ │ │ │ └── lms_tests.c │ │ │ │ ├── intrinsics_tests/ │ │ │ │ │ ├── intrinsics_tests.c │ │ │ │ │ └── intrinsics_tests_common_data.c │ │ │ │ ├── main.c │ │ │ │ ├── math_helper.c │ │ │ │ ├── matrix_tests/ │ │ │ │ │ ├── mat_add_tests.c │ │ │ │ │ ├── mat_cmplx_mult_tests.c │ │ │ │ │ ├── mat_init_tests.c │ │ │ │ │ ├── mat_inverse_tests.c │ │ │ │ │ ├── mat_mult_fast_tests.c │ │ │ │ │ ├── mat_mult_tests.c │ │ │ │ │ ├── mat_scale_tests.c │ │ │ │ │ ├── mat_sub_tests.c │ │ │ │ │ ├── mat_trans_tests.c │ │ │ │ │ ├── matrix_test_common_data.c │ │ │ │ │ └── matrix_test_group.c │ │ │ │ ├── statistics_tests/ │ │ │ │ │ ├── max_tests.c │ │ │ │ │ ├── mean_tests.c │ │ │ │ │ ├── min_tests.c │ │ │ │ │ ├── power_tests.c │ │ │ │ │ ├── rms_tests.c │ │ │ │ │ ├── statistics_test_common_data.c │ │ │ │ │ ├── statistics_test_group.c │ │ │ │ │ ├── std_tests.c │ │ │ │ │ └── var_tests.c │ │ │ │ ├── support_tests/ │ │ │ │ │ ├── copy_tests.c │ │ │ │ │ ├── fill_tests.c │ │ │ │ │ ├── support_test_common_data.c │ │ │ │ │ ├── support_test_group.c │ │ │ │ │ └── x_to_y_tests.c │ │ │ │ └── transform_tests/ │ │ │ │ ├── cfft_family_tests.c │ │ │ │ ├── cfft_tests.c │ │ │ │ ├── dct4_tests.c │ │ │ │ ├── rfft_fast_tests.c │ │ │ │ ├── rfft_tests.c │ │ │ │ ├── transform_test_group.c │ │ │ │ └── transform_tests_common_data.c │ │ │ ├── DspLibTest_FVP/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── DspLibTest_FVP.uvoptx │ │ │ │ │ └── DspLibTest_FVP.uvprojx │ │ │ │ ├── ARMCLANG/ │ │ │ │ │ ├── DspLibTest_FVP.uvoptx │ │ │ │ │ └── DspLibTest_FVP.uvprojx │ │ │ │ ├── ARMv8MBLl_config.txt │ │ │ │ ├── ARMv8MMLl_config.txt │ │ │ │ ├── ARMv8MMLld_config.txt │ │ │ │ ├── ARMv8MMLldfsp_config.txt │ │ │ │ ├── ARMv8MMLlfsp_config.txt │ │ │ │ ├── GCC/ │ │ │ │ │ ├── DspLibTest_FVP.uvoptx │ │ │ │ │ └── DspLibTest_FVP.uvprojx │ │ │ │ ├── cortexM0l_config.txt │ │ │ │ ├── cortexM3l_config.txt │ │ │ │ ├── cortexM4l_config.txt │ │ │ │ ├── cortexM4lf_config.txt │ │ │ │ ├── cortexM7l_config.txt │ │ │ │ ├── cortexM7lfdp_config.txt │ │ │ │ └── cortexM7lfsp_config.txt │ │ │ ├── DspLibTest_FVP_A5/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .settings/ │ │ │ │ │ ├── language.settings.xml │ │ │ │ │ └── org.eclipse.ltk.core.refactoring.prefs │ │ │ │ ├── DspLibTest_FVP_A5.launch │ │ │ │ ├── DspLibTest_FVP_A5.rteconfig │ │ │ │ ├── RTE/ │ │ │ │ │ ├── CMSIS/ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ ├── RTX_Config.h │ │ │ │ │ │ └── handlers.c │ │ │ │ │ ├── Device/ │ │ │ │ │ │ └── ARMCA5/ │ │ │ │ │ │ ├── ARMCA5.sct │ │ │ │ │ │ ├── mem_ARMCA5.h │ │ │ │ │ │ ├── mmu_ARMCA5.c │ │ │ │ │ │ ├── startup_ARMCA5.c │ │ │ │ │ │ ├── system_ARMCA5.c │ │ │ │ │ │ └── system_ARMCA5.h │ │ │ │ │ └── RTE_Components.h │ │ │ │ └── main.c │ │ │ ├── DspLibTest_MPS2/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── DspLibTest_MPS2.uvoptx │ │ │ │ │ └── DspLibTest_MPS2.uvprojx │ │ │ │ ├── GCC/ │ │ │ │ │ ├── DspLibTest_MPS2.uvoptx │ │ │ │ │ └── DspLibTest_MPS2.uvprojx │ │ │ │ └── HowTo.txt │ │ │ ├── DspLibTest_SV_FVP/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── DspLibTest_FVP.uvoptx │ │ │ │ │ └── DspLibTest_FVP.uvprojx │ │ │ │ ├── ARMCLANG/ │ │ │ │ │ ├── DspLibTest_FVP.uvoptx │ │ │ │ │ └── DspLibTest_FVP.uvprojx │ │ │ │ ├── ARMv8MBLl_config.txt │ │ │ │ ├── ARMv8MMLl_config.txt │ │ │ │ ├── ARMv8MMLld_config.txt │ │ │ │ ├── ARMv8MMLldfsp_config.txt │ │ │ │ ├── ARMv8MMLlfsp_config.txt │ │ │ │ ├── GCC/ │ │ │ │ │ ├── DspLibTest_FVP.uvoptx │ │ │ │ │ └── DspLibTest_FVP.uvprojx │ │ │ │ ├── cortexM0l_config.txt │ │ │ │ ├── cortexM3l_config.txt │ │ │ │ ├── cortexM4l_config.txt │ │ │ │ ├── cortexM4lf_config.txt │ │ │ │ ├── cortexM7l_config.txt │ │ │ │ ├── cortexM7lfdp_config.txt │ │ │ │ └── cortexM7lfsp_config.txt │ │ │ ├── DspLibTest_SV_MPS2/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── DspLibTest_MPS2.uvoptx │ │ │ │ │ └── DspLibTest_MPS2.uvprojx │ │ │ │ ├── ARMCLANG/ │ │ │ │ │ ├── DspLibTest_MPS2.uvoptx │ │ │ │ │ └── DspLibTest_MPS2.uvprojx │ │ │ │ ├── ARMv8MBLl_config.txt │ │ │ │ ├── ARMv8MMLl_config.txt │ │ │ │ ├── ARMv8MMLld_config.txt │ │ │ │ ├── ARMv8MMLldfsp_config.txt │ │ │ │ ├── ARMv8MMLlfsp_config.txt │ │ │ │ ├── GCC/ │ │ │ │ │ ├── DspLibTest_MPS2.uvoptx │ │ │ │ │ └── DspLibTest_MPS2.uvprojx │ │ │ │ ├── cortexM0l_config.txt │ │ │ │ ├── cortexM3l_config.txt │ │ │ │ ├── cortexM4l_config.txt │ │ │ │ ├── cortexM4lf_config.txt │ │ │ │ ├── cortexM7l_config.txt │ │ │ │ ├── cortexM7lfdp_config.txt │ │ │ │ └── cortexM7lfsp_config.txt │ │ │ ├── DspLibTest_SV_Simulator/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ │ │ ├── ARMCLANG/ │ │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ │ │ └── GCC/ │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ │ ├── DspLibTest_Simulator/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ │ │ ├── ARMCLANG/ │ │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ │ │ └── GCC/ │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ │ ├── HowTo.txt │ │ │ ├── HowTo_SV.txt │ │ │ ├── RefLibs/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── RefLibs.uvoptx │ │ │ │ │ └── RefLibs.uvprojx │ │ │ │ ├── ARMCLANG/ │ │ │ │ │ ├── RefLibs.uvoptx │ │ │ │ │ └── RefLibs.uvprojx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GCC/ │ │ │ │ │ ├── RefLibs.uvoptx │ │ │ │ │ └── RefLibs.uvprojx │ │ │ │ ├── inc/ │ │ │ │ │ └── ref.h │ │ │ │ └── src/ │ │ │ │ ├── BasicMathFunctions/ │ │ │ │ │ ├── BasicMathFunctions.c │ │ │ │ │ ├── abs.c │ │ │ │ │ ├── add.c │ │ │ │ │ ├── dot_prod.c │ │ │ │ │ ├── mult.c │ │ │ │ │ ├── negate.c │ │ │ │ │ ├── offset.c │ │ │ │ │ ├── scale.c │ │ │ │ │ ├── shift.c │ │ │ │ │ └── sub.c │ │ │ │ ├── ComplexMathFunctions/ │ │ │ │ │ ├── ComplexMathFunctions.c │ │ │ │ │ ├── cmplx_conj.c │ │ │ │ │ ├── cmplx_dot_prod.c │ │ │ │ │ ├── cmplx_mag.c │ │ │ │ │ ├── cmplx_mag_squared.c │ │ │ │ │ ├── cmplx_mult_cmplx.c │ │ │ │ │ └── cmplx_mult_real.c │ │ │ │ ├── ControllerFunctions/ │ │ │ │ │ ├── ControllerFunctions.c │ │ │ │ │ ├── pid.c │ │ │ │ │ └── sin_cos.c │ │ │ │ ├── FastMathFunctions/ │ │ │ │ │ ├── FastMathFunctions.c │ │ │ │ │ ├── cos.c │ │ │ │ │ ├── sin.c │ │ │ │ │ └── sqrt.c │ │ │ │ ├── FilteringFunctions/ │ │ │ │ │ ├── FilteringFunctions.c │ │ │ │ │ ├── biquad.c │ │ │ │ │ ├── conv.c │ │ │ │ │ ├── correlate.c │ │ │ │ │ ├── fir.c │ │ │ │ │ ├── fir_decimate.c │ │ │ │ │ ├── fir_interpolate.c │ │ │ │ │ ├── fir_lattice.c │ │ │ │ │ ├── fir_sparse.c │ │ │ │ │ ├── iir_lattice.c │ │ │ │ │ └── lms.c │ │ │ │ ├── HelperFunctions/ │ │ │ │ │ ├── HelperFunctions.c │ │ │ │ │ ├── mat_helper.c │ │ │ │ │ └── ref_helper.c │ │ │ │ ├── Intrinsics/ │ │ │ │ │ ├── Intrinsics_.c │ │ │ │ │ └── intrinsics.c │ │ │ │ ├── MatrixFunctions/ │ │ │ │ │ ├── MatrixFunctions.c │ │ │ │ │ ├── mat_add.c │ │ │ │ │ ├── mat_cmplx_mult.c │ │ │ │ │ ├── mat_inverse.c │ │ │ │ │ ├── mat_mult.c │ │ │ │ │ ├── mat_scale.c │ │ │ │ │ ├── mat_sub.c │ │ │ │ │ └── mat_trans.c │ │ │ │ ├── StatisticsFunctions/ │ │ │ │ │ ├── StatisticsFunctions.c │ │ │ │ │ ├── max.c │ │ │ │ │ ├── mean.c │ │ │ │ │ ├── min.c │ │ │ │ │ ├── power.c │ │ │ │ │ ├── rms.c │ │ │ │ │ ├── std.c │ │ │ │ │ └── var.c │ │ │ │ ├── SupportFunctions/ │ │ │ │ │ ├── SupportFunctions.c │ │ │ │ │ ├── copy.c │ │ │ │ │ ├── fill.c │ │ │ │ │ ├── fixed_to_fixed.c │ │ │ │ │ ├── fixed_to_float.c │ │ │ │ │ └── float_to_fixed.c │ │ │ │ └── TransformFunctions/ │ │ │ │ ├── TransformFunctions.c │ │ │ │ ├── bitreversal.c │ │ │ │ ├── cfft.c │ │ │ │ ├── dct4.c │ │ │ │ └── rfft.c │ │ │ ├── buildDspLibs.bat │ │ │ ├── buildRefLibs.bat │ │ │ ├── log2txt.py │ │ │ ├── parseLog.py │ │ │ ├── parseLog_SV.py │ │ │ ├── runTest.bat │ │ │ └── runTest_SV.bat │ │ ├── Examples/ │ │ │ └── ARM/ │ │ │ ├── arm_class_marks_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_class_marks_example.ini │ │ │ │ ├── arm_class_marks_example.uvoptx │ │ │ │ ├── arm_class_marks_example.uvprojx │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ ├── arm_convolution_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_convolution_example.ini │ │ │ │ ├── arm_convolution_example.uvoptx │ │ │ │ ├── arm_convolution_example.uvprojx │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ ├── arm_dotproduct_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_dotproduct_example.ini │ │ │ │ ├── arm_dotproduct_example.uvoptx │ │ │ │ ├── arm_dotproduct_example.uvprojx │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ ├── arm_fft_bin_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ ├── arm_fft_bin_example.ini │ │ │ │ ├── arm_fft_bin_example.uvoptx │ │ │ │ ├── arm_fft_bin_example.uvprojx │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ ├── arm_fir_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_fir_data.c │ │ │ │ ├── arm_fir_example.ini │ │ │ │ ├── arm_fir_example.uvoptx │ │ │ │ ├── arm_fir_example.uvprojx │ │ │ │ ├── arm_fir_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ ├── arm_graphic_equalizer_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_graphic_equalizer_data.c │ │ │ │ ├── arm_graphic_equalizer_example.ini │ │ │ │ ├── arm_graphic_equalizer_example.uvoptx │ │ │ │ ├── arm_graphic_equalizer_example.uvprojx │ │ │ │ ├── arm_graphic_equalizer_example_q31.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ ├── arm_linear_interp_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_linear_interp_data.c │ │ │ │ ├── arm_linear_interp_example.ini │ │ │ │ ├── arm_linear_interp_example.uvoptx │ │ │ │ ├── arm_linear_interp_example.uvprojx │ │ │ │ ├── arm_linear_interp_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ ├── arm_matrix_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_matrix_example.ini │ │ │ │ ├── arm_matrix_example.uvoptx │ │ │ │ ├── arm_matrix_example.uvprojx │ │ │ │ ├── arm_matrix_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ ├── arm_signal_converge_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_signal_converge_data.c │ │ │ │ ├── arm_signal_converge_example.ini │ │ │ │ ├── arm_signal_converge_example.uvoptx │ │ │ │ ├── arm_signal_converge_example.uvprojx │ │ │ │ ├── arm_signal_converge_example_f32.c │ │ │ │ ├── math_helper.c │ │ │ │ └── math_helper.h │ │ │ ├── arm_sin_cos_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_sin_cos_example.ini │ │ │ │ ├── arm_sin_cos_example.uvoptx │ │ │ │ ├── arm_sin_cos_example.uvprojx │ │ │ │ └── arm_sin_cos_example_f32.c │ │ │ ├── arm_variance_example/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── RTE/ │ │ │ │ │ └── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── arm_variance_example.ini │ │ │ │ ├── arm_variance_example.uvoptx │ │ │ │ ├── arm_variance_example.uvprojx │ │ │ │ ├── arm_variance_example_f32.c │ │ │ │ ├── buildmake.bat │ │ │ │ └── run.bat │ │ │ └── boot/ │ │ │ └── RTE_Components.h │ │ ├── Include/ │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ └── arm_math.h │ │ ├── Lib/ │ │ │ ├── ARM/ │ │ │ │ ├── arm_cortexM0b_math.lib │ │ │ │ └── arm_cortexM0l_math.lib │ │ │ ├── GCC/ │ │ │ │ └── libarm_cortexM0l_math.a │ │ │ └── IAR/ │ │ │ ├── iar_cortexM0b_math.a │ │ │ └── iar_cortexM0l_math.a │ │ ├── Projects/ │ │ │ ├── ARM/ │ │ │ │ ├── arm_cortexM_math.uvoptx │ │ │ │ ├── arm_cortexM_math.uvprojx │ │ │ │ └── arm_cortexM_math_Build.bat │ │ │ ├── GCC/ │ │ │ │ ├── arm_cortexM_math.uvoptx │ │ │ │ ├── arm_cortexM_math.uvprojx │ │ │ │ └── arm_cortexM_math_Build.bat │ │ │ └── IAR/ │ │ │ ├── arm_cortexM_math.ewp │ │ │ ├── arm_cortexM_math.eww │ │ │ └── arm_cortexM_math_Build.bat │ │ ├── PythonWrapper/ │ │ │ ├── README.md │ │ │ ├── cmsisdsp_pkg/ │ │ │ │ └── src/ │ │ │ │ ├── cmsismodule.c │ │ │ │ ├── cmsismodule.h │ │ │ │ └── fftinit.c │ │ │ ├── config.py │ │ │ ├── example.py │ │ │ ├── setup.py │ │ │ └── testdsp.py │ │ ├── README.md │ │ ├── Source/ │ │ │ ├── BasicMathFunctions/ │ │ │ │ ├── BasicMathFunctions.c │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── arm_abs_f32.c │ │ │ │ ├── arm_abs_q15.c │ │ │ │ ├── arm_abs_q31.c │ │ │ │ ├── arm_abs_q7.c │ │ │ │ ├── arm_add_f32.c │ │ │ │ ├── arm_add_q15.c │ │ │ │ ├── arm_add_q31.c │ │ │ │ ├── arm_add_q7.c │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ ├── arm_mult_f32.c │ │ │ │ ├── arm_mult_q15.c │ │ │ │ ├── arm_mult_q31.c │ │ │ │ ├── arm_mult_q7.c │ │ │ │ ├── arm_negate_f32.c │ │ │ │ ├── arm_negate_q15.c │ │ │ │ ├── arm_negate_q31.c │ │ │ │ ├── arm_negate_q7.c │ │ │ │ ├── arm_offset_f32.c │ │ │ │ ├── arm_offset_q15.c │ │ │ │ ├── arm_offset_q31.c │ │ │ │ ├── arm_offset_q7.c │ │ │ │ ├── arm_scale_f32.c │ │ │ │ ├── arm_scale_q15.c │ │ │ │ ├── arm_scale_q31.c │ │ │ │ ├── arm_scale_q7.c │ │ │ │ ├── arm_shift_q15.c │ │ │ │ ├── arm_shift_q31.c │ │ │ │ ├── arm_shift_q7.c │ │ │ │ ├── arm_sub_f32.c │ │ │ │ ├── arm_sub_q15.c │ │ │ │ ├── arm_sub_q31.c │ │ │ │ └── arm_sub_q7.c │ │ │ ├── CMakeLists.txt │ │ │ ├── CommonTables/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CommonTables.c │ │ │ │ ├── arm_common_tables.c │ │ │ │ └── arm_const_structs.c │ │ │ ├── ComplexMathFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ComplexMathFunctions.c │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ ├── arm_cmplx_mult_real_f32.c │ │ │ │ ├── arm_cmplx_mult_real_q15.c │ │ │ │ └── arm_cmplx_mult_real_q31.c │ │ │ ├── ControllerFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ControllerFunctions.c │ │ │ │ ├── arm_pid_init_f32.c │ │ │ │ ├── arm_pid_init_q15.c │ │ │ │ ├── arm_pid_init_q31.c │ │ │ │ ├── arm_pid_reset_f32.c │ │ │ │ ├── arm_pid_reset_q15.c │ │ │ │ ├── arm_pid_reset_q31.c │ │ │ │ ├── arm_sin_cos_f32.c │ │ │ │ └── arm_sin_cos_q31.c │ │ │ ├── FastMathFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FastMathFunctions.c │ │ │ │ ├── arm_cos_f32.c │ │ │ │ ├── arm_cos_q15.c │ │ │ │ ├── arm_cos_q31.c │ │ │ │ ├── arm_sin_f32.c │ │ │ │ ├── arm_sin_q15.c │ │ │ │ ├── arm_sin_q31.c │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ └── arm_sqrt_q31.c │ │ │ ├── FilteringFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FilteringFunctions.c │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_q31.c │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c │ │ │ │ ├── arm_conv_f32.c │ │ │ │ ├── arm_conv_fast_opt_q15.c │ │ │ │ ├── arm_conv_fast_q15.c │ │ │ │ ├── arm_conv_fast_q31.c │ │ │ │ ├── arm_conv_opt_q15.c │ │ │ │ ├── arm_conv_opt_q7.c │ │ │ │ ├── arm_conv_partial_f32.c │ │ │ │ ├── arm_conv_partial_fast_opt_q15.c │ │ │ │ ├── arm_conv_partial_fast_q15.c │ │ │ │ ├── arm_conv_partial_fast_q31.c │ │ │ │ ├── arm_conv_partial_opt_q15.c │ │ │ │ ├── arm_conv_partial_opt_q7.c │ │ │ │ ├── arm_conv_partial_q15.c │ │ │ │ ├── arm_conv_partial_q31.c │ │ │ │ ├── arm_conv_partial_q7.c │ │ │ │ ├── arm_conv_q15.c │ │ │ │ ├── arm_conv_q31.c │ │ │ │ ├── arm_conv_q7.c │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ ├── arm_correlate_fast_opt_q15.c │ │ │ │ ├── arm_correlate_fast_q15.c │ │ │ │ ├── arm_correlate_fast_q31.c │ │ │ │ ├── arm_correlate_opt_q15.c │ │ │ │ ├── arm_correlate_opt_q7.c │ │ │ │ ├── arm_correlate_q15.c │ │ │ │ ├── arm_correlate_q31.c │ │ │ │ ├── arm_correlate_q7.c │ │ │ │ ├── arm_fir_decimate_f32.c │ │ │ │ ├── arm_fir_decimate_fast_q15.c │ │ │ │ ├── arm_fir_decimate_fast_q31.c │ │ │ │ ├── arm_fir_decimate_init_f32.c │ │ │ │ ├── arm_fir_decimate_init_q15.c │ │ │ │ ├── arm_fir_decimate_init_q31.c │ │ │ │ ├── arm_fir_decimate_q15.c │ │ │ │ ├── arm_fir_decimate_q31.c │ │ │ │ ├── arm_fir_f32.c │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ ├── arm_fir_init_q15.c │ │ │ │ ├── arm_fir_init_q31.c │ │ │ │ ├── arm_fir_init_q7.c │ │ │ │ ├── arm_fir_interpolate_f32.c │ │ │ │ ├── arm_fir_interpolate_init_f32.c │ │ │ │ ├── arm_fir_interpolate_init_q15.c │ │ │ │ ├── arm_fir_interpolate_init_q31.c │ │ │ │ ├── arm_fir_interpolate_q15.c │ │ │ │ ├── arm_fir_interpolate_q31.c │ │ │ │ ├── arm_fir_lattice_f32.c │ │ │ │ ├── arm_fir_lattice_init_f32.c │ │ │ │ ├── arm_fir_lattice_init_q15.c │ │ │ │ ├── arm_fir_lattice_init_q31.c │ │ │ │ ├── arm_fir_lattice_q15.c │ │ │ │ ├── arm_fir_lattice_q31.c │ │ │ │ ├── arm_fir_q15.c │ │ │ │ ├── arm_fir_q31.c │ │ │ │ ├── arm_fir_q7.c │ │ │ │ ├── arm_fir_sparse_f32.c │ │ │ │ ├── arm_fir_sparse_init_f32.c │ │ │ │ ├── arm_fir_sparse_init_q15.c │ │ │ │ ├── arm_fir_sparse_init_q31.c │ │ │ │ ├── arm_fir_sparse_init_q7.c │ │ │ │ ├── arm_fir_sparse_q15.c │ │ │ │ ├── arm_fir_sparse_q31.c │ │ │ │ ├── arm_fir_sparse_q7.c │ │ │ │ ├── arm_iir_lattice_f32.c │ │ │ │ ├── arm_iir_lattice_init_f32.c │ │ │ │ ├── arm_iir_lattice_init_q15.c │ │ │ │ ├── arm_iir_lattice_init_q31.c │ │ │ │ ├── arm_iir_lattice_q15.c │ │ │ │ ├── arm_iir_lattice_q31.c │ │ │ │ ├── arm_lms_f32.c │ │ │ │ ├── arm_lms_init_f32.c │ │ │ │ ├── arm_lms_init_q15.c │ │ │ │ ├── arm_lms_init_q31.c │ │ │ │ ├── arm_lms_norm_f32.c │ │ │ │ ├── arm_lms_norm_init_f32.c │ │ │ │ ├── arm_lms_norm_init_q15.c │ │ │ │ ├── arm_lms_norm_init_q31.c │ │ │ │ ├── arm_lms_norm_q15.c │ │ │ │ ├── arm_lms_norm_q31.c │ │ │ │ ├── arm_lms_q15.c │ │ │ │ └── arm_lms_q31.c │ │ │ ├── MatrixFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MatrixFunctions.c │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ ├── arm_mat_cmplx_mult_f32.c │ │ │ │ ├── arm_mat_cmplx_mult_q15.c │ │ │ │ ├── arm_mat_cmplx_mult_q31.c │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ ├── arm_mat_inverse_f64.c │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ └── arm_mat_trans_q31.c │ │ │ ├── StatisticsFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── StatisticsFunctions.c │ │ │ │ ├── arm_max_f32.c │ │ │ │ ├── arm_max_q15.c │ │ │ │ ├── arm_max_q31.c │ │ │ │ ├── arm_max_q7.c │ │ │ │ ├── arm_mean_f32.c │ │ │ │ ├── arm_mean_q15.c │ │ │ │ ├── arm_mean_q31.c │ │ │ │ ├── arm_mean_q7.c │ │ │ │ ├── arm_min_f32.c │ │ │ │ ├── arm_min_q15.c │ │ │ │ ├── arm_min_q31.c │ │ │ │ ├── arm_min_q7.c │ │ │ │ ├── arm_power_f32.c │ │ │ │ ├── arm_power_q15.c │ │ │ │ ├── arm_power_q31.c │ │ │ │ ├── arm_power_q7.c │ │ │ │ ├── arm_rms_f32.c │ │ │ │ ├── arm_rms_q15.c │ │ │ │ ├── arm_rms_q31.c │ │ │ │ ├── arm_std_f32.c │ │ │ │ ├── arm_std_q15.c │ │ │ │ ├── arm_std_q31.c │ │ │ │ ├── arm_var_f32.c │ │ │ │ ├── arm_var_q15.c │ │ │ │ └── arm_var_q31.c │ │ │ ├── SupportFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SupportFunctions.c │ │ │ │ ├── arm_copy_f32.c │ │ │ │ ├── arm_copy_q15.c │ │ │ │ ├── arm_copy_q31.c │ │ │ │ ├── arm_copy_q7.c │ │ │ │ ├── arm_fill_f32.c │ │ │ │ ├── arm_fill_q15.c │ │ │ │ ├── arm_fill_q31.c │ │ │ │ ├── arm_fill_q7.c │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ ├── arm_q15_to_float.c │ │ │ │ ├── arm_q15_to_q31.c │ │ │ │ ├── arm_q15_to_q7.c │ │ │ │ ├── arm_q31_to_float.c │ │ │ │ ├── arm_q31_to_q15.c │ │ │ │ ├── arm_q31_to_q7.c │ │ │ │ ├── arm_q7_to_float.c │ │ │ │ ├── arm_q7_to_q15.c │ │ │ │ └── arm_q7_to_q31.c │ │ │ └── TransformFunctions/ │ │ │ ├── CMakeLists.txt │ │ │ ├── TransformFunctions.c │ │ │ ├── arm_bitreversal.c │ │ │ ├── arm_bitreversal2.S │ │ │ ├── arm_bitreversal2.c │ │ │ ├── arm_cfft_f32.c │ │ │ ├── arm_cfft_q15.c │ │ │ ├── arm_cfft_q31.c │ │ │ ├── arm_cfft_radix2_f32.c │ │ │ ├── arm_cfft_radix2_init_f32.c │ │ │ ├── arm_cfft_radix2_init_q15.c │ │ │ ├── arm_cfft_radix2_init_q31.c │ │ │ ├── arm_cfft_radix2_q15.c │ │ │ ├── arm_cfft_radix2_q31.c │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ ├── arm_cfft_radix8_f32.c │ │ │ ├── arm_dct4_f32.c │ │ │ ├── arm_dct4_init_f32.c │ │ │ ├── arm_dct4_init_q15.c │ │ │ ├── arm_dct4_init_q31.c │ │ │ ├── arm_dct4_q15.c │ │ │ ├── arm_dct4_q31.c │ │ │ ├── arm_rfft_f32.c │ │ │ ├── arm_rfft_fast_f32.c │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ ├── arm_rfft_init_f32.c │ │ │ ├── arm_rfft_init_q15.c │ │ │ ├── arm_rfft_init_q31.c │ │ │ ├── arm_rfft_q15.c │ │ │ └── arm_rfft_q31.c │ │ ├── armcc.cmake │ │ ├── config.cmake │ │ ├── configBoot.cmake │ │ ├── configUtils.cmake │ │ ├── fft.cmake │ │ └── interpol.cmake │ ├── Include/ │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_armclang_ltm.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv81mml.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm35p.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h │ ├── LICENSE.txt │ ├── NN/ │ │ ├── Examples/ │ │ │ ├── ARM/ │ │ │ │ └── arm_nn_examples/ │ │ │ │ ├── cifar10/ │ │ │ │ │ ├── EventRecorderStub.scvd │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ ├── Compiler/ │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ ├── Device/ │ │ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM7.c │ │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ │ ├── _ARMCM0/ │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM3/ │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ ├── _ARMCM4_FP/ │ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ │ └── _ARMCM7_SP/ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── arm_nnexamples_cifar10.cpp │ │ │ │ │ ├── arm_nnexamples_cifar10.uvoptx │ │ │ │ │ ├── arm_nnexamples_cifar10.uvprojx │ │ │ │ │ ├── arm_nnexamples_cifar10_inputs.h │ │ │ │ │ ├── arm_nnexamples_cifar10_parameter.h │ │ │ │ │ ├── arm_nnexamples_cifar10_weights.h │ │ │ │ │ └── readme.txt │ │ │ │ └── gru/ │ │ │ │ ├── EventRecorderStub.scvd │ │ │ │ ├── RTE/ │ │ │ │ │ ├── Compiler/ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ ├── Device/ │ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ ├── startup_ARMCM7.c │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ ├── _ARMCM0/ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── _ARMCM3/ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ ├── _ARMCM4_FP/ │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── _ARMCM7_SP/ │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── arm_nnexamples_gru.cpp │ │ │ │ ├── arm_nnexamples_gru.uvoptx │ │ │ │ ├── arm_nnexamples_gru.uvprojx │ │ │ │ ├── arm_nnexamples_gru_test_data.h │ │ │ │ ├── para_gen.py │ │ │ │ └── readme.txt │ │ │ └── IAR/ │ │ │ └── iar_nn_examples/ │ │ │ ├── NN-example-cifar10/ │ │ │ │ ├── NN-example-cifar10.ewp │ │ │ │ ├── arm_nnexamples_cifar10.cpp │ │ │ │ ├── arm_nnexamples_cifar10_inputs.h │ │ │ │ ├── arm_nnexamples_cifar10_parameter.h │ │ │ │ ├── arm_nnexamples_cifar10_weights.h │ │ │ │ └── readme_iar.txt │ │ │ └── NN-example-gru/ │ │ │ ├── NN-example-gru.ewp │ │ │ ├── arm_nnexamples_gru.cpp │ │ │ ├── arm_nnexamples_gru_test_data.h │ │ │ └── readme_iar.txt │ │ ├── Include/ │ │ │ ├── arm_nn_tables.h │ │ │ ├── arm_nnfunctions.h │ │ │ └── arm_nnsupportfunctions.h │ │ ├── NN_Lib_Tests/ │ │ │ └── nn_test/ │ │ │ ├── RTE/ │ │ │ │ ├── Device/ │ │ │ │ │ ├── ARMCM0/ │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ │ ├── ARMCM3/ │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ ├── ARMCM4/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ ├── ARMCM4_FP/ │ │ │ │ │ │ ├── startup_ARMCM4.s │ │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ │ ├── ARMCM7_SP/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ ├── startup_ARMCM7.c │ │ │ │ │ │ ├── startup_ARMCM7.s │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ └── STM32F411RETx/ │ │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ │ └── system_stm32f4xx.c │ │ │ │ ├── _ARMCM0/ │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── _ARMCM3/ │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── _ARMCM4_FP/ │ │ │ │ │ └── RTE_Components.h │ │ │ │ └── _ARMCM7_SP/ │ │ │ │ └── RTE_Components.h │ │ │ ├── Ref_Implementations/ │ │ │ │ ├── arm_convolve_HWC_q15_ref.c │ │ │ │ ├── arm_convolve_HWC_q15_ref_nonsquare.c │ │ │ │ ├── arm_convolve_HWC_q7_ref.c │ │ │ │ ├── arm_convolve_HWC_q7_ref_nonsquare.c │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_ref.c │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_ref_nonsquare.c │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_opt_ref.c │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_ref.c │ │ │ │ ├── arm_fully_connected_q15_opt_ref.c │ │ │ │ ├── arm_fully_connected_q15_ref.c │ │ │ │ ├── arm_fully_connected_q7_opt_ref.c │ │ │ │ ├── arm_fully_connected_q7_ref.c │ │ │ │ ├── arm_nn_mult_ref.c │ │ │ │ ├── arm_pool_ref.c │ │ │ │ ├── arm_relu_ref.c │ │ │ │ ├── fully_connected_testing_weights.h │ │ │ │ └── ref_functions.h │ │ │ ├── arm_nnexamples_nn_test.cpp │ │ │ ├── arm_nnexamples_nn_test.h │ │ │ ├── arm_nnexamples_nn_test.ini │ │ │ ├── arm_nnexamples_nn_test.uvoptx │ │ │ ├── arm_nnexamples_nn_test.uvprojx │ │ │ ├── readme.txt │ │ │ └── runTest.bat │ │ ├── Scripts/ │ │ │ └── NNFunctions/ │ │ │ ├── fully_connected_opt_weight_generation.py │ │ │ └── table_gen.py │ │ └── Source/ │ │ ├── ActivationFunctions/ │ │ │ ├── arm_nn_activations_q15.c │ │ │ ├── arm_nn_activations_q7.c │ │ │ ├── arm_relu_q15.c │ │ │ └── arm_relu_q7.c │ │ ├── ConvolutionFunctions/ │ │ │ ├── arm_convolve_1x1_HWC_q7_fast_nonsquare.c │ │ │ ├── arm_convolve_HWC_q15_basic.c │ │ │ ├── arm_convolve_HWC_q15_fast.c │ │ │ ├── arm_convolve_HWC_q15_fast_nonsquare.c │ │ │ ├── arm_convolve_HWC_q7_RGB.c │ │ │ ├── arm_convolve_HWC_q7_basic.c │ │ │ ├── arm_convolve_HWC_q7_basic_nonsquare.c │ │ │ ├── arm_convolve_HWC_q7_fast.c │ │ │ ├── arm_convolve_HWC_q7_fast_nonsquare.c │ │ │ ├── arm_depthwise_conv_u8_basic_ver1.c │ │ │ ├── arm_depthwise_separable_conv_HWC_q7.c │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_nonsquare.c │ │ │ ├── arm_nn_mat_mult_kernel_q7_q15.c │ │ │ └── arm_nn_mat_mult_kernel_q7_q15_reordered.c │ │ ├── FullyConnectedFunctions/ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15.c │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_opt.c │ │ │ ├── arm_fully_connected_q15.c │ │ │ ├── arm_fully_connected_q15_opt.c │ │ │ ├── arm_fully_connected_q7.c │ │ │ └── arm_fully_connected_q7_opt.c │ │ ├── NNSupportFunctions/ │ │ │ ├── arm_nn_mult_q15.c │ │ │ ├── arm_nn_mult_q7.c │ │ │ ├── arm_nntables.c │ │ │ ├── arm_q7_to_q15_no_shift.c │ │ │ └── arm_q7_to_q15_reordered_no_shift.c │ │ ├── PoolingFunctions/ │ │ │ └── arm_pool_q7_HWC.c │ │ └── SoftmaxFunctions/ │ │ ├── arm_softmax_q15.c │ │ └── arm_softmax_q7.c │ ├── README.md │ ├── RTOS/ │ │ └── Template/ │ │ └── cmsis_os.h │ ├── RTOS2/ │ │ ├── Include/ │ │ │ ├── cmsis_os2.h │ │ │ └── os_tick.h │ │ ├── Source/ │ │ │ ├── os_systick.c │ │ │ ├── os_tick_gtim.c │ │ │ └── os_tick_ptim.c │ │ └── Template/ │ │ ├── cmsis_os.h │ │ └── cmsis_os1.c │ └── docs/ │ ├── Core/ │ │ └── html/ │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── classes.html │ │ ├── cmsis.css │ │ ├── coreMISRA_Exceptions_pg.html │ │ ├── core_revisionHistory.html │ │ ├── deprecated.html │ │ ├── device_h_pg.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── globals.html │ │ ├── globals_a.html │ │ ├── globals_b.html │ │ ├── globals_c.html │ │ ├── globals_d.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_func_a.html │ │ ├── globals_func_i.html │ │ ├── globals_func_n.html │ │ ├── globals_func_s.html │ │ ├── globals_func_t.html │ │ ├── globals_h.html │ │ ├── globals_i.html │ │ ├── globals_m.html │ │ ├── globals_n.html │ │ ├── globals_p.html │ │ ├── globals_s.html │ │ ├── globals_t.html │ │ ├── globals_u.html │ │ ├── globals_vars.html │ │ ├── globals_w.html │ │ ├── group__Core__Register__gr.html │ │ ├── group__Core__Register__gr.js │ │ ├── group__Dcache__functions__m7.html │ │ ├── group__Dcache__functions__m7.js │ │ ├── group__ITM__Debug__gr.html │ │ ├── group__ITM__Debug__gr.js │ │ ├── group__Icache__functions__m7.html │ │ ├── group__Icache__functions__m7.js │ │ ├── group__NVIC__gr.html │ │ ├── group__NVIC__gr.js │ │ ├── group__SysTick__gr.html │ │ ├── group__SysTick__gr.js │ │ ├── group__cache__functions__m7.html │ │ ├── group__cache__functions__m7.js │ │ ├── group__compiler__conntrol__gr.html │ │ ├── group__compiler__conntrol__gr.js │ │ ├── group__context__trustzone__functions.html │ │ ├── group__context__trustzone__functions.js │ │ ├── group__coreregister__trustzone__functions.html │ │ ├── group__coreregister__trustzone__functions.js │ │ ├── group__fpu__functions.html │ │ ├── group__fpu__functions.js │ │ ├── group__intrinsic__CPU__gr.html │ │ ├── group__intrinsic__CPU__gr.js │ │ ├── group__intrinsic__SIMD__gr.html │ │ ├── group__intrinsic__SIMD__gr.js │ │ ├── group__mpu8__functions.html │ │ ├── group__mpu8__functions.js │ │ ├── group__mpu__defines.html │ │ ├── group__mpu__defines.js │ │ ├── group__mpu__functions.html │ │ ├── group__mpu__functions.js │ │ ├── group__nvic__trustzone__functions.html │ │ ├── group__nvic__trustzone__functions.js │ │ ├── group__peripheral__gr.html │ │ ├── group__peripheral__gr.js │ │ ├── group__sau__trustzone__functions.html │ │ ├── group__sau__trustzone__functions.js │ │ ├── group__system__init__gr.html │ │ ├── group__system__init__gr.js │ │ ├── group__systick__trustzone__functions.html │ │ ├── group__systick__trustzone__functions.js │ │ ├── group__trustzone__functions.html │ │ ├── group__trustzone__functions.js │ │ ├── group__version__control__gr.html │ │ ├── group__version__control__gr.js │ │ ├── index.doxyidx │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── pages.html │ │ ├── partition_h_pg.html │ │ ├── printComponentTabs.js │ │ ├── regMap_pg.html │ │ ├── resize.js │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_16.html │ │ │ ├── all_16.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── classes_3.html │ │ │ ├── classes_3.js │ │ │ ├── classes_4.html │ │ │ ├── classes_4.js │ │ │ ├── classes_5.html │ │ │ ├── classes_5.js │ │ │ ├── classes_6.html │ │ │ ├── classes_6.js │ │ │ ├── classes_7.html │ │ │ ├── classes_7.js │ │ │ ├── classes_8.html │ │ │ ├── classes_8.js │ │ │ ├── classes_9.html │ │ │ ├── classes_9.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── enumvalues_1.html │ │ │ ├── enumvalues_1.js │ │ │ ├── enumvalues_2.html │ │ │ ├── enumvalues_2.js │ │ │ ├── enumvalues_3.html │ │ │ ├── enumvalues_3.js │ │ │ ├── enumvalues_4.html │ │ │ ├── enumvalues_4.js │ │ │ ├── enumvalues_5.html │ │ │ ├── enumvalues_5.js │ │ │ ├── enumvalues_6.html │ │ │ ├── enumvalues_6.js │ │ │ ├── enumvalues_7.html │ │ │ ├── enumvalues_7.js │ │ │ ├── enumvalues_8.html │ │ │ ├── enumvalues_8.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── groups_8.html │ │ │ ├── groups_8.js │ │ │ ├── groups_9.html │ │ │ ├── groups_9.js │ │ │ ├── groups_a.html │ │ │ ├── groups_a.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_14.html │ │ │ ├── variables_14.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ ├── search.css │ │ ├── startup_c_pg.html │ │ ├── startup_s_pg.html │ │ ├── structARM__MPU__Region__t.html │ │ ├── structARM__MPU__Region__t.js │ │ ├── structCoreDebug__Type.html │ │ ├── structCoreDebug__Type.js │ │ ├── structDWT__Type.html │ │ ├── structDWT__Type.js │ │ ├── structFPU__Type.html │ │ ├── structFPU__Type.js │ │ ├── structITM__Type.html │ │ ├── structITM__Type.js │ │ ├── structMPU__Type.html │ │ ├── structMPU__Type.js │ │ ├── structNVIC__Type.html │ │ ├── structNVIC__Type.js │ │ ├── structSCB__Type.html │ │ ├── structSCB__Type.js │ │ ├── structSCnSCB__Type.html │ │ ├── structSCnSCB__Type.js │ │ ├── structSysTick__Type.html │ │ ├── structSysTick__Type.js │ │ ├── structTPI__Type.html │ │ ├── structTPI__Type.js │ │ ├── system_c_pg.html │ │ ├── tabs.css │ │ ├── templates_pg.html │ │ ├── templates_pg.js │ │ ├── unionAPSR__Type.html │ │ ├── unionAPSR__Type.js │ │ ├── unionCONTROL__Type.html │ │ ├── unionCONTROL__Type.js │ │ ├── unionIPSR__Type.html │ │ ├── unionIPSR__Type.js │ │ ├── unionxPSR__Type.html │ │ ├── unionxPSR__Type.js │ │ ├── using_ARM_pg.html │ │ ├── using_CMSIS.html │ │ ├── using_TrustZone_pg.html │ │ ├── using_VTOR_pg.html │ │ ├── using_pg.html │ │ └── using_pg.js │ ├── Core_A/ │ │ └── html/ │ │ ├── ARMCA9_8h.html │ │ ├── MISRA_8txt.html │ │ ├── Overview_8txt.html │ │ ├── Ref__SystemAndClock_8txt.html │ │ ├── Template_8txt.html │ │ ├── Using_8txt.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── classes.html │ │ ├── cmsis.css │ │ ├── cmsis__armcc_8h.html │ │ ├── cmsis__armcc_8txt.html │ │ ├── cmsis__cp15_8h.html │ │ ├── coreMISRA_Exceptions_pg.html │ │ ├── core__ca_8h.html │ │ ├── core__ca_8txt.html │ │ ├── deprecated.html │ │ ├── device_h_pg.html │ │ ├── dir_3541bd7f1207d85fb277b58db6e0335d.html │ │ ├── dir_3b4eaae6c8aa6ae26812da492b5e160f.html │ │ ├── dir_3f4b401a2ed0c5733c677abc947b6aa9.html │ │ ├── dir_a274dce79a5981921eda42c70ffd8161.html │ │ ├── dir_bcb5d964daf6ffff28eae5a1dee5d6c3.html │ │ ├── dir_c7e52d5561930380e5580f41be917c2f.html │ │ ├── dir_cf458401307886261324fb8415ee454f.html │ │ ├── dir_d539555f6e35acdca645721e1ecc4029.html │ │ ├── dir_f806067e3cfd0faadc71b6fb603a0f72.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_a.html │ │ ├── functions_b.html │ │ ├── functions_c.html │ │ ├── functions_d.html │ │ ├── functions_dup.js │ │ ├── functions_e.html │ │ ├── functions_f.html │ │ ├── functions_g.html │ │ ├── functions_h.html │ │ ├── functions_i.html │ │ ├── functions_j.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_q.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_u.html │ │ ├── functions_v.html │ │ ├── functions_vars.html │ │ ├── functions_vars.js │ │ ├── functions_vars_a.html │ │ ├── functions_vars_b.html │ │ ├── functions_vars_c.html │ │ ├── functions_vars_d.html │ │ ├── functions_vars_e.html │ │ ├── functions_vars_f.html │ │ ├── functions_vars_g.html │ │ ├── functions_vars_h.html │ │ ├── functions_vars_i.html │ │ ├── functions_vars_j.html │ │ ├── functions_vars_l.html │ │ ├── functions_vars_m.html │ │ ├── functions_vars_n.html │ │ ├── functions_vars_o.html │ │ ├── functions_vars_p.html │ │ ├── functions_vars_q.html │ │ ├── functions_vars_r.html │ │ ├── functions_vars_s.html │ │ ├── functions_vars_t.html │ │ ├── functions_vars_u.html │ │ ├── functions_vars_v.html │ │ ├── functions_vars_w.html │ │ ├── functions_vars_x.html │ │ ├── functions_vars_z.html │ │ ├── functions_w.html │ │ ├── functions_x.html │ │ ├── functions_z.html │ │ ├── globals.html │ │ ├── globals_a.html │ │ ├── globals_c.html │ │ ├── globals_d.html │ │ ├── globals_defs.html │ │ ├── globals_defs_a.html │ │ ├── globals_defs_c.html │ │ ├── globals_defs_d.html │ │ ├── globals_defs_f.html │ │ ├── globals_defs_g.html │ │ ├── globals_defs_i.html │ │ ├── globals_defs_l.html │ │ ├── globals_defs_o.html │ │ ├── globals_defs_p.html │ │ ├── globals_defs_r.html │ │ ├── globals_defs_s.html │ │ ├── globals_defs_t.html │ │ ├── globals_defs_u.html │ │ ├── globals_defs_v.html │ │ ├── globals_e.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_f.html │ │ ├── globals_func.html │ │ ├── globals_g.html │ │ ├── globals_i.html │ │ ├── globals_k.html │ │ ├── globals_l.html │ │ ├── globals_m.html │ │ ├── globals_n.html │ │ ├── globals_o.html │ │ ├── globals_p.html │ │ ├── globals_r.html │ │ ├── globals_s.html │ │ ├── globals_t.html │ │ ├── globals_type.html │ │ ├── globals_u.html │ │ ├── globals_v.html │ │ ├── globals_vars.html │ │ ├── globals_w.html │ │ ├── group__CMSIS__ACTLR.html │ │ ├── group__CMSIS__ACTLR.js │ │ ├── group__CMSIS__ACTLR__BITS.html │ │ ├── group__CMSIS__ACTLR__BITS.js │ │ ├── group__CMSIS__CBAR.html │ │ ├── group__CMSIS__CBAR.js │ │ ├── group__CMSIS__CBAR__BITS.html │ │ ├── group__CMSIS__CBPM.html │ │ ├── group__CMSIS__CBPM.js │ │ ├── group__CMSIS__CNTFRQ.html │ │ ├── group__CMSIS__CNTFRQ.js │ │ ├── group__CMSIS__CNTPCT.html │ │ ├── group__CMSIS__CNTPCT.js │ │ ├── group__CMSIS__CNTP__CTL.html │ │ ├── group__CMSIS__CNTP__CTL.js │ │ ├── group__CMSIS__CNTP__CVAL.html │ │ ├── group__CMSIS__CNTP__CVAL.js │ │ ├── group__CMSIS__CNTP__TVAL.html │ │ ├── group__CMSIS__CNTP__TVAL.js │ │ ├── group__CMSIS__CPACR.html │ │ ├── group__CMSIS__CPACR.js │ │ ├── group__CMSIS__CPACR__BITS.html │ │ ├── group__CMSIS__CPACR__BITS.js │ │ ├── group__CMSIS__CPACR__CP.html │ │ ├── group__CMSIS__CPACR__CP.js │ │ ├── group__CMSIS__CPSR.html │ │ ├── group__CMSIS__CPSR.js │ │ ├── group__CMSIS__CPSR__BITS.html │ │ ├── group__CMSIS__CPSR__BITS.js │ │ ├── group__CMSIS__CPSR__M.html │ │ ├── group__CMSIS__CPSR__M.js │ │ ├── group__CMSIS__Core__FunctionInterface.html │ │ ├── group__CMSIS__Core__FunctionInterface.js │ │ ├── group__CMSIS__Core__InstructionInterface.html │ │ ├── group__CMSIS__Core__InstructionInterface.js │ │ ├── group__CMSIS__DACR.html │ │ ├── group__CMSIS__DACR.js │ │ ├── group__CMSIS__DACR__BITS.html │ │ ├── group__CMSIS__DACR__BITS.js │ │ ├── group__CMSIS__DACR__Dn.html │ │ ├── group__CMSIS__DACR__Dn.js │ │ ├── group__CMSIS__DFSR.html │ │ ├── group__CMSIS__DFSR.js │ │ ├── group__CMSIS__DFSR__BITS.html │ │ ├── group__CMSIS__DFSR__BITS.js │ │ ├── group__CMSIS__FPEXC.html │ │ ├── group__CMSIS__FPEXC.js │ │ ├── group__CMSIS__FPSCR.html │ │ ├── group__CMSIS__FPSCR.js │ │ ├── group__CMSIS__FPSCR__BITS.html │ │ ├── group__CMSIS__IFSR.html │ │ ├── group__CMSIS__IFSR.js │ │ ├── group__CMSIS__IFSR__BITS.html │ │ ├── group__CMSIS__IFSR__BITS.js │ │ ├── group__CMSIS__ISR.html │ │ ├── group__CMSIS__ISR.js │ │ ├── group__CMSIS__ISR__BITS.html │ │ ├── group__CMSIS__ISR__BITS.js │ │ ├── group__CMSIS__MPIDR.html │ │ ├── group__CMSIS__MPIDR.js │ │ ├── group__CMSIS__MVBAR.html │ │ ├── group__CMSIS__MVBAR.js │ │ ├── group__CMSIS__SCTLR.html │ │ ├── group__CMSIS__SCTLR.js │ │ ├── group__CMSIS__SCTLR__BITS.html │ │ ├── group__CMSIS__SCTLR__BITS.js │ │ ├── group__CMSIS__SP.html │ │ ├── group__CMSIS__SP.js │ │ ├── group__CMSIS__TLB.html │ │ ├── group__CMSIS__TLB.js │ │ ├── group__CMSIS__TTBR.html │ │ ├── group__CMSIS__TTBR.js │ │ ├── group__CMSIS__VBAR.html │ │ ├── group__CMSIS__VBAR.js │ │ ├── group__CMSIS__core__register.html │ │ ├── group__CMSIS__core__register.js │ │ ├── group__FPU__functions.html │ │ ├── group__FPU__functions.js │ │ ├── group__GIC__functions.html │ │ ├── group__GIC__functions.js │ │ ├── group__L1__cache__functions.html │ │ ├── group__L1__cache__functions.js │ │ ├── group__L2__cache__functions.html │ │ ├── group__L2__cache__functions.js │ │ ├── group__MMU__defs__gr.html │ │ ├── group__MMU__defs__gr.js │ │ ├── group__MMU__functions.html │ │ ├── group__MMU__functions.js │ │ ├── group__PL1__timer__functions.html │ │ ├── group__PL1__timer__functions.js │ │ ├── group__PTM__timer__functions.html │ │ ├── group__PTM__timer__functions.js │ │ ├── group__comp__cntrl__gr.html │ │ ├── group__comp__cntrl__gr.js │ │ ├── group__irq__ctrl__gr.html │ │ ├── group__irq__ctrl__gr.js │ │ ├── group__irq__mode__defs.html │ │ ├── group__irq__mode__defs.js │ │ ├── group__irq__priority__defs.html │ │ ├── group__irq__priority__defs.js │ │ ├── group__peripheral__gr.html │ │ ├── group__peripheral__gr.js │ │ ├── group__system__init__gr.html │ │ ├── group__system__init__gr.js │ │ ├── group__version__ctrl.html │ │ ├── group__version__ctrl.js │ │ ├── index.doxyidx │ │ ├── index.html │ │ ├── irq__ctrl_8h.html │ │ ├── irq__ctrl_8txt.html │ │ ├── irq__ctrl__gic_8c.html │ │ ├── jquery.js │ │ ├── mem_h_pg.html │ │ ├── mmu_c_pg.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── ref__cache_8txt.html │ │ ├── ref__core__register_8txt.html │ │ ├── ref__gic_8txt.html │ │ ├── ref__mmu_8txt.html │ │ ├── ref__timer_8txt.html │ │ ├── resize.js │ │ ├── rev_histCoreA.html │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_16.html │ │ │ ├── all_16.js │ │ │ ├── all_17.html │ │ │ ├── all_17.js │ │ │ ├── all_18.html │ │ │ ├── all_18.js │ │ │ ├── all_19.html │ │ │ ├── all_19.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── classes_3.html │ │ │ ├── classes_3.js │ │ │ ├── classes_4.html │ │ │ ├── classes_4.js │ │ │ ├── classes_5.html │ │ │ ├── classes_5.js │ │ │ ├── classes_6.html │ │ │ ├── classes_6.js │ │ │ ├── classes_7.html │ │ │ ├── classes_7.js │ │ │ ├── classes_8.html │ │ │ ├── classes_8.js │ │ │ ├── classes_9.html │ │ │ ├── classes_9.js │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── defines_2.html │ │ │ ├── defines_2.js │ │ │ ├── defines_3.html │ │ │ ├── defines_3.js │ │ │ ├── defines_4.html │ │ │ ├── defines_4.js │ │ │ ├── defines_5.html │ │ │ ├── defines_5.js │ │ │ ├── defines_6.html │ │ │ ├── defines_6.js │ │ │ ├── defines_7.html │ │ │ ├── defines_7.js │ │ │ ├── defines_8.html │ │ │ ├── defines_8.js │ │ │ ├── defines_9.html │ │ │ ├── defines_9.js │ │ │ ├── defines_a.html │ │ │ ├── defines_a.js │ │ │ ├── defines_b.html │ │ │ ├── defines_b.js │ │ │ ├── defines_c.html │ │ │ ├── defines_c.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enums_1.html │ │ │ ├── enums_1.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── enumvalues_1.html │ │ │ ├── enumvalues_1.js │ │ │ ├── enumvalues_2.html │ │ │ ├── enumvalues_2.js │ │ │ ├── enumvalues_3.html │ │ │ ├── enumvalues_3.js │ │ │ ├── enumvalues_4.html │ │ │ ├── enumvalues_4.js │ │ │ ├── enumvalues_5.html │ │ │ ├── enumvalues_5.js │ │ │ ├── enumvalues_6.html │ │ │ ├── enumvalues_6.js │ │ │ ├── enumvalues_7.html │ │ │ ├── enumvalues_7.js │ │ │ ├── enumvalues_8.html │ │ │ ├── enumvalues_8.js │ │ │ ├── enumvalues_9.html │ │ │ ├── enumvalues_9.js │ │ │ ├── enumvalues_a.html │ │ │ ├── enumvalues_a.js │ │ │ ├── enumvalues_b.html │ │ │ ├── enumvalues_b.js │ │ │ ├── enumvalues_c.html │ │ │ ├── enumvalues_c.js │ │ │ ├── enumvalues_d.html │ │ │ ├── enumvalues_d.js │ │ │ ├── enumvalues_e.html │ │ │ ├── enumvalues_e.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── files_6.html │ │ │ ├── files_6.js │ │ │ ├── files_7.html │ │ │ ├── files_7.js │ │ │ ├── files_8.html │ │ │ ├── files_8.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── functions_9.html │ │ │ ├── functions_9.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── groups_8.html │ │ │ ├── groups_8.js │ │ │ ├── groups_9.html │ │ │ ├── groups_9.js │ │ │ ├── groups_a.html │ │ │ ├── groups_a.js │ │ │ ├── groups_b.html │ │ │ ├── groups_b.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_14.html │ │ │ ├── variables_14.js │ │ │ ├── variables_15.html │ │ │ ├── variables_15.js │ │ │ ├── variables_16.html │ │ │ ├── variables_16.js │ │ │ ├── variables_17.html │ │ │ ├── variables_17.js │ │ │ ├── variables_18.html │ │ │ ├── variables_18.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ ├── search.css │ │ ├── startup__ARMCA9_8c.html │ │ ├── startup_c_pg.html │ │ ├── structFPSCR__Type.html │ │ ├── structGICDistributor__Type.html │ │ ├── structGICDistributor__Type.js │ │ ├── structGICInterface__Type.html │ │ ├── structGICInterface__Type.js │ │ ├── structL2C__310__TypeDef.html │ │ ├── structL2C__310__TypeDef.js │ │ ├── structTimer__Type.html │ │ ├── structTimer__Type.js │ │ ├── structmmu__region__attributes__Type.html │ │ ├── structmmu__region__attributes__Type.js │ │ ├── system_c_pg.html │ │ ├── tabs.css │ │ ├── templates_pg.html │ │ ├── templates_pg.js │ │ ├── unionACTLR__Type.html │ │ ├── unionACTLR__Type.js │ │ ├── unionCNTP__CTL__Type.html │ │ ├── unionCNTP__CTL__Type.js │ │ ├── unionCPACR__Type.html │ │ ├── unionCPACR__Type.js │ │ ├── unionCPSR__Type.html │ │ ├── unionCPSR__Type.js │ │ ├── unionDFSR__Type.html │ │ ├── unionDFSR__Type.js │ │ ├── unionIFSR__Type.html │ │ ├── unionIFSR__Type.js │ │ ├── unionISR__Type.html │ │ ├── unionISR__Type.js │ │ ├── unionSCTLR__Type.html │ │ ├── unionSCTLR__Type.js │ │ ├── using_ARM_pg.html │ │ ├── using_CMSIS.html │ │ ├── using_pg.html │ │ └── using_pg.js │ ├── DAP/ │ │ └── html/ │ │ ├── cmsis.css │ │ ├── dap_revisionHistory.html │ │ ├── dir_7a3f7b856c1d77e4a9a9049e84d3db8d.html │ │ ├── dir_8a9a80ba65bbb7b5dbf4c356bd5d76dc.html │ │ ├── dir_d89085dc47c43856a701cdaf126c493f.html │ │ ├── dynsections.js │ │ ├── group__DAP__Commands__gr.html │ │ ├── group__DAP__Commands__gr.js │ │ ├── group__DAP__ConfigFlash__gr.html │ │ ├── group__DAP__ConfigIO__gr.html │ │ ├── group__DAP__ConfigIO__gr.js │ │ ├── group__DAP__ConfigMCU__gr.html │ │ ├── group__DAP__ConfigUSB__gr.html │ │ ├── group__DAP__ConfigUSB__gr.js │ │ ├── group__DAP__Config__Debug__gr.html │ │ ├── group__DAP__Config__Debug__gr.js │ │ ├── group__DAP__Config__Initialization__gr.html │ │ ├── group__DAP__Config__Initialization__gr.js │ │ ├── group__DAP__Config__LEDs__gr.html │ │ ├── group__DAP__Config__LEDs__gr.js │ │ ├── group__DAP__Config__PortIO__gr.html │ │ ├── group__DAP__Config__PortIO__gr.js │ │ ├── group__DAP__Config__Timestamp__gr.html │ │ ├── group__DAP__Config__Timestamp__gr.js │ │ ├── group__DAP__Config__gr.html │ │ ├── group__DAP__Config__gr.js │ │ ├── group__DAP__Connect.html │ │ ├── group__DAP__Delay.html │ │ ├── group__DAP__Disconnect.html │ │ ├── group__DAP__ExecuteCommands__gr.html │ │ ├── group__DAP__HostStatus.html │ │ ├── group__DAP__Info.html │ │ ├── group__DAP__JTAG__Configure.html │ │ ├── group__DAP__JTAG__Sequence.html │ │ ├── group__DAP__QueueCommands__gr.html │ │ ├── group__DAP__ResetTarget.html │ │ ├── group__DAP__Response__Status.html │ │ ├── group__DAP__SWD__Configure.html │ │ ├── group__DAP__SWD__Sequence.html │ │ ├── group__DAP__SWJ__Clock.html │ │ ├── group__DAP__SWJ__Pins.html │ │ ├── group__DAP__SWJ__Sequence.html │ │ ├── group__DAP__SWO__Baudrate.html │ │ ├── group__DAP__SWO__Control.html │ │ ├── group__DAP__SWO__Data.html │ │ ├── group__DAP__SWO__ExtendedStatus.html │ │ ├── group__DAP__SWO__Mode.html │ │ ├── group__DAP__SWO__Status.html │ │ ├── group__DAP__SWO__Transport.html │ │ ├── group__DAP__Transfer.html │ │ ├── group__DAP__TransferAbort.html │ │ ├── group__DAP__TransferBlock.html │ │ ├── group__DAP__TransferConfigure.html │ │ ├── group__DAP__USART__gr.html │ │ ├── group__DAP__Validate__gr.html │ │ ├── group__DAP__Vendor__gr.html │ │ ├── group__DAP__WriteABORT.html │ │ ├── group__DAP__atomic__gr.html │ │ ├── group__DAP__atomic__gr.js │ │ ├── group__DAP__genCommands__gr.html │ │ ├── group__DAP__genCommands__gr.js │ │ ├── group__DAP__jtag__gr.html │ │ ├── group__DAP__jtag__gr.js │ │ ├── group__DAP__jtag__idcode.html │ │ ├── group__DAP__swd__gr.html │ │ ├── group__DAP__swd__gr.js │ │ ├── group__DAP__swj__gr.html │ │ ├── group__DAP__swj__gr.js │ │ ├── group__DAP__swo__gr.html │ │ ├── group__DAP__swo__gr.js │ │ ├── group__DAP__transfer__gr.html │ │ ├── group__DAP__transfer__gr.js │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── groups_8.html │ │ │ ├── groups_8.js │ │ │ ├── groups_9.html │ │ │ ├── groups_9.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── search.css │ │ │ └── search.js │ │ └── tabs.css │ ├── DSP/ │ │ └── html/ │ │ ├── BasicMathFunctions_8c.html │ │ ├── ChangeLog_pg.html │ │ ├── CommonTables_8c.html │ │ ├── ComplexMathFunctions_8c.html │ │ ├── ControllerFunctions_8c.html │ │ ├── Examples_2ARM_2arm__variance__example_2CMakeLists_8txt.html │ │ ├── FastMathFunctions_8c.html │ │ ├── FilteringFunctions_8c.html │ │ ├── MatrixFunctions_8c.html │ │ ├── RTE__Components_8h.html │ │ ├── Source_2BasicMathFunctions_2CMakeLists_8txt.html │ │ ├── Source_2CMakeLists_8txt.html │ │ ├── Source_2CommonTables_2CMakeLists_8txt.html │ │ ├── Source_2ComplexMathFunctions_2CMakeLists_8txt.html │ │ ├── Source_2ControllerFunctions_2CMakeLists_8txt.html │ │ ├── Source_2FastMathFunctions_2CMakeLists_8txt.html │ │ ├── Source_2FilteringFunctions_2CMakeLists_8txt.html │ │ ├── Source_2MatrixFunctions_2CMakeLists_8txt.html │ │ ├── Source_2StatisticsFunctions_2CMakeLists_8txt.html │ │ ├── Source_2SupportFunctions_2CMakeLists_8txt.html │ │ ├── Source_2TransformFunctions_2CMakeLists_8txt.html │ │ ├── StatisticsFunctions_8c.html │ │ ├── SupportFunctions_8c.html │ │ ├── TransformFunctions_8c.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── arm__abs__f32_8c.html │ │ ├── arm__abs__q15_8c.html │ │ ├── arm__abs__q31_8c.html │ │ ├── arm__abs__q7_8c.html │ │ ├── arm__add__f32_8c.html │ │ ├── arm__add__q15_8c.html │ │ ├── arm__add__q31_8c.html │ │ ├── arm__add__q7_8c.html │ │ ├── arm__biquad__cascade__df1__32x64__init__q31_8c.html │ │ ├── arm__biquad__cascade__df1__32x64__q31_8c.html │ │ ├── arm__biquad__cascade__df1__f32_8c.html │ │ ├── arm__biquad__cascade__df1__fast__q15_8c.html │ │ ├── arm__biquad__cascade__df1__fast__q31_8c.html │ │ ├── arm__biquad__cascade__df1__init__f32_8c.html │ │ ├── arm__biquad__cascade__df1__init__q15_8c.html │ │ ├── arm__biquad__cascade__df1__init__q31_8c.html │ │ ├── arm__biquad__cascade__df1__q15_8c.html │ │ ├── arm__biquad__cascade__df1__q31_8c.html │ │ ├── arm__biquad__cascade__df2T__f32_8c.html │ │ ├── arm__biquad__cascade__df2T__f64_8c.html │ │ ├── arm__biquad__cascade__df2T__init__f32_8c.html │ │ ├── arm__biquad__cascade__df2T__init__f64_8c.html │ │ ├── arm__biquad__cascade__stereo__df2T__f32_8c.html │ │ ├── arm__biquad__cascade__stereo__df2T__init__f32_8c.html │ │ ├── arm__bitreversal2_8c.html │ │ ├── arm__bitreversal_8c.html │ │ ├── arm__cfft__f32_8c.html │ │ ├── arm__cfft__q15_8c.html │ │ ├── arm__cfft__q31_8c.html │ │ ├── arm__cfft__radix2__f32_8c.html │ │ ├── arm__cfft__radix2__init__f32_8c.html │ │ ├── arm__cfft__radix2__init__q15_8c.html │ │ ├── arm__cfft__radix2__init__q31_8c.html │ │ ├── arm__cfft__radix2__q15_8c.html │ │ ├── arm__cfft__radix2__q31_8c.html │ │ ├── arm__cfft__radix4__f32_8c.html │ │ ├── arm__cfft__radix4__init__f32_8c.html │ │ ├── arm__cfft__radix4__init__q15_8c.html │ │ ├── arm__cfft__radix4__init__q31_8c.html │ │ ├── arm__cfft__radix4__q15_8c.html │ │ ├── arm__cfft__radix4__q31_8c.html │ │ ├── arm__cfft__radix8__f32_8c.html │ │ ├── arm__class__marks__example_2Abstract_8txt.html │ │ ├── arm__class__marks__example__f32_8c.html │ │ ├── arm__cmplx__conj__f32_8c.html │ │ ├── arm__cmplx__conj__q15_8c.html │ │ ├── arm__cmplx__conj__q31_8c.html │ │ ├── arm__cmplx__dot__prod__f32_8c.html │ │ ├── arm__cmplx__dot__prod__q15_8c.html │ │ ├── arm__cmplx__dot__prod__q31_8c.html │ │ ├── arm__cmplx__mag__f32_8c.html │ │ ├── arm__cmplx__mag__q15_8c.html │ │ ├── arm__cmplx__mag__q31_8c.html │ │ ├── arm__cmplx__mag__squared__f32_8c.html │ │ ├── arm__cmplx__mag__squared__q15_8c.html │ │ ├── arm__cmplx__mag__squared__q31_8c.html │ │ ├── arm__cmplx__mult__cmplx__f32_8c.html │ │ ├── arm__cmplx__mult__cmplx__q15_8c.html │ │ ├── arm__cmplx__mult__cmplx__q31_8c.html │ │ ├── arm__cmplx__mult__real__f32_8c.html │ │ ├── arm__cmplx__mult__real__q15_8c.html │ │ ├── arm__cmplx__mult__real__q31_8c.html │ │ ├── arm__common__tables_8c.html │ │ ├── arm__common__tables_8h.html │ │ ├── arm__const__structs_8c.html │ │ ├── arm__const__structs_8h.html │ │ ├── arm__conv__f32_8c.html │ │ ├── arm__conv__fast__opt__q15_8c.html │ │ ├── arm__conv__fast__q15_8c.html │ │ ├── arm__conv__fast__q31_8c.html │ │ ├── arm__conv__opt__q15_8c.html │ │ ├── arm__conv__opt__q7_8c.html │ │ ├── arm__conv__partial__f32_8c.html │ │ ├── arm__conv__partial__fast__opt__q15_8c.html │ │ ├── arm__conv__partial__fast__q15_8c.html │ │ ├── arm__conv__partial__fast__q31_8c.html │ │ ├── arm__conv__partial__opt__q15_8c.html │ │ ├── arm__conv__partial__opt__q7_8c.html │ │ ├── arm__conv__partial__q15_8c.html │ │ ├── arm__conv__partial__q31_8c.html │ │ ├── arm__conv__partial__q7_8c.html │ │ ├── arm__conv__q15_8c.html │ │ ├── arm__conv__q31_8c.html │ │ ├── arm__conv__q7_8c.html │ │ ├── arm__convolution__example_2Abstract_8txt.html │ │ ├── arm__convolution__example_2math__helper_8c.html │ │ ├── arm__convolution__example_2math__helper_8h.html │ │ ├── arm__convolution__example__f32_8c.html │ │ ├── arm__copy__f32_8c.html │ │ ├── arm__copy__q15_8c.html │ │ ├── arm__copy__q31_8c.html │ │ ├── arm__copy__q7_8c.html │ │ ├── arm__correlate__f32_8c.html │ │ ├── arm__correlate__fast__opt__q15_8c.html │ │ ├── arm__correlate__fast__q15_8c.html │ │ ├── arm__correlate__fast__q31_8c.html │ │ ├── arm__correlate__opt__q15_8c.html │ │ ├── arm__correlate__opt__q7_8c.html │ │ ├── arm__correlate__q15_8c.html │ │ ├── arm__correlate__q31_8c.html │ │ ├── arm__correlate__q7_8c.html │ │ ├── arm__cos__f32_8c.html │ │ ├── arm__cos__q15_8c.html │ │ ├── arm__cos__q31_8c.html │ │ ├── arm__dct4__f32_8c.html │ │ ├── arm__dct4__init__f32_8c.html │ │ ├── arm__dct4__init__q15_8c.html │ │ ├── arm__dct4__init__q31_8c.html │ │ ├── arm__dct4__q15_8c.html │ │ ├── arm__dct4__q31_8c.html │ │ ├── arm__dot__prod__f32_8c.html │ │ ├── arm__dot__prod__q15_8c.html │ │ ├── arm__dot__prod__q31_8c.html │ │ ├── arm__dot__prod__q7_8c.html │ │ ├── arm__dotproduct__example_2Abstract_8txt.html │ │ ├── arm__dotproduct__example__f32_8c.html │ │ ├── arm__fft__bin__data_8c.html │ │ ├── arm__fft__bin__example_2Abstract_8txt.html │ │ ├── arm__fft__bin__example__f32_8c.html │ │ ├── arm__fill__f32_8c.html │ │ ├── arm__fill__q15_8c.html │ │ ├── arm__fill__q31_8c.html │ │ ├── arm__fill__q7_8c.html │ │ ├── arm__fir__data_8c.html │ │ ├── arm__fir__decimate__f32_8c.html │ │ ├── arm__fir__decimate__fast__q15_8c.html │ │ ├── arm__fir__decimate__fast__q31_8c.html │ │ ├── arm__fir__decimate__init__f32_8c.html │ │ ├── arm__fir__decimate__init__q15_8c.html │ │ ├── arm__fir__decimate__init__q31_8c.html │ │ ├── arm__fir__decimate__q15_8c.html │ │ ├── arm__fir__decimate__q31_8c.html │ │ ├── arm__fir__example_2Abstract_8txt.html │ │ ├── arm__fir__example_2math__helper_8c.html │ │ ├── arm__fir__example_2math__helper_8h.html │ │ ├── arm__fir__example__f32_8c.html │ │ ├── arm__fir__f32_8c.html │ │ ├── arm__fir__fast__q15_8c.html │ │ ├── arm__fir__fast__q31_8c.html │ │ ├── arm__fir__init__f32_8c.html │ │ ├── arm__fir__init__q15_8c.html │ │ ├── arm__fir__init__q31_8c.html │ │ ├── arm__fir__init__q7_8c.html │ │ ├── arm__fir__interpolate__f32_8c.html │ │ ├── arm__fir__interpolate__init__f32_8c.html │ │ ├── arm__fir__interpolate__init__q15_8c.html │ │ ├── arm__fir__interpolate__init__q31_8c.html │ │ ├── arm__fir__interpolate__q15_8c.html │ │ ├── arm__fir__interpolate__q31_8c.html │ │ ├── arm__fir__lattice__f32_8c.html │ │ ├── arm__fir__lattice__init__f32_8c.html │ │ ├── arm__fir__lattice__init__q15_8c.html │ │ ├── arm__fir__lattice__init__q31_8c.html │ │ ├── arm__fir__lattice__q15_8c.html │ │ ├── arm__fir__lattice__q31_8c.html │ │ ├── arm__fir__q15_8c.html │ │ ├── arm__fir__q31_8c.html │ │ ├── arm__fir__q7_8c.html │ │ ├── arm__fir__sparse__f32_8c.html │ │ ├── arm__fir__sparse__init__f32_8c.html │ │ ├── arm__fir__sparse__init__q15_8c.html │ │ ├── arm__fir__sparse__init__q31_8c.html │ │ ├── arm__fir__sparse__init__q7_8c.html │ │ ├── arm__fir__sparse__q15_8c.html │ │ ├── arm__fir__sparse__q31_8c.html │ │ ├── arm__fir__sparse__q7_8c.html │ │ ├── arm__float__to__q15_8c.html │ │ ├── arm__float__to__q31_8c.html │ │ ├── arm__float__to__q7_8c.html │ │ ├── arm__graphic__equalizer__data_8c.html │ │ ├── arm__graphic__equalizer__example_2Abstract_8txt.html │ │ ├── arm__graphic__equalizer__example_2math__helper_8c.html │ │ ├── arm__graphic__equalizer__example_2math__helper_8h.html │ │ ├── arm__graphic__equalizer__example__q31_8c.html │ │ ├── arm__iir__lattice__f32_8c.html │ │ ├── arm__iir__lattice__init__f32_8c.html │ │ ├── arm__iir__lattice__init__q15_8c.html │ │ ├── arm__iir__lattice__init__q31_8c.html │ │ ├── arm__iir__lattice__q15_8c.html │ │ ├── arm__iir__lattice__q31_8c.html │ │ ├── arm__linear__interp__data_8c.html │ │ ├── arm__linear__interp__example_2Abstract_8txt.html │ │ ├── arm__linear__interp__example_2math__helper_8c.html │ │ ├── arm__linear__interp__example_2math__helper_8h.html │ │ ├── arm__linear__interp__example__f32_8c.html │ │ ├── arm__lms__f32_8c.html │ │ ├── arm__lms__init__f32_8c.html │ │ ├── arm__lms__init__q15_8c.html │ │ ├── arm__lms__init__q31_8c.html │ │ ├── arm__lms__norm__f32_8c.html │ │ ├── arm__lms__norm__init__f32_8c.html │ │ ├── arm__lms__norm__init__q15_8c.html │ │ ├── arm__lms__norm__init__q31_8c.html │ │ ├── arm__lms__norm__q15_8c.html │ │ ├── arm__lms__norm__q31_8c.html │ │ ├── arm__lms__q15_8c.html │ │ ├── arm__lms__q31_8c.html │ │ ├── arm__mat__add__f32_8c.html │ │ ├── arm__mat__add__q15_8c.html │ │ ├── arm__mat__add__q31_8c.html │ │ ├── arm__mat__cmplx__mult__f32_8c.html │ │ ├── arm__mat__cmplx__mult__q15_8c.html │ │ ├── arm__mat__cmplx__mult__q31_8c.html │ │ ├── arm__mat__init__f32_8c.html │ │ ├── arm__mat__init__q15_8c.html │ │ ├── arm__mat__init__q31_8c.html │ │ ├── arm__mat__inverse__f32_8c.html │ │ ├── arm__mat__inverse__f64_8c.html │ │ ├── arm__mat__mult__f32_8c.html │ │ ├── arm__mat__mult__fast__q15_8c.html │ │ ├── arm__mat__mult__fast__q31_8c.html │ │ ├── arm__mat__mult__q15_8c.html │ │ ├── arm__mat__mult__q31_8c.html │ │ ├── arm__mat__scale__f32_8c.html │ │ ├── arm__mat__scale__q15_8c.html │ │ ├── arm__mat__scale__q31_8c.html │ │ ├── arm__mat__sub__f32_8c.html │ │ ├── arm__mat__sub__q15_8c.html │ │ ├── arm__mat__sub__q31_8c.html │ │ ├── arm__mat__trans__f32_8c.html │ │ ├── arm__mat__trans__q15_8c.html │ │ ├── arm__mat__trans__q31_8c.html │ │ ├── arm__math_8h.html │ │ ├── arm__matrix__example_2Abstract_8txt.html │ │ ├── arm__matrix__example_2math__helper_8c.html │ │ ├── arm__matrix__example_2math__helper_8h.html │ │ ├── arm__matrix__example__f32_8c.html │ │ ├── arm__max__f32_8c.html │ │ ├── arm__max__q15_8c.html │ │ ├── arm__max__q31_8c.html │ │ ├── arm__max__q7_8c.html │ │ ├── arm__mean__f32_8c.html │ │ ├── arm__mean__q15_8c.html │ │ ├── arm__mean__q31_8c.html │ │ ├── arm__mean__q7_8c.html │ │ ├── arm__min__f32_8c.html │ │ ├── arm__min__q15_8c.html │ │ ├── arm__min__q31_8c.html │ │ ├── arm__min__q7_8c.html │ │ ├── arm__mult__f32_8c.html │ │ ├── arm__mult__q15_8c.html │ │ ├── arm__mult__q31_8c.html │ │ ├── arm__mult__q7_8c.html │ │ ├── arm__negate__f32_8c.html │ │ ├── arm__negate__q15_8c.html │ │ ├── arm__negate__q31_8c.html │ │ ├── arm__negate__q7_8c.html │ │ ├── arm__offset__f32_8c.html │ │ ├── arm__offset__q15_8c.html │ │ ├── arm__offset__q31_8c.html │ │ ├── arm__offset__q7_8c.html │ │ ├── arm__pid__init__f32_8c.html │ │ ├── arm__pid__init__q15_8c.html │ │ ├── arm__pid__init__q31_8c.html │ │ ├── arm__pid__reset__f32_8c.html │ │ ├── arm__pid__reset__q15_8c.html │ │ ├── arm__pid__reset__q31_8c.html │ │ ├── arm__power__f32_8c.html │ │ ├── arm__power__q15_8c.html │ │ ├── arm__power__q31_8c.html │ │ ├── arm__power__q7_8c.html │ │ ├── arm__q15__to__float_8c.html │ │ ├── arm__q15__to__q31_8c.html │ │ ├── arm__q15__to__q7_8c.html │ │ ├── arm__q31__to__float_8c.html │ │ ├── arm__q31__to__q15_8c.html │ │ ├── arm__q31__to__q7_8c.html │ │ ├── arm__q7__to__float_8c.html │ │ ├── arm__q7__to__q15_8c.html │ │ ├── arm__q7__to__q31_8c.html │ │ ├── arm__rfft__f32_8c.html │ │ ├── arm__rfft__fast__f32_8c.html │ │ ├── arm__rfft__fast__init__f32_8c.html │ │ ├── arm__rfft__init__f32_8c.html │ │ ├── arm__rfft__init__q15_8c.html │ │ ├── arm__rfft__init__q31_8c.html │ │ ├── arm__rfft__q15_8c.html │ │ ├── arm__rfft__q31_8c.html │ │ ├── arm__rms__f32_8c.html │ │ ├── arm__rms__q15_8c.html │ │ ├── arm__rms__q31_8c.html │ │ ├── arm__scale__f32_8c.html │ │ ├── arm__scale__q15_8c.html │ │ ├── arm__scale__q31_8c.html │ │ ├── arm__scale__q7_8c.html │ │ ├── arm__shift__q15_8c.html │ │ ├── arm__shift__q31_8c.html │ │ ├── arm__shift__q7_8c.html │ │ ├── arm__signal__converge__data_8c.html │ │ ├── arm__signal__converge__example_2Abstract_8txt.html │ │ ├── arm__signal__converge__example_2math__helper_8c.html │ │ ├── arm__signal__converge__example_2math__helper_8h.html │ │ ├── arm__signal__converge__example__f32_8c.html │ │ ├── arm__sin__cos__example_2Abstract_8txt.html │ │ ├── arm__sin__cos__example__f32_8c.html │ │ ├── arm__sin__cos__f32_8c.html │ │ ├── arm__sin__cos__q31_8c.html │ │ ├── arm__sin__f32_8c.html │ │ ├── arm__sin__q15_8c.html │ │ ├── arm__sin__q31_8c.html │ │ ├── arm__sqrt__q15_8c.html │ │ ├── arm__sqrt__q31_8c.html │ │ ├── arm__std__f32_8c.html │ │ ├── arm__std__q15_8c.html │ │ ├── arm__std__q31_8c.html │ │ ├── arm__sub__f32_8c.html │ │ ├── arm__sub__q15_8c.html │ │ ├── arm__sub__q31_8c.html │ │ ├── arm__sub__q7_8c.html │ │ ├── arm__var__f32_8c.html │ │ ├── arm__var__q15_8c.html │ │ ├── arm__var__q31_8c.html │ │ ├── arm__variance__example_2Abstract_8txt.html │ │ ├── arm__variance__example__f32_8c.html │ │ ├── arm_class_marks_example_f32_8c-example.html │ │ ├── arm_convolution_example_f32_8c-example.html │ │ ├── arm_dotproduct_example_f32_8c-example.html │ │ ├── arm_fft_bin_example_f32_8c-example.html │ │ ├── arm_fir_example_f32_8c-example.html │ │ ├── arm_graphic_equalizer_example_q31_8c-example.html │ │ ├── arm_linear_interp_example_f32_8c-example.html │ │ ├── arm_matrix_example_f32_8c-example.html │ │ ├── arm_signal_converge_example_f32_8c-example.html │ │ ├── arm_sin_cos_example_f32_8c-example.html │ │ ├── arm_variance_example_f32_8c-example.html │ │ ├── classes.html │ │ ├── cmsis.css │ │ ├── deprecated.html │ │ ├── dir_1170e6dac28fddf4fdc874a585bf14d6.html │ │ ├── dir_17f4c3c4a1c8e5f7adccdfcc8daad256.html │ │ ├── dir_2dfacf8e98c40fbe6b43e4f379522b9d.html │ │ ├── dir_3c115b2b6137a19040f05baba5bbe4bb.html │ │ ├── dir_4686057ebfd09ff788c87e22ea0e3543.html │ │ ├── dir_562f151f187819373d848c62a25ba73f.html │ │ ├── dir_650d82db24a6311fa7658fced19ae149.html │ │ ├── dir_661730ae404280313a24da4355330f49.html │ │ ├── dir_68360bf40d8d7020a2d63dffc5ff3fbe.html │ │ ├── dir_693482090d3a79198386acaa7ef7c6b2.html │ │ ├── dir_a3413d16a2695ab37a70c8c03c616c68.html │ │ ├── dir_a60f901a1a7665a0737ec2a3f2ba0d4e.html │ │ ├── dir_a7aea38f75b0edaf61d4d95d1f19ac9f.html │ │ ├── dir_abd1d8a41d439a254a6d729f0d888b04.html │ │ ├── dir_ae37ae87b9b72905e94a2ae43aaff3a6.html │ │ ├── dir_b20befc9106ee721a20d5e80599f43ba.html │ │ ├── dir_cab95e0391c67daec1019df34d95a470.html │ │ ├── dir_cb79679bd7d585e2e3c8a1b12a7b28d8.html │ │ ├── dir_cf3b734d050ceea02fbfb06f215bbc8f.html │ │ ├── dir_d47fe067fda502b2aac97b7803894821.html │ │ ├── dir_dd8be1de2cb2fdb097bade8f148f6c3f.html │ │ ├── dir_ddac112016d6de7a55521e85603e9644.html │ │ ├── dir_e69703b6e48666328a369b2a39b5e8f2.html │ │ ├── dir_ef818d145b5ec6db038e10b22abefd0e.html │ │ ├── dir_f7b1dad887759bfadf83e5e1cd802011.html │ │ ├── dir_f93595924be31e3058e32faa649f9f3e.html │ │ ├── dir_fa13912dcbdb74d4eda31d75ef895c4f.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── examples.html │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_b.html │ │ ├── functions_dup.js │ │ ├── functions_e.html │ │ ├── functions_f.html │ │ ├── functions_i.html │ │ ├── functions_k.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_vars.html │ │ ├── functions_vars.js │ │ ├── functions_vars_b.html │ │ ├── functions_vars_e.html │ │ ├── functions_vars_f.html │ │ ├── functions_vars_i.html │ │ ├── functions_vars_k.html │ │ ├── functions_vars_l.html │ │ ├── functions_vars_m.html │ │ ├── functions_vars_n.html │ │ ├── functions_vars_o.html │ │ ├── functions_vars_p.html │ │ ├── functions_vars_r.html │ │ ├── functions_vars_s.html │ │ ├── functions_vars_t.html │ │ ├── functions_vars_x.html │ │ ├── functions_x.html │ │ ├── globals.html │ │ ├── globals_a.html │ │ ├── globals_b.html │ │ ├── globals_c.html │ │ ├── globals_d.html │ │ ├── globals_defs.html │ │ ├── globals_e.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_f.html │ │ ├── globals_func.html │ │ ├── globals_func_a.html │ │ ├── globals_func_b.html │ │ ├── globals_func_c.html │ │ ├── globals_func_d.html │ │ ├── globals_func_f.html │ │ ├── globals_func_g.html │ │ ├── globals_func_i.html │ │ ├── globals_func_l.html │ │ ├── globals_func_m.html │ │ ├── globals_func_n.html │ │ ├── globals_func_o.html │ │ ├── globals_func_p.html │ │ ├── globals_func_q.html │ │ ├── globals_func_r.html │ │ ├── globals_func_s.html │ │ ├── globals_func_t.html │ │ ├── globals_func_v.html │ │ ├── globals_func_w.html │ │ ├── globals_g.html │ │ ├── globals_i.html │ │ ├── globals_l.html │ │ ├── globals_m.html │ │ ├── globals_n.html │ │ ├── globals_o.html │ │ ├── globals_p.html │ │ ├── globals_q.html │ │ ├── globals_r.html │ │ ├── globals_s.html │ │ ├── globals_t.html │ │ ├── globals_type.html │ │ ├── globals_u.html │ │ ├── globals_v.html │ │ ├── globals_vars.html │ │ ├── globals_vars_b.html │ │ ├── globals_vars_c.html │ │ ├── globals_vars_d.html │ │ ├── globals_vars_e.html │ │ ├── globals_vars_f.html │ │ ├── globals_vars_g.html │ │ ├── globals_vars_i.html │ │ ├── globals_vars_l.html │ │ ├── globals_vars_m.html │ │ ├── globals_vars_n.html │ │ ├── globals_vars_o.html │ │ ├── globals_vars_r.html │ │ ├── globals_vars_s.html │ │ ├── globals_vars_t.html │ │ ├── globals_vars_v.html │ │ ├── globals_vars_w.html │ │ ├── globals_vars_x.html │ │ ├── globals_w.html │ │ ├── globals_x.html │ │ ├── group__BasicAbs.html │ │ ├── group__BasicAbs.js │ │ ├── group__BasicAdd.html │ │ ├── group__BasicAdd.js │ │ ├── group__BasicDotProd.html │ │ ├── group__BasicDotProd.js │ │ ├── group__BasicMult.html │ │ ├── group__BasicMult.js │ │ ├── group__BasicNegate.html │ │ ├── group__BasicNegate.js │ │ ├── group__BasicOffset.html │ │ ├── group__BasicOffset.js │ │ ├── group__BasicScale.html │ │ ├── group__BasicScale.js │ │ ├── group__BasicShift.html │ │ ├── group__BasicShift.js │ │ ├── group__BasicSub.html │ │ ├── group__BasicSub.js │ │ ├── group__BilinearInterpolate.html │ │ ├── group__BilinearInterpolate.js │ │ ├── group__BiquadCascadeDF1.html │ │ ├── group__BiquadCascadeDF1.js │ │ ├── group__BiquadCascadeDF1__32x64.html │ │ ├── group__BiquadCascadeDF1__32x64.js │ │ ├── group__BiquadCascadeDF2T.html │ │ ├── group__BiquadCascadeDF2T.js │ │ ├── group__CFFT__CIFFT.html │ │ ├── group__CFFT__CIFFT.js │ │ ├── group__ClassMarks.html │ │ ├── group__CmplxByCmplxMult.html │ │ ├── group__CmplxByCmplxMult.js │ │ ├── group__CmplxByRealMult.html │ │ ├── group__CmplxByRealMult.js │ │ ├── group__CmplxMatrixMult.html │ │ ├── group__CmplxMatrixMult.js │ │ ├── group__ComplexFFT.html │ │ ├── group__ComplexFFT.js │ │ ├── group__Conv.html │ │ ├── group__Conv.js │ │ ├── group__ConvolutionExample.html │ │ ├── group__Corr.html │ │ ├── group__Corr.js │ │ ├── group__DCT4__IDCT4.html │ │ ├── group__DCT4__IDCT4.js │ │ ├── group__DCT4__IDCT4__Table.html │ │ ├── group__DCT4__IDCT4__Table.js │ │ ├── group__DotproductExample.html │ │ ├── group__FIR.html │ │ ├── group__FIR.js │ │ ├── group__FIRLPF.html │ │ ├── group__FIR__Interpolate.html │ │ ├── group__FIR__Interpolate.js │ │ ├── group__FIR__Lattice.html │ │ ├── group__FIR__Lattice.js │ │ ├── group__FIR__Sparse.html │ │ ├── group__FIR__Sparse.js │ │ ├── group__FIR__decimate.html │ │ ├── group__FIR__decimate.js │ │ ├── group__Fill.html │ │ ├── group__Fill.js │ │ ├── group__FrequencyBin.html │ │ ├── group__GEQ5Band.html │ │ ├── group__IIR__Lattice.html │ │ ├── group__IIR__Lattice.js │ │ ├── group__LMS.html │ │ ├── group__LMS.js │ │ ├── group__LMS__NORM.html │ │ ├── group__LMS__NORM.js │ │ ├── group__LinearInterpExample.html │ │ ├── group__LinearInterpolate.html │ │ ├── group__LinearInterpolate.js │ │ ├── group__MatrixAdd.html │ │ ├── group__MatrixAdd.js │ │ ├── group__MatrixExample.html │ │ ├── group__MatrixInit.html │ │ ├── group__MatrixInit.js │ │ ├── group__MatrixInv.html │ │ ├── group__MatrixInv.js │ │ ├── group__MatrixMult.html │ │ ├── group__MatrixMult.js │ │ ├── group__MatrixScale.html │ │ ├── group__MatrixScale.js │ │ ├── group__MatrixSub.html │ │ ├── group__MatrixSub.js │ │ ├── group__MatrixTrans.html │ │ ├── group__MatrixTrans.js │ │ ├── group__Max.html │ │ ├── group__Max.js │ │ ├── group__Min.html │ │ ├── group__Min.js │ │ ├── group__PID.html │ │ ├── group__PID.js │ │ ├── group__PartialConv.html │ │ ├── group__PartialConv.js │ │ ├── group__RMS.html │ │ ├── group__RMS.js │ │ ├── group__RealFFT.html │ │ ├── group__RealFFT.js │ │ ├── group__RealFFT__Table.html │ │ ├── group__RealFFT__Table.js │ │ ├── group__SQRT.html │ │ ├── group__SQRT.js │ │ ├── group__STD.html │ │ ├── group__STD.js │ │ ├── group__SignalConvergence.html │ │ ├── group__SinCos.html │ │ ├── group__SinCos.js │ │ ├── group__SinCosExample.html │ │ ├── group__VarianceExample.html │ │ ├── group__clarke.html │ │ ├── group__clarke.js │ │ ├── group__cmplx__conj.html │ │ ├── group__cmplx__conj.js │ │ ├── group__cmplx__dot__prod.html │ │ ├── group__cmplx__dot__prod.js │ │ ├── group__cmplx__mag.html │ │ ├── group__cmplx__mag.js │ │ ├── group__cmplx__mag__squared.html │ │ ├── group__cmplx__mag__squared.js │ │ ├── group__copy.html │ │ ├── group__copy.js │ │ ├── group__cos.html │ │ ├── group__cos.js │ │ ├── group__float__to__x.html │ │ ├── group__float__to__x.js │ │ ├── group__groupCmplxMath.html │ │ ├── group__groupCmplxMath.js │ │ ├── group__groupController.html │ │ ├── group__groupController.js │ │ ├── group__groupExamples.html │ │ ├── group__groupExamples.js │ │ ├── group__groupFastMath.html │ │ ├── group__groupFastMath.js │ │ ├── group__groupFilters.html │ │ ├── group__groupFilters.js │ │ ├── group__groupInterpolation.html │ │ ├── group__groupInterpolation.js │ │ ├── group__groupMath.html │ │ ├── group__groupMath.js │ │ ├── group__groupMatrix.html │ │ ├── group__groupMatrix.js │ │ ├── group__groupStats.html │ │ ├── group__groupStats.js │ │ ├── group__groupSupport.html │ │ ├── group__groupSupport.js │ │ ├── group__groupTransforms.html │ │ ├── group__groupTransforms.js │ │ ├── group__inv__clarke.html │ │ ├── group__inv__clarke.js │ │ ├── group__inv__park.html │ │ ├── group__inv__park.js │ │ ├── group__mean.html │ │ ├── group__mean.js │ │ ├── group__park.html │ │ ├── group__park.js │ │ ├── group__power.html │ │ ├── group__power.js │ │ ├── group__q15__to__x.html │ │ ├── group__q15__to__x.js │ │ ├── group__q31__to__x.html │ │ ├── group__q31__to__x.js │ │ ├── group__q7__to__x.html │ │ ├── group__q7__to__x.js │ │ ├── group__sin.html │ │ ├── group__sin.js │ │ ├── group__variance.html │ │ ├── group__variance.js │ │ ├── history_8txt.html │ │ ├── index.doxyidx │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_16.html │ │ │ ├── all_16.js │ │ │ ├── all_17.html │ │ │ ├── all_17.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── defines_2.html │ │ │ ├── defines_2.js │ │ │ ├── defines_3.html │ │ │ ├── defines_3.js │ │ │ ├── defines_4.html │ │ │ ├── defines_4.js │ │ │ ├── defines_5.html │ │ │ ├── defines_5.js │ │ │ ├── defines_6.html │ │ │ ├── defines_6.js │ │ │ ├── defines_7.html │ │ │ ├── defines_7.js │ │ │ ├── defines_8.html │ │ │ ├── defines_8.js │ │ │ ├── defines_9.html │ │ │ ├── defines_9.js │ │ │ ├── defines_a.html │ │ │ ├── defines_a.js │ │ │ ├── defines_b.html │ │ │ ├── defines_b.js │ │ │ ├── defines_c.html │ │ │ ├── defines_c.js │ │ │ ├── defines_d.html │ │ │ ├── defines_d.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── files_6.html │ │ │ ├── files_6.js │ │ │ ├── files_7.html │ │ │ ├── files_7.js │ │ │ ├── files_8.html │ │ │ ├── files_8.js │ │ │ ├── files_9.html │ │ │ ├── files_9.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── functions_9.html │ │ │ ├── functions_9.js │ │ │ ├── functions_a.html │ │ │ ├── functions_a.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── groups_8.html │ │ │ ├── groups_8.js │ │ │ ├── groups_9.html │ │ │ ├── groups_9.js │ │ │ ├── groups_a.html │ │ │ ├── groups_a.js │ │ │ ├── groups_b.html │ │ │ ├── groups_b.js │ │ │ ├── groups_c.html │ │ │ ├── groups_c.js │ │ │ ├── groups_d.html │ │ │ ├── groups_d.js │ │ │ ├── groups_e.html │ │ │ ├── groups_e.js │ │ │ ├── groups_f.html │ │ │ ├── groups_f.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ ├── structarm__bilinear__interp__instance__f32.html │ │ ├── structarm__bilinear__interp__instance__f32.js │ │ ├── structarm__bilinear__interp__instance__q15.html │ │ ├── structarm__bilinear__interp__instance__q15.js │ │ ├── structarm__bilinear__interp__instance__q31.html │ │ ├── structarm__bilinear__interp__instance__q31.js │ │ ├── structarm__bilinear__interp__instance__q7.html │ │ ├── structarm__bilinear__interp__instance__q7.js │ │ ├── structarm__biquad__cas__df1__32x64__ins__q31.html │ │ ├── structarm__biquad__cas__df1__32x64__ins__q31.js │ │ ├── structarm__biquad__cascade__df2T__instance__f32.html │ │ ├── structarm__biquad__cascade__df2T__instance__f32.js │ │ ├── structarm__biquad__cascade__df2T__instance__f64.html │ │ ├── structarm__biquad__cascade__df2T__instance__f64.js │ │ ├── structarm__biquad__cascade__stereo__df2T__instance__f32.html │ │ ├── structarm__biquad__cascade__stereo__df2T__instance__f32.js │ │ ├── structarm__biquad__casd__df1__inst__f32.html │ │ ├── structarm__biquad__casd__df1__inst__f32.js │ │ ├── structarm__biquad__casd__df1__inst__q15.html │ │ ├── structarm__biquad__casd__df1__inst__q15.js │ │ ├── structarm__biquad__casd__df1__inst__q31.html │ │ ├── structarm__biquad__casd__df1__inst__q31.js │ │ ├── structarm__cfft__instance__f32.html │ │ ├── structarm__cfft__instance__f32.js │ │ ├── structarm__cfft__instance__q15.html │ │ ├── structarm__cfft__instance__q15.js │ │ ├── structarm__cfft__instance__q31.html │ │ ├── structarm__cfft__instance__q31.js │ │ ├── structarm__cfft__radix2__instance__f32.html │ │ ├── structarm__cfft__radix2__instance__f32.js │ │ ├── structarm__cfft__radix2__instance__q15.html │ │ ├── structarm__cfft__radix2__instance__q15.js │ │ ├── structarm__cfft__radix2__instance__q31.html │ │ ├── structarm__cfft__radix2__instance__q31.js │ │ ├── structarm__cfft__radix4__instance__f32.html │ │ ├── structarm__cfft__radix4__instance__f32.js │ │ ├── structarm__cfft__radix4__instance__q15.html │ │ ├── structarm__cfft__radix4__instance__q15.js │ │ ├── structarm__cfft__radix4__instance__q31.html │ │ ├── structarm__cfft__radix4__instance__q31.js │ │ ├── structarm__dct4__instance__f32.html │ │ ├── structarm__dct4__instance__f32.js │ │ ├── structarm__dct4__instance__q15.html │ │ ├── structarm__dct4__instance__q15.js │ │ ├── structarm__dct4__instance__q31.html │ │ ├── structarm__dct4__instance__q31.js │ │ ├── structarm__fir__decimate__instance__f32.html │ │ ├── structarm__fir__decimate__instance__f32.js │ │ ├── structarm__fir__decimate__instance__q15.html │ │ ├── structarm__fir__decimate__instance__q15.js │ │ ├── structarm__fir__decimate__instance__q31.html │ │ ├── structarm__fir__decimate__instance__q31.js │ │ ├── structarm__fir__instance__f32.html │ │ ├── structarm__fir__instance__f32.js │ │ ├── structarm__fir__instance__q15.html │ │ ├── structarm__fir__instance__q15.js │ │ ├── structarm__fir__instance__q31.html │ │ ├── structarm__fir__instance__q31.js │ │ ├── structarm__fir__instance__q7.html │ │ ├── structarm__fir__instance__q7.js │ │ ├── structarm__fir__interpolate__instance__f32.html │ │ ├── structarm__fir__interpolate__instance__f32.js │ │ ├── structarm__fir__interpolate__instance__q15.html │ │ ├── structarm__fir__interpolate__instance__q15.js │ │ ├── structarm__fir__interpolate__instance__q31.html │ │ ├── structarm__fir__interpolate__instance__q31.js │ │ ├── structarm__fir__lattice__instance__f32.html │ │ ├── structarm__fir__lattice__instance__f32.js │ │ ├── structarm__fir__lattice__instance__q15.html │ │ ├── structarm__fir__lattice__instance__q15.js │ │ ├── structarm__fir__lattice__instance__q31.html │ │ ├── structarm__fir__lattice__instance__q31.js │ │ ├── structarm__fir__sparse__instance__f32.html │ │ ├── structarm__fir__sparse__instance__f32.js │ │ ├── structarm__fir__sparse__instance__q15.html │ │ ├── structarm__fir__sparse__instance__q15.js │ │ ├── structarm__fir__sparse__instance__q31.html │ │ ├── structarm__fir__sparse__instance__q31.js │ │ ├── structarm__fir__sparse__instance__q7.html │ │ ├── structarm__fir__sparse__instance__q7.js │ │ ├── structarm__iir__lattice__instance__f32.html │ │ ├── structarm__iir__lattice__instance__f32.js │ │ ├── structarm__iir__lattice__instance__q15.html │ │ ├── structarm__iir__lattice__instance__q15.js │ │ ├── structarm__iir__lattice__instance__q31.html │ │ ├── structarm__iir__lattice__instance__q31.js │ │ ├── structarm__linear__interp__instance__f32.html │ │ ├── structarm__linear__interp__instance__f32.js │ │ ├── structarm__lms__instance__f32.html │ │ ├── structarm__lms__instance__f32.js │ │ ├── structarm__lms__instance__q15.html │ │ ├── structarm__lms__instance__q15.js │ │ ├── structarm__lms__instance__q31.html │ │ ├── structarm__lms__instance__q31.js │ │ ├── structarm__lms__norm__instance__f32.html │ │ ├── structarm__lms__norm__instance__f32.js │ │ ├── structarm__lms__norm__instance__q15.html │ │ ├── structarm__lms__norm__instance__q15.js │ │ ├── structarm__lms__norm__instance__q31.html │ │ ├── structarm__lms__norm__instance__q31.js │ │ ├── structarm__matrix__instance__f32.html │ │ ├── structarm__matrix__instance__f32.js │ │ ├── structarm__matrix__instance__f64.html │ │ ├── structarm__matrix__instance__f64.js │ │ ├── structarm__matrix__instance__q15.html │ │ ├── structarm__matrix__instance__q15.js │ │ ├── structarm__matrix__instance__q31.html │ │ ├── structarm__matrix__instance__q31.js │ │ ├── structarm__pid__instance__f32.html │ │ ├── structarm__pid__instance__f32.js │ │ ├── structarm__pid__instance__q15.html │ │ ├── structarm__pid__instance__q15.js │ │ ├── structarm__pid__instance__q31.html │ │ ├── structarm__pid__instance__q31.js │ │ ├── structarm__rfft__fast__instance__f32.html │ │ ├── structarm__rfft__fast__instance__f32.js │ │ ├── structarm__rfft__instance__f32.html │ │ ├── structarm__rfft__instance__f32.js │ │ ├── structarm__rfft__instance__q15.html │ │ ├── structarm__rfft__instance__q15.js │ │ ├── structarm__rfft__instance__q31.html │ │ ├── structarm__rfft__instance__q31.js │ │ └── tabs.css │ ├── Driver/ │ │ └── html/ │ │ ├── Driver__CAN_8c.html │ │ ├── Driver__CAN_8h.html │ │ ├── Driver__Common_8c.html │ │ ├── Driver__Common_8h.html │ │ ├── Driver__ETH_8c.html │ │ ├── Driver__ETH_8h.html │ │ ├── Driver__ETH__MAC_8c.html │ │ ├── Driver__ETH__MAC_8h.html │ │ ├── Driver__ETH__PHY_8c.html │ │ ├── Driver__ETH__PHY_8h.html │ │ ├── Driver__Flash_8c.html │ │ ├── Driver__Flash_8h.html │ │ ├── Driver__I2C_8c.html │ │ ├── Driver__I2C_8h.html │ │ ├── Driver__MCI_8c.html │ │ ├── Driver__MCI_8h.html │ │ ├── Driver__NAND_8c.html │ │ ├── Driver__NAND_8h.html │ │ ├── Driver__SAI_8c.html │ │ ├── Driver__SAI_8h.html │ │ ├── Driver__SPI_8c.html │ │ ├── Driver__SPI_8h.html │ │ ├── Driver__Storage_8c.html │ │ ├── Driver__Storage_8h.html │ │ ├── Driver__Storage_8h_structARM__STORAGE__SECURITY__FEATURES.js │ │ ├── Driver__USART_8c.html │ │ ├── Driver__USART_8h.html │ │ ├── Driver__USBD_8c.html │ │ ├── Driver__USBD_8h.html │ │ ├── Driver__USBH_8c.html │ │ ├── Driver__USBH_8h.html │ │ ├── Driver__USB_8c.html │ │ ├── Driver__USB_8h.html │ │ ├── Driver__WiFi_8c.html │ │ ├── Driver__WiFi_8h.html │ │ ├── General_8txt.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── classes.html │ │ ├── cmsis.css │ │ ├── dir_041cc4048c8229d7729b502626227b03.html │ │ ├── dir_7151b3cc910409bb744bd274374c738d.html │ │ ├── dir_9c39448ea46a8e15f1aabc7dec307fcf.html │ │ ├── doxygen.css │ │ ├── driverValidation.html │ │ ├── driver_revisionHistory.html │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_b.html │ │ ├── functions_c.html │ │ ├── functions_d.html │ │ ├── functions_dup.js │ │ ├── functions_e.html │ │ ├── functions_f.html │ │ ├── functions_g.html │ │ ├── functions_h.html │ │ ├── functions_i.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_u.html │ │ ├── functions_v.html │ │ ├── functions_vars.html │ │ ├── functions_vars.js │ │ ├── functions_vars_b.html │ │ ├── functions_vars_c.html │ │ ├── functions_vars_d.html │ │ ├── functions_vars_e.html │ │ ├── functions_vars_f.html │ │ ├── functions_vars_g.html │ │ ├── functions_vars_h.html │ │ ├── functions_vars_i.html │ │ ├── functions_vars_l.html │ │ ├── functions_vars_m.html │ │ ├── functions_vars_n.html │ │ ├── functions_vars_o.html │ │ ├── functions_vars_p.html │ │ ├── functions_vars_r.html │ │ ├── functions_vars_s.html │ │ ├── functions_vars_t.html │ │ ├── functions_vars_u.html │ │ ├── functions_vars_v.html │ │ ├── functions_vars_w.html │ │ ├── functions_w.html │ │ ├── globals.html │ │ ├── globals_c.html │ │ ├── globals_d.html │ │ ├── globals_defs.html │ │ ├── globals_defs_c.html │ │ ├── globals_defs_d.html │ │ ├── globals_defs_e.html │ │ ├── globals_defs_f.html │ │ ├── globals_defs_i.html │ │ ├── globals_defs_m.html │ │ ├── globals_defs_n.html │ │ ├── globals_defs_r.html │ │ ├── globals_defs_s.html │ │ ├── globals_defs_u.html │ │ ├── globals_defs_w.html │ │ ├── globals_e.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_f.html │ │ ├── globals_func.html │ │ ├── globals_func_e.html │ │ ├── globals_func_f.html │ │ ├── globals_func_i.html │ │ ├── globals_func_m.html │ │ ├── globals_func_n.html │ │ ├── globals_func_s.html │ │ ├── globals_func_u.html │ │ ├── globals_func_w.html │ │ ├── globals_i.html │ │ ├── globals_m.html │ │ ├── globals_n.html │ │ ├── globals_p.html │ │ ├── globals_r.html │ │ ├── globals_s.html │ │ ├── globals_type.html │ │ ├── globals_u.html │ │ ├── globals_w.html │ │ ├── group__CAN__events.html │ │ ├── group__CAN__events.js │ │ ├── group__CAN__unit__events.html │ │ ├── group__CAN__unit__events.js │ │ ├── group__ETH__MAC__events.html │ │ ├── group__ETH__MAC__events.js │ │ ├── group__Flash__events.html │ │ ├── group__Flash__events.js │ │ ├── group__I2C__events.html │ │ ├── group__I2C__events.js │ │ ├── group__NAND__events.html │ │ ├── group__NAND__events.js │ │ ├── group__SAI__events.html │ │ ├── group__SAI__events.js │ │ ├── group__SPI__control.html │ │ ├── group__SPI__control.js │ │ ├── group__SPI__events.html │ │ ├── group__SPI__events.js │ │ ├── group__SampleUseOfStorageDriver.html │ │ ├── group__StorageDriverFunctions.html │ │ ├── group__USART__control.html │ │ ├── group__USART__control.js │ │ ├── group__USART__events.html │ │ ├── group__USART__events.js │ │ ├── group__USBD__dev__events.html │ │ ├── group__USBD__dev__events.js │ │ ├── group__USBD__ep__events.html │ │ ├── group__USBD__ep__events.js │ │ ├── group__USBH__packets.html │ │ ├── group__USBH__packets.js │ │ ├── group__USBH__pipe__events.html │ │ ├── group__USBH__pipe__events.js │ │ ├── group__USBH__port__events.html │ │ ├── group__USBH__port__events.js │ │ ├── group__USB__endpoint__type.html │ │ ├── group__USB__endpoint__type.js │ │ ├── group__USB__speed.html │ │ ├── group__USB__speed.js │ │ ├── group__WiFi__option.html │ │ ├── group__WiFi__option.js │ │ ├── group__can__bus__mode__ctrls.html │ │ ├── group__can__bus__mode__ctrls.js │ │ ├── group__can__control.html │ │ ├── group__can__control.js │ │ ├── group__can__filter__operation__ctrls.html │ │ ├── group__can__filter__operation__ctrls.js │ │ ├── group__can__identifer__ctrls.html │ │ ├── group__can__identifer__ctrls.js │ │ ├── group__can__interface__gr.html │ │ ├── group__can__interface__gr.js │ │ ├── group__can__interface__gr_structARM__CAN__CAPABILITIES.js │ │ ├── group__can__interface__gr_structARM__CAN__MSG__INFO.js │ │ ├── group__can__interface__gr_structARM__CAN__OBJ__CAPABILITIES.js │ │ ├── group__can__interface__gr_structARM__CAN__STATUS.js │ │ ├── group__can__interface__gr_structARM__DRIVER__CAN.js │ │ ├── group__can__mode__ctrls.html │ │ ├── group__can__mode__ctrls.js │ │ ├── group__can__obj__config__ctrls.html │ │ ├── group__can__obj__config__ctrls.js │ │ ├── group__can__status__code__ctrls.html │ │ ├── group__can__status__code__ctrls.js │ │ ├── group__can__timeseg__ctrls.html │ │ ├── group__can__timeseg__ctrls.js │ │ ├── group__common__drv__gr.html │ │ ├── group__common__drv__gr.js │ │ ├── group__common__drv__gr_structARM__DRIVER__VERSION.js │ │ ├── group__eth__interface__gr.html │ │ ├── group__eth__interface__gr.js │ │ ├── group__eth__interface__gr_structARM__ETH__LINK__INFO.js │ │ ├── group__eth__interface__gr_structARM__ETH__MAC__ADDR.js │ │ ├── group__eth__interface__types1.html │ │ ├── group__eth__interface__types1.js │ │ ├── group__eth__mac__configuration__ctrls.html │ │ ├── group__eth__mac__configuration__ctrls.js │ │ ├── group__eth__mac__control.html │ │ ├── group__eth__mac__control.js │ │ ├── group__eth__mac__ctrls.html │ │ ├── group__eth__mac__ctrls.js │ │ ├── group__eth__mac__flush__flag__ctrls.html │ │ ├── group__eth__mac__flush__flag__ctrls.js │ │ ├── group__eth__mac__frame__transmit__ctrls.html │ │ ├── group__eth__mac__frame__transmit__ctrls.js │ │ ├── group__eth__mac__interface__gr.html │ │ ├── group__eth__mac__interface__gr.js │ │ ├── group__eth__mac__interface__gr_structARM__DRIVER__ETH__MAC.js │ │ ├── group__eth__mac__interface__gr_structARM__ETH__MAC__CAPABILITIES.js │ │ ├── group__eth__mac__interface__gr_structARM__ETH__MAC__TIME.js │ │ ├── group__eth__mac__time__control.html │ │ ├── group__eth__mac__time__control.js │ │ ├── group__eth__mac__vlan__filter__ctrls.html │ │ ├── group__eth__mac__vlan__filter__ctrls.js │ │ ├── group__eth__phy__interface__gr.html │ │ ├── group__eth__phy__interface__gr.js │ │ ├── group__eth__phy__interface__gr_structARM__DRIVER__ETH__PHY.js │ │ ├── group__eth__phy__mode__ctrls.html │ │ ├── group__eth__phy__mode__ctrls.js │ │ ├── group__execution__status.html │ │ ├── group__execution__status.js │ │ ├── group__flash__interface__gr.html │ │ ├── group__flash__interface__gr.js │ │ ├── group__flash__interface__gr_structARM__DRIVER__FLASH.js │ │ ├── group__flash__interface__gr_structARM__FLASH__CAPABILITIES.js │ │ ├── group__flash__interface__gr_structARM__FLASH__INFO.js │ │ ├── group__flash__interface__gr_structARM__FLASH__SECTOR.js │ │ ├── group__flash__interface__gr_structARM__FLASH__STATUS.js │ │ ├── group__i2c__address__flags.html │ │ ├── group__i2c__address__flags.js │ │ ├── group__i2c__bus__speed__ctrls.html │ │ ├── group__i2c__bus__speed__ctrls.js │ │ ├── group__i2c__control__codes.html │ │ ├── group__i2c__control__codes.js │ │ ├── group__i2c__control__gr.html │ │ ├── group__i2c__control__gr.js │ │ ├── group__i2c__interface__gr.html │ │ ├── group__i2c__interface__gr.js │ │ ├── group__i2c__interface__gr_structARM__DRIVER__I2C.js │ │ ├── group__i2c__interface__gr_structARM__I2C__CAPABILITIES.js │ │ ├── group__i2c__interface__gr_structARM__I2C__STATUS.js │ │ ├── group__mci__bus__data__width__ctrls.html │ │ ├── group__mci__bus__data__width__ctrls.js │ │ ├── group__mci__bus__speed__ctrls.html │ │ ├── group__mci__bus__speed__ctrls.js │ │ ├── group__mci__card__power__ctrls.html │ │ ├── group__mci__card__power__ctrls.js │ │ ├── group__mci__cmd__line__ctrls.html │ │ ├── group__mci__cmd__line__ctrls.js │ │ ├── group__mci__control__gr.html │ │ ├── group__mci__control__gr.js │ │ ├── group__mci__driver__strength__ctrls.html │ │ ├── group__mci__driver__strength__ctrls.js │ │ ├── group__mci__event__gr.html │ │ ├── group__mci__event__gr.js │ │ ├── group__mci__interface__gr.html │ │ ├── group__mci__interface__gr.js │ │ ├── group__mci__interface__gr_structARM__DRIVER__MCI.js │ │ ├── group__mci__interface__gr_structARM__MCI__CAPABILITIES.js │ │ ├── group__mci__interface__gr_structARM__MCI__STATUS.js │ │ ├── group__mci__mode__ctrls.html │ │ ├── group__mci__mode__ctrls.js │ │ ├── group__mci__send__command__flags__ctrls.html │ │ ├── group__mci__send__command__flags__ctrls.js │ │ ├── group__mci__transfer__ctrls.html │ │ ├── group__mci__transfer__ctrls.js │ │ ├── group__nand__bus__mode__codes.html │ │ ├── group__nand__bus__mode__codes.js │ │ ├── group__nand__control__codes.html │ │ ├── group__nand__control__codes.js │ │ ├── group__nand__control__gr.html │ │ ├── group__nand__control__gr.js │ │ ├── group__nand__data__bus__width__codes.html │ │ ├── group__nand__data__bus__width__codes.js │ │ ├── group__nand__driver__ecc__codes.html │ │ ├── group__nand__driver__ecc__codes.js │ │ ├── group__nand__driver__flag__codes.html │ │ ├── group__nand__driver__flag__codes.js │ │ ├── group__nand__driver__seq__exec__codes.html │ │ ├── group__nand__driver__seq__exec__codes.js │ │ ├── group__nand__driver__strength__codes.html │ │ ├── group__nand__driver__strength__codes.js │ │ ├── group__nand__execution__status.html │ │ ├── group__nand__execution__status.js │ │ ├── group__nand__interface__gr.html │ │ ├── group__nand__interface__gr.js │ │ ├── group__nand__interface__gr_structARM__DRIVER__NAND.js │ │ ├── group__nand__interface__gr_structARM__NAND__CAPABILITIES.js │ │ ├── group__nand__interface__gr_structARM__NAND__ECC__INFO.js │ │ ├── group__nand__interface__gr_structARM__NAND__STATUS.js │ │ ├── group__sai__bit__order__control.html │ │ ├── group__sai__bit__order__control.js │ │ ├── group__sai__clock__pol__control.html │ │ ├── group__sai__clock__pol__control.js │ │ ├── group__sai__companding__control.html │ │ ├── group__sai__companding__control.js │ │ ├── group__sai__configure__control.html │ │ ├── group__sai__configure__control.js │ │ ├── group__sai__control.html │ │ ├── group__sai__control.js │ │ ├── group__sai__controls.html │ │ ├── group__sai__controls.js │ │ ├── group__sai__data__bits__control.html │ │ ├── group__sai__data__bits__control.js │ │ ├── group__sai__execution__status.html │ │ ├── group__sai__execution__status.js │ │ ├── group__sai__frame__control.html │ │ ├── group__sai__frame__control.js │ │ ├── group__sai__interface__gr.html │ │ ├── group__sai__interface__gr.js │ │ ├── group__sai__interface__gr_structARM__DRIVER__SAI.js │ │ ├── group__sai__interface__gr_structARM__SAI__CAPABILITIES.js │ │ ├── group__sai__interface__gr_structARM__SAI__STATUS.js │ │ ├── group__sai__mclk__pin__control.html │ │ ├── group__sai__mclk__pin__control.js │ │ ├── group__sai__mclk__pres__control.html │ │ ├── group__sai__mclk__pres__control.js │ │ ├── group__sai__mode__control.html │ │ ├── group__sai__mode__control.js │ │ ├── group__sai__mono__control.html │ │ ├── group__sai__mono__control.js │ │ ├── group__sai__protocol__control.html │ │ ├── group__sai__protocol__control.js │ │ ├── group__sai__slot__control.html │ │ ├── group__sai__slot__control.js │ │ ├── group__sai__sync__control.html │ │ ├── group__sai__sync__control.js │ │ ├── group__spi__bit__order__ctrls.html │ │ ├── group__spi__bit__order__ctrls.js │ │ ├── group__spi__data__bits__ctrls.html │ │ ├── group__spi__data__bits__ctrls.js │ │ ├── group__spi__execution__status.html │ │ ├── group__spi__execution__status.js │ │ ├── group__spi__frame__format__ctrls.html │ │ ├── group__spi__frame__format__ctrls.js │ │ ├── group__spi__interface__gr.html │ │ ├── group__spi__interface__gr.js │ │ ├── group__spi__interface__gr_structARM__DRIVER__SPI.js │ │ ├── group__spi__interface__gr_structARM__SPI__CAPABILITIES.js │ │ ├── group__spi__interface__gr_structARM__SPI__STATUS.js │ │ ├── group__spi__misc__ctrls.html │ │ ├── group__spi__misc__ctrls.js │ │ ├── group__spi__mode__ctrls.html │ │ ├── group__spi__mode__ctrls.js │ │ ├── group__spi__slave__select__mode__ctrls.html │ │ ├── group__spi__slave__select__mode__ctrls.js │ │ ├── group__storage__interface__gr.html │ │ ├── group__storage__interface__gr.js │ │ ├── group__storage__interface__gr_structARM__DRIVER__STORAGE.js │ │ ├── group__storage__interface__gr_structARM__STORAGE__BLOCK.js │ │ ├── group__storage__interface__gr_structARM__STORAGE__BLOCK__ATTRIBUTES.js │ │ ├── group__storage__interface__gr_structARM__STORAGE__CAPABILITIES.js │ │ ├── group__storage__interface__gr_structARM__STORAGE__INFO.js │ │ ├── group__storage__interface__gr_structARM__STORAGE__STATUS.js │ │ ├── group__usart__clock__phase.html │ │ ├── group__usart__clock__phase.js │ │ ├── group__usart__clock__polarity.html │ │ ├── group__usart__clock__polarity.js │ │ ├── group__usart__data__bits.html │ │ ├── group__usart__data__bits.js │ │ ├── group__usart__execution__status.html │ │ ├── group__usart__execution__status.js │ │ ├── group__usart__flow__control.html │ │ ├── group__usart__flow__control.js │ │ ├── group__usart__interface__gr.html │ │ ├── group__usart__interface__gr.js │ │ ├── group__usart__interface__gr_structARM__DRIVER__USART.js │ │ ├── group__usart__interface__gr_structARM__USART__CAPABILITIES.js │ │ ├── group__usart__interface__gr_structARM__USART__MODEM__STATUS.js │ │ ├── group__usart__interface__gr_structARM__USART__STATUS.js │ │ ├── group__usart__misc__control.html │ │ ├── group__usart__misc__control.js │ │ ├── group__usart__mode__control.html │ │ ├── group__usart__mode__control.js │ │ ├── group__usart__parity__bit.html │ │ ├── group__usart__parity__bit.js │ │ ├── group__usart__stop__bits.html │ │ ├── group__usart__stop__bits.js │ │ ├── group__usb__interface__gr.html │ │ ├── group__usb__interface__gr.js │ │ ├── group__usbd__interface__gr.html │ │ ├── group__usbd__interface__gr.js │ │ ├── group__usbd__interface__gr_structARM__DRIVER__USBD.js │ │ ├── group__usbd__interface__gr_structARM__USBD__CAPABILITIES.js │ │ ├── group__usbd__interface__gr_structARM__USBD__STATE.js │ │ ├── group__usbh__hci__gr.html │ │ ├── group__usbh__hci__gr.js │ │ ├── group__usbh__hci__gr_structARM__DRIVER__USBH__HCI.js │ │ ├── group__usbh__hci__gr_structARM__USBH__HCI__CAPABILITIES.js │ │ ├── group__usbh__host__gr.html │ │ ├── group__usbh__host__gr.js │ │ ├── group__usbh__host__gr_structARM__DRIVER__USBH.js │ │ ├── group__usbh__host__gr_structARM__USBH__CAPABILITIES.js │ │ ├── group__usbh__host__gr_structARM__USBH__PORT__STATE.js │ │ ├── group__usbh__interface__gr.html │ │ ├── group__usbh__interface__gr.js │ │ ├── group__wifi__addr__family.html │ │ ├── group__wifi__addr__family.js │ │ ├── group__wifi__bypass__gr.html │ │ ├── group__wifi__bypass__gr.js │ │ ├── group__wifi__control__gr.html │ │ ├── group__wifi__control__gr.js │ │ ├── group__wifi__control__gr_structARM__WIFI__CAPABILITIES.js │ │ ├── group__wifi__dhcp__v6__mode.html │ │ ├── group__wifi__dhcp__v6__mode.js │ │ ├── group__wifi__event.html │ │ ├── group__wifi__event.js │ │ ├── group__wifi__interface__gr.html │ │ ├── group__wifi__interface__gr.js │ │ ├── group__wifi__interface__gr_structARM__DRIVER__WIFI.js │ │ ├── group__wifi__management__gr.html │ │ ├── group__wifi__management__gr.js │ │ ├── group__wifi__management__gr_structARM__WIFI__CONFIG__t.js │ │ ├── group__wifi__management__gr_structARM__WIFI__NET__INFO__t.js │ │ ├── group__wifi__management__gr_structARM__WIFI__SCAN__INFO__t.js │ │ ├── group__wifi__protocol.html │ │ ├── group__wifi__protocol.js │ │ ├── group__wifi__sec__type.html │ │ ├── group__wifi__sec__type.js │ │ ├── group__wifi__soc__func.html │ │ ├── group__wifi__soc__func.js │ │ ├── group__wifi__soc__opt.html │ │ ├── group__wifi__soc__opt.js │ │ ├── group__wifi__socket__gr.html │ │ ├── group__wifi__socket__gr.js │ │ ├── group__wifi__socket__type.html │ │ ├── group__wifi__socket__type.js │ │ ├── group__wifi__wps__method.html │ │ ├── group__wifi__wps__method.js │ │ ├── index.doxyidx │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── navtreeindex4.js │ │ ├── navtreeindex5.js │ │ ├── navtreeindex6.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── referenceImplementation.html │ │ ├── resize.js │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── groups_8.html │ │ │ ├── groups_8.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ ├── search.css │ │ ├── tabs.css │ │ └── theoryOperation.html │ ├── General/ │ │ └── html/ │ │ ├── LICENSE.txt │ │ ├── cm_revisionHistory.html │ │ ├── cmsis.css │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── index.html │ │ ├── jquery.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ └── tabs.css │ ├── NN/ │ │ └── html/ │ │ ├── ChangeLog_pg.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── arm__convolve__1x1__HWC__q7__fast__nonsquare_8c.html │ │ ├── arm__convolve__HWC__q15__basic_8c.html │ │ ├── arm__convolve__HWC__q15__fast_8c.html │ │ ├── arm__convolve__HWC__q15__fast__nonsquare_8c.html │ │ ├── arm__convolve__HWC__q7__RGB_8c.html │ │ ├── arm__convolve__HWC__q7__basic_8c.html │ │ ├── arm__convolve__HWC__q7__basic__nonsquare_8c.html │ │ ├── arm__convolve__HWC__q7__fast_8c.html │ │ ├── arm__convolve__HWC__q7__fast__nonsquare_8c.html │ │ ├── arm__depthwise__conv__u8__basic__ver1_8c.html │ │ ├── arm__depthwise__separable__conv__HWC__q7_8c.html │ │ ├── arm__depthwise__separable__conv__HWC__q7__nonsquare_8c.html │ │ ├── arm__fully__connected__mat__q7__vec__q15_8c.html │ │ ├── arm__fully__connected__mat__q7__vec__q15__opt_8c.html │ │ ├── arm__fully__connected__q15_8c.html │ │ ├── arm__fully__connected__q15__opt_8c.html │ │ ├── arm__fully__connected__q7_8c.html │ │ ├── arm__fully__connected__q7__opt_8c.html │ │ ├── arm__nn__activations__q15_8c.html │ │ ├── arm__nn__activations__q7_8c.html │ │ ├── arm__nn__mat__mult__kernel__q7__q15_8c.html │ │ ├── arm__nn__mat__mult__kernel__q7__q15__reordered_8c.html │ │ ├── arm__nn__mult__q15_8c.html │ │ ├── arm__nn__mult__q7_8c.html │ │ ├── arm__nn__tables_8h.html │ │ ├── arm__nnexamples__cifar10_8cpp.html │ │ ├── arm__nnexamples__cifar10__inputs_8h.html │ │ ├── arm__nnexamples__cifar10__parameter_8h.html │ │ ├── arm__nnexamples__cifar10__weights_8h.html │ │ ├── arm__nnexamples__gru_8cpp.html │ │ ├── arm__nnexamples__gru__test__data_8h.html │ │ ├── arm__nnfunctions_8h.html │ │ ├── arm__nnsupportfunctions_8h.html │ │ ├── arm__nntables_8c.html │ │ ├── arm__pool__q7__HWC_8c.html │ │ ├── arm__q7__to__q15__no__shift_8c.html │ │ ├── arm__q7__to__q15__reordered__no__shift_8c.html │ │ ├── arm__relu__q15_8c.html │ │ ├── arm__relu__q7_8c.html │ │ ├── arm__softmax__q15_8c.html │ │ ├── arm__softmax__q7_8c.html │ │ ├── cifar10_2readme_8txt.html │ │ ├── classes.html │ │ ├── cmsis.css │ │ ├── dir_06560e3359c5da94845158f0031c08e8.html │ │ ├── dir_13dc9928808d08450b31fdaf572dfc8e.html │ │ ├── dir_17aeddf785065efc95337b880bac512b.html │ │ ├── dir_1c6ec18b156ae6affcf9513e9ed30cbf.html │ │ ├── dir_21d6d99be497a80d1e903a1ff5a6bb5a.html │ │ ├── dir_42ee8ba91ca7a55df66538ce31ddec49.html │ │ ├── dir_44941783335eeef51fdbcde02b124fbf.html │ │ ├── dir_4ad8c19a899a351ef23a1c3a29886c7d.html │ │ ├── dir_5c060210645429de182d0ec8a79ad82d.html │ │ ├── dir_6d5f4079ba9c4513aa4d8d5ca02967b4.html │ │ ├── dir_8e33b5b68f9112312341506c184d7434.html │ │ ├── dir_8ff992d4a3d8f0c2e6b3f2d3952b972b.html │ │ ├── dir_a3a0a3f0894883b6608166441e8c3ad3.html │ │ ├── dir_b7d5e60e0ec4c139f7aa9a155c284f70.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_vars.html │ │ ├── group__Acti.html │ │ ├── group__Acti.js │ │ ├── group__CNNExample.html │ │ ├── group__FC.html │ │ ├── group__FC.js │ │ ├── group__GRUExample.html │ │ ├── group__NNBasicMath.html │ │ ├── group__NNBasicMath.js │ │ ├── group__NNConv.html │ │ ├── group__NNConv.js │ │ ├── group__Pooling.html │ │ ├── group__Pooling.js │ │ ├── group__Softmax.html │ │ ├── group__Softmax.js │ │ ├── group__groupNN.html │ │ ├── group__groupNN.js │ │ ├── group__nndata__convert.html │ │ ├── group__nndata__convert.js │ │ ├── gru_2readme_8txt.html │ │ ├── history_8txt.html │ │ ├── index.doxyidx │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── namespacemembers.html │ │ ├── namespacemembers_func.html │ │ ├── namespacemembers_vars.html │ │ ├── namespacepara__gen.html │ │ ├── namespaces.html │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── pages.html │ │ ├── para__gen_8py.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── defines_2.html │ │ │ ├── defines_2.js │ │ │ ├── defines_3.html │ │ │ ├── defines_3.js │ │ │ ├── defines_4.html │ │ │ ├── defines_4.js │ │ │ ├── defines_5.html │ │ │ ├── defines_5.js │ │ │ ├── defines_6.html │ │ │ ├── defines_6.js │ │ │ ├── defines_7.html │ │ │ ├── defines_7.js │ │ │ ├── defines_8.html │ │ │ ├── defines_8.js │ │ │ ├── defines_9.html │ │ │ ├── defines_9.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── namespaces_0.html │ │ │ ├── namespaces_0.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ └── variables_b.js │ │ ├── tabs.css │ │ ├── unionarm__nnword.html │ │ └── unionarm__nnword.js │ ├── Pack/ │ │ └── html/ │ │ ├── algorithmFunc.html │ │ ├── cmsis.css │ │ ├── configWizard.html │ │ ├── coresight_setup.html │ │ ├── coresight_setup.js │ │ ├── cp_Editors.html │ │ ├── cp_Packs.html │ │ ├── cp_SWComponents.html │ │ ├── cp_ZIPTool.html │ │ ├── cpdsc_pg.html │ │ ├── createPackBoard.html │ │ ├── createPackPublish.html │ │ ├── createPackUtil.html │ │ ├── createPackUtil.js │ │ ├── createPack_DFP.html │ │ ├── debug_description.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── element_dominate.html │ │ ├── element_keywords.html │ │ ├── element_releases.html │ │ ├── element_repository.html │ │ ├── element_requirements_pg.html │ │ ├── element_taxonomy.html │ │ ├── flashAlgorithm.html │ │ ├── flashAlgorithm.js │ │ ├── index.html │ │ ├── jquery.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── packChk.html │ │ ├── packFormat.html │ │ ├── packFormat.js │ │ ├── packIndexFile.html │ │ ├── pack_Example.html │ │ ├── pack_revisionHistory.html │ │ ├── pages.html │ │ ├── pdsc_apis_pg.html │ │ ├── pdsc_boards_pg.html │ │ ├── pdsc_components_pg.html │ │ ├── pdsc_conditions_pg.html │ │ ├── pdsc_devices_pg.html │ │ ├── pdsc_devices_pg.js │ │ ├── pdsc_examples_pg.html │ │ ├── pdsc_family_pg.html │ │ ├── pdsc_generators_pg.html │ │ ├── pdsc_package_pg.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── sdf_pg.html │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── pages_8.html │ │ │ ├── pages_8.js │ │ │ ├── pages_9.html │ │ │ ├── pages_9.js │ │ │ ├── pages_a.html │ │ │ ├── pages_a.js │ │ │ ├── search.css │ │ │ └── search.js │ │ └── tabs.css │ ├── RTOS/ │ │ └── html/ │ │ ├── RTX__Conf__CM_8c.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── classes.html │ │ ├── cmsis.css │ │ ├── cmsis__os_8h.html │ │ ├── cmsis__os_8h_structosMailQDef__t.js │ │ ├── cmsis__os_8h_structosMessageQDef__t.js │ │ ├── cmsis__os_8h_structosMutexDef__t.js │ │ ├── cmsis__os_8h_structosPoolDef__t.js │ │ ├── cmsis__os_8h_structosSemaphoreDef__t.js │ │ ├── cmsis__os_8h_structosThreadDef__t.js │ │ ├── cmsis__os_8h_structosTimerDef__t.js │ │ ├── cmsis__os_8txt.html │ │ ├── cmsis__os__rtx__extensions_8h.html │ │ ├── configure.html │ │ ├── configure.js │ │ ├── creating_RTX_LIB.html │ │ ├── dir_67baed4ff719a838d401a6dc7774cf41.html │ │ ├── dir_899ec648bfef5b77e4c17b1ad40af9f5.html │ │ ├── dir_8ecbca576638d6cf096e42200a0f53dc.html │ │ ├── dir_9afdeffb8e409a4e0df5c5bf9ab1a7d2.html │ │ ├── dir_b0448b4e45a55bca3a46fdbabd848ed7.html │ │ ├── dir_c0ad159d7acfc6a66622c7bec0ee8a21.html │ │ ├── dirstructfiles.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── exampleRTX_Tutorial.html │ │ ├── files.html │ │ ├── functionOverview.html │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── genRTOSIF.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── group__CMSIS__RTOS.html │ │ ├── group__CMSIS__RTOS.js │ │ ├── group__CMSIS__RTOS__Definitions.html │ │ ├── group__CMSIS__RTOS__Definitions.js │ │ ├── group__CMSIS__RTOS__Definitions_structosEvent.js │ │ ├── group__CMSIS__RTOS__Definitions_unionosEvent_8def.js │ │ ├── group__CMSIS__RTOS__Definitions_unionosEvent_8value.js │ │ ├── group__CMSIS__RTOS__InterThread.html │ │ ├── group__CMSIS__RTOS__InterThread.js │ │ ├── group__CMSIS__RTOS__KernelCtrl.html │ │ ├── group__CMSIS__RTOS__KernelCtrl.js │ │ ├── group__CMSIS__RTOS__Mail.html │ │ ├── group__CMSIS__RTOS__Mail.js │ │ ├── group__CMSIS__RTOS__Message.html │ │ ├── group__CMSIS__RTOS__Message.js │ │ ├── group__CMSIS__RTOS__MutexMgmt.html │ │ ├── group__CMSIS__RTOS__MutexMgmt.js │ │ ├── group__CMSIS__RTOS__PoolMgmt.html │ │ ├── group__CMSIS__RTOS__PoolMgmt.js │ │ ├── group__CMSIS__RTOS__SemaphoreMgmt.html │ │ ├── group__CMSIS__RTOS__SemaphoreMgmt.js │ │ ├── group__CMSIS__RTOS__SignalMgmt.html │ │ ├── group__CMSIS__RTOS__SignalMgmt.js │ │ ├── group__CMSIS__RTOS__Status.html │ │ ├── group__CMSIS__RTOS__Status.js │ │ ├── group__CMSIS__RTOS__ThreadMgmt.html │ │ ├── group__CMSIS__RTOS__ThreadMgmt.js │ │ ├── group__CMSIS__RTOS__TimerMgmt.html │ │ ├── group__CMSIS__RTOS__TimerMgmt.js │ │ ├── group__CMSIS__RTOS__Wait.html │ │ ├── group__CMSIS__RTOS__Wait.js │ │ ├── group__RTX__Global__Functions.html │ │ ├── group__RTX__Global__Functions.js │ │ ├── index.doxyidx │ │ ├── index.html │ │ ├── jquery.js │ │ ├── lowPower.html │ │ ├── misraCompliance.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── rtosValidation.html │ │ ├── rtos_revisionHistory.html │ │ ├── rtxImplementation.html │ │ ├── rtxImplementation.js │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── pages_8.html │ │ │ ├── pages_8.js │ │ │ ├── pages_9.html │ │ │ ├── pages_9.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ └── variables_6.js │ │ ├── svcFunctions.html │ │ ├── systemConfig.html │ │ ├── tabs.css │ │ ├── technicalData.html │ │ ├── theory.html │ │ ├── threadConfig.html │ │ ├── timerTick.html │ │ ├── using.html │ │ └── usingOS.html │ ├── RTOS2/ │ │ └── html/ │ │ ├── CodingRules.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── classes.html │ │ ├── cmsis.css │ │ ├── cmsis__os2_8h.html │ │ ├── cmsis__os2_8txt.html │ │ ├── cmsis__os2__Event_8txt.html │ │ ├── cmsis__os2__Kernel_8txt.html │ │ ├── cmsis__os2__MemPool_8txt.html │ │ ├── cmsis__os2__Message_8txt.html │ │ ├── cmsis__os2__MigrationGuide_8txt.html │ │ ├── cmsis__os2__Migration_8txt.html │ │ ├── cmsis__os2__Mutex_8txt.html │ │ ├── cmsis__os2__Sema_8txt.html │ │ ├── cmsis__os2__Status_8txt.html │ │ ├── cmsis__os2__ThreadFlags_8txt.html │ │ ├── cmsis__os2__Thread_8txt.html │ │ ├── cmsis__os2__Timer_8txt.html │ │ ├── cmsis__os2__Wait_8txt.html │ │ ├── cmsis__os2__tick_8txt.html │ │ ├── config_rtx5.html │ │ ├── cre_rtx_proj.html │ │ ├── creating_RTX5_LIB.html │ │ ├── dir_002cf2dd0f795cc97a8d08cc3fa6e516.html │ │ ├── dir_061ad8d12aa7dc7d03c29112cd6e086d.html │ │ ├── dir_a43355fbfff7212ac2193223a73d577c.html │ │ ├── dir_f5870d36a7061bb81e1a64a750696f2d.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── functionOverview.html │ │ ├── functionOverview.js │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── genRTOS2IF.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_e.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_func_o.html │ │ ├── globals_func_p.html │ │ ├── globals_func_s.html │ │ ├── globals_i.html │ │ ├── globals_o.html │ │ ├── globals_p.html │ │ ├── globals_s.html │ │ ├── globals_t.html │ │ ├── globals_type.html │ │ ├── globals_vars.html │ │ ├── group__CMSIS__RTOS.html │ │ ├── group__CMSIS__RTOS.js │ │ ├── group__CMSIS__RTOS__Definitions.html │ │ ├── group__CMSIS__RTOS__Definitions.js │ │ ├── group__CMSIS__RTOS__EventFlags.html │ │ ├── group__CMSIS__RTOS__EventFlags.js │ │ ├── group__CMSIS__RTOS__EventFlags_structosEventFlagsAttr__t.js │ │ ├── group__CMSIS__RTOS__KernelCtrl.html │ │ ├── group__CMSIS__RTOS__KernelCtrl.js │ │ ├── group__CMSIS__RTOS__KernelCtrl_structosVersion__t.js │ │ ├── group__CMSIS__RTOS__MemoryMgmt.html │ │ ├── group__CMSIS__RTOS__Message.html │ │ ├── group__CMSIS__RTOS__Message.js │ │ ├── group__CMSIS__RTOS__Message_structosMessageQueueAttr__t.js │ │ ├── group__CMSIS__RTOS__MutexMgmt.html │ │ ├── group__CMSIS__RTOS__MutexMgmt.js │ │ ├── group__CMSIS__RTOS__MutexMgmt_structosMutexAttr__t.js │ │ ├── group__CMSIS__RTOS__PoolMgmt.html │ │ ├── group__CMSIS__RTOS__PoolMgmt.js │ │ ├── group__CMSIS__RTOS__PoolMgmt_structosMemoryPoolAttr__t.js │ │ ├── group__CMSIS__RTOS__SemaphoreMgmt.html │ │ ├── group__CMSIS__RTOS__SemaphoreMgmt.js │ │ ├── group__CMSIS__RTOS__SemaphoreMgmt_structosSemaphoreAttr__t.js │ │ ├── group__CMSIS__RTOS__ThreadFlagsMgmt.html │ │ ├── group__CMSIS__RTOS__ThreadFlagsMgmt.js │ │ ├── group__CMSIS__RTOS__ThreadMgmt.html │ │ ├── group__CMSIS__RTOS__ThreadMgmt.js │ │ ├── group__CMSIS__RTOS__ThreadMgmt_structosThreadAttr__t.js │ │ ├── group__CMSIS__RTOS__TickAPI.html │ │ ├── group__CMSIS__RTOS__TickAPI.js │ │ ├── group__CMSIS__RTOS__TimerMgmt.html │ │ ├── group__CMSIS__RTOS__TimerMgmt.js │ │ ├── group__CMSIS__RTOS__TimerMgmt_structosTimerAttr__t.js │ │ ├── group__CMSIS__RTOS__Wait.html │ │ ├── group__CMSIS__RTOS__Wait.js │ │ ├── group__flags__error__codes.html │ │ ├── group__flags__error__codes.js │ │ ├── group__rtx5__specific.html │ │ ├── group__rtx5__specific.js │ │ ├── group__rtx5__specific__defines.html │ │ ├── group__rtx5__specific__defines.js │ │ ├── group__rtx5__specific__functions.html │ │ ├── group__rtx5__specific__functions.js │ │ ├── group__rtx__evr.html │ │ ├── group__rtx__evr.js │ │ ├── group__rtx__evr__event__flags.html │ │ ├── group__rtx__evr__event__flags.js │ │ ├── group__rtx__evr__kernel.html │ │ ├── group__rtx__evr__kernel.js │ │ ├── group__rtx__evr__memory.html │ │ ├── group__rtx__evr__memory.js │ │ ├── group__rtx__evr__memory__pool.html │ │ ├── group__rtx__evr__memory__pool.js │ │ ├── group__rtx__evr__message__queue.html │ │ ├── group__rtx__evr__message__queue.js │ │ ├── group__rtx__evr__mutex.html │ │ ├── group__rtx__evr__mutex.js │ │ ├── group__rtx__evr__semaphore.html │ │ ├── group__rtx__evr__semaphore.js │ │ ├── group__rtx__evr__thread.html │ │ ├── group__rtx__evr__thread.js │ │ ├── group__rtx__evr__thread__flags.html │ │ ├── group__rtx__evr__thread__flags.js │ │ ├── group__rtx__evr__timer.html │ │ ├── group__rtx__evr__timer.js │ │ ├── group__rtx__evr__wait.html │ │ ├── group__rtx__evr__wait.js │ │ ├── history_8txt.html │ │ ├── index.doxyidx │ │ ├── index.html │ │ ├── jquery.js │ │ ├── mainpage_8txt.html │ │ ├── misraCompliance5.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── os2Migration.html │ │ ├── os2Migration.js │ │ ├── os2MigrationFunctions.html │ │ ├── os2MigrationGuide.html │ │ ├── os__tick_8h.html │ │ ├── pControlBlockSizes.html │ │ ├── pDirectory_Files.html │ │ ├── pHardwareRequirements.html │ │ ├── pStackRequirements.html │ │ ├── pToolchains.html │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── rtosValidation.html │ │ ├── rtos_api2.html │ │ ├── rtos_apicpp.html │ │ ├── rtos_os_tick_api.html │ │ ├── rtos_revisionHistory.html │ │ ├── rtx5_impl.html │ │ ├── rtx5_impl.js │ │ ├── rtx__evr_8h.html │ │ ├── rtx__evr_8txt.html │ │ ├── rtx__os_8h.html │ │ ├── rtx__os_8h_structosRtxConfig__t.js │ │ ├── rtx__os_8h_structosRtxConfig__t_8isr__queue.js │ │ ├── rtx__os_8h_structosRtxConfig__t_8mem.js │ │ ├── rtx__os_8h_structosRtxConfig__t_8mpi.js │ │ ├── rtx__os_8h_structosRtxEventFlags__t.js │ │ ├── rtx__os_8h_structosRtxInfo__t.js │ │ ├── rtx__os_8h_structosRtxInfo__t_8isr__queue.js │ │ ├── rtx__os_8h_structosRtxInfo__t_8kernel.js │ │ ├── rtx__os_8h_structosRtxInfo__t_8mem.js │ │ ├── rtx__os_8h_structosRtxInfo__t_8mpi.js │ │ ├── rtx__os_8h_structosRtxInfo__t_8thread.js │ │ ├── rtx__os_8h_structosRtxInfo__t_8thread_8robin.js │ │ ├── rtx__os_8h_structosRtxInfo__t_8thread_8run.js │ │ ├── rtx__os_8h_structosRtxMemoryPool__t.js │ │ ├── rtx__os_8h_structosRtxMessageQueue__t.js │ │ ├── rtx__os_8h_structosRtxMessage__t.js │ │ ├── rtx__os_8h_structosRtxMpInfo__t.js │ │ ├── rtx__os_8h_structosRtxMutex__t.js │ │ ├── rtx__os_8h_structosRtxObjectMemUsage__t.js │ │ ├── rtx__os_8h_structosRtxObject__t.js │ │ ├── rtx__os_8h_structosRtxSemaphore__t.js │ │ ├── rtx__os_8h_structosRtxThread__t.js │ │ ├── rtx__os_8h_structosRtxTimerFinfo__t.js │ │ ├── rtx__os_8h_structosRtxTimer__t.js │ │ ├── rtx__os_8txt.html │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── defines_2.html │ │ │ ├── defines_2.js │ │ │ ├── defines_3.html │ │ │ ├── defines_3.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── groups_8.html │ │ │ ├── groups_8.js │ │ │ ├── groups_9.html │ │ │ ├── groups_9.js │ │ │ ├── groups_a.html │ │ │ ├── groups_a.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── pages_8.html │ │ │ ├── pages_8.js │ │ │ ├── pages_9.html │ │ │ ├── pages_9.js │ │ │ ├── pages_a.html │ │ │ ├── pages_a.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── typedefs_2.html │ │ │ ├── typedefs_2.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ ├── search.css │ │ ├── structosRtxInfo__t_8post__process.html │ │ ├── structosRtxInfo__t_8post__process.js │ │ ├── structosRtxInfo__t_8timer.html │ │ ├── structosRtxInfo__t_8timer.js │ │ ├── tabs.css │ │ ├── technicalData5.html │ │ ├── technicalData5.js │ │ ├── theory_of_operation.html │ │ └── validation_8txt.html │ ├── SVD/ │ │ └── html/ │ │ ├── CMSIS-SVD.xsd │ │ ├── cmsis.css │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── elem_cpu.html │ │ ├── elem_device.html │ │ ├── elem_peripherals.html │ │ ├── elem_registers.html │ │ ├── elem_special.html │ │ ├── index.html │ │ ├── jquery.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── schema_1_2_gr.html │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── search.css │ │ │ └── search.js │ │ ├── svd_Example_pg.html │ │ ├── svd_Format_pg.html │ │ ├── svd_Format_pg.js │ │ ├── svd_SVDConv_pg.html │ │ ├── svd_revisionHistory.html │ │ ├── svd_validate_file_pg.html │ │ ├── svd_xml_conventions_gr.html │ │ └── tabs.css │ ├── Zone/ │ │ └── html/ │ │ ├── GenDataModel.html │ │ ├── GenDataModel.js │ │ ├── UseCases.html │ │ ├── cmsis.css │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── fm_interrupt.html │ │ ├── fm_memory.html │ │ ├── fm_mpc_setup.html │ │ ├── fm_mpu_setup.html │ │ ├── fm_peripheral.html │ │ ├── fm_processor.html │ │ ├── fm_reg_setup.html │ │ ├── fm_sau.html │ │ ├── fm_system.html │ │ ├── fm_system.js │ │ ├── fm_zone.html │ │ ├── fm_zone.js │ │ ├── index.html │ │ ├── jquery.js │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── search/ │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── pages_8.html │ │ │ ├── pages_8.js │ │ │ ├── pages_9.html │ │ │ ├── pages_9.js │ │ │ ├── pages_a.html │ │ │ ├── pages_a.js │ │ │ ├── pages_b.html │ │ │ ├── pages_b.js │ │ │ ├── pages_c.html │ │ │ ├── pages_c.js │ │ │ ├── search.css │ │ │ └── search.js │ │ ├── search.css │ │ ├── tabs.css │ │ ├── todo.html │ │ ├── xml_arzone.html │ │ ├── xml_azone_pg.html │ │ ├── xml_azone_pg.js │ │ ├── xml_configure.html │ │ ├── xml_creator.html │ │ ├── xml_device.html │ │ ├── xml_memories.html │ │ ├── xml_partition.html │ │ ├── xml_peripherals.html │ │ ├── xml_resources.html │ │ ├── xml_resources.js │ │ ├── xml_rzone_pg.html │ │ ├── xml_rzone_pg.js │ │ ├── xml_sau_init.html │ │ ├── xml_zones.html │ │ ├── zTCLI.html │ │ ├── zTELPC55.html │ │ ├── zTEMusca.html │ │ ├── zTESTM32L5.html │ │ ├── zTExamples.html │ │ ├── zTExamples.js │ │ ├── zTInstall.html │ │ ├── zTInteractiveMode.html │ │ ├── zTInteractiveMode.js │ │ ├── zTUI.html │ │ ├── zTUICreateProject.html │ │ ├── zTUIGenerate.html │ │ ├── zTUIMemPerRes.html │ │ ├── zTUIZonePart.html │ │ ├── zoneFormat.html │ │ ├── zoneFormat.js │ │ ├── zoneToolUsage.html │ │ ├── zoneToolUsage.js │ │ └── zone_revisionHistory.html │ └── index.html ├── LICENSE.md ├── Projects/ │ ├── NUCLEO-G031K8/ │ │ ├── Applications/ │ │ │ ├── FreeRTOS/ │ │ │ │ ├── FreeRTOS_Mail/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.ewd │ │ │ │ │ │ ├── FreeRTOS_Mail.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mail.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mail.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── FreeRTOS_Queues/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FreeRTOS_Queues.ewd │ │ │ │ │ ├── FreeRTOS_Queues.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── FreeRTOS_Queues.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FreeRTOS_Queues.uvoptx │ │ │ │ │ ├── FreeRTOS_Queues.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Demonstrations/ │ │ │ ├── Gravitech_4digits/ │ │ │ │ ├── Binary/ │ │ │ │ │ └── readme.txt │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Demo/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Examples/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_ContinuousConversion_TriggerSW/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewd │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.uvoptx │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── Cortex/ │ │ │ │ ├── CORTEXM_MPU/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_MPU.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.ewd │ │ │ │ │ │ ├── CORTEXM_MPU.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.uvoptx │ │ │ │ │ │ ├── CORTEXM_MPU.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ModePrivilege/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ModePrivilege.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewd │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvoptx │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ProcessStack/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ProcessStack.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewd │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvoptx │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CORTEXM_SysTick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEXM_SysTick.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEXM_SysTick.ewd │ │ │ │ │ ├── CORTEXM_SysTick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEXM_SysTick.uvoptx │ │ │ │ │ ├── CORTEXM_SysTick.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FLASH/ │ │ │ │ └── FLASH_EraseProgram/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ └── GPIO_IOToggle/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── GPIO_IOToggle.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ ├── I2C_TwoBoards_AdvComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComDMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComPolling/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_RestartComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── I2C_WakeUpFromStop/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.ewd │ │ │ │ │ ├── I2C_WakeUpFromStop.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── I2C_WakeUpFromStop.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.uvoptx │ │ │ │ │ ├── I2C_WakeUpFromStop.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ ├── IWDG_Reset/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── IWDG_Reset.ewd │ │ │ │ │ │ ├── IWDG_Reset.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── IWDG_Reset.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── IWDG_Reset.uvoptx │ │ │ │ │ │ ├── IWDG_Reset.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── IWDG_WindowMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_WindowMode.ewd │ │ │ │ │ ├── IWDG_WindowMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── IWDG_WindowMode.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_WindowMode.uvoptx │ │ │ │ │ ├── IWDG_WindowMode.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── LPTIM/ │ │ │ │ └── LPTIM_PulseCounter/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_PulseCounter.ewd │ │ │ │ │ ├── LPTIM_PulseCounter.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_PulseCounter.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_PulseCounter.uvoptx │ │ │ │ │ ├── LPTIM_PulseCounter.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR/ │ │ │ │ └── PWR_LPRUN/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ └── RCC_LSIConfig/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_LSIConfig.ewd │ │ │ │ │ ├── RCC_LSIConfig.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_LSIConfig.uvoptx │ │ │ │ │ ├── RCC_LSIConfig.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── RCC_LSIConfig.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ └── RTC_Alarm/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_Alarm.ewd │ │ │ │ │ ├── RTC_Alarm.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_Alarm.uvoptx │ │ │ │ │ ├── RTC_Alarm.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── RTC_Alarm.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ ├── TIM_PWMInput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMInput.ewd │ │ │ │ │ │ ├── TIM_PWMInput.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMInput.uvoptx │ │ │ │ │ │ ├── TIM_PWMInput.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMInput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMOutput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMOutput.ewd │ │ │ │ │ │ ├── TIM_PWMOutput.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMOutput.uvoptx │ │ │ │ │ │ ├── TIM_PWMOutput.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMOutput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── TIM_TimeBase/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase.ewd │ │ │ │ │ ├── TIM_TimeBase.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase.uvoptx │ │ │ │ │ ├── TIM_TimeBase.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase.ioc │ │ │ │ └── readme.txt │ │ │ ├── UART/ │ │ │ │ └── UART_TwoBoards_ComDMA/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewd │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvoptx │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_TwoBoards_ComDMA.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_Example.ewd │ │ │ │ ├── WWDG_Example.ewp │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ └── stm32g031xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_Example.uvoptx │ │ │ │ ├── WWDG_Example.uvprojx │ │ │ │ └── startup_stm32g031xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_Example.ioc │ │ │ └── readme.txt │ │ ├── Examples_LL/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_AnalogWatchdog_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_AnalogWatchdog_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ewd │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.uvoptx │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_CalculateAndCheck/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_CalculateAndCheck.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_CalculateAndCheck.ewd │ │ │ │ │ │ ├── CRC_CalculateAndCheck.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_CalculateAndCheck.uvoptx │ │ │ │ │ │ ├── CRC_CalculateAndCheck.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_CopyFromFlashToMemory_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewd │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvoptx │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── EXTI/ │ │ │ │ └── EXTI_ToggleLedOnIT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ewd │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.uvoptx │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ └── GPIO_InfiniteLedToggling_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewd │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvoptx │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.ewd │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.uvoptx │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ewd │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.uvoptx │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_MasterRx_SlaveTx_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_MasterRx_SlaveTx_IT_Init.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_MasterRx_SlaveTx_IT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_MasterRx_SlaveTx_IT_Init.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_MasterRx_SlaveTx_IT_Init.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_MasterRx_SlaveTx_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx_Init.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx_Init.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx_Init.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── I2C_TwoBoards_WakeUpFromStop_IT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ewd │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.uvoptx │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── LPTIM/ │ │ │ │ └── LPTIM_PulseCounter_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_PulseCounter_Init.ewd │ │ │ │ │ ├── LPTIM_PulseCounter_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_PulseCounter_Init.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_PulseCounter_Init.uvoptx │ │ │ │ │ ├── LPTIM_PulseCounter_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPUART/ │ │ │ │ └── LPUART_WakeUpFromStop_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.ewd │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPUART_WakeUpFromStop_Init.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.uvoptx │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR/ │ │ │ │ ├── PWR_EnterStandbyMode/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewd │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvoptx │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── PWR_EnterStandbyMode.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_EnterStopMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_EnterStopMode.ewd │ │ │ │ │ ├── PWR_EnterStopMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_EnterStopMode.uvoptx │ │ │ │ │ ├── PWR_EnterStopMode.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── PWR_EnterStopMode.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ └── RCC_UseHSI_PLLasSystemClock/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewd │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvoptx │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ └── RTC_Alarm_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_Alarm_Init.ewd │ │ │ │ │ ├── RTC_Alarm_Init.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_Alarm_Init.uvoptx │ │ │ │ │ ├── RTC_Alarm_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── RTC_Alarm_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewd │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvoptx │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ewd │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ewp │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.uvoptx │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_TwoBoards_FullDuplex_IT_Slave_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ewd │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.uvoptx │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ └── TIM_TimeBase_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase_Init.ewd │ │ │ │ │ ├── TIM_TimeBase_Init.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase_Init.uvoptx │ │ │ │ │ ├── TIM_TimeBase_Init.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase_Init.ioc │ │ │ │ └── readme.txt │ │ │ └── UTILS/ │ │ │ ├── UTILS_ConfigureSystemClock/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewd │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvoptx │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UTILS_ConfigureSystemClock.ioc │ │ │ │ └── readme.txt │ │ │ └── UTILS_ReadDeviceInfo/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── UTILS_ReadDeviceInfo.ewd │ │ │ │ ├── UTILS_ReadDeviceInfo.ewp │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ └── stm32g031xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── UTILS_ReadDeviceInfo.uvoptx │ │ │ │ ├── UTILS_ReadDeviceInfo.uvprojx │ │ │ │ └── startup_stm32g031xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── UTILS_ReadDeviceInfo.ioc │ │ │ └── readme.txt │ │ ├── Examples_MIX/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_SingleConversion_TriggerSW_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ └── CRC_PolynomialUpdate/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_PolynomialUpdate.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.ewd │ │ │ │ │ ├── CRC_PolynomialUpdate.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.uvoptx │ │ │ │ │ ├── CRC_PolynomialUpdate.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ └── I2C_OneBoard_ComSlave7_10bits_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewd │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvoptx │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ └── SPI/ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ └── stm32g031xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ └── startup_stm32g031xx.s │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── Templates/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── Templates.ewd │ │ │ │ ├── Templates.ewp │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ └── stm32g031xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Templates.uvoptx │ │ │ │ ├── Templates.uvprojx │ │ │ │ └── startup_stm32g031xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G031K8TX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── Templates.ioc │ │ │ └── readme.txt │ │ └── Templates_LL/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates_LL.ewd │ │ │ ├── Templates_LL.ewp │ │ │ ├── startup_stm32g031xx.s │ │ │ └── stm32g031xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates_LL.uvoptx │ │ │ ├── Templates_LL.uvprojx │ │ │ └── startup_stm32g031xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g031k8tx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G031K8TX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates_LL.ioc │ │ └── readme.txt │ ├── NUCLEO-G070RB/ │ │ ├── Applications/ │ │ │ ├── FatFs/ │ │ │ │ └── FatFs_uSD_Standalone/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FatFs_uSD_Standalone.ewd │ │ │ │ │ ├── FatFs_uSD_Standalone.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── FATFS/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── app_fatfs.c │ │ │ │ │ │ └── app_fatfs.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── sd_diskio.c │ │ │ │ │ └── sd_diskio.h │ │ │ │ ├── FatFs_uSD_Standalone.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FatFs_uSD_Standalone.uvoptx │ │ │ │ │ ├── FatFs_uSD_Standalone.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── Startup/ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS/ │ │ │ │ ├── FreeRTOS_Mail/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.ewd │ │ │ │ │ │ ├── FreeRTOS_Mail.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mail.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mail.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Mutexes/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mutexes.ewd │ │ │ │ │ │ ├── FreeRTOS_Mutexes.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mutexes.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mutexes.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mutexes.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Queues/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.ewd │ │ │ │ │ │ ├── FreeRTOS_Queues.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Queues.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Queues.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Semaphore/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewd │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Semaphore.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_SemaphoreFromISR/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ewd │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.uvoptx │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Signal/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Signal.ewd │ │ │ │ │ │ ├── FreeRTOS_Signal.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Signal.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Signal.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Signal.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_SignalFromISR/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ewd │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.uvoptx │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_ThreadCreation/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ewd │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.uvoptx │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── FreeRTOS_Timers/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FreeRTOS_Timers.ewd │ │ │ │ │ ├── FreeRTOS_Timers.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── FreeRTOS_Timers.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FreeRTOS_Timers.uvoptx │ │ │ │ │ ├── FreeRTOS_Timers.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Demonstrations/ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.ioc │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.ewd │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── FATFS/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── app_fatfs.c │ │ │ │ │ │ └── app_fatfs.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── sd_diskio.c │ │ │ │ │ └── sd_diskio.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.uvoptx │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── Startup/ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Examples/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_MultiChannelSingleConversion/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_MultiChannelSingleConversion.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewd │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvoptx │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Example/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Example.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Example.ewd │ │ │ │ │ │ ├── CRC_Example.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Example.uvoptx │ │ │ │ │ │ ├── CRC_Example.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── Cortex/ │ │ │ │ ├── CORTEXM_MPU/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_MPU.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.ewd │ │ │ │ │ │ ├── CORTEXM_MPU.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.uvoptx │ │ │ │ │ │ ├── CORTEXM_MPU.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ModePrivilege/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ModePrivilege.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewd │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvoptx │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ProcessStack/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ProcessStack.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewd │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvoptx │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CORTEXM_SysTick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEXM_SysTick.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEXM_SysTick.ewd │ │ │ │ │ ├── CORTEXM_SysTick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEXM_SysTick.uvoptx │ │ │ │ │ ├── CORTEXM_SysTick.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FLASH/ │ │ │ │ └── FLASH_EraseProgram/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ ├── GPIO_Demo/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_Demo.ewd │ │ │ │ │ │ ├── GPIO_Demo.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── GPIO_Demo.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── GPIO_Demo.uvoptx │ │ │ │ │ │ ├── GPIO_Demo.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── GPIO_EXTI/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_EXTI.ewd │ │ │ │ │ │ ├── GPIO_EXTI.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── GPIO_EXTI.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── GPIO_EXTI.uvoptx │ │ │ │ │ │ ├── GPIO_EXTI.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── GPIO_IOToggle/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── GPIO_IOToggle.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── HAL/ │ │ │ │ ├── HAL_TimeBase/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase.ewd │ │ │ │ │ │ ├── HAL_TimeBase.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_ALARM/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_alarm.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_WKUP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_wakeup.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── HAL_TimeBase_TIM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.ewd │ │ │ │ │ ├── HAL_TimeBase_TIM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── HAL_TimeBase_TIM.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.uvoptx │ │ │ │ │ ├── HAL_TimeBase_TIM.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ ├── I2C_TwoBoards_AdvComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComDMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComPolling/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_RestartComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── I2C_WakeUpFromStop/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.ewd │ │ │ │ │ ├── I2C_WakeUpFromStop.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── I2C_WakeUpFromStop.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.uvoptx │ │ │ │ │ ├── I2C_WakeUpFromStop.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ ├── IWDG_Reset/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── IWDG_Reset.ewd │ │ │ │ │ │ ├── IWDG_Reset.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── IWDG_Reset.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── IWDG_Reset.uvoptx │ │ │ │ │ │ ├── IWDG_Reset.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── IWDG_WindowMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_WindowMode.ewd │ │ │ │ │ ├── IWDG_WindowMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── IWDG_WindowMode.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_WindowMode.uvoptx │ │ │ │ │ ├── IWDG_WindowMode.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── PWR/ │ │ │ │ ├── PWR_LPRUN/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_LPSLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.ewd │ │ │ │ │ │ ├── PWR_LPSLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.uvoptx │ │ │ │ │ │ ├── PWR_LPSLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── PWR_LPSLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_SLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_SLEEP.ewd │ │ │ │ │ │ ├── PWR_SLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_SLEEP.uvoptx │ │ │ │ │ │ ├── PWR_SLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── PWR_SLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_STANDBY/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_STANDBY.ewd │ │ │ │ │ ├── PWR_STANDBY.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_STANDBY.uvoptx │ │ │ │ │ ├── PWR_STANDBY.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── PWR_STANDBY.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ ├── RCC_LSEConfig/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RCC_LSEConfig.ewd │ │ │ │ │ │ ├── RCC_LSEConfig.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RCC_LSEConfig.uvoptx │ │ │ │ │ │ ├── RCC_LSEConfig.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RCC_LSEConfig.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RCC_LSIConfig/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_LSIConfig.ewd │ │ │ │ │ ├── RCC_LSIConfig.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_LSIConfig.uvoptx │ │ │ │ │ ├── RCC_LSIConfig.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── RCC_LSIConfig.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ ├── RTC_Alarm/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Alarm.ewd │ │ │ │ │ │ ├── RTC_Alarm.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Alarm.uvoptx │ │ │ │ │ │ ├── RTC_Alarm.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RTC_Alarm.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Calendar/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Calendar.ewd │ │ │ │ │ │ ├── RTC_Calendar.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Calendar.uvoptx │ │ │ │ │ │ ├── RTC_Calendar.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RTC_Calendar.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_LSI/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_LSI.ewd │ │ │ │ │ │ ├── RTC_LSI.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_LSI.uvoptx │ │ │ │ │ │ ├── RTC_LSI.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RTC_LSI.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Tamper/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Tamper.ewd │ │ │ │ │ │ ├── RTC_Tamper.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Tamper.uvoptx │ │ │ │ │ │ ├── RTC_Tamper.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RTC_TimeStamp/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_TimeStamp.ewd │ │ │ │ │ ├── RTC_TimeStamp.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_TimeStamp.uvoptx │ │ │ │ │ ├── RTC_TimeStamp.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── RTC_TimeStamp.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ ├── TIM_DMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMA.ewd │ │ │ │ │ │ ├── TIM_DMA.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMA.uvoptx │ │ │ │ │ │ ├── TIM_DMA.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_DMABurst/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMABurst.ewd │ │ │ │ │ │ ├── TIM_DMABurst.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMABurst.uvoptx │ │ │ │ │ │ ├── TIM_DMABurst.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMABurst.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_ExtTriggerSynchro/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ewd │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.uvoptx │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_InputCapture/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_InputCapture.ewd │ │ │ │ │ │ ├── TIM_InputCapture.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_InputCapture.uvoptx │ │ │ │ │ │ ├── TIM_InputCapture.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_InputCapture.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCActive/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCActive.ewd │ │ │ │ │ │ ├── TIM_OCActive.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCActive.uvoptx │ │ │ │ │ │ ├── TIM_OCActive.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCActive.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCInactive/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCInactive.ewd │ │ │ │ │ │ ├── TIM_OCInactive.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCInactive.uvoptx │ │ │ │ │ │ ├── TIM_OCInactive.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCInactive.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCToggle/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCToggle.ewd │ │ │ │ │ │ ├── TIM_OCToggle.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCToggle.uvoptx │ │ │ │ │ │ ├── TIM_OCToggle.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCToggle.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OnePulse/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OnePulse.ewd │ │ │ │ │ │ ├── TIM_OnePulse.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OnePulse.uvoptx │ │ │ │ │ │ ├── TIM_OnePulse.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMInput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMInput.ewd │ │ │ │ │ │ ├── TIM_PWMInput.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMInput.uvoptx │ │ │ │ │ │ ├── TIM_PWMInput.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMInput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMOutput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMOutput.ewd │ │ │ │ │ │ ├── TIM_PWMOutput.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMOutput.uvoptx │ │ │ │ │ │ ├── TIM_PWMOutput.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMOutput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── TIM_TimeBase/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase.ewd │ │ │ │ │ ├── TIM_TimeBase.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase.uvoptx │ │ │ │ │ ├── TIM_TimeBase.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase.ioc │ │ │ │ └── readme.txt │ │ │ ├── UART/ │ │ │ │ ├── UART_TwoBoards_ComDMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewd │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvoptx │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── UART_TwoBoards_ComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.ewd │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.uvoptx │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_TwoBoards_ComIT.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── UART_TwoBoards_ComPolling/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_TwoBoards_ComPolling.ewd │ │ │ │ │ ├── UART_TwoBoards_ComPolling.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_TwoBoards_ComPolling.uvoptx │ │ │ │ │ ├── UART_TwoBoards_ComPolling.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_TwoBoards_ComPolling.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_Example.ewd │ │ │ │ ├── WWDG_Example.ewp │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ └── stm32g070xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_Example.uvoptx │ │ │ │ ├── WWDG_Example.uvprojx │ │ │ │ └── startup_stm32g070xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_Example.ioc │ │ │ └── readme.txt │ │ ├── Examples_LL/ │ │ │ ├── ADC/ │ │ │ │ ├── ADC_AnalogWatchdog_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ewd │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.uvoptx │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewd │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ewd │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.uvoptx │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.ewd │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.uvoptx │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_Oversampling_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_Oversampling_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_Oversampling_Init.ewd │ │ │ │ │ │ ├── ADC_Oversampling_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_Oversampling_Init.uvoptx │ │ │ │ │ │ ├── ADC_Oversampling_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.ewd │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.uvoptx │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.ewd │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.uvoptx │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ewd │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.uvoptx │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── ADC_SingleConversion_TriggerTimer_DMA_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── STM32CubeMX_to_STM32CubeIDE.out │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CORTEX/ │ │ │ │ └── CORTEX_MPU/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEX_MPU.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEX_MPU.ewd │ │ │ │ │ ├── CORTEX_MPU.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEX_MPU.uvoptx │ │ │ │ │ ├── CORTEX_MPU.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_CalculateAndCheck/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_CalculateAndCheck.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_CalculateAndCheck.ewd │ │ │ │ │ │ ├── CRC_CalculateAndCheck.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_CalculateAndCheck.uvoptx │ │ │ │ │ │ ├── CRC_CalculateAndCheck.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ ├── DMA_CopyFromFlashToMemory/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory.ewd │ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── DMA_CopyFromFlashToMemory_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewd │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvoptx │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── EXTI/ │ │ │ │ ├── EXTI_ToggleLedOnIT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── EXTI_ToggleLedOnIT.ewd │ │ │ │ │ │ ├── EXTI_ToggleLedOnIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── EXTI_ToggleLedOnIT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ewd │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.uvoptx │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ ├── GPIO_InfiniteLedToggling/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_InfiniteLedToggling.ewd │ │ │ │ │ │ ├── GPIO_InfiniteLedToggling.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── GPIO_InfiniteLedToggling_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewd │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvoptx │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ ├── I2C_OneBoard_Communication_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT.ewd │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ewd │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.uvoptx │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── I2C_TwoBoards_WakeUpFromStop_IT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ewd │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.uvoptx │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ └── IWDG_RefreshUntilUserEvent_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ewd │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.uvoptx │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── PWR/ │ │ │ │ ├── PWR_EnterStandbyMode/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewd │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvoptx │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── PWR_EnterStandbyMode.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_EnterStopMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_EnterStopMode.ewd │ │ │ │ │ ├── PWR_EnterStopMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_EnterStopMode.uvoptx │ │ │ │ │ ├── PWR_EnterStopMode.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── PWR_EnterStopMode.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ ├── RCC_OutputSystemClockOnMCO/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ewd │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.uvoptx │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RCC_UseHSI_PLLasSystemClock/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewd │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvoptx │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ ├── RTC_Alarm/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Alarm.ewd │ │ │ │ │ │ ├── RTC_Alarm.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Alarm_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Alarm_Init.ewd │ │ │ │ │ │ ├── RTC_Alarm_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Alarm_Init.uvoptx │ │ │ │ │ │ ├── RTC_Alarm_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RTC_Alarm_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.ewd │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.uvoptx │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Tamper_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Tamper_Init.ewd │ │ │ │ │ │ ├── RTC_Tamper_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Tamper_Init.uvoptx │ │ │ │ │ │ ├── RTC_Tamper_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── RTC_Tamper_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RTC_TimeStamp_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_TimeStamp_Init.ewd │ │ │ │ │ ├── RTC_TimeStamp_Init.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_TimeStamp_Init.uvoptx │ │ │ │ │ ├── RTC_TimeStamp_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── RTC_TimeStamp_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT.ewd │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewd │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvoptx │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ewd │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.uvoptx │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_TwoBoards_FullDuplex_IT_Slave_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ewd │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.uvoptx │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ ├── TIM_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMA_Init.ewd │ │ │ │ │ │ ├── TIM_DMA_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMA_Init.uvoptx │ │ │ │ │ │ ├── TIM_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMA_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_InputCapture_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_InputCapture_Init.ewd │ │ │ │ │ │ ├── TIM_InputCapture_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_InputCapture_Init.uvoptx │ │ │ │ │ │ ├── TIM_InputCapture_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_InputCapture_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OutputCompare_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OutputCompare_Init.ewd │ │ │ │ │ │ ├── TIM_OutputCompare_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OutputCompare_Init.uvoptx │ │ │ │ │ │ ├── TIM_OutputCompare_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OutputCompare_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMOutput_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMOutput_Init.ewd │ │ │ │ │ │ ├── TIM_PWMOutput_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMOutput_Init.uvoptx │ │ │ │ │ │ ├── TIM_PWMOutput_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMOutput_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_TimeBase/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_TimeBase.ewd │ │ │ │ │ │ ├── TIM_TimeBase.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── TIM_TimeBase_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase_Init.ewd │ │ │ │ │ ├── TIM_TimeBase_Init.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase_Init.uvoptx │ │ │ │ │ ├── TIM_TimeBase_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase_Init.ioc │ │ │ │ └── readme.txt │ │ │ ├── USART/ │ │ │ │ ├── USART_Communication_Rx_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_TxRx_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.ewd │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_HardwareFlowControl_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.ewd │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.uvoptx │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_HardwareFlowControl_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.ewd │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.uvoptx │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.ewd │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.uvoptx │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_WakeUpFromStop1_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.ewd │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.uvoptx │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── USART_WakeUpFromStop_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── USART_WakeUpFromStop_Init.ewd │ │ │ │ │ ├── USART_WakeUpFromStop_Init.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── USART_WakeUpFromStop_Init.uvoptx │ │ │ │ │ ├── USART_WakeUpFromStop_Init.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── USART_WakeUpFromStop_Init.ioc │ │ │ │ └── readme.txt │ │ │ ├── UTILS/ │ │ │ │ ├── UTILS_ConfigureSystemClock/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewd │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvoptx │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── UTILS_ReadDeviceInfo/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UTILS_ReadDeviceInfo.ewd │ │ │ │ │ ├── UTILS_ReadDeviceInfo.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UTILS_ReadDeviceInfo.uvoptx │ │ │ │ │ ├── UTILS_ReadDeviceInfo.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UTILS_ReadDeviceInfo.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_RefreshUntilUserEvent_Init/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ewd │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ewp │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ └── stm32g070xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.uvoptx │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.uvprojx │ │ │ │ └── startup_stm32g070xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ioc │ │ │ └── readme.txt │ │ ├── Examples_MIX/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_SingleConversion_TriggerSW_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ └── CRC_PolynomialUpdate/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_PolynomialUpdate.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.ewd │ │ │ │ │ ├── CRC_PolynomialUpdate.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.uvoptx │ │ │ │ │ ├── CRC_PolynomialUpdate.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ └── I2C_OneBoard_ComSlave7_10bits_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewd │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvoptx │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ └── TIM_PWMInput/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_PWMInput.ewd │ │ │ │ │ ├── TIM_PWMInput.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_PWMInput.uvoptx │ │ │ │ │ ├── TIM_PWMInput.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_PWMInput.ioc │ │ │ │ └── readme.txt │ │ │ └── UART/ │ │ │ ├── UART_HyperTerminal_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_HyperTerminal_IT.ewd │ │ │ │ │ ├── UART_HyperTerminal_IT.ewp │ │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ │ └── stm32g070xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_HyperTerminal_IT.uvoptx │ │ │ │ │ ├── UART_HyperTerminal_IT.uvprojx │ │ │ │ │ └── startup_stm32g070xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_HyperTerminal_IT.ioc │ │ │ │ └── readme.txt │ │ │ └── UART_HyperTerminal_TxPolling_RxIT/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ewd │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ewp │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ └── stm32g070xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.uvoptx │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.uvprojx │ │ │ │ └── startup_stm32g070xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ioc │ │ │ └── readme.txt │ │ ├── Templates/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── Templates.ewd │ │ │ │ ├── Templates.ewp │ │ │ │ ├── startup_stm32g070xx.s │ │ │ │ └── stm32g070xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Templates.uvoptx │ │ │ │ ├── Templates.uvprojx │ │ │ │ └── startup_stm32g070xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G070RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── Templates.ioc │ │ │ └── readme.txt │ │ └── Templates_LL/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates_LL.ewd │ │ │ ├── Templates_LL.ewp │ │ │ ├── startup_stm32g070xx.s │ │ │ └── stm32g070xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates_LL.uvoptx │ │ │ ├── Templates_LL.uvprojx │ │ │ └── startup_stm32g070xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g070rbtx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G070RBTX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates_LL.ioc │ │ └── readme.txt │ ├── NUCLEO-G071RB/ │ │ ├── Applications/ │ │ │ ├── FatFs/ │ │ │ │ └── FatFs_uSD_Standalone/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FatFs_uSD_Standalone.ewd │ │ │ │ │ ├── FatFs_uSD_Standalone.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── FATFS/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── app_fatfs.c │ │ │ │ │ │ └── app_fatfs.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── sd_diskio.c │ │ │ │ │ └── sd_diskio.h │ │ │ │ ├── FatFs_uSD_Standalone.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FatFs_uSD_Standalone.uvoptx │ │ │ │ │ ├── FatFs_uSD_Standalone.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ └── Core/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS/ │ │ │ │ ├── FreeRTOS_Mail/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.ewd │ │ │ │ │ │ ├── FreeRTOS_Mail.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mail.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mail.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Mutexes/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mutexes.ewd │ │ │ │ │ │ ├── FreeRTOS_Mutexes.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mutexes.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mutexes.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mutexes.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Queues/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.ewd │ │ │ │ │ │ ├── FreeRTOS_Queues.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Queues.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Queues.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Semaphore/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewd │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Semaphore.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_SemaphoreFromISR/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ewd │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.uvoptx │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Signal/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Signal.ewd │ │ │ │ │ │ ├── FreeRTOS_Signal.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Signal.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Signal.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Signal.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_SignalFromISR/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ewd │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.uvoptx │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_ThreadCreation/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ewd │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.uvoptx │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── FreeRTOS_Timers/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FreeRTOS_Timers.ewd │ │ │ │ │ ├── FreeRTOS_Timers.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── FreeRTOS_Timers.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FreeRTOS_Timers.uvoptx │ │ │ │ │ ├── FreeRTOS_Timers.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Demonstrations/ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.ioc │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.ewd │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── FATFS/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── app_fatfs.c │ │ │ │ │ │ └── app_fatfs.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── sd_diskio.c │ │ │ │ │ └── sd_diskio.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.uvoptx │ │ │ │ │ ├── Adafruit_LCD_1_8_SD_Joystick.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ └── Core/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Examples/ │ │ │ ├── ADC/ │ │ │ │ ├── ADC_AnalogWatchdog/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_AnalogWatchdog.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_AnalogWatchdog.ewd │ │ │ │ │ │ ├── ADC_AnalogWatchdog.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_AnalogWatchdog.uvoptx │ │ │ │ │ │ ├── ADC_AnalogWatchdog.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_MultiChannelSingleConversion/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewd │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvoptx │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewd │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvoptx │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── ADC_SingleConversion_TriggerTimer_DMA/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP/ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewd │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.uvoptx │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── COMP_CompareGpioVsVrefInt_Window_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.ewd │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.uvoptx │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CORTEX/ │ │ │ │ ├── CORTEXM_MPU/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_MPU.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.ewd │ │ │ │ │ │ ├── CORTEXM_MPU.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.uvoptx │ │ │ │ │ │ ├── CORTEXM_MPU.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ModePrivilege/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ModePrivilege.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewd │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvoptx │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ProcessStack/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ProcessStack.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewd │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvoptx │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CORTEXM_SysTick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEXM_SysTick.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEXM_SysTick.ewd │ │ │ │ │ ├── CORTEXM_SysTick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEXM_SysTick.uvoptx │ │ │ │ │ ├── CORTEXM_SysTick.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Example/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Example.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Example.ewd │ │ │ │ │ │ ├── CRC_Example.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Example.uvoptx │ │ │ │ │ │ ├── CRC_Example.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DAC/ │ │ │ │ ├── DAC_SignalsGeneration/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── DAC_SignalsGeneration.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── DAC_SignalsGeneration.ewd │ │ │ │ │ │ ├── DAC_SignalsGeneration.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── DAC_SignalsGeneration.uvoptx │ │ │ │ │ │ ├── DAC_SignalsGeneration.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── DAC_SimpleConversion/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DAC_SimpleConversion.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DAC_SimpleConversion.ewd │ │ │ │ │ ├── DAC_SimpleConversion.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DAC_SimpleConversion.uvoptx │ │ │ │ │ ├── DAC_SimpleConversion.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FLASH/ │ │ │ │ └── FLASH_EraseProgram/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ ├── GPIO_Demo/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_Demo.ewd │ │ │ │ │ │ ├── GPIO_Demo.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── GPIO_Demo.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── GPIO_Demo.uvoptx │ │ │ │ │ │ ├── GPIO_Demo.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── GPIO_EXTI/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_EXTI.ewd │ │ │ │ │ │ ├── GPIO_EXTI.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── GPIO_EXTI.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── GPIO_EXTI.uvoptx │ │ │ │ │ │ ├── GPIO_EXTI.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── GPIO_IOToggle/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── GPIO_IOToggle.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── HAL/ │ │ │ │ ├── HAL_TimeBase/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase.ewd │ │ │ │ │ │ ├── HAL_TimeBase.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_ALARM/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_alarm.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_WKUP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_wakeup.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── HAL_TimeBase_TIM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.ewd │ │ │ │ │ ├── HAL_TimeBase_TIM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── HAL_TimeBase_TIM.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.uvoptx │ │ │ │ │ ├── HAL_TimeBase_TIM.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ ├── I2C_TwoBoards_AdvComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_AdvComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComDMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComPolling/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_RestartAdvComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_RestartComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_RestartComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── I2C_WakeUpFromStop/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.ewd │ │ │ │ │ ├── I2C_WakeUpFromStop.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── I2C_WakeUpFromStop.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.uvoptx │ │ │ │ │ ├── I2C_WakeUpFromStop.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ ├── IWDG_Reset/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── IWDG_Reset.ewd │ │ │ │ │ │ ├── IWDG_Reset.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── IWDG_Reset.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── IWDG_Reset.uvoptx │ │ │ │ │ │ ├── IWDG_Reset.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── IWDG_WindowMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_WindowMode.ewd │ │ │ │ │ ├── IWDG_WindowMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── IWDG_WindowMode.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_WindowMode.uvoptx │ │ │ │ │ ├── IWDG_WindowMode.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── LPTIM/ │ │ │ │ ├── LPTIM_PWMExternalClock/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.ewd │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── LPTIM_PWMExternalClock.ioc │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.uvoptx │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── LPTIM_PulseCounter/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPTIM_PulseCounter.ewd │ │ │ │ │ │ ├── LPTIM_PulseCounter.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── LPTIM_PulseCounter.ioc │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── LPTIM_PulseCounter.uvoptx │ │ │ │ │ │ ├── LPTIM_PulseCounter.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── LPTIM_Timeout/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_Timeout.ewd │ │ │ │ │ ├── LPTIM_Timeout.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_Timeout.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_Timeout.uvoptx │ │ │ │ │ ├── LPTIM_Timeout.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR/ │ │ │ │ ├── PWR_LPRUN/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_LPSLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.ewd │ │ │ │ │ │ ├── PWR_LPSLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.uvoptx │ │ │ │ │ │ ├── PWR_LPSLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── PWR_LPSLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_PVD/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_PVD.ewd │ │ │ │ │ │ ├── PWR_PVD.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_PVD.uvoptx │ │ │ │ │ │ ├── PWR_PVD.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── PWR_PVD.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_SLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_SLEEP.ewd │ │ │ │ │ │ ├── PWR_SLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_SLEEP.uvoptx │ │ │ │ │ │ ├── PWR_SLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── PWR_SLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_STANDBY/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_STANDBY.ewd │ │ │ │ │ ├── PWR_STANDBY.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_STANDBY.uvoptx │ │ │ │ │ ├── PWR_STANDBY.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── PWR_STANDBY.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ ├── RCC_LSEConfig/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RCC_LSEConfig.ewd │ │ │ │ │ │ ├── RCC_LSEConfig.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RCC_LSEConfig.uvoptx │ │ │ │ │ │ ├── RCC_LSEConfig.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RCC_LSEConfig.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RCC_LSIConfig/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_LSIConfig.ewd │ │ │ │ │ ├── RCC_LSIConfig.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_LSIConfig.uvoptx │ │ │ │ │ ├── RCC_LSIConfig.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── RCC_LSIConfig.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ ├── RTC_Alarm/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Alarm.ewd │ │ │ │ │ │ ├── RTC_Alarm.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Alarm.uvoptx │ │ │ │ │ │ ├── RTC_Alarm.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RTC_Alarm.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Calendar/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Calendar.ewd │ │ │ │ │ │ ├── RTC_Calendar.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Calendar.uvoptx │ │ │ │ │ │ ├── RTC_Calendar.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RTC_Calendar.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_LSI/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_LSI.ewd │ │ │ │ │ │ ├── RTC_LSI.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_LSI.uvoptx │ │ │ │ │ │ ├── RTC_LSI.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RTC_LSI.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Tamper/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Tamper.ewd │ │ │ │ │ │ ├── RTC_Tamper.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Tamper.uvoptx │ │ │ │ │ │ ├── RTC_Tamper.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RTC_TimeStamp/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_TimeStamp.ewd │ │ │ │ │ ├── RTC_TimeStamp.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_TimeStamp.uvoptx │ │ │ │ │ ├── RTC_TimeStamp.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── RTC_TimeStamp.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ ├── TIM_DMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMA.ewd │ │ │ │ │ │ ├── TIM_DMA.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMA.uvoptx │ │ │ │ │ │ ├── TIM_DMA.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_DMABurst/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMABurst.ewd │ │ │ │ │ │ ├── TIM_DMABurst.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMABurst.uvoptx │ │ │ │ │ │ ├── TIM_DMABurst.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMABurst.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_ExtTriggerSynchro/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ewd │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.uvoptx │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_InputCapture/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_InputCapture.ewd │ │ │ │ │ │ ├── TIM_InputCapture.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_InputCapture.uvoptx │ │ │ │ │ │ ├── TIM_InputCapture.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_InputCapture.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCActive/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCActive.ewd │ │ │ │ │ │ ├── TIM_OCActive.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCActive.uvoptx │ │ │ │ │ │ ├── TIM_OCActive.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCActive.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCInactive/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCInactive.ewd │ │ │ │ │ │ ├── TIM_OCInactive.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCInactive.uvoptx │ │ │ │ │ │ ├── TIM_OCInactive.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCInactive.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCToggle/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCToggle.ewd │ │ │ │ │ │ ├── TIM_OCToggle.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCToggle.uvoptx │ │ │ │ │ │ ├── TIM_OCToggle.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCToggle.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OnePulse/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OnePulse.ewd │ │ │ │ │ │ ├── TIM_OnePulse.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OnePulse.uvoptx │ │ │ │ │ │ ├── TIM_OnePulse.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMInput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMInput.ewd │ │ │ │ │ │ ├── TIM_PWMInput.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMInput.uvoptx │ │ │ │ │ │ ├── TIM_PWMInput.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMInput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMOutput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMOutput.ewd │ │ │ │ │ │ ├── TIM_PWMOutput.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMOutput.uvoptx │ │ │ │ │ │ ├── TIM_PWMOutput.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMOutput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── TIM_TimeBase/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase.ewd │ │ │ │ │ ├── TIM_TimeBase.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase.uvoptx │ │ │ │ │ ├── TIM_TimeBase.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase.ioc │ │ │ │ └── readme.txt │ │ │ ├── UART/ │ │ │ │ ├── LPUART_WakeUpFromStop/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.ewd │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── LPUART_WakeUpFromStop.ioc │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.uvoptx │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── UART_TwoBoards_ComDMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewd │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvoptx │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── UART_TwoBoards_ComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.ewd │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.uvoptx │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_TwoBoards_ComIT.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── UART_TwoBoards_ComPolling/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_TwoBoards_ComPolling.ewd │ │ │ │ │ ├── UART_TwoBoards_ComPolling.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_TwoBoards_ComPolling.uvoptx │ │ │ │ │ ├── UART_TwoBoards_ComPolling.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_TwoBoards_ComPolling.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_Example.ewd │ │ │ │ ├── WWDG_Example.ewp │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ └── stm32g071xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_Example.uvoptx │ │ │ │ ├── WWDG_Example.uvprojx │ │ │ │ └── startup_stm32g071xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_Example.ioc │ │ │ └── readme.txt │ │ ├── Examples_LL/ │ │ │ ├── ADC/ │ │ │ │ ├── ADC_AnalogWatchdog_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ewd │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.uvoptx │ │ │ │ │ │ ├── ADC_AnalogWatchdog_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewd │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.uvoptx │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ewd │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.uvoptx │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.ewd │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.uvoptx │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_MultiChannelSingleConversion/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewd │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_Oversampling_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_Oversampling_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_Oversampling_Init.ewd │ │ │ │ │ │ ├── ADC_Oversampling_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_Oversampling_Init.uvoptx │ │ │ │ │ │ ├── ADC_Oversampling_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.ewd │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.uvoptx │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.ewd │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.uvoptx │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ewd │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.uvoptx │ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── ADC_SingleConversion_TriggerTimer_DMA_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP/ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewd │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.ewd │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.uvoptx │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── COMP_CompareGpioVsVrefInt_OutputGpio_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_OutputGpio_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_OutputGpio_Init.ewd │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_OutputGpio_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_OutputGpio_Init.uvoptx │ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_OutputGpio_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── COMP_CompareGpioVsVrefInt_Window_IT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT_Init.ewd │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT_Init.uvoptx │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CORTEX/ │ │ │ │ └── CORTEX_MPU/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEX_MPU.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEX_MPU.ewd │ │ │ │ │ ├── CORTEX_MPU.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEX_MPU.uvoptx │ │ │ │ │ ├── CORTEX_MPU.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_CalculateAndCheck/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_CalculateAndCheck.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_CalculateAndCheck.ewd │ │ │ │ │ │ ├── CRC_CalculateAndCheck.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_CalculateAndCheck.uvoptx │ │ │ │ │ │ ├── CRC_CalculateAndCheck.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DAC/ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_Init.ewd │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_Init.uvoptx │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.ewd │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.uvoptx │ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── DAC_GenerateWaveform_TriggerHW/ │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DAC_GenerateWaveform_TriggerHW.ewd │ │ │ │ │ ├── DAC_GenerateWaveform_TriggerHW.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Example/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ ├── DMA_CopyFromFlashToMemory/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory.ewd │ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory.uvoptx │ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── DMA_CopyFromFlashToMemory_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewd │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvoptx │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── EXTI/ │ │ │ │ ├── EXTI_ToggleLedOnIT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── EXTI_ToggleLedOnIT.ewd │ │ │ │ │ │ ├── EXTI_ToggleLedOnIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── EXTI_ToggleLedOnIT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ewd │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.uvoptx │ │ │ │ │ ├── EXTI_ToggleLedOnIT_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ ├── GPIO_InfiniteLedToggling/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_InfiniteLedToggling.ewd │ │ │ │ │ │ ├── GPIO_InfiniteLedToggling.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── GPIO_InfiniteLedToggling.uvoptx │ │ │ │ │ │ ├── GPIO_InfiniteLedToggling.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── GPIO_InfiniteLedToggling_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewd │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvoptx │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ ├── I2C_OneBoard_Communication_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT.ewd │ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ewd │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.uvoptx │ │ │ │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── I2C_TwoBoards_WakeUpFromStop_IT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ewd │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.uvoptx │ │ │ │ │ ├── I2C_TwoBoards_WakeUpFromStop_IT_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ └── IWDG_RefreshUntilUserEvent_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ewd │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.uvoptx │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── LPTIM/ │ │ │ │ ├── LPTIM_PulseCounter/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPTIM_PulseCounter.ewd │ │ │ │ │ │ ├── LPTIM_PulseCounter.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── LPTIM_PulseCounter_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_PulseCounter_Init.ewd │ │ │ │ │ ├── LPTIM_PulseCounter_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_PulseCounter_Init.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_PulseCounter_Init.uvoptx │ │ │ │ │ ├── LPTIM_PulseCounter_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPUART/ │ │ │ │ └── LPUART_WakeUpFromStop/ │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPUART_WakeUpFromStop.ewd │ │ │ │ │ ├── LPUART_WakeUpFromStop.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Example/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR/ │ │ │ │ ├── PWR_EnterStandbyMode/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewd │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvoptx │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── PWR_EnterStandbyMode.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_EnterStopMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_EnterStopMode.ewd │ │ │ │ │ ├── PWR_EnterStopMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_EnterStopMode.uvoptx │ │ │ │ │ ├── PWR_EnterStopMode.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── PWR_EnterStopMode.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ ├── RCC_OutputSystemClockOnMCO/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ewd │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.uvoptx │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RCC_UseHSI_PLLasSystemClock/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewd │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvoptx │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ ├── RTC_Alarm/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Alarm.ewd │ │ │ │ │ │ ├── RTC_Alarm.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Alarm.uvoptx │ │ │ │ │ │ ├── RTC_Alarm.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Alarm_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Alarm_Init.ewd │ │ │ │ │ │ ├── RTC_Alarm_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Alarm_Init.uvoptx │ │ │ │ │ │ ├── RTC_Alarm_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RTC_Alarm_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.ewd │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.uvoptx │ │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Tamper_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Tamper_Init.ewd │ │ │ │ │ │ ├── RTC_Tamper_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Tamper_Init.uvoptx │ │ │ │ │ │ ├── RTC_Tamper_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── RTC_Tamper_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RTC_TimeStamp_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_TimeStamp_Init.ewd │ │ │ │ │ ├── RTC_TimeStamp_Init.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_TimeStamp_Init.uvoptx │ │ │ │ │ ├── RTC_TimeStamp_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── RTC_TimeStamp_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT.ewd │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewd │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvoptx │ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ewd │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.uvoptx │ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Master_Init.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_TwoBoards_FullDuplex_IT_Slave_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ewd │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.uvoptx │ │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── SPI_TwoBoards_FullDuplex_IT_Slave_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ ├── TIM_BreakAndDeadtime/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_BreakAndDeadtime.ewd │ │ │ │ │ │ ├── TIM_BreakAndDeadtime.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMA_Init.ewd │ │ │ │ │ │ ├── TIM_DMA_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMA_Init.uvoptx │ │ │ │ │ │ ├── TIM_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMA_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_InputCapture_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_InputCapture_Init.ewd │ │ │ │ │ │ ├── TIM_InputCapture_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_InputCapture_Init.uvoptx │ │ │ │ │ │ ├── TIM_InputCapture_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_InputCapture_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OutputCompare_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OutputCompare_Init.ewd │ │ │ │ │ │ ├── TIM_OutputCompare_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OutputCompare_Init.uvoptx │ │ │ │ │ │ ├── TIM_OutputCompare_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OutputCompare_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMOutput/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMOutput.ewd │ │ │ │ │ │ ├── TIM_PWMOutput.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMOutput.uvoptx │ │ │ │ │ │ ├── TIM_PWMOutput.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMOutput_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMOutput_Init.ewd │ │ │ │ │ │ ├── TIM_PWMOutput_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMOutput_Init.uvoptx │ │ │ │ │ │ ├── TIM_PWMOutput_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMOutput_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── TIM_TimeBase_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase_Init.ewd │ │ │ │ │ ├── TIM_TimeBase_Init.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase_Init.uvoptx │ │ │ │ │ ├── TIM_TimeBase_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase_Init.ioc │ │ │ │ └── readme.txt │ │ │ ├── USART/ │ │ │ │ ├── USART_Communication_Rx_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Rx_IT_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_TxRx_DMA/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA.ewd │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_TxRx_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.ewd │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_TxRx_DMA_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_IT/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_IT.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_IT.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_IT_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_IT_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_Communication_Tx_VCP_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.ewd │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.uvoptx │ │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_Communication_Tx_VCP_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_HardwareFlowControl_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.ewd │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.uvoptx │ │ │ │ │ │ ├── USART_HardwareFlowControl_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_HardwareFlowControl_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.ewd │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.uvoptx │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.ewd │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.uvoptx │ │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_SyncCommunication_FullDuplex_IT_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_WakeUpFromStop/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_WakeUpFromStop.ewd │ │ │ │ │ │ ├── USART_WakeUpFromStop.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── USART_WakeUpFromStop1_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.ewd │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.uvoptx │ │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── USART_WakeUpFromStop1_Init.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── USART_WakeUpFromStop_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── USART_WakeUpFromStop_Init.ewd │ │ │ │ │ ├── USART_WakeUpFromStop_Init.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── USART_WakeUpFromStop_Init.uvoptx │ │ │ │ │ ├── USART_WakeUpFromStop_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── USART_WakeUpFromStop_Init.ioc │ │ │ │ └── readme.txt │ │ │ ├── UTILS/ │ │ │ │ ├── UTILS_ConfigureSystemClock/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewd │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvoptx │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── UTILS_ReadDeviceInfo/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UTILS_ReadDeviceInfo.ewd │ │ │ │ │ ├── UTILS_ReadDeviceInfo.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UTILS_ReadDeviceInfo.uvoptx │ │ │ │ │ ├── UTILS_ReadDeviceInfo.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UTILS_ReadDeviceInfo.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_RefreshUntilUserEvent_Init/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ewd │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ewp │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ └── stm32g071xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.uvoptx │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.uvprojx │ │ │ │ └── startup_stm32g071xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ioc │ │ │ └── readme.txt │ │ ├── Examples_MIX/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_SingleConversion_TriggerSW_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ └── CRC_PolynomialUpdate/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_PolynomialUpdate.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.ewd │ │ │ │ │ ├── CRC_PolynomialUpdate.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.uvoptx │ │ │ │ │ ├── CRC_PolynomialUpdate.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ └── I2C_OneBoard_ComSlave7_10bits_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewd │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvoptx │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ └── TIM_PWMInput/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_PWMInput.ewd │ │ │ │ │ ├── TIM_PWMInput.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_PWMInput.uvoptx │ │ │ │ │ ├── TIM_PWMInput.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_PWMInput.ioc │ │ │ │ └── readme.txt │ │ │ └── UART/ │ │ │ ├── UART_HyperTerminal_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_HyperTerminal_IT.ewd │ │ │ │ │ ├── UART_HyperTerminal_IT.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_HyperTerminal_IT.uvoptx │ │ │ │ │ ├── UART_HyperTerminal_IT.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_HyperTerminal_IT.ioc │ │ │ │ └── readme.txt │ │ │ └── UART_HyperTerminal_TxPolling_RxIT/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ewd │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ewp │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ └── stm32g071xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.uvoptx │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.uvprojx │ │ │ │ └── startup_stm32g071xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ioc │ │ │ └── readme.txt │ │ ├── Templates/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── Templates.ewd │ │ │ │ ├── Templates.ewp │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ └── stm32g071xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Templates.uvoptx │ │ │ │ ├── Templates.uvprojx │ │ │ │ └── startup_stm32g071xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── Templates.ioc │ │ │ └── readme.txt │ │ └── Templates_LL/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates_LL.ewd │ │ │ ├── Templates_LL.ewp │ │ │ ├── startup_stm32g071xx.s │ │ │ └── stm32g071xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates_LL.uvoptx │ │ │ ├── Templates_LL.uvprojx │ │ │ └── startup_stm32g071xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G071RBTX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates_LL.ioc │ │ └── readme.txt │ ├── NUCLEO-G0B1RE/ │ │ ├── Applications/ │ │ │ ├── FreeRTOS/ │ │ │ │ ├── FreeRTOS_Queues/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.ewd │ │ │ │ │ │ ├── FreeRTOS_Queues.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Queues.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Queues.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Semaphore/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewd │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Semaphore.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── FreeRTOS_Timers/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FreeRTOS_Timers.ewd │ │ │ │ │ ├── FreeRTOS_Timers.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── FreeRTOS_Timers.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FreeRTOS_Timers.uvoptx │ │ │ │ │ ├── FreeRTOS_Timers.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Examples/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_MultiChannelSingleConversion/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_MultiChannelSingleConversion.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewd │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvoptx │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP/ │ │ │ │ └── COMP_CompareGpioVsVrefInt_Window_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.ewd │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.uvoptx │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_Window_IT.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CORTEX/ │ │ │ │ ├── CORTEXM_MPU/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_MPU.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.ewd │ │ │ │ │ │ ├── CORTEXM_MPU.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.uvoptx │ │ │ │ │ │ ├── CORTEXM_MPU.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ModePrivilege/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ModePrivilege.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewd │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvoptx │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ProcessStack/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ProcessStack.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewd │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvoptx │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CORTEXM_SysTick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEXM_SysTick.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEXM_SysTick.ewd │ │ │ │ │ ├── CORTEXM_SysTick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEXM_SysTick.uvoptx │ │ │ │ │ ├── CORTEXM_SysTick.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DAC/ │ │ │ │ └── DAC_SignalsGeneration/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DAC_SignalsGeneration.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DAC_SignalsGeneration.ewd │ │ │ │ │ ├── DAC_SignalsGeneration.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DAC_SignalsGeneration.uvoptx │ │ │ │ │ ├── DAC_SignalsGeneration.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FLASH/ │ │ │ │ └── FLASH_EraseProgram/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ ├── GPIO_Demo/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_Demo.ewd │ │ │ │ │ │ ├── GPIO_Demo.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── GPIO_Demo.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── GPIO_Demo.uvoptx │ │ │ │ │ │ ├── GPIO_Demo.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── GPIO_EXTI/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── GPIO_EXTI.ewd │ │ │ │ │ │ ├── GPIO_EXTI.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── GPIO_EXTI.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── GPIO_EXTI.uvoptx │ │ │ │ │ │ ├── GPIO_EXTI.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── GPIO_IOToggle/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── GPIO_IOToggle.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── HAL/ │ │ │ │ ├── HAL_TimeBase/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase.ewd │ │ │ │ │ │ ├── HAL_TimeBase.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_ALARM/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_alarm.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_WKUP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_wakeup.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── HAL_TimeBase_TIM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.ewd │ │ │ │ │ ├── HAL_TimeBase_TIM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── HAL_TimeBase_TIM.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.uvoptx │ │ │ │ │ ├── HAL_TimeBase_TIM.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ └── I2C_WakeUpFromStop/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.ewd │ │ │ │ │ ├── I2C_WakeUpFromStop.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── I2C_WakeUpFromStop.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_WakeUpFromStop.uvoptx │ │ │ │ │ ├── I2C_WakeUpFromStop.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ └── IWDG_Reset/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_Reset.ewd │ │ │ │ │ ├── IWDG_Reset.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── IWDG_Reset.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_Reset.uvoptx │ │ │ │ │ ├── IWDG_Reset.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── LPTIM/ │ │ │ │ └── LPTIM_PulseCounter/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_PulseCounter.ewd │ │ │ │ │ ├── LPTIM_PulseCounter.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_PulseCounter.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_PulseCounter.uvoptx │ │ │ │ │ ├── LPTIM_PulseCounter.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR/ │ │ │ │ ├── PWR_LPRUN/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_LPSLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.ewd │ │ │ │ │ │ ├── PWR_LPSLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.uvoptx │ │ │ │ │ │ ├── PWR_LPSLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── PWR_LPSLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_PVD/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_PVD.ewd │ │ │ │ │ │ ├── PWR_PVD.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_PVD.uvoptx │ │ │ │ │ │ ├── PWR_PVD.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── PWR_PVD.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_SLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_SLEEP.ewd │ │ │ │ │ │ ├── PWR_SLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_SLEEP.uvoptx │ │ │ │ │ │ ├── PWR_SLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── PWR_SLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_STANDBY/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_STANDBY.ewd │ │ │ │ │ ├── PWR_STANDBY.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_STANDBY.uvoptx │ │ │ │ │ ├── PWR_STANDBY.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── PWR_STANDBY.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ ├── RCC_LSEConfig/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RCC_LSEConfig.ewd │ │ │ │ │ │ ├── RCC_LSEConfig.ewp │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RCC_LSEConfig.uvoptx │ │ │ │ │ │ ├── RCC_LSEConfig.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── RCC_LSEConfig.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RCC_LSIConfig/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_LSIConfig.ewd │ │ │ │ │ ├── RCC_LSIConfig.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_LSIConfig.uvoptx │ │ │ │ │ ├── RCC_LSIConfig.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── RCC_LSIConfig.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ ├── RTC_LowPower_STANDBY/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.ewd │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.ewp │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.uvoptx │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── RTC_LowPower_STANDBY.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RTC_Tamper/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_Tamper.ewd │ │ │ │ │ ├── RTC_Tamper.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_Tamper.uvoptx │ │ │ │ │ ├── RTC_Tamper.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── RTC_Tamper.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewp │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComDMA_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ ├── TIM_DMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMA.ewd │ │ │ │ │ │ ├── TIM_DMA.ewp │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMA.uvoptx │ │ │ │ │ │ ├── TIM_DMA.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── TIM_PWMOutput/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_PWMOutput.ewd │ │ │ │ │ ├── TIM_PWMOutput.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_PWMOutput.uvoptx │ │ │ │ │ ├── TIM_PWMOutput.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_PWMOutput.ioc │ │ │ │ └── readme.txt │ │ │ ├── UART/ │ │ │ │ └── UART_TwoBoards_ComDMA/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewd │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvoptx │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_TwoBoards_ComDMA.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_Example.ewd │ │ │ │ ├── WWDG_Example.ewp │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_Example.uvoptx │ │ │ │ ├── WWDG_Example.uvprojx │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_Example.ioc │ │ │ └── readme.txt │ │ ├── Examples_LL/ │ │ │ ├── ADC/ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ewd │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.uvoptx │ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── ADC_SingleConversion_TriggerSW_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP/ │ │ │ │ └── COMP_CompareGpioVsVrefInt_IT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.ewd │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.uvoptx │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CORTEX/ │ │ │ │ └── CORTEX_MPU/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEX_MPU.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEX_MPU.ewd │ │ │ │ │ ├── CORTEX_MPU.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEX_MPU.uvoptx │ │ │ │ │ ├── CORTEX_MPU.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ └── CRC_CalculateAndCheck/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_CalculateAndCheck.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_CalculateAndCheck.ewd │ │ │ │ │ ├── CRC_CalculateAndCheck.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_CalculateAndCheck.uvoptx │ │ │ │ │ ├── CRC_CalculateAndCheck.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRS/ │ │ │ │ ├── CRS_Synchronization_IT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRS_Synchronization_IT.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRS_Synchronization_IT.ewd │ │ │ │ │ │ ├── CRS_Synchronization_IT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRS_Synchronization_IT.uvoptx │ │ │ │ │ │ ├── CRS_Synchronization_IT.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRS_Synchronization_Polling/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRS_Synchronization_Polling.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRS_Synchronization_Polling.ewd │ │ │ │ │ ├── CRS_Synchronization_Polling.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRS_Synchronization_Polling.uvoptx │ │ │ │ │ ├── CRS_Synchronization_Polling.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DAC/ │ │ │ │ └── DAC_GenerateConstantSignal_TriggerSW_LP_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.ewd │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.uvoptx │ │ │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW_LP_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_CopyFromFlashToMemory_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewd │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvoptx │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ └── GPIO_InfiniteLedToggling_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewd │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvoptx │ │ │ │ │ ├── GPIO_InfiniteLedToggling_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ └── I2C_OneBoard_Communication_IT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.ewd │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.uvoptx │ │ │ │ │ ├── I2C_OneBoard_Communication_IT_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ └── IWDG_RefreshUntilUserEvent_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ewd │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.uvoptx │ │ │ │ │ ├── IWDG_RefreshUntilUserEvent_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── LPTIM/ │ │ │ │ └── LPTIM_PulseCounter_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_PulseCounter_Init.ewd │ │ │ │ │ ├── LPTIM_PulseCounter_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_PulseCounter_Init.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_PulseCounter_Init.uvoptx │ │ │ │ │ ├── LPTIM_PulseCounter_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPUART/ │ │ │ │ └── LPUART_WakeUpFromStop_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.ewd │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPUART_WakeUpFromStop_Init.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.uvoptx │ │ │ │ │ ├── LPUART_WakeUpFromStop_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR/ │ │ │ │ ├── PWR_EnterStandbyMode/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewd │ │ │ │ │ │ ├── PWR_EnterStandbyMode.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvoptx │ │ │ │ │ │ ├── PWR_EnterStandbyMode.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── PWR_EnterStandbyMode.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_EnterStopMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_EnterStopMode.ewd │ │ │ │ │ ├── PWR_EnterStopMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_EnterStopMode.uvoptx │ │ │ │ │ ├── PWR_EnterStopMode.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── PWR_EnterStopMode.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ ├── RCC_OutputSystemClockOnMCO/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ewd │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ewp │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.uvoptx │ │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── RCC_OutputSystemClockOnMCO.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RCC_UseHSI_PLLasSystemClock/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewd │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvoptx │ │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── RCC_UseHSI_PLLasSystemClock.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ └── RTC_Alarm_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_Alarm_Init.ewd │ │ │ │ │ ├── RTC_Alarm_Init.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_Alarm_Init.uvoptx │ │ │ │ │ ├── RTC_Alarm_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── RTC_Alarm_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ └── SPI_OneBoard_HalfDuplex_IT_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewd │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvoptx │ │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── SPI_OneBoard_HalfDuplex_IT_Init.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART/ │ │ │ │ └── USART_Communication_Rx_IT_Continuous_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ewd │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.uvoptx │ │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── USART_Communication_Rx_IT_Continuous_Init.ioc │ │ │ │ └── readme.txt │ │ │ ├── UTILS/ │ │ │ │ ├── UTILS_ConfigureSystemClock/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewd │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ewp │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvoptx │ │ │ │ │ │ ├── UTILS_ConfigureSystemClock.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UTILS_ConfigureSystemClock.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── UTILS_ReadDeviceInfo/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UTILS_ReadDeviceInfo.ewd │ │ │ │ │ ├── UTILS_ReadDeviceInfo.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UTILS_ReadDeviceInfo.uvoptx │ │ │ │ │ ├── UTILS_ReadDeviceInfo.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UTILS_ReadDeviceInfo.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_RefreshUntilUserEvent_Init/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ewd │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ewp │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.uvoptx │ │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.uvprojx │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_RefreshUntilUserEvent_Init.ioc │ │ │ └── readme.txt │ │ ├── Examples_MIX/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_SingleConversion_TriggerSW_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewd │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvoptx │ │ │ │ │ ├── ADC_SingleConversion_TriggerSW_IT.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ └── CRC_PolynomialUpdate/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_PolynomialUpdate.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.ewd │ │ │ │ │ ├── CRC_PolynomialUpdate.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.uvoptx │ │ │ │ │ ├── CRC_PolynomialUpdate.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ └── I2C_OneBoard_ComSlave7_10bits_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewd │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvoptx │ │ │ │ │ ├── I2C_OneBoard_ComSlave7_10bits_IT.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── PWR/ │ │ │ │ └── PWR_STOP1/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_STOP1.ewd │ │ │ │ │ ├── PWR_STOP1.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ ├── stm32g0b1xx_flash.icf │ │ │ │ │ └── stm32g0b1xx_sram.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_STOP1.uvoptx │ │ │ │ │ ├── PWR_STOP1.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── PWR_STOP1.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ └── TIM_PWMInput/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_PWMInput.ewd │ │ │ │ │ ├── TIM_PWMInput.ewp │ │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_PWMInput.uvoptx │ │ │ │ │ ├── TIM_PWMInput.uvprojx │ │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_PWMInput.ioc │ │ │ │ └── readme.txt │ │ │ └── UART/ │ │ │ └── UART_HyperTerminal_TxPolling_RxIT/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ewd │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ewp │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.uvoptx │ │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.uvprojx │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── UART_HyperTerminal_TxPolling_RxIT.ioc │ │ │ └── readme.txt │ │ ├── Templates/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── Templates.ewd │ │ │ │ ├── Templates.ewp │ │ │ │ ├── startup_stm32g0b1xx.s │ │ │ │ └── stm32g0b1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Templates.uvoptx │ │ │ │ ├── Templates.uvprojx │ │ │ │ └── startup_stm32g0b1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── Templates.ioc │ │ │ └── readme.txt │ │ └── Templates_LL/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates_LL.ewd │ │ │ ├── Templates_LL.ewp │ │ │ ├── startup_stm32g0b1xx.s │ │ │ └── stm32g0b1xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates_LL.uvoptx │ │ │ ├── Templates_LL.uvprojx │ │ │ └── startup_stm32g0b1xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g0b1retx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G0B1RETX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates_LL.ioc │ │ └── readme.txt │ ├── Release_Notes.html │ ├── STM32CubeProjectsList.html │ ├── STM32G0316-DISCO/ │ │ ├── Applications/ │ │ │ ├── FreeRTOS/ │ │ │ │ ├── FreeRTOS_Mail/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.ewd │ │ │ │ │ │ ├── FreeRTOS_Mail.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mail.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mail.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── FreeRTOS_Queues/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FreeRTOS_Queues.ewd │ │ │ │ │ ├── FreeRTOS_Queues.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── FreeRTOS_Queues.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FreeRTOS_Queues.uvoptx │ │ │ │ │ ├── FreeRTOS_Queues.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Demonstrations/ │ │ │ ├── Binary/ │ │ │ │ └── readme.txt │ │ │ ├── EWARM/ │ │ │ │ ├── Demo.ewd │ │ │ │ ├── Demo.ewp │ │ │ │ ├── Demo.eww │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ └── stm32g031xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Demo.uvoptx │ │ │ │ ├── Demo.uvprojx │ │ │ │ └── startup_stm32g031xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── Examples/ │ │ │ ├── ADC/ │ │ │ │ └── ADC_ContinuousConversion_TriggerSW/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewd │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.uvoptx │ │ │ │ │ ├── ADC_ContinuousConversion_TriggerSW.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── Cortex/ │ │ │ │ └── CORTEXM_SysTick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEXM_SysTick.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEXM_SysTick.ewd │ │ │ │ │ ├── CORTEXM_SysTick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEXM_SysTick.uvoptx │ │ │ │ │ ├── CORTEXM_SysTick.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FLASH/ │ │ │ │ └── FLASH_EraseProgram/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ └── GPIO_IOToggle/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── GPIO_IOToggle.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ └── IWDG_WindowMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_WindowMode.ewd │ │ │ │ │ ├── IWDG_WindowMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── IWDG_WindowMode.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_WindowMode.uvoptx │ │ │ │ │ ├── IWDG_WindowMode.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── PWR/ │ │ │ │ └── PWR_LPRUN/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ └── RCC_LSIConfig/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_LSIConfig.ewd │ │ │ │ │ ├── RCC_LSIConfig.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_LSIConfig.uvoptx │ │ │ │ │ ├── RCC_LSIConfig.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── RCC_LSIConfig.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ └── RTC_Alarm/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_Alarm.ewd │ │ │ │ │ ├── RTC_Alarm.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_Alarm.uvoptx │ │ │ │ │ ├── RTC_Alarm.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── RTC_Alarm.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ └── TIM_TimeBase/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase.ewd │ │ │ │ │ ├── TIM_TimeBase.ewp │ │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ │ └── stm32g031xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase.uvoptx │ │ │ │ │ ├── TIM_TimeBase.uvprojx │ │ │ │ │ └── startup_stm32g031xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_Example.ewd │ │ │ │ ├── WWDG_Example.ewp │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ └── stm32g031xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_Example.uvoptx │ │ │ │ ├── WWDG_Example.uvprojx │ │ │ │ └── startup_stm32g031xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_Example.ioc │ │ │ └── readme.txt │ │ ├── Templates/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── Templates.ewd │ │ │ │ ├── Templates.ewp │ │ │ │ ├── startup_stm32g031xx.s │ │ │ │ └── stm32g031xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Templates.uvoptx │ │ │ │ ├── Templates.uvprojx │ │ │ │ └── startup_stm32g031xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G031J6MX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── Templates.ioc │ │ │ └── readme.txt │ │ └── Templates_LL/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates_LL.ewd │ │ │ ├── Templates_LL.ewp │ │ │ ├── startup_stm32g031xx.s │ │ │ └── stm32g031xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates_LL.uvoptx │ │ │ ├── Templates_LL.uvprojx │ │ │ └── startup_stm32g031xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g031j6mx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G031J6MX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates_LL.ioc │ │ └── readme.txt │ ├── STM32G071B-DISCO/ │ │ ├── Demonstrations/ │ │ │ ├── Binary/ │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ └── USBPD_Analyzer/ │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── USBPD_Analyzer.ewd │ │ │ │ ├── USBPD_Analyzer.ewp │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ └── stm32g071xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── demo_disco.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ ├── usbpd_gui_memmap.h │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ └── usbpd_vdm_user.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32g071xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ ├── STMicroelectronics_USBPD_Analyzer_STM32G071RB_VIF.xml │ │ │ ├── Src/ │ │ │ │ ├── demo_disco.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ └── usbpd_vdm_user.c │ │ │ └── readme.txt │ │ ├── Examples/ │ │ │ ├── CRC/ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Example/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Example.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Example.ewd │ │ │ │ │ │ ├── CRC_Example.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Example.uvoptx │ │ │ │ │ │ ├── CRC_Example.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── Cortex/ │ │ │ │ ├── CORTEXM_MPU/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_MPU.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.ewd │ │ │ │ │ │ ├── CORTEXM_MPU.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_MPU.uvoptx │ │ │ │ │ │ ├── CORTEXM_MPU.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ModePrivilege/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ModePrivilege.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewd │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvoptx │ │ │ │ │ │ ├── CORTEXM_ModePrivilege.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CORTEXM_ProcessStack/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CORTEXM_ProcessStack.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewd │ │ │ │ │ │ ├── CORTEXM_ProcessStack.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvoptx │ │ │ │ │ │ ├── CORTEXM_ProcessStack.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CORTEXM_SysTick/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEXM_SysTick.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEXM_SysTick.ewd │ │ │ │ │ ├── CORTEXM_SysTick.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEXM_SysTick.uvoptx │ │ │ │ │ ├── CORTEXM_SysTick.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FLASH/ │ │ │ │ └── FLASH_EraseProgram/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ └── GPIO_IOToggle/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── GPIO_IOToggle.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ ├── IWDG_Reset/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── IWDG_Reset.ewd │ │ │ │ │ │ ├── IWDG_Reset.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ │ ├── IWDG_Reset.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── IWDG_Reset.uvoptx │ │ │ │ │ │ ├── IWDG_Reset.uvprojx │ │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── IWDG_WindowMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_WindowMode.ewd │ │ │ │ │ ├── IWDG_WindowMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── IWDG_WindowMode.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_WindowMode.uvoptx │ │ │ │ │ ├── IWDG_WindowMode.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── PWR/ │ │ │ │ └── PWR_LPRUN/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ └── RCC_SwitchClock/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_SwitchClock.ewd │ │ │ │ │ ├── RCC_SwitchClock.ewp │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_SwitchClock.uvoptx │ │ │ │ │ ├── RCC_SwitchClock.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── RCC_SwitchClock.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_Example.ewd │ │ │ │ ├── WWDG_Example.ewp │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ └── stm32g071xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_Example.uvoptx │ │ │ │ ├── WWDG_Example.uvprojx │ │ │ │ └── startup_stm32g071xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_Example.ioc │ │ │ └── readme.txt │ │ ├── Examples_LL/ │ │ │ ├── DMA/ │ │ │ │ └── DMA_CopyFromFlashToMemory_Init/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewd │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvoptx │ │ │ │ │ ├── DMA_CopyFromFlashToMemory_Init.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Examples_MIX/ │ │ │ ├── CRC/ │ │ │ │ └── CRC_PolynomialUpdate/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_PolynomialUpdate.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.ewd │ │ │ │ │ ├── CRC_PolynomialUpdate.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_PolynomialUpdate.uvoptx │ │ │ │ │ ├── CRC_PolynomialUpdate.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ │ └── stm32g071xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g071xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LICENSE.md │ │ ├── Templates/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── Templates.ewd │ │ │ │ ├── Templates.ewp │ │ │ │ ├── startup_stm32g071xx.s │ │ │ │ └── stm32g071xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Templates.uvoptx │ │ │ │ ├── Templates.uvprojx │ │ │ │ └── startup_stm32g071xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G071RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── Templates.ioc │ │ │ └── readme.txt │ │ └── Templates_LL/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates_LL.ewd │ │ │ ├── Templates_LL.ewp │ │ │ ├── startup_stm32g071xx.s │ │ │ └── stm32g071xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates_LL.uvoptx │ │ │ ├── Templates_LL.uvprojx │ │ │ └── startup_stm32g071xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g071rbtx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G071RBTX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates_LL.ioc │ │ └── readme.txt │ ├── STM32G081B-EVAL/ │ │ ├── Applications/ │ │ │ ├── FatFs/ │ │ │ │ └── FatFs_uSD_Standalone/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FatFs_uSD_Standalone.ewd │ │ │ │ │ ├── FatFs_uSD_Standalone.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── FATFS/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── app_fatfs.c │ │ │ │ │ │ └── app_fatfs.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── sd_diskio.c │ │ │ │ │ └── sd_diskio.h │ │ │ │ ├── FatFs_uSD_Standalone.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FatFs_uSD_Standalone.uvoptx │ │ │ │ │ ├── FatFs_uSD_Standalone.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── Startup/ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS/ │ │ │ │ ├── FreeRTOS_Mail/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.ewd │ │ │ │ │ │ ├── FreeRTOS_Mail.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mail.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mail.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mail.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Mutexes/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Mutexes.ewd │ │ │ │ │ │ ├── FreeRTOS_Mutexes.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Mutexes.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Mutexes.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Mutexes.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Queues/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.ewd │ │ │ │ │ │ ├── FreeRTOS_Queues.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Queues.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Queues.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Queues.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Semaphore/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewd │ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Semaphore.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_SemaphoreFromISR/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ewd │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.uvoptx │ │ │ │ │ │ ├── FreeRTOS_SemaphoreFromISR.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_Signal/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_Signal.ewd │ │ │ │ │ │ ├── FreeRTOS_Signal.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_Signal.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_Signal.uvoptx │ │ │ │ │ │ ├── FreeRTOS_Signal.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_SignalFromISR/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ewd │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_SignalFromISR.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.uvoptx │ │ │ │ │ │ ├── FreeRTOS_SignalFromISR.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── FreeRTOS_ThreadCreation/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ewd │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── FreeRTOS_ThreadCreation.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.uvoptx │ │ │ │ │ │ ├── FreeRTOS_ThreadCreation.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── FreeRTOS_Timers/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FreeRTOS_Timers.ewd │ │ │ │ │ ├── FreeRTOS_Timers.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── FreeRTOS_Timers.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FreeRTOS_Timers.uvoptx │ │ │ │ │ ├── FreeRTOS_Timers.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ └── USB-PD/ │ │ │ ├── USB-PD_Consumer_1port/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── USB-PD_Consumer_1port.ewd │ │ │ │ │ ├── USB-PD_Consumer_1port.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ │ ├── usbpd.h │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd_dpm_core.h │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_gui_memmap.h │ │ │ │ │ ├── usbpd_os_port.h │ │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ ├── usbpd_pwr_user.h │ │ │ │ │ └── usbpd_vdm_user.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── USB-PD_Consumer_1port.uvoptx │ │ │ │ │ ├── USB-PD_Consumer_1port.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ │ ├── usbpd.c │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ ├── usbpd_pwr_user.c │ │ │ │ │ └── usbpd_vdm_user.c │ │ │ │ ├── USB-PD_Consumer_1port.ioc │ │ │ │ └── readme.txt │ │ │ └── USB-PD_Provider_1port/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── USB-PD_Provider_1port.ewd │ │ │ │ ├── USB-PD_Provider_1port.ewp │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ └── stm32g081xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ ├── usbpd.h │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ ├── usbpd_dpm_core.h │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ ├── usbpd_os_port.h │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ ├── usbpd_pwr_user.h │ │ │ │ └── usbpd_vdm_user.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── USB-PD_Provider_1port.uvoptx │ │ │ │ ├── USB-PD_Provider_1port.uvprojx │ │ │ │ └── startup_stm32g081xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── app_freertos.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ ├── usbpd.c │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ ├── usbpd_pwr_user.c │ │ │ │ └── usbpd_vdm_user.c │ │ │ ├── USB-PD_Provider_1port.ioc │ │ │ └── readme.txt │ │ ├── Demonstrations/ │ │ │ ├── Binary/ │ │ │ │ ├── SD_card/ │ │ │ │ │ ├── STM32.TXT │ │ │ │ │ └── USER/ │ │ │ │ │ ├── Dir1/ │ │ │ │ │ │ ├── Dir11/ │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── Dir2/ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── readme.txt │ │ │ │ └── readme.txt │ │ │ ├── Common/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── sd_diskio.h │ │ │ │ │ └── utils.h │ │ │ │ └── Src/ │ │ │ │ ├── sd_diskio.c │ │ │ │ └── utils.c │ │ │ ├── Config/ │ │ │ │ ├── ffconf.h │ │ │ │ ├── k_config.h │ │ │ │ └── stm32g0xx_hal_conf.h │ │ │ ├── Core/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── k_demo.h │ │ │ │ │ ├── k_menu.h │ │ │ │ │ ├── k_module.h │ │ │ │ │ ├── k_storage.h │ │ │ │ │ ├── k_tools.h │ │ │ │ │ ├── k_widgets.h │ │ │ │ │ └── k_window.h │ │ │ │ └── Src/ │ │ │ │ ├── k_demo.c │ │ │ │ ├── k_menu.c │ │ │ │ ├── k_module.c │ │ │ │ ├── k_storage.c │ │ │ │ ├── k_tools.c │ │ │ │ ├── k_widgets.c │ │ │ │ └── k_window.c │ │ │ ├── DemoLegacy/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Legacy.ewd │ │ │ │ │ ├── Legacy.ewp │ │ │ │ │ ├── Legacy.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ ├── stm32g081xx_flash.icf │ │ │ │ │ └── stm32g081xx_flash_relocate.icf │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── Modules/ │ │ │ │ │ ├── audio/ │ │ │ │ │ │ ├── app_audio.c │ │ │ │ │ │ ├── app_audio.h │ │ │ │ │ │ ├── wave_player.c │ │ │ │ │ │ ├── wave_player.h │ │ │ │ │ │ ├── wave_recorder.c │ │ │ │ │ │ └── wave_recorder.h │ │ │ │ │ ├── calendar/ │ │ │ │ │ │ ├── app_calendar.c │ │ │ │ │ │ └── app_calendar.h │ │ │ │ │ ├── filebrowser/ │ │ │ │ │ │ ├── app_filesbrowser.c │ │ │ │ │ │ └── app_filesbrowser.h │ │ │ │ │ ├── help/ │ │ │ │ │ │ ├── app_help.c │ │ │ │ │ │ └── app_help.h │ │ │ │ │ ├── imagebrowser/ │ │ │ │ │ │ ├── app_imagesbrowser.c │ │ │ │ │ │ └── app_imagesbrowser.h │ │ │ │ │ ├── lowpower/ │ │ │ │ │ │ ├── app_lowpower.c │ │ │ │ │ │ └── app_lowpower.h │ │ │ │ │ ├── main_app/ │ │ │ │ │ │ ├── app_main.c │ │ │ │ │ │ └── app_main.h │ │ │ │ │ └── thermometer_LDR/ │ │ │ │ │ ├── app_thermometer_ldr.c │ │ │ │ │ └── app_thermometer_ldr.h │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Demo/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── Startup/ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ └── STM32G081RBTX_FLASH_Standalone.ld │ │ │ │ └── readme.txt │ │ │ ├── DemoLoader/ │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DemoLoader.ewd │ │ │ │ │ ├── DemoLoader.ewp │ │ │ │ │ ├── DemoLoader.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ ├── STM32G081B-EVAL_DEMO.sct │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DemoUCPD/ │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ ├── stm32g081xx_flash.icf │ │ │ │ │ ├── stm32g081xx_flash_GUI.icf │ │ │ │ │ └── stm32g081xx_flash_relocate.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── demo_application.h │ │ │ │ │ ├── lcd_log_conf.h │ │ │ │ │ ├── logo_STM32_G0.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stlogo.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_gui_memmap.h │ │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ └── usbpd_vdm_user.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH-Stanalone.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── demo_application.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g081xx_flash.icf │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ └── usbpd_vdm_user.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ └── STMicroelectronics_DemoUCPD_VIF.xml │ │ ├── Examples/ │ │ │ ├── ADC/ │ │ │ │ ├── ADC_MultiChannelSingleConversion/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewd │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvoptx │ │ │ │ │ │ ├── ADC_MultiChannelSingleConversion.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── ADC_Oversampling/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── ADC_Oversampling.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── ADC_Oversampling.ewd │ │ │ │ │ ├── ADC_Oversampling.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── ADC_Oversampling.uvoptx │ │ │ │ │ ├── ADC_Oversampling.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── BSP/ │ │ │ │ └── BSP_Example/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── BSP_Example.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── BSP_Example.ewd │ │ │ │ │ ├── BSP_Example.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── lcd_log_conf.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stlogo.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── BSP_Example.uvoptx │ │ │ │ │ ├── BSP_Example.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── joystick.c │ │ │ │ │ ├── lcd.c │ │ │ │ │ ├── log.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── sd.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ │ └── temperature_sensor.c │ │ │ │ └── readme.txt │ │ │ ├── CEC/ │ │ │ │ ├── CEC_DataExchange_Device_1/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CEC_DataExchange_Device_1.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CEC_DataExchange_Device_1.ewd │ │ │ │ │ │ ├── CEC_DataExchange_Device_1.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CEC_DataExchange_Device_1.uvoptx │ │ │ │ │ │ ├── CEC_DataExchange_Device_1.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CEC_DataExchange_Device_2/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CEC_DataExchange_Device_2.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CEC_DataExchange_Device_2.ewd │ │ │ │ │ │ ├── CEC_DataExchange_Device_2.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CEC_DataExchange_Device_2.uvoptx │ │ │ │ │ │ ├── CEC_DataExchange_Device_2.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CEC_ListenMode_Device_1/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CEC_ListenMode_Device_1.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CEC_ListenMode_Device_1.ewd │ │ │ │ │ │ ├── CEC_ListenMode_Device_1.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CEC_ListenMode_Device_1.uvoptx │ │ │ │ │ │ ├── CEC_ListenMode_Device_1.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CEC_ListenMode_Device_2/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CEC_ListenMode_Device_2.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CEC_ListenMode_Device_2.ewd │ │ │ │ │ │ ├── CEC_ListenMode_Device_2.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CEC_ListenMode_Device_2.uvoptx │ │ │ │ │ │ ├── CEC_ListenMode_Device_2.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CEC_ListenMode_Device_3/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CEC_ListenMode_Device_3.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CEC_ListenMode_Device_3.ewd │ │ │ │ │ │ ├── CEC_ListenMode_Device_3.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CEC_ListenMode_Device_3.uvoptx │ │ │ │ │ │ ├── CEC_ListenMode_Device_3.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CEC_MultiAddress_Device_1/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CEC_MultiAddress_Device_1.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CEC_MultiAddress_Device_1.ewd │ │ │ │ │ │ ├── CEC_MultiAddress_Device_1.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CEC_MultiAddress_Device_1.uvoptx │ │ │ │ │ │ ├── CEC_MultiAddress_Device_1.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CEC_MultiAddress_Device_2/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CEC_MultiAddress_Device_2.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CEC_MultiAddress_Device_2.ewd │ │ │ │ │ ├── CEC_MultiAddress_Device_2.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CEC_MultiAddress_Device_2.uvoptx │ │ │ │ │ ├── CEC_MultiAddress_Device_2.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP/ │ │ │ │ └── COMP_CompareGpioVsVrefInt_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewd │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.uvoptx │ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC/ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Bytes_Stream_7bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewd │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvoptx │ │ │ │ │ │ ├── CRC_Data_Reversing_16bit_CRC.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRC_Example/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRC_Example.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRC_Example.ewd │ │ │ │ │ │ ├── CRC_Example.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRC_Example.uvoptx │ │ │ │ │ │ ├── CRC_Example.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRC_UserDefinedPolynomial/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRC_UserDefinedPolynomial.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewd │ │ │ │ │ ├── CRC_UserDefinedPolynomial.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvoptx │ │ │ │ │ ├── CRC_UserDefinedPolynomial.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRYP/ │ │ │ │ ├── CRYP_AESModes/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRYP_AESModes.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRYP_AESModes.ewd │ │ │ │ │ │ ├── CRYP_AESModes.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Expected_Results.txt │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRYP_AESModes.uvoptx │ │ │ │ │ │ ├── CRYP_AESModes.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRYP_AESModes_Suspension/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRYP_AESModes_Suspension.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRYP_AESModes_Suspension.ewd │ │ │ │ │ │ ├── CRYP_AESModes_Suspension.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRYP_AESModes_Suspension.uvoptx │ │ │ │ │ │ ├── CRYP_AESModes_Suspension.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRYP_DMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRYP_DMA.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRYP_DMA.ewd │ │ │ │ │ │ ├── CRYP_DMA.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Expected_Results.txt │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRYP_DMA.uvoptx │ │ │ │ │ │ ├── CRYP_DMA.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── CRYP_GCM_GMAC_CCM_Modes/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── CRYP_GCM_GMAC_CCM_Modes.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── CRYP_GCM_GMAC_CCM_Modes.ewd │ │ │ │ │ │ ├── CRYP_GCM_GMAC_CCM_Modes.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── CRYP_GCM_GMAC_CCM_Modes.uvoptx │ │ │ │ │ │ ├── CRYP_GCM_GMAC_CCM_Modes.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── CRYP_GCM_Suspension/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CRYP_GCM_Suspension.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CRYP_GCM_Suspension.ewd │ │ │ │ │ ├── CRYP_GCM_Suspension.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CRYP_GCM_Suspension.uvoptx │ │ │ │ │ ├── CRYP_GCM_Suspension.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DAC/ │ │ │ │ ├── DAC_SignalsGeneration/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── DAC_SignalsGeneration.ioc │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── DAC_SignalsGeneration.ewd │ │ │ │ │ │ ├── DAC_SignalsGeneration.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── DAC_SignalsGeneration.uvoptx │ │ │ │ │ │ ├── DAC_SignalsGeneration.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── DAC_SimpleConversion/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DAC_SimpleConversion.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DAC_SimpleConversion.ewd │ │ │ │ │ ├── DAC_SimpleConversion.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DAC_SimpleConversion.uvoptx │ │ │ │ │ ├── DAC_SimpleConversion.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DMA/ │ │ │ │ └── DMA_FLASHToRAM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FLASH/ │ │ │ │ └── FLASH_EraseProgram/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO/ │ │ │ │ └── GPIO_IOToggle/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── GPIO_IOToggle.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── HAL/ │ │ │ │ ├── HAL_TimeBase/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase.ewd │ │ │ │ │ │ ├── HAL_TimeBase.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_ALARM/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_alarm.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── HAL_TimeBase_RTC_WKUP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewd │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvoptx │ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_wakeup.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── HAL_TimeBase_TIM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.ewd │ │ │ │ │ ├── HAL_TimeBase_TIM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── HAL_TimeBase_TIM.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HAL_TimeBase_TIM.uvoptx │ │ │ │ │ ├── HAL_TimeBase_TIM.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C/ │ │ │ │ ├── I2C_EEPROM/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_EEPROM.ewd │ │ │ │ │ │ ├── I2C_EEPROM.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_EEPROM.uvoptx │ │ │ │ │ │ ├── I2C_EEPROM.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComDMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── I2C_TwoBoards_ComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewd │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── I2C_TwoBoards_ComIT.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvoptx │ │ │ │ │ │ ├── I2C_TwoBoards_ComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── I2C_TwoBoards_ComPolling/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewd │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── I2C_TwoBoards_ComPolling.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvoptx │ │ │ │ │ ├── I2C_TwoBoards_ComPolling.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── IWDG/ │ │ │ │ ├── IWDG_Reset/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── IWDG_Reset.ewd │ │ │ │ │ │ ├── IWDG_Reset.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── IWDG_Reset.ioc │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── IWDG_Reset.uvoptx │ │ │ │ │ │ ├── IWDG_Reset.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── IWDG_WindowMode/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── IWDG_WindowMode.ewd │ │ │ │ │ ├── IWDG_WindowMode.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── IWDG_WindowMode.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── IWDG_WindowMode.uvoptx │ │ │ │ │ ├── IWDG_WindowMode.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LICENSE.md │ │ │ ├── LPTIM/ │ │ │ │ ├── LPTIM_PWMExternalClock/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.ewd │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── LPTIM_PWMExternalClock.ioc │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.uvoptx │ │ │ │ │ │ ├── LPTIM_PWMExternalClock.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── LPTIM_PWM_LSE/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPTIM_PWM_LSE.ewd │ │ │ │ │ │ ├── LPTIM_PWM_LSE.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── LPTIM_PWM_LSE.ioc │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── LPTIM_PWM_LSE.uvoptx │ │ │ │ │ │ ├── LPTIM_PWM_LSE.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── LPTIM_PulseCounter/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPTIM_PulseCounter.ewd │ │ │ │ │ │ ├── LPTIM_PulseCounter.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── LPTIM_PulseCounter.ioc │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── LPTIM_PulseCounter.uvoptx │ │ │ │ │ │ ├── LPTIM_PulseCounter.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── LPTIM_Timeout/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_Timeout.ewd │ │ │ │ │ ├── LPTIM_Timeout.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_Timeout.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_Timeout.uvoptx │ │ │ │ │ ├── LPTIM_Timeout.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR/ │ │ │ │ ├── PWR_LPRUN/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_LPSLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.ewd │ │ │ │ │ │ ├── PWR_LPSLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_LPSLEEP.uvoptx │ │ │ │ │ │ ├── PWR_LPSLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── PWR_LPSLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_PVD/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_PVD.ewd │ │ │ │ │ │ ├── PWR_PVD.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_PVD.uvoptx │ │ │ │ │ │ ├── PWR_PVD.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── PWR_PVD.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── PWR_SLEEP/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── PWR_SLEEP.ewd │ │ │ │ │ │ ├── PWR_SLEEP.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── PWR_SLEEP.uvoptx │ │ │ │ │ │ ├── PWR_SLEEP.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── PWR_SLEEP.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── PWR_STANDBY/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_STANDBY.ewd │ │ │ │ │ ├── PWR_STANDBY.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_STANDBY.uvoptx │ │ │ │ │ ├── PWR_STANDBY.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── PWR_STANDBY.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC/ │ │ │ │ ├── RCC_ClockConfig/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RCC_ClockConfig.ewd │ │ │ │ │ │ ├── RCC_ClockConfig.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RCC_ClockConfig.uvoptx │ │ │ │ │ │ ├── RCC_ClockConfig.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── RCC_ClockConfig.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RCC_SwitchClock/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_SwitchClock.ewd │ │ │ │ │ ├── RCC_SwitchClock.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_SwitchClock.uvoptx │ │ │ │ │ ├── RCC_SwitchClock.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── RCC_SwitchClock.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RNG/ │ │ │ │ ├── RNG_MultiRNG/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RNG_MultiRNG.ewd │ │ │ │ │ │ ├── RNG_MultiRNG.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RNG_MultiRNG.uvoptx │ │ │ │ │ │ ├── RNG_MultiRNG.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── RNG_MultiRNG.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RNG_MultiRNG_IT/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RNG_MultiRNG_IT.ewd │ │ │ │ │ ├── RNG_MultiRNG_IT.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RNG_MultiRNG_IT.uvoptx │ │ │ │ │ ├── RNG_MultiRNG_IT.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── RNG_MultiRNG_IT.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC/ │ │ │ │ ├── RTC_Alarm/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Alarm.ewd │ │ │ │ │ │ ├── RTC_Alarm.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Alarm.uvoptx │ │ │ │ │ │ ├── RTC_Alarm.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── RTC_Alarm.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Calendar/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Calendar.ewd │ │ │ │ │ │ ├── RTC_Calendar.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Calendar.uvoptx │ │ │ │ │ │ ├── RTC_Calendar.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── RTC_Calendar.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_InternalTimeStamp/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_InternalTimeStamp.ewd │ │ │ │ │ │ ├── RTC_InternalTimeStamp.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_InternalTimeStamp.uvoptx │ │ │ │ │ │ ├── RTC_InternalTimeStamp.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── RTC_InternalTimeStamp.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_LSI/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_LSI.ewd │ │ │ │ │ │ ├── RTC_LSI.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_LSI.uvoptx │ │ │ │ │ │ ├── RTC_LSI.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── RTC_LSI.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_LowPower_STANDBY/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.ewd │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.uvoptx │ │ │ │ │ │ ├── RTC_LowPower_STANDBY.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── RTC_LowPower_STANDBY.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── RTC_Tamper/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── RTC_Tamper.ewd │ │ │ │ │ │ ├── RTC_Tamper.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── RTC_Tamper.uvoptx │ │ │ │ │ │ ├── RTC_Tamper.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── RTC_TimeStamp/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_TimeStamp.ewd │ │ │ │ │ ├── RTC_TimeStamp.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_TimeStamp.uvoptx │ │ │ │ │ ├── RTC_TimeStamp.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── RTC_TimeStamp.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SMBUS/ │ │ │ │ └── SMBUS_TSENSOR/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SMBUS_TSENSOR.ewd │ │ │ │ │ ├── SMBUS_TSENSOR.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stlogo.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ │ └── stm32g0xx_tsensor.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SMBUS_TSENSOR.uvoptx │ │ │ │ │ ├── SMBUS_TSENSOR.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── SMBUS_TSENSOR.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ ├── stm32g0xx_tsensor.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI/ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComDMA_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComIT_Slave.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM/ │ │ │ │ ├── TIM_DMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMA.ewd │ │ │ │ │ │ ├── TIM_DMA.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMA.uvoptx │ │ │ │ │ │ ├── TIM_DMA.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_DMABurst/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_DMABurst.ewd │ │ │ │ │ │ ├── TIM_DMABurst.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_DMABurst.uvoptx │ │ │ │ │ │ ├── TIM_DMABurst.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_DMABurst.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_ExtTriggerSynchro/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ewd │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.uvoptx │ │ │ │ │ │ ├── TIM_ExtTriggerSynchro.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_ExtTriggerSynchro.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_InputCapture/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_InputCapture.ewd │ │ │ │ │ │ ├── TIM_InputCapture.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_InputCapture.uvoptx │ │ │ │ │ │ ├── TIM_InputCapture.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_InputCapture.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCActive/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCActive.ewd │ │ │ │ │ │ ├── TIM_OCActive.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCActive.uvoptx │ │ │ │ │ │ ├── TIM_OCActive.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCActive.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCInactive/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCInactive.ewd │ │ │ │ │ │ ├── TIM_OCInactive.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCInactive.uvoptx │ │ │ │ │ │ ├── TIM_OCInactive.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCInactive.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OCToggle/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OCToggle.ewd │ │ │ │ │ │ ├── TIM_OCToggle.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_OCToggle.uvoptx │ │ │ │ │ │ ├── TIM_OCToggle.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_OCToggle.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_OnePulse/ │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_OnePulse.ewd │ │ │ │ │ │ ├── TIM_OnePulse.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Example/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMInput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMInput.ewd │ │ │ │ │ │ ├── TIM_PWMInput.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMInput.uvoptx │ │ │ │ │ │ ├── TIM_PWMInput.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMInput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── TIM_PWMOutput/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── TIM_PWMOutput.ewd │ │ │ │ │ │ ├── TIM_PWMOutput.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── TIM_PWMOutput.uvoptx │ │ │ │ │ │ ├── TIM_PWMOutput.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── TIM_PWMOutput.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── TIM_TimeBase/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── TIM_TimeBase.ewd │ │ │ │ │ ├── TIM_TimeBase.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── TIM_TimeBase.uvoptx │ │ │ │ │ ├── TIM_TimeBase.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── TIM_TimeBase.ioc │ │ │ │ └── readme.txt │ │ │ ├── UART/ │ │ │ │ ├── LPUART_WakeUpFromStop/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.ewd │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.ewp │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── LPUART_WakeUpFromStop.ioc │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.uvoptx │ │ │ │ │ │ ├── LPUART_WakeUpFromStop.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ └── readme.txt │ │ │ │ ├── UART_HyperTerminal_DMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_HyperTerminal_DMA.ewd │ │ │ │ │ │ ├── UART_HyperTerminal_DMA.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_HyperTerminal_DMA.uvoptx │ │ │ │ │ │ ├── UART_HyperTerminal_DMA.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_HyperTerminal_DMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── UART_Printf/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_Printf.ewd │ │ │ │ │ │ ├── UART_Printf.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_Printf.uvoptx │ │ │ │ │ │ ├── UART_Printf.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_Printf.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── UART_TwoBoards_ComDMA/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewd │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvoptx │ │ │ │ │ │ ├── UART_TwoBoards_ComDMA.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_TwoBoards_ComDMA.ioc │ │ │ │ │ └── readme.txt │ │ │ │ ├── UART_TwoBoards_ComIT/ │ │ │ │ │ ├── .extSettings │ │ │ │ │ ├── .mxproject │ │ │ │ │ ├── EWARM/ │ │ │ │ │ │ ├── Project.eww │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.ewd │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.ewp │ │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.uvoptx │ │ │ │ │ │ ├── UART_TwoBoards_ComIT.uvprojx │ │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ │ ├── Src/ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ │ ├── UART_TwoBoards_ComIT.ioc │ │ │ │ │ └── readme.txt │ │ │ │ └── UART_TwoBoards_ComPolling/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_TwoBoards_ComPolling.ewd │ │ │ │ │ ├── UART_TwoBoards_ComPolling.ewp │ │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ │ └── stm32g081xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_TwoBoards_ComPolling.uvoptx │ │ │ │ │ ├── UART_TwoBoards_ComPolling.uvprojx │ │ │ │ │ └── startup_stm32g081xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_TwoBoards_ComPolling.ioc │ │ │ │ └── readme.txt │ │ │ └── WWDG/ │ │ │ └── WWDG_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── WWDG_Example.ewd │ │ │ │ ├── WWDG_Example.ewp │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ └── stm32g081xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── WWDG_Example.uvoptx │ │ │ │ ├── WWDG_Example.uvprojx │ │ │ │ └── startup_stm32g081xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── WWDG_Example.ioc │ │ │ └── readme.txt │ │ ├── Templates/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── Templates.ewd │ │ │ │ ├── Templates.ewp │ │ │ │ ├── startup_stm32g081xx.s │ │ │ │ └── stm32g081xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LICENSE.md │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Templates.uvoptx │ │ │ │ ├── Templates.uvprojx │ │ │ │ └── startup_stm32g081xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G081RBTX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── Templates.ioc │ │ │ └── readme.txt │ │ └── Templates_LL/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates_LL.ewd │ │ │ ├── Templates_LL.ewp │ │ │ ├── startup_stm32g081xx.s │ │ │ └── stm32g081xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates_LL.uvoptx │ │ │ ├── Templates_LL.uvprojx │ │ │ └── startup_stm32g081xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g081rbtx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G081RBTX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates_LL.ioc │ │ └── readme.txt │ └── STM32G0C1E-EV/ │ ├── Applications/ │ │ ├── FatFs/ │ │ │ ├── FatFs_MultiAccess_RTOS/ │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── FatFs/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── app_fatfs.c │ │ │ │ │ │ └── app_fatfs.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── sd_diskio.c │ │ │ │ │ └── sd_diskio.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ └── readme.txt │ │ │ └── FatFs_uSD_DMA_Standalone/ │ │ │ ├── Core/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ │ └── stm32h7xx_hal_conf.h │ │ │ │ └── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── EWARM/ │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── FatFs/ │ │ │ │ ├── App/ │ │ │ │ │ ├── app_fatfs.c │ │ │ │ │ └── app_fatfs.h │ │ │ │ └── Target/ │ │ │ │ ├── ffconf.h │ │ │ │ ├── sd_diskio.c │ │ │ │ └── sd_diskio.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ └── User/ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── Startup/ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ └── readme.txt │ │ ├── FreeRTOS/ │ │ │ ├── FreeRTOS_Semaphore/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FreeRTOS_Semaphore.ewd │ │ │ │ │ ├── FreeRTOS_Semaphore.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── FreeRTOS_Semaphore.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FreeRTOS_Semaphore.uvoptx │ │ │ │ │ ├── FreeRTOS_Semaphore.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── FreeRTOS_Timers/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── FreeRTOS_Timers.ewd │ │ │ │ ├── FreeRTOS_Timers.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── FreeRTOS_Timers.ioc │ │ │ ├── Inc/ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── FreeRTOS_Timers.uvoptx │ │ │ │ ├── FreeRTOS_Timers.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── app_freertos.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── OpenBootloader/ │ │ │ ├── Core/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ └── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── EWARM/ │ │ │ │ ├── OpenBootloader.ewd │ │ │ │ ├── OpenBootloader.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── MDK-ARM/ │ │ │ │ ├── OpenBootloader.uvoptx │ │ │ │ ├── OpenBootloader.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── OpenBootloader/ │ │ │ │ ├── App/ │ │ │ │ │ ├── app_openbootloader.c │ │ │ │ │ └── app_openbootloader.h │ │ │ │ └── Target/ │ │ │ │ ├── common_interface.c │ │ │ │ ├── common_interface.h │ │ │ │ ├── engibytes_interface.c │ │ │ │ ├── engibytes_interface.h │ │ │ │ ├── fdcan_interface.c │ │ │ │ ├── fdcan_interface.h │ │ │ │ ├── flash_interface.c │ │ │ │ ├── flash_interface.h │ │ │ │ ├── i2c_interface.c │ │ │ │ ├── i2c_interface.h │ │ │ │ ├── interfaces_conf.h │ │ │ │ ├── iwdg_interface.c │ │ │ │ ├── iwdg_interface.h │ │ │ │ ├── openbootloader_conf.h │ │ │ │ ├── optionbytes_interface.c │ │ │ │ ├── optionbytes_interface.h │ │ │ │ ├── otp_interface.c │ │ │ │ ├── otp_interface.h │ │ │ │ ├── platform.h │ │ │ │ ├── ram_interface.c │ │ │ │ ├── ram_interface.h │ │ │ │ ├── systemmemory_interface.c │ │ │ │ ├── systemmemory_interface.h │ │ │ │ ├── usart_interface.c │ │ │ │ ├── usart_interface.h │ │ │ │ ├── usb_interface.c │ │ │ │ └── usb_interface.h │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── Startup/ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── USB_Device/ │ │ │ │ ├── App/ │ │ │ │ │ ├── usb_device.c │ │ │ │ │ ├── usb_device.h │ │ │ │ │ ├── usbd_desc.c │ │ │ │ │ ├── usbd_desc.h │ │ │ │ │ ├── usbd_dfu_if.c │ │ │ │ │ └── usbd_dfu_if.h │ │ │ │ └── Target/ │ │ │ │ ├── usbd_conf.c │ │ │ │ └── usbd_conf.h │ │ │ └── readme.txt │ │ ├── USB-PD/ │ │ │ ├── USB-PD_Consumer_1port/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── USB-PD_Consumer_1port.ewd │ │ │ │ │ ├── USB-PD_Consumer_1port.ewp │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ │ ├── usbpd.h │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd_dpm_core.h │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_gui_memmap.h │ │ │ │ │ ├── usbpd_os_port.h │ │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ ├── usbpd_pwr_user.h │ │ │ │ │ └── usbpd_vdm_user.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── USB-PD_Consumer_1port.uvoptx │ │ │ │ │ ├── USB-PD_Consumer_1port.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ │ ├── usbpd.c │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ ├── usbpd_pwr_user.c │ │ │ │ │ └── usbpd_vdm_user.c │ │ │ │ ├── USB-PD_Consumer_1port.ioc │ │ │ │ └── readme.txt │ │ │ ├── USB-PD_Provider_1port/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── USB-PD_Provider_1port.ewd │ │ │ │ │ ├── USB-PD_Provider_1port.ewp │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ │ ├── usbpd.h │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd_dpm_core.h │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_gui_memmap.h │ │ │ │ │ ├── usbpd_os_port.h │ │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ ├── usbpd_pwr_user.h │ │ │ │ │ └── usbpd_vdm_user.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── USB-PD_Provider_1port.uvoptx │ │ │ │ │ ├── USB-PD_Provider_1port.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ │ ├── usbpd.c │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ ├── usbpd_pwr_user.c │ │ │ │ │ └── usbpd_vdm_user.c │ │ │ │ ├── USB-PD_Provider_1port.ioc │ │ │ │ └── readme.txt │ │ │ ├── USBPD_SINK_MSC/ │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── USBPD_SINK_MSC.ewd │ │ │ │ │ ├── USBPD_SINK_MSC.ewp │ │ │ │ │ ├── USBPD_SINK_MSC.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── USBPD_SINK_MSC.uvoptx │ │ │ │ │ ├── USBPD_SINK_MSC.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── USBPD/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ │ │ ├── usbpd.h │ │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ │ │ ├── usbpd_dpm_core.h │ │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ │ ├── usbpd_gui_memmap.h │ │ │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ │ ├── usbpd_usb_if.h │ │ │ │ │ │ └── usbpd_vdm_user.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── app_freertos.c │ │ │ │ │ ├── usbpd.c │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ ├── usbpd_usb_if.c │ │ │ │ │ └── usbpd_vdm_user.c │ │ │ │ ├── USB_Device/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── usb_device.c │ │ │ │ │ │ ├── usb_device.h │ │ │ │ │ │ ├── usbd_desc.c │ │ │ │ │ │ ├── usbd_desc.h │ │ │ │ │ │ ├── usbd_storage_if.c │ │ │ │ │ │ └── usbd_storage_if.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── usbd_conf.c │ │ │ │ │ └── usbd_conf.h │ │ │ │ └── readme.txt │ │ │ └── USBPD_SOURCE_HID/ │ │ │ ├── Core/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ └── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── EWARM/ │ │ │ │ ├── USBPD_SOURCE_HID.ewd │ │ │ │ ├── USBPD_SOURCE_HID.ewp │ │ │ │ ├── USBPD_SOURCE_HID.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── MDK-ARM/ │ │ │ │ ├── USBPD_SOURCE_HID.uvoptx │ │ │ │ ├── USBPD_SOURCE_HID.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ └── User/ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── Startup/ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── USBPD/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ ├── tracer_emb_conf.h │ │ │ │ │ ├── usbpd.h │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd_dpm_core.h │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_gui_memmap.h │ │ │ │ │ ├── usbpd_pdo_defs.h │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ ├── usbpd_usb_if.h │ │ │ │ │ └── usbpd_vdm_user.h │ │ │ │ └── Src/ │ │ │ │ ├── app_freertos.c │ │ │ │ ├── usbpd.c │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ ├── usbpd_usb_if.c │ │ │ │ └── usbpd_vdm_user.c │ │ │ ├── USB_Host/ │ │ │ │ ├── App/ │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── keyboard.h │ │ │ │ │ ├── mouse.c │ │ │ │ │ ├── mouse.h │ │ │ │ │ ├── usb_host.c │ │ │ │ │ └── usb_host.h │ │ │ │ └── Target/ │ │ │ │ ├── usbh_conf.c │ │ │ │ └── usbh_conf.h │ │ │ └── readme.txt │ │ ├── USB_Device/ │ │ │ ├── CDC_Standalone/ │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CDC_Standalone.ewd │ │ │ │ │ ├── CDC_Standalone.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CDC_Standalone.uvoptx │ │ │ │ │ ├── CDC_Standalone.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1cetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ └── Core/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1CETX_FLASH.ld │ │ │ │ ├── USB-PD/ │ │ │ │ │ ├── Target/ │ │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ │ └── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd.c │ │ │ │ │ ├── usbpd.h │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ ├── usbpd_usb_if.c │ │ │ │ │ └── usbpd_usb_if.h │ │ │ │ ├── USB_Device/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── usb_device.c │ │ │ │ │ │ ├── usb_device.h │ │ │ │ │ │ ├── usbd_cdc_if.c │ │ │ │ │ │ ├── usbd_cdc_if.h │ │ │ │ │ │ ├── usbd_desc.c │ │ │ │ │ │ └── usbd_desc.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── usbd_conf.c │ │ │ │ │ └── usbd_conf.h │ │ │ │ └── readme.txt │ │ │ ├── DFU_Standalone/ │ │ │ │ ├── Core/ │ │ │ │ │ ├── Binary/ │ │ │ │ │ │ ├── STM32G0C1E-EV_LEDS_Toggle_@0x0800C000.dfu │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── DFU_Standalone.ewd │ │ │ │ │ ├── DFU_Standalone.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── DFU_Standalone.uvoptx │ │ │ │ │ ├── DFU_Standalone.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── Core/ │ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ │ └── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1cetx.s │ │ │ │ │ └── STM32G0C1CETX_FLASH.ld │ │ │ │ ├── USB-PD/ │ │ │ │ │ ├── Target/ │ │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ │ └── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd.c │ │ │ │ │ ├── usbpd.h │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ ├── usbpd_usb_if.c │ │ │ │ │ └── usbpd_usb_if.h │ │ │ │ ├── USB_Device/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── usb_device.c │ │ │ │ │ │ ├── usb_device.h │ │ │ │ │ │ ├── usbd_desc.c │ │ │ │ │ │ ├── usbd_desc.h │ │ │ │ │ │ ├── usbd_dfu_flash.c │ │ │ │ │ │ └── usbd_dfu_flash.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── usbd_conf.c │ │ │ │ │ └── usbd_conf.h │ │ │ │ └── readme.txt │ │ │ ├── HID_Standalone/ │ │ │ │ ├── Core/ │ │ │ │ │ ├── Inc/ │ │ │ │ │ │ ├── main.h │ │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ │ └── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HID_Standalone.ewd │ │ │ │ │ ├── HID_Standalone.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HID_Standalone.uvoptx │ │ │ │ │ ├── HID_Standalone.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1cetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ └── Core/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1CETX_FLASH.ld │ │ │ │ ├── USB-PD/ │ │ │ │ │ ├── Target/ │ │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ │ └── usbpd_dpm_conf.h │ │ │ │ │ ├── usbpd.c │ │ │ │ │ ├── usbpd.h │ │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ │ ├── usbpd_usb_if.c │ │ │ │ │ └── usbpd_usb_if.h │ │ │ │ ├── USB_Device/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── usb_device.c │ │ │ │ │ │ ├── usb_device.h │ │ │ │ │ │ ├── usbd_desc.c │ │ │ │ │ │ └── usbd_desc.h │ │ │ │ │ └── Target/ │ │ │ │ │ ├── usbd_conf.c │ │ │ │ │ └── usbd_conf.h │ │ │ │ └── readme.txt │ │ │ └── MSC_Standalone/ │ │ │ ├── Core/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ └── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── EWARM/ │ │ │ │ ├── MSC_Standalone.ewd │ │ │ │ ├── MSC_Standalone.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── MDK-ARM/ │ │ │ │ ├── MSC_Standalone.uvoptx │ │ │ │ ├── MSC_Standalone.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1cetx.s │ │ │ │ │ └── User/ │ │ │ │ │ └── Core/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1CETX_FLASH.ld │ │ │ ├── USB-PD/ │ │ │ │ ├── Target/ │ │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ │ └── usbpd_dpm_conf.h │ │ │ │ ├── usbpd.c │ │ │ │ ├── usbpd.h │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ ├── usbpd_usb_if.c │ │ │ │ └── usbpd_usb_if.h │ │ │ ├── USB_Device/ │ │ │ │ ├── App/ │ │ │ │ │ ├── usb_device.c │ │ │ │ │ ├── usb_device.h │ │ │ │ │ ├── usbd_desc.c │ │ │ │ │ ├── usbd_desc.h │ │ │ │ │ ├── usbd_storage_if.c │ │ │ │ │ └── usbd_storage_if.h │ │ │ │ └── Target/ │ │ │ │ ├── usbd_conf.c │ │ │ │ └── usbd_conf.h │ │ │ └── readme.txt │ │ └── USB_Host/ │ │ ├── HID_Standalone/ │ │ │ ├── Core/ │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ └── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── EWARM/ │ │ │ │ ├── HID_Standalone.ewd │ │ │ │ ├── HID_Standalone.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── MDK-ARM/ │ │ │ │ ├── HID_Standalone.uvoptx │ │ │ │ ├── HID_Standalone.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1cetx.s │ │ │ │ │ └── User/ │ │ │ │ │ └── Core/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1CETX_FLASH.ld │ │ │ ├── USB-PD/ │ │ │ │ ├── usbpd.c │ │ │ │ ├── usbpd.h │ │ │ │ ├── usbpd_devices_conf.h │ │ │ │ ├── usbpd_dpm_conf.h │ │ │ │ ├── usbpd_dpm_core.c │ │ │ │ ├── usbpd_dpm_user.c │ │ │ │ ├── usbpd_dpm_user.h │ │ │ │ ├── usbpd_pwr_if.c │ │ │ │ ├── usbpd_pwr_if.h │ │ │ │ ├── usbpd_usb_if.c │ │ │ │ └── usbpd_usb_if.h │ │ │ ├── USB_Host/ │ │ │ │ ├── App/ │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── keyboard.h │ │ │ │ │ ├── mouse.c │ │ │ │ │ ├── mouse.h │ │ │ │ │ ├── usb_host.c │ │ │ │ │ └── usb_host.h │ │ │ │ └── Target/ │ │ │ │ ├── usbh_conf.c │ │ │ │ └── usbh_conf.h │ │ │ └── readme.txt │ │ └── MSC_Standalone/ │ │ ├── Core/ │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ └── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── EWARM/ │ │ │ ├── USBH_MSC.ewd │ │ │ ├── USBH_MSC.ewp │ │ │ ├── USBH_MSC.eww │ │ │ ├── startup_stm32g0c1xx.s │ │ │ └── stm32g0c1xx_flash.icf │ │ ├── MDK-ARM/ │ │ │ ├── USBH_MSC.uvoptx │ │ │ ├── USBH_MSC.uvprojx │ │ │ └── startup_stm32g0c1xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Core/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── Startup/ │ │ │ │ └── startup_stm32g0c1cetx.s │ │ │ └── STM32G0C1CETX_FLASH.ld │ │ ├── USB-PD/ │ │ │ ├── usbpd.c │ │ │ ├── usbpd.h │ │ │ ├── usbpd_devices_conf.h │ │ │ ├── usbpd_dpm_conf.h │ │ │ ├── usbpd_dpm_core.c │ │ │ ├── usbpd_dpm_user.c │ │ │ ├── usbpd_dpm_user.h │ │ │ ├── usbpd_pwr_if.c │ │ │ ├── usbpd_pwr_if.h │ │ │ ├── usbpd_usb_if.c │ │ │ └── usbpd_usb_if.h │ │ ├── USB_Host/ │ │ │ ├── App/ │ │ │ │ ├── explorer.c │ │ │ │ ├── explorer.h │ │ │ │ ├── ffconf.h │ │ │ │ ├── file_operations.c │ │ │ │ ├── file_operations.h │ │ │ │ ├── usb_host.c │ │ │ │ ├── usb_host.h │ │ │ │ ├── usbh_diskio.c │ │ │ │ └── usbh_diskio.h │ │ │ └── Target/ │ │ │ ├── usbh_conf.c │ │ │ └── usbh_conf.h │ │ └── readme.txt │ ├── Demonstrations/ │ │ ├── Binary/ │ │ │ ├── SD_card/ │ │ │ │ ├── STM32.TXT │ │ │ │ └── USER/ │ │ │ │ ├── Dir1/ │ │ │ │ │ ├── Dir11/ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── readme.txt │ │ │ │ ├── Dir2/ │ │ │ │ │ └── readme.txt │ │ │ │ └── readme.txt │ │ │ └── readme.txt │ │ ├── Common/ │ │ │ ├── Inc/ │ │ │ │ ├── sd_diskio.h │ │ │ │ └── utils.h │ │ │ └── Src/ │ │ │ ├── sd_diskio.c │ │ │ └── utils.c │ │ ├── Config/ │ │ │ ├── ffconf.h │ │ │ ├── k_config.h │ │ │ └── stm32g0xx_hal_conf.h │ │ ├── Core/ │ │ │ ├── Inc/ │ │ │ │ ├── k_demo.h │ │ │ │ ├── k_menu.h │ │ │ │ ├── k_module.h │ │ │ │ ├── k_storage.h │ │ │ │ ├── k_tools.h │ │ │ │ ├── k_widgets.h │ │ │ │ └── k_window.h │ │ │ └── Src/ │ │ │ ├── k_demo.c │ │ │ ├── k_menu.c │ │ │ ├── k_module.c │ │ │ ├── k_storage.c │ │ │ ├── k_tools.c │ │ │ ├── k_widgets.c │ │ │ └── k_window.c │ │ ├── Demo/ │ │ │ ├── EWARM/ │ │ │ │ ├── Demo.ewd │ │ │ │ ├── Demo.ewp │ │ │ │ ├── Demo.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash_GUI.icf │ │ │ ├── Inc/ │ │ │ │ ├── SubDemoLegacy.h │ │ │ │ ├── SubDemoUcpd.h │ │ │ │ ├── main.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── Demo.uvoptx │ │ │ │ ├── Demo.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1cetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1CETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── SubDemoLegacy.c │ │ │ │ ├── SubDemoUcpd.c │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ └── Modules/ │ │ ├── audio/ │ │ │ ├── app_audio.c │ │ │ ├── app_audio.h │ │ │ ├── wave_player.c │ │ │ ├── wave_player.h │ │ │ ├── wave_recorder.c │ │ │ └── wave_recorder.h │ │ ├── calendar/ │ │ │ ├── app_calendar.c │ │ │ └── app_calendar.h │ │ ├── filebrowser/ │ │ │ ├── app_filesbrowser.c │ │ │ └── app_filesbrowser.h │ │ ├── help/ │ │ │ ├── app_help.c │ │ │ └── app_help.h │ │ ├── imagebrowser/ │ │ │ ├── app_imagesbrowser.c │ │ │ └── app_imagesbrowser.h │ │ ├── lowpower/ │ │ │ ├── app_lowpower.c │ │ │ └── app_lowpower.h │ │ ├── main_app/ │ │ │ ├── app_main.c │ │ │ └── app_main.h │ │ ├── thermometer_LDR/ │ │ │ ├── app_thermometer_ldr.c │ │ │ └── app_thermometer_ldr.h │ │ └── ucpd/ │ │ ├── FreeRTOSConfig.h │ │ ├── demo_application.c │ │ ├── demo_application.h │ │ ├── lcd_log_conf.h │ │ ├── logo_STM32_G0.h │ │ ├── stlogo.h │ │ ├── tracer_emb_conf.h │ │ ├── usbpd_devices_conf.h │ │ ├── usbpd_dpm_conf.h │ │ ├── usbpd_dpm_core.c │ │ ├── usbpd_dpm_user.c │ │ ├── usbpd_dpm_user.h │ │ ├── usbpd_gui_memmap.h │ │ ├── usbpd_pdo_defs.h │ │ ├── usbpd_pwr_if.c │ │ ├── usbpd_pwr_if.h │ │ ├── usbpd_usb_if.c │ │ ├── usbpd_usb_if.h │ │ ├── usbpd_vdm_user.c │ │ └── usbpd_vdm_user.h │ ├── Examples/ │ │ ├── ADC/ │ │ │ └── ADC_AnalogWatchdog/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── ADC_AnalogWatchdog.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── ADC_AnalogWatchdog.ewd │ │ │ │ ├── ADC_AnalogWatchdog.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── ADC_AnalogWatchdog.uvoptx │ │ │ │ ├── ADC_AnalogWatchdog.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── BSP/ │ │ │ └── BSP_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── BSP_Example.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── BSP_Example.ewd │ │ │ │ ├── BSP_Example.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── lcd_log_conf.h │ │ │ │ ├── main.h │ │ │ │ ├── stlogo.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── BSP_Example.uvoptx │ │ │ │ ├── BSP_Example.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── joystick.c │ │ │ │ ├── lcd.c │ │ │ │ ├── log.c │ │ │ │ ├── main.c │ │ │ │ ├── sd.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ ├── system_stm32g0xx.c │ │ │ │ └── temperature_sensor.c │ │ │ └── readme.txt │ │ ├── CEC/ │ │ │ ├── CEC_DataExchange_Device_1/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CEC_DataExchange_Device_1.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CEC_DataExchange_Device_1.ewd │ │ │ │ │ ├── CEC_DataExchange_Device_1.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CEC_DataExchange_Device_1.uvoptx │ │ │ │ │ ├── CEC_DataExchange_Device_1.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CEC_DataExchange_Device_2/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CEC_DataExchange_Device_2.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CEC_DataExchange_Device_2.ewd │ │ │ │ │ ├── CEC_DataExchange_Device_2.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CEC_DataExchange_Device_2.uvoptx │ │ │ │ │ ├── CEC_DataExchange_Device_2.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CEC_ListenMode_Device_1/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CEC_ListenMode_Device_1.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CEC_ListenMode_Device_1.ewd │ │ │ │ │ ├── CEC_ListenMode_Device_1.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CEC_ListenMode_Device_1.uvoptx │ │ │ │ │ ├── CEC_ListenMode_Device_1.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CEC_ListenMode_Device_2/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CEC_ListenMode_Device_2.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CEC_ListenMode_Device_2.ewd │ │ │ │ │ ├── CEC_ListenMode_Device_2.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CEC_ListenMode_Device_2.uvoptx │ │ │ │ │ ├── CEC_ListenMode_Device_2.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CEC_ListenMode_Device_3/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CEC_ListenMode_Device_3.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CEC_ListenMode_Device_3.ewd │ │ │ │ │ ├── CEC_ListenMode_Device_3.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CEC_ListenMode_Device_3.uvoptx │ │ │ │ │ ├── CEC_ListenMode_Device_3.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CEC_MultiAddress_Device_1/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CEC_MultiAddress_Device_1.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CEC_MultiAddress_Device_1.ewd │ │ │ │ │ ├── CEC_MultiAddress_Device_1.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CEC_MultiAddress_Device_1.uvoptx │ │ │ │ │ ├── CEC_MultiAddress_Device_1.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── CEC_MultiAddress_Device_2/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── CEC_MultiAddress_Device_2.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── CEC_MultiAddress_Device_2.ewd │ │ │ │ ├── CEC_MultiAddress_Device_2.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── CEC_MultiAddress_Device_2.uvoptx │ │ │ │ ├── CEC_MultiAddress_Device_2.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── COMP/ │ │ │ └── COMP_CompareGpioVsVrefInt_IT/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewd │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.uvoptx │ │ │ │ ├── COMP_CompareGpioVsVrefInt_IT.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── CORTEX/ │ │ │ ├── CORTEXM_MPU/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── CORTEXM_MPU.ioc │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── CORTEXM_MPU.ewd │ │ │ │ │ ├── CORTEXM_MPU.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── CORTEXM_MPU.uvoptx │ │ │ │ │ ├── CORTEXM_MPU.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── CORTEXM_SysTick/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── CORTEXM_SysTick.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── CORTEXM_SysTick.ewd │ │ │ │ ├── CORTEXM_SysTick.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── CORTEXM_SysTick.uvoptx │ │ │ │ ├── CORTEXM_SysTick.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── CRC/ │ │ │ └── CRC_Example/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── CRC_Example.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── CRC_Example.ewd │ │ │ │ ├── CRC_Example.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── CRC_Example.uvoptx │ │ │ │ ├── CRC_Example.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── CRYP/ │ │ │ └── CRYP_AESModes/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── CRYP_AESModes.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── CRYP_AESModes.ewd │ │ │ │ ├── CRYP_AESModes.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ ├── stm32g0c1xx_flash.icf │ │ │ │ └── stm32g0c1xx_sram.icf │ │ │ ├── Expected_Results.txt │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── CRYP_AESModes.uvoptx │ │ │ │ ├── CRYP_AESModes.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── DAC/ │ │ │ └── DAC_SimpleConversion/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── DAC_SimpleConversion.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── DAC_SimpleConversion.ewd │ │ │ │ ├── DAC_SimpleConversion.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── DAC_SimpleConversion.uvoptx │ │ │ │ ├── DAC_SimpleConversion.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── DMA/ │ │ │ └── DMA_FLASHToRAM/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── DMA_FLASHToRAM.ioc │ │ │ ├── EWARM/ │ │ │ │ ├── DMA_FLASHToRAM.ewd │ │ │ │ ├── DMA_FLASHToRAM.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── DMA_FLASHToRAM.uvoptx │ │ │ │ ├── DMA_FLASHToRAM.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── FDCAN/ │ │ │ ├── FDCAN_Classic_Frame_Networking/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FDCAN_Classic_Frame_Networking.ewd │ │ │ │ │ ├── FDCAN_Classic_Frame_Networking.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── FDCAN_Classic_Frame_Networking.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FDCAN_Classic_Frame_Networking.uvoptx │ │ │ │ │ ├── FDCAN_Classic_Frame_Networking.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FDCAN_Com_IT_2_BOARDS/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FDCAN_Com_IT_2_BOARDS.ewd │ │ │ │ │ ├── FDCAN_Com_IT_2_BOARDS.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── FDCAN_Com_IT_2_BOARDS.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FDCAN_Com_IT_2_BOARDS.uvoptx │ │ │ │ │ ├── FDCAN_Com_IT_2_BOARDS.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FDCAN_Com_polling_2_BOARDS/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── FDCAN_Com_polling_2_BOARDS.ewd │ │ │ │ │ ├── FDCAN_Com_polling_2_BOARDS.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── FDCAN_Com_polling_2_BOARDS.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── FDCAN_Com_polling_2_BOARDS.uvoptx │ │ │ │ │ ├── FDCAN_Com_polling_2_BOARDS.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── FDCAN_Loopback/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── FDCAN_Loopback.ewd │ │ │ │ ├── FDCAN_Loopback.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── FDCAN_Loopback.ioc │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── FDCAN_Loopback.uvoptx │ │ │ │ ├── FDCAN_Loopback.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── FLASH/ │ │ │ └── FLASH_EraseProgram/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── FLASH_EraseProgram.ewd │ │ │ │ ├── FLASH_EraseProgram.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── FLASH_EraseProgram.ioc │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── FLASH_EraseProgram.uvoptx │ │ │ │ ├── FLASH_EraseProgram.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── GPIO/ │ │ │ └── GPIO_IOToggle/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── GPIO_IOToggle.ewd │ │ │ │ ├── GPIO_IOToggle.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── GPIO_IOToggle.ioc │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── GPIO_IOToggle.uvoptx │ │ │ │ ├── GPIO_IOToggle.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── HAL/ │ │ │ ├── HAL_TimeBase/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HAL_TimeBase.ewd │ │ │ │ │ ├── HAL_TimeBase.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── HAL_TimeBase.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HAL_TimeBase.uvoptx │ │ │ │ │ ├── HAL_TimeBase.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── HAL_TimeBase_RTC_ALARM/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewd │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvoptx │ │ │ │ │ ├── HAL_TimeBase_RTC_ALARM.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_alarm.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── HAL_TimeBase_RTC_WKUP/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewd │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.ioc │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvoptx │ │ │ │ │ ├── HAL_TimeBase_RTC_WKUP.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_hal_timebase_rtc_wakeup.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── HAL_TimeBase_TIM/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── HAL_TimeBase_TIM.ewd │ │ │ │ ├── HAL_TimeBase_TIM.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── HAL_TimeBase_TIM.ioc │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── HAL_TimeBase_TIM.uvoptx │ │ │ │ ├── HAL_TimeBase_TIM.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_hal_timebase_tim.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── I2C/ │ │ │ └── I2C_TwoBoards_ComDMA/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewd │ │ │ │ ├── I2C_TwoBoards_ComDMA.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── I2C_TwoBoards_ComDMA.ioc │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvoptx │ │ │ │ ├── I2C_TwoBoards_ComDMA.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── IWDG/ │ │ │ └── IWDG_WindowMode/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── IWDG_WindowMode.ewd │ │ │ │ ├── IWDG_WindowMode.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── IWDG_WindowMode.ioc │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── IWDG_WindowMode.uvoptx │ │ │ │ ├── IWDG_WindowMode.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM/ │ │ │ ├── LPTIM_PWM_LSE/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── LPTIM_PWM_LSE.ewd │ │ │ │ │ ├── LPTIM_PWM_LSE.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── LPTIM_PWM_LSE.ioc │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── LPTIM_PWM_LSE.uvoptx │ │ │ │ │ ├── LPTIM_PWM_LSE.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── LPTIM_PulseCounter/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── LPTIM_PulseCounter.ewd │ │ │ │ ├── LPTIM_PulseCounter.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LPTIM_PulseCounter.ioc │ │ │ ├── MDK-ARM/ │ │ │ │ ├── LPTIM_PulseCounter.uvoptx │ │ │ │ ├── LPTIM_PulseCounter.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── PWR/ │ │ │ ├── PWR_LPRUN/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_LPRUN.ewd │ │ │ │ │ ├── PWR_LPRUN.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_LPRUN.uvoptx │ │ │ │ │ ├── PWR_LPRUN.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── PWR_LPRUN.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_LPSLEEP/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_LPSLEEP.ewd │ │ │ │ │ ├── PWR_LPSLEEP.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_LPSLEEP.uvoptx │ │ │ │ │ ├── PWR_LPSLEEP.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── PWR_LPSLEEP.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_PVD/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_PVD.ewd │ │ │ │ │ ├── PWR_PVD.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_PVD.uvoptx │ │ │ │ │ ├── PWR_PVD.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── PWR_PVD.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_SLEEP/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── PWR_SLEEP.ewd │ │ │ │ │ ├── PWR_SLEEP.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── PWR_SLEEP.uvoptx │ │ │ │ │ ├── PWR_SLEEP.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── PWR_SLEEP.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_STANDBY/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── PWR_STANDBY.ewd │ │ │ │ ├── PWR_STANDBY.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── PWR_STANDBY.uvoptx │ │ │ │ ├── PWR_STANDBY.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── PWR_STANDBY.ioc │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── RCC/ │ │ │ ├── RCC_ClockConfig/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RCC_ClockConfig.ewd │ │ │ │ │ ├── RCC_ClockConfig.ewp │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RCC_ClockConfig.uvoptx │ │ │ │ │ ├── RCC_ClockConfig.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── RCC_ClockConfig.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── RCC_SwitchClock/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── RCC_SwitchClock.ewd │ │ │ │ ├── RCC_SwitchClock.ewp │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── RCC_SwitchClock.uvoptx │ │ │ │ ├── RCC_SwitchClock.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── RCC_SwitchClock.ioc │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── RNG/ │ │ │ └── RNG_MultiRNG/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── RNG_MultiRNG.ewd │ │ │ │ ├── RNG_MultiRNG.ewp │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── RNG_MultiRNG.uvoptx │ │ │ │ ├── RNG_MultiRNG.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── RNG_MultiRNG.ioc │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── RTC/ │ │ │ ├── RTC_LowPower_STANDBY/ │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── RTC_LowPower_STANDBY.ewd │ │ │ │ │ ├── RTC_LowPower_STANDBY.ewp │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── RTC_LowPower_STANDBY.uvoptx │ │ │ │ │ ├── RTC_LowPower_STANDBY.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── RTC_LowPower_STANDBY.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── RTC_TimeStamp/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── RTC_TimeStamp.ewd │ │ │ │ ├── RTC_TimeStamp.ewp │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── RTC_TimeStamp.uvoptx │ │ │ │ ├── RTC_TimeStamp.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── RTC_TimeStamp.ioc │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── SMBUS/ │ │ │ └── SMBUS_TSENSOR/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── SMBUS_TSENSOR.ewd │ │ │ │ ├── SMBUS_TSENSOR.ewp │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stlogo.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ ├── stm32g0xx_it.h │ │ │ │ └── stm32g0xx_tsensor.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── SMBUS_TSENSOR.uvoptx │ │ │ │ ├── SMBUS_TSENSOR.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── SMBUS_TSENSOR.ioc │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ ├── stm32g0xx_tsensor.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── SPI/ │ │ │ ├── SPI_FullDuplex_ComPolling_Master/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewd │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ewp │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvoptx │ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── SPI_FullDuplex_ComPolling_Master.ioc │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_FullDuplex_ComPolling_Slave/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewd │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ewp │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvoptx │ │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── SPI_FullDuplex_ComPolling_Slave.ioc │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ ├── TIM/ │ │ │ └── TIM_PWMOutput/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── TIM_PWMOutput.ewd │ │ │ │ ├── TIM_PWMOutput.ewp │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── TIM_PWMOutput.uvoptx │ │ │ │ ├── TIM_PWMOutput.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── TIM_PWMOutput.ioc │ │ │ └── readme.txt │ │ ├── UART/ │ │ │ ├── UART_Printf/ │ │ │ │ ├── .extSettings │ │ │ │ ├── .mxproject │ │ │ │ ├── EWARM/ │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── UART_Printf.ewd │ │ │ │ │ ├── UART_Printf.ewp │ │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ │ ├── Inc/ │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ │ └── stm32g0xx_it.h │ │ │ │ ├── MDK-ARM/ │ │ │ │ │ ├── UART_Printf.uvoptx │ │ │ │ │ ├── UART_Printf.uvprojx │ │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ │ ├── STM32CubeIDE/ │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ │ └── User/ │ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ │ └── sysmem.c │ │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ │ ├── Src/ │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ │ └── system_stm32g0xx.c │ │ │ │ ├── UART_Printf.ioc │ │ │ │ └── readme.txt │ │ │ └── UART_ReceptionToIdle_CircularDMA/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── Project.eww │ │ │ │ ├── UART_ReceptionToIdle_CircularDMA.ewd │ │ │ │ ├── UART_ReceptionToIdle_CircularDMA.ewp │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── MDK-ARM/ │ │ │ │ ├── UART_ReceptionToIdle_CircularDMA.uvoptx │ │ │ │ ├── UART_ReceptionToIdle_CircularDMA.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ ├── UART_ReceptionToIdle_CircularDMA.ioc │ │ │ └── readme.txt │ │ └── WWDG/ │ │ └── WWDG_Example/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── WWDG_Example.ewd │ │ │ ├── WWDG_Example.ewp │ │ │ ├── startup_stm32g0c1xx.s │ │ │ └── stm32g0c1xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ └── stm32g0xx_it.h │ │ ├── MDK-ARM/ │ │ │ ├── WWDG_Example.uvoptx │ │ │ ├── WWDG_Example.uvprojx │ │ │ └── startup_stm32g0c1xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── WWDG_Example.ioc │ │ └── readme.txt │ ├── Examples_LL/ │ │ ├── LICENSE.md │ │ ├── LPTIM/ │ │ │ └── LPTIM_PulseCounter_Init/ │ │ │ ├── .extSettings │ │ │ ├── .mxproject │ │ │ ├── EWARM/ │ │ │ │ ├── LPTIM_PulseCounter_Init.ewd │ │ │ │ ├── LPTIM_PulseCounter_Init.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32g0c1xx.s │ │ │ │ └── stm32g0c1xx_flash.icf │ │ │ ├── Inc/ │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32g0xx_it.h │ │ │ ├── LPTIM_PulseCounter_Init.ioc │ │ │ ├── MDK-ARM/ │ │ │ │ ├── LPTIM_PulseCounter_Init.uvoptx │ │ │ │ ├── LPTIM_PulseCounter_Init.uvprojx │ │ │ │ └── startup_stm32g0c1xx.s │ │ │ ├── STM32CubeIDE/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── Application/ │ │ │ │ │ ├── Startup/ │ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ │ └── User/ │ │ │ │ │ ├── syscalls.c │ │ │ │ │ └── sysmem.c │ │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ │ ├── Src/ │ │ │ │ ├── main.c │ │ │ │ ├── stm32g0xx_it.c │ │ │ │ └── system_stm32g0xx.c │ │ │ └── readme.txt │ │ └── LPUART/ │ │ └── LPUART_WakeUpFromStop_Init/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── LPUART_WakeUpFromStop_Init.ewd │ │ │ ├── LPUART_WakeUpFromStop_Init.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32g0c1xx.s │ │ │ └── stm32g0c1xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32g0xx_it.h │ │ ├── LPUART_WakeUpFromStop_Init.ioc │ │ ├── MDK-ARM/ │ │ │ ├── LPUART_WakeUpFromStop_Init.uvoptx │ │ │ ├── LPUART_WakeUpFromStop_Init.uvprojx │ │ │ └── startup_stm32g0c1xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ └── readme.txt │ ├── Templates/ │ │ ├── .extSettings │ │ ├── .mxproject │ │ ├── EWARM/ │ │ │ ├── Project.eww │ │ │ ├── Templates.ewd │ │ │ ├── Templates.ewp │ │ │ ├── startup_stm32g0c1xx.s │ │ │ └── stm32g0c1xx_flash.icf │ │ ├── Inc/ │ │ │ ├── main.h │ │ │ ├── stm32g0xx_hal_conf.h │ │ │ └── stm32g0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM/ │ │ │ ├── Templates.uvoptx │ │ │ ├── Templates.uvprojx │ │ │ └── startup_stm32g0c1xx.s │ │ ├── STM32CubeIDE/ │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Application/ │ │ │ │ ├── Startup/ │ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ │ └── User/ │ │ │ │ ├── syscalls.c │ │ │ │ └── sysmem.c │ │ │ └── STM32G0C1VETX_FLASH.ld │ │ ├── Src/ │ │ │ ├── main.c │ │ │ ├── stm32g0xx_hal_msp.c │ │ │ ├── stm32g0xx_it.c │ │ │ └── system_stm32g0xx.c │ │ ├── Templates.ioc │ │ └── readme.txt │ └── Templates_LL/ │ ├── .extSettings │ ├── .mxproject │ ├── EWARM/ │ │ ├── Project.eww │ │ ├── Templates_LL.ewd │ │ ├── Templates_LL.ewp │ │ ├── startup_stm32g0c1xx.s │ │ └── stm32g0c1xx_flash.icf │ ├── Inc/ │ │ ├── main.h │ │ ├── stm32_assert.h │ │ └── stm32g0xx_it.h │ ├── LICENSE.md │ ├── MDK-ARM/ │ │ ├── Templates_LL.uvoptx │ │ ├── Templates_LL.uvprojx │ │ └── startup_stm32g0c1xx.s │ ├── STM32CubeIDE/ │ │ ├── .cproject │ │ ├── .project │ │ ├── Application/ │ │ │ ├── Startup/ │ │ │ │ └── startup_stm32g0c1vetx.s │ │ │ └── User/ │ │ │ ├── syscalls.c │ │ │ └── sysmem.c │ │ └── STM32G0C1VETX_FLASH.ld │ ├── Src/ │ │ ├── main.c │ │ ├── stm32g0xx_it.c │ │ └── system_stm32g0xx.c │ ├── Templates_LL.ioc │ └── readme.txt ├── README.md ├── Release_Notes.html ├── SECURITY.md ├── SW_Security_Level.md ├── Utilities/ │ ├── CPU/ │ │ ├── LICENSE.md │ │ ├── Release_Notes.html │ │ ├── _htmresc/ │ │ │ └── mini-st_2020.css │ │ ├── cpu_utils.c │ │ └── cpu_utils.h │ ├── Fonts/ │ │ ├── LICENSE.md │ │ ├── Release_Notes.html │ │ ├── _htmresc/ │ │ │ └── mini-st_2020.css │ │ ├── font12.c │ │ ├── font16.c │ │ ├── font20.c │ │ ├── font24.c │ │ ├── font8.c │ │ └── fonts.h │ ├── GUI_INTERFACE/ │ │ ├── LICENSE.md │ │ ├── Release_Notes.html │ │ ├── _htmresc/ │ │ │ ├── mini-st.css │ │ │ └── mini-st_2020.css │ │ ├── bsp_gui.c │ │ ├── bsp_gui.h │ │ ├── data_struct_tlv.c │ │ ├── data_struct_tlv.h │ │ ├── gui_api.c │ │ ├── gui_api.h │ │ ├── gui_os_port.h │ │ └── usbpd_gui_memmap_template.h │ ├── Log/ │ │ ├── LICENSE.md │ │ ├── Release_Notes.html │ │ ├── _htmresc/ │ │ │ └── mini-st_2020.css │ │ ├── lcd_log.c │ │ ├── lcd_log.h │ │ └── lcd_log_conf_template.h │ ├── Media/ │ │ └── readme.txt │ └── TRACER_EMB/ │ ├── LICENSE.md │ ├── Release_Notes.html │ ├── _htmresc/ │ │ ├── mini-st.css │ │ └── mini-st_2020.css │ ├── tracer_emb.c │ ├── tracer_emb.h │ ├── tracer_emb_conf_template.h │ ├── tracer_emb_hw.c │ └── tracer_emb_hw.h ├── _htmresc/ │ ├── ReleaseNotes.html │ ├── ReleaseNotes_Patch.html │ ├── mini-st.css │ └── mini-st_2020.css ├── package.xml └── sbom_cdx.json