├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── other-issue.md └── PULL_REQUEST_TEMPLATE.md ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Documentation └── STM32CubeL0GettingStarted.pdf ├── Drivers ├── BSP │ ├── Adafruit_Shield │ │ ├── Release_Notes.html │ │ ├── stm32_adafruit_lcd.c │ │ ├── stm32_adafruit_lcd.h │ │ ├── stm32_adafruit_sd.c │ │ └── stm32_adafruit_sd.h │ └── Gravitech_4DigitsDisplay_NanoShield │ │ ├── Release_Notes.html │ │ ├── stm32_gravitech_4digits.c │ │ └── stm32_gravitech_4digits.h └── CMSIS │ ├── ARM.CMSIS.pdsc │ ├── Core │ ├── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.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_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 │ ├── Core_A │ ├── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_cp15.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── core_ca.h │ │ └── irq_ctrl.h │ └── Source │ │ └── irq_ctrl_gic.c │ ├── DSP │ ├── DSP_Lib_TestSuite │ │ ├── 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_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 │ │ │ │ │ ├── startup_armv6-m.s │ │ │ │ │ └── startup_armv7-m.s │ │ │ │ ├── ARMCLANG │ │ │ │ │ ├── startup_armv6-m.S │ │ │ │ │ └── startup_armv7-m.S │ │ │ │ ├── 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 │ │ │ ├── ARMCM23_config.txt │ │ │ ├── ARMCM33_DSP_FP_config.txt │ │ │ ├── ARMCM33_DSP_config.txt │ │ │ ├── ARMCM33_FP_config.txt │ │ │ ├── ARMCM33_config.txt │ │ │ └── GCC │ │ │ │ ├── DspLibTest_FVP.uvoptx │ │ │ │ └── DspLibTest_FVP.uvprojx │ │ ├── DspLibTest_MPS2 │ │ │ ├── ARM │ │ │ │ ├── DspLibTest_MPS2.uvoptx │ │ │ │ └── DspLibTest_MPS2.uvprojx │ │ │ ├── GCC │ │ │ │ ├── DspLibTest_MPS2.uvoptx │ │ │ │ └── DspLibTest_MPS2.uvprojx │ │ │ └── HowTo.txt │ │ ├── DspLibTest_Simulator │ │ │ ├── ARM │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ │ └── GCC │ │ │ │ ├── DspLibTest_Simulator.uvoptx │ │ │ │ └── DspLibTest_Simulator.uvprojx │ │ ├── HowTo.txt │ │ ├── RefLibs │ │ │ ├── ARM │ │ │ │ ├── RefLibs.uvoptx │ │ │ │ └── RefLibs.uvprojx │ │ │ ├── GCC │ │ │ │ ├── RefLibs.uvoptx │ │ │ │ └── RefLibs.uvprojx │ │ │ ├── inc │ │ │ │ └── ref.h │ │ │ └── src │ │ │ │ ├── BasicMathFunctions │ │ │ │ ├── abs.c │ │ │ │ ├── add.c │ │ │ │ ├── dot_prod.c │ │ │ │ ├── mult.c │ │ │ │ ├── negate.c │ │ │ │ ├── offset.c │ │ │ │ ├── scale.c │ │ │ │ ├── shift.c │ │ │ │ └── sub.c │ │ │ │ ├── ComplexMathFunctions │ │ │ │ ├── cmplx_conj.c │ │ │ │ ├── cmplx_dot_prod.c │ │ │ │ ├── cmplx_mag.c │ │ │ │ ├── cmplx_mag_squared.c │ │ │ │ ├── cmplx_mult_cmplx.c │ │ │ │ └── cmplx_mult_real.c │ │ │ │ ├── ControllerFunctions │ │ │ │ ├── pid.c │ │ │ │ └── sin_cos.c │ │ │ │ ├── FastMathFunctions │ │ │ │ ├── cos.c │ │ │ │ ├── sin.c │ │ │ │ └── sqrt.c │ │ │ │ ├── FilteringFunctions │ │ │ │ ├── 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 │ │ │ │ ├── mat_helper.c │ │ │ │ └── ref_helper.c │ │ │ │ ├── Intrinsics │ │ │ │ └── intrinsics.c │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── mat_add.c │ │ │ │ ├── mat_cmplx_mult.c │ │ │ │ ├── mat_inverse.c │ │ │ │ ├── mat_mult.c │ │ │ │ ├── mat_scale.c │ │ │ │ ├── mat_sub.c │ │ │ │ └── mat_trans.c │ │ │ │ ├── StatisticsFunctions │ │ │ │ ├── max.c │ │ │ │ ├── mean.c │ │ │ │ ├── min.c │ │ │ │ ├── power.c │ │ │ │ ├── rms.c │ │ │ │ ├── std.c │ │ │ │ └── var.c │ │ │ │ ├── SupportFunctions │ │ │ │ ├── copy.c │ │ │ │ ├── fill.c │ │ │ │ ├── fixed_to_fixed.c │ │ │ │ ├── fixed_to_float.c │ │ │ │ └── float_to_fixed.c │ │ │ │ └── TransformFunctions │ │ │ │ ├── bitreversal.c │ │ │ │ ├── cfft.c │ │ │ │ ├── dct4.c │ │ │ │ └── rfft.c │ │ ├── buildDspLibs.bat │ │ ├── buildRefLibs.bat │ │ ├── parseLog.py │ │ └── runTest.bat │ ├── Examples │ │ └── ARM │ │ │ ├── arm_class_marks_example │ │ │ ├── Abstract.txt │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── arm_dotproduct_example.ini │ │ │ ├── arm_dotproduct_example.uvoptx │ │ │ ├── arm_dotproduct_example.uvprojx │ │ │ └── arm_dotproduct_example_f32.c │ │ │ ├── arm_fft_bin_example │ │ │ ├── Abstract.txt │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── arm_variance_example.ini │ │ │ ├── arm_variance_example.uvoptx │ │ │ ├── arm_variance_example.uvprojx │ │ │ └── arm_variance_example_f32.c │ ├── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ └── arm_math.h │ ├── 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 │ └── Source │ │ ├── BasicMathFunctions │ │ ├── arm_abs_f32.c │ │ ├── arm_abs_q15.c │ │ ├── arm_abs_q31.c │ │ ├── arm_abs_q7.c │ │ ├── arm_add_f32.c │ │ ├── arm_add_q15.c │ │ ├── arm_add_q31.c │ │ ├── arm_add_q7.c │ │ ├── arm_dot_prod_f32.c │ │ ├── arm_dot_prod_q15.c │ │ ├── arm_dot_prod_q31.c │ │ ├── arm_dot_prod_q7.c │ │ ├── arm_mult_f32.c │ │ ├── arm_mult_q15.c │ │ ├── arm_mult_q31.c │ │ ├── arm_mult_q7.c │ │ ├── arm_negate_f32.c │ │ ├── arm_negate_q15.c │ │ ├── arm_negate_q31.c │ │ ├── arm_negate_q7.c │ │ ├── arm_offset_f32.c │ │ ├── arm_offset_q15.c │ │ ├── arm_offset_q31.c │ │ ├── arm_offset_q7.c │ │ ├── arm_scale_f32.c │ │ ├── arm_scale_q15.c │ │ ├── arm_scale_q31.c │ │ ├── arm_scale_q7.c │ │ ├── arm_shift_q15.c │ │ ├── arm_shift_q31.c │ │ ├── arm_shift_q7.c │ │ ├── arm_sub_f32.c │ │ ├── arm_sub_q15.c │ │ ├── arm_sub_q31.c │ │ └── arm_sub_q7.c │ │ ├── CommonTables │ │ ├── arm_common_tables.c │ │ └── arm_const_structs.c │ │ ├── ComplexMathFunctions │ │ ├── arm_cmplx_conj_f32.c │ │ ├── arm_cmplx_conj_q15.c │ │ ├── arm_cmplx_conj_q31.c │ │ ├── arm_cmplx_dot_prod_f32.c │ │ ├── arm_cmplx_dot_prod_q15.c │ │ ├── arm_cmplx_dot_prod_q31.c │ │ ├── arm_cmplx_mag_f32.c │ │ ├── arm_cmplx_mag_q15.c │ │ ├── arm_cmplx_mag_q31.c │ │ ├── arm_cmplx_mag_squared_f32.c │ │ ├── arm_cmplx_mag_squared_q15.c │ │ ├── arm_cmplx_mag_squared_q31.c │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ ├── arm_cmplx_mult_real_f32.c │ │ ├── arm_cmplx_mult_real_q15.c │ │ └── arm_cmplx_mult_real_q31.c │ │ ├── ControllerFunctions │ │ ├── arm_pid_init_f32.c │ │ ├── arm_pid_init_q15.c │ │ ├── arm_pid_init_q31.c │ │ ├── arm_pid_reset_f32.c │ │ ├── arm_pid_reset_q15.c │ │ ├── arm_pid_reset_q31.c │ │ ├── arm_sin_cos_f32.c │ │ └── arm_sin_cos_q31.c │ │ ├── FastMathFunctions │ │ ├── arm_cos_f32.c │ │ ├── arm_cos_q15.c │ │ ├── arm_cos_q31.c │ │ ├── arm_sin_f32.c │ │ ├── arm_sin_q15.c │ │ ├── arm_sin_q31.c │ │ ├── arm_sqrt_q15.c │ │ └── arm_sqrt_q31.c │ │ ├── FilteringFunctions │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ ├── arm_biquad_cascade_df1_f32.c │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ ├── arm_biquad_cascade_df1_q15.c │ │ ├── arm_biquad_cascade_df1_q31.c │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c │ │ ├── arm_conv_f32.c │ │ ├── arm_conv_fast_opt_q15.c │ │ ├── arm_conv_fast_q15.c │ │ ├── arm_conv_fast_q31.c │ │ ├── arm_conv_opt_q15.c │ │ ├── arm_conv_opt_q7.c │ │ ├── arm_conv_partial_f32.c │ │ ├── arm_conv_partial_fast_opt_q15.c │ │ ├── arm_conv_partial_fast_q15.c │ │ ├── arm_conv_partial_fast_q31.c │ │ ├── arm_conv_partial_opt_q15.c │ │ ├── arm_conv_partial_opt_q7.c │ │ ├── arm_conv_partial_q15.c │ │ ├── arm_conv_partial_q31.c │ │ ├── arm_conv_partial_q7.c │ │ ├── arm_conv_q15.c │ │ ├── arm_conv_q31.c │ │ ├── arm_conv_q7.c │ │ ├── arm_correlate_f32.c │ │ ├── arm_correlate_fast_opt_q15.c │ │ ├── arm_correlate_fast_q15.c │ │ ├── arm_correlate_fast_q31.c │ │ ├── arm_correlate_opt_q15.c │ │ ├── arm_correlate_opt_q7.c │ │ ├── arm_correlate_q15.c │ │ ├── arm_correlate_q31.c │ │ ├── arm_correlate_q7.c │ │ ├── arm_fir_decimate_f32.c │ │ ├── arm_fir_decimate_fast_q15.c │ │ ├── arm_fir_decimate_fast_q31.c │ │ ├── arm_fir_decimate_init_f32.c │ │ ├── arm_fir_decimate_init_q15.c │ │ ├── arm_fir_decimate_init_q31.c │ │ ├── arm_fir_decimate_q15.c │ │ ├── arm_fir_decimate_q31.c │ │ ├── arm_fir_f32.c │ │ ├── arm_fir_fast_q15.c │ │ ├── arm_fir_fast_q31.c │ │ ├── arm_fir_init_f32.c │ │ ├── arm_fir_init_q15.c │ │ ├── arm_fir_init_q31.c │ │ ├── arm_fir_init_q7.c │ │ ├── arm_fir_interpolate_f32.c │ │ ├── arm_fir_interpolate_init_f32.c │ │ ├── arm_fir_interpolate_init_q15.c │ │ ├── arm_fir_interpolate_init_q31.c │ │ ├── arm_fir_interpolate_q15.c │ │ ├── arm_fir_interpolate_q31.c │ │ ├── arm_fir_lattice_f32.c │ │ ├── arm_fir_lattice_init_f32.c │ │ ├── arm_fir_lattice_init_q15.c │ │ ├── arm_fir_lattice_init_q31.c │ │ ├── arm_fir_lattice_q15.c │ │ ├── arm_fir_lattice_q31.c │ │ ├── arm_fir_q15.c │ │ ├── arm_fir_q31.c │ │ ├── arm_fir_q7.c │ │ ├── arm_fir_sparse_f32.c │ │ ├── arm_fir_sparse_init_f32.c │ │ ├── arm_fir_sparse_init_q15.c │ │ ├── arm_fir_sparse_init_q31.c │ │ ├── arm_fir_sparse_init_q7.c │ │ ├── arm_fir_sparse_q15.c │ │ ├── arm_fir_sparse_q31.c │ │ ├── arm_fir_sparse_q7.c │ │ ├── arm_iir_lattice_f32.c │ │ ├── arm_iir_lattice_init_f32.c │ │ ├── arm_iir_lattice_init_q15.c │ │ ├── arm_iir_lattice_init_q31.c │ │ ├── arm_iir_lattice_q15.c │ │ ├── arm_iir_lattice_q31.c │ │ ├── arm_lms_f32.c │ │ ├── arm_lms_init_f32.c │ │ ├── arm_lms_init_q15.c │ │ ├── arm_lms_init_q31.c │ │ ├── arm_lms_norm_f32.c │ │ ├── arm_lms_norm_init_f32.c │ │ ├── arm_lms_norm_init_q15.c │ │ ├── arm_lms_norm_init_q31.c │ │ ├── arm_lms_norm_q15.c │ │ ├── arm_lms_norm_q31.c │ │ ├── arm_lms_q15.c │ │ └── arm_lms_q31.c │ │ ├── MatrixFunctions │ │ ├── arm_mat_add_f32.c │ │ ├── arm_mat_add_q15.c │ │ ├── arm_mat_add_q31.c │ │ ├── arm_mat_cmplx_mult_f32.c │ │ ├── arm_mat_cmplx_mult_q15.c │ │ ├── arm_mat_cmplx_mult_q31.c │ │ ├── arm_mat_init_f32.c │ │ ├── arm_mat_init_q15.c │ │ ├── arm_mat_init_q31.c │ │ ├── arm_mat_inverse_f32.c │ │ ├── arm_mat_inverse_f64.c │ │ ├── arm_mat_mult_f32.c │ │ ├── arm_mat_mult_fast_q15.c │ │ ├── arm_mat_mult_fast_q31.c │ │ ├── arm_mat_mult_q15.c │ │ ├── arm_mat_mult_q31.c │ │ ├── arm_mat_scale_f32.c │ │ ├── arm_mat_scale_q15.c │ │ ├── arm_mat_scale_q31.c │ │ ├── arm_mat_sub_f32.c │ │ ├── arm_mat_sub_q15.c │ │ ├── arm_mat_sub_q31.c │ │ ├── arm_mat_trans_f32.c │ │ ├── arm_mat_trans_q15.c │ │ └── arm_mat_trans_q31.c │ │ ├── StatisticsFunctions │ │ ├── arm_max_f32.c │ │ ├── arm_max_q15.c │ │ ├── arm_max_q31.c │ │ ├── arm_max_q7.c │ │ ├── arm_mean_f32.c │ │ ├── arm_mean_q15.c │ │ ├── arm_mean_q31.c │ │ ├── arm_mean_q7.c │ │ ├── arm_min_f32.c │ │ ├── arm_min_q15.c │ │ ├── arm_min_q31.c │ │ ├── arm_min_q7.c │ │ ├── arm_power_f32.c │ │ ├── arm_power_q15.c │ │ ├── arm_power_q31.c │ │ ├── arm_power_q7.c │ │ ├── arm_rms_f32.c │ │ ├── arm_rms_q15.c │ │ ├── arm_rms_q31.c │ │ ├── arm_std_f32.c │ │ ├── arm_std_q15.c │ │ ├── arm_std_q31.c │ │ ├── arm_var_f32.c │ │ ├── arm_var_q15.c │ │ └── arm_var_q31.c │ │ ├── SupportFunctions │ │ ├── arm_copy_f32.c │ │ ├── arm_copy_q15.c │ │ ├── arm_copy_q31.c │ │ ├── arm_copy_q7.c │ │ ├── arm_fill_f32.c │ │ ├── arm_fill_q15.c │ │ ├── arm_fill_q31.c │ │ ├── arm_fill_q7.c │ │ ├── arm_float_to_q15.c │ │ ├── arm_float_to_q31.c │ │ ├── arm_float_to_q7.c │ │ ├── arm_q15_to_float.c │ │ ├── arm_q15_to_q31.c │ │ ├── arm_q15_to_q7.c │ │ ├── arm_q31_to_float.c │ │ ├── arm_q31_to_q15.c │ │ ├── arm_q31_to_q7.c │ │ ├── arm_q7_to_float.c │ │ ├── arm_q7_to_q15.c │ │ └── arm_q7_to_q31.c │ │ └── TransformFunctions │ │ ├── arm_bitreversal.c │ │ ├── arm_bitreversal2.S │ │ ├── arm_cfft_f32.c │ │ ├── arm_cfft_q15.c │ │ ├── arm_cfft_q31.c │ │ ├── arm_cfft_radix2_f32.c │ │ ├── arm_cfft_radix2_init_f32.c │ │ ├── arm_cfft_radix2_init_q15.c │ │ ├── arm_cfft_radix2_init_q31.c │ │ ├── arm_cfft_radix2_q15.c │ │ ├── arm_cfft_radix2_q31.c │ │ ├── arm_cfft_radix4_f32.c │ │ ├── arm_cfft_radix4_init_f32.c │ │ ├── arm_cfft_radix4_init_q15.c │ │ ├── arm_cfft_radix4_init_q31.c │ │ ├── arm_cfft_radix4_q15.c │ │ ├── arm_cfft_radix4_q31.c │ │ ├── arm_cfft_radix8_f32.c │ │ ├── arm_dct4_f32.c │ │ ├── arm_dct4_init_f32.c │ │ ├── arm_dct4_init_q15.c │ │ ├── arm_dct4_init_q31.c │ │ ├── arm_dct4_q15.c │ │ ├── arm_dct4_q31.c │ │ ├── arm_rfft_f32.c │ │ ├── arm_rfft_fast_f32.c │ │ ├── arm_rfft_fast_init_f32.c │ │ ├── arm_rfft_init_f32.c │ │ ├── arm_rfft_init_q15.c │ │ ├── arm_rfft_init_q31.c │ │ ├── arm_rfft_q15.c │ │ └── arm_rfft_q31.c │ ├── Include │ ├── cmsis_armcc.h │ ├── cmsis_armclang.h │ ├── cmsis_compiler.h │ ├── cmsis_gcc.h │ ├── cmsis_iccarm.h │ ├── cmsis_version.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_cm4.h │ ├── core_cm7.h │ ├── core_sc000.h │ ├── core_sc300.h │ ├── mpu_armv7.h │ ├── mpu_armv8.h │ └── tz_context.h │ ├── LICENSE.txt │ ├── Lib │ ├── ARM │ │ ├── arm_cortexM0b_math.lib │ │ └── arm_cortexM0l_math.lib │ ├── GCC │ │ └── libarm_cortexM0l_math.a │ └── IAR │ │ ├── iar_cortexM0b_math.a │ │ └── iar_cortexM0l_math.a │ ├── NN │ ├── Examples │ │ └── ARM │ │ │ └── arm_nn_examples │ │ │ ├── cifar10 │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── RTE │ │ │ │ ├── Compiler │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ ├── _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 │ │ │ ├── _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 │ ├── Include │ │ ├── arm_nn_tables.h │ │ ├── arm_nnfunctions.h │ │ └── arm_nnsupportfunctions.h │ ├── NN_Lib_Tests │ │ └── nn_test │ │ │ ├── RTE │ │ │ ├── _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_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 │ │ ├── CMSIS_CORE_Files.png │ │ ├── CMSIS_CORE_Files_user.png │ │ ├── CMSIS_Logo_Final.png │ │ ├── CMSIS_TZ_files.png │ │ ├── MemoryMap_NS.png │ │ ├── MemoryMap_S.png │ │ ├── Registers.png │ │ ├── SimpleUseCase.png │ │ ├── TZ_context.png │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── check.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── cmsis.css │ │ ├── coreMISRA_Exceptions_pg.html │ │ ├── core_revisionHistory.html │ │ ├── deprecated.html │ │ ├── device_h_pg.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── globals.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__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__depricated__gr.html │ │ ├── group__version__control__depricated__gr.js │ │ ├── group__version__control__gr.html │ │ ├── group__version__control__gr.js │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── partition_h_pg.html │ │ ├── printComponentTabs.js │ │ ├── regMap_pg.html │ │ ├── resize.js │ │ ├── search.css │ │ ├── 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 │ │ ├── close.png │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── 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 │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── 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 │ │ ├── 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 │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── system_c_pg.html │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ ├── 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 │ │ ├── CMSIS_CORE_A_Files_user.png │ │ ├── CMSIS_Logo_Final.png │ │ ├── MISRA_8txt.html │ │ ├── Overview_8txt.html │ │ ├── Ref__SystemAndClock_8txt.html │ │ ├── Template_8txt.html │ │ ├── Using_8txt.html │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── check.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── 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 │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── 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.html │ │ ├── irq__ctrl_8h.html │ │ ├── irq__ctrl_8txt.html │ │ ├── irq__ctrl__gic_8c.html │ │ ├── jquery.js │ │ ├── mem__ARMCA9_8h.html │ │ ├── mem_h_pg.html │ │ ├── mmu_c_pg.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── open.png │ │ ├── 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.css │ │ ├── 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 │ │ ├── close.png │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── 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 │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── 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 │ │ ├── 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 │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── system__ARMCA9_8h.html │ │ ├── system_c_pg.html │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ ├── 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_DAP_DEBUG_UNIT.png │ │ ├── CMSIS_DAP_DEBUG_UNIT_ISO.png │ │ ├── CMSIS_DAP_INTERFACE.png │ │ ├── CMSIS_DAP_SWStack.png │ │ ├── CMSIS_Logo_Final.png │ │ ├── MDK_DAP_FW_V1.png │ │ ├── MDK_Device.png │ │ ├── MDK_Flash.png │ │ ├── MDK_USB.png │ │ ├── MDK_USB_Custom.png │ │ ├── MDK_USB_HID.png │ │ ├── MDK_Validation.png │ │ ├── RTE.png │ │ ├── SWD_Sequence.png │ │ ├── TraceManagement.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── cmsis.css │ │ ├── dap_revisionHistory.html │ │ ├── dir_337e536fb1c5b958880fe7603a37f369.html │ │ ├── dir_7a3f7b856c1d77e4a9a9049e84d3db8d.html │ │ ├── dir_8a9a80ba65bbb7b5dbf4c356bd5d76dc.html │ │ ├── dir_b5d04f2cbc78ef25a6a15ed077f1cac3.html │ │ ├── dir_cb0527c7e727b108bfc7cd695b443c90.html │ │ ├── dir_d89085dc47c43856a701cdaf126c493f.html │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── 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__TI__Capture.html │ │ ├── group__DAP__TI__Info.html │ │ ├── group__DAP__TI__TransferBlock.html │ │ ├── group__DAP__TI__Value.html │ │ ├── group__DAP__TestInput__gr.html │ │ ├── group__DAP__TestInput__gr.js │ │ ├── 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 │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── 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 │ │ ├── close.png │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── pages_1.html │ │ ├── pages_1.js │ │ ├── pages_2.html │ │ ├── pages_2.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ └── search_r.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ └── tabs.css │ ├── DSP │ └── html │ │ ├── Biquad.gif │ │ ├── BiquadCascade.gif │ │ ├── BiquadDF2Transposed.gif │ │ ├── BiquadPostshift.gif │ │ ├── CFFTQ15.gif │ │ ├── CFFTQ31.gif │ │ ├── CIFFTQ15.gif │ │ ├── CIFFTQ31.gif │ │ ├── CMSIS_Logo_Final.png │ │ ├── ChangeLog_pg.html │ │ ├── Change_01Log_8txt.html │ │ ├── Convolution.gif │ │ ├── ConvolutionEquation.gif │ │ ├── CorrelateEquation.gif │ │ ├── DCT4.gif │ │ ├── DCT4Equation.gif │ │ ├── FFTBin.gif │ │ ├── FFTBinInput.gif │ │ ├── FFTBinOutput.gif │ │ ├── FIR.gif │ │ ├── FIRDecimator.gif │ │ ├── FIRInterpolator.gif │ │ ├── FIRLPF_coeffs.gif │ │ ├── FIRLPF_input.gif │ │ ├── FIRLPF_output.gif │ │ ├── FIRLPF_response.gif │ │ ├── FIRLPF_signalflow.gif │ │ ├── FIRLattice.gif │ │ ├── FIRSparse.gif │ │ ├── GEQ_allbandresponse.gif │ │ ├── GEQ_bandresponse.gif │ │ ├── GEQ_inputchirp.gif │ │ ├── GEQ_outputchirp.gif │ │ ├── GEQ_signalflow.gif │ │ ├── IDCT4Equation.gif │ │ ├── IIRLattice.gif │ │ ├── LMS.gif │ │ ├── LinearInterp.gif │ │ ├── MatrixAddition.gif │ │ ├── MatrixInverse.gif │ │ ├── MatrixMultiplication.gif │ │ ├── MatrixScale.gif │ │ ├── MatrixSubtraction.gif │ │ ├── MatrixTranspose.gif │ │ ├── PID.gif │ │ ├── RFFT.gif │ │ ├── RFFTQ15.gif │ │ ├── RFFTQ31.gif │ │ ├── RIFFT.gif │ │ ├── RIFFTQ15.gif │ │ ├── RIFFTQ31.gif │ │ ├── SignalFlow.gif │ │ ├── Variance.gif │ │ ├── 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__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 │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── clarke.gif │ │ ├── clarkeFormula.gif │ │ ├── clarkeInvFormula.gif │ │ ├── classes.html │ │ ├── closed.png │ │ ├── cmsis.css │ │ ├── dct4FormatsQ15Table.gif │ │ ├── dct4FormatsQ31Table.gif │ │ ├── dct4NormalizingF32Table.gif │ │ ├── dct4NormalizingQ15Table.gif │ │ ├── dct4NormalizingQ31Table.gif │ │ ├── deprecated.html │ │ ├── dir_1170e6dac28fddf4fdc874a585bf14d6.html │ │ ├── dir_17f4c3c4a1c8e5f7adccdfcc8daad256.html │ │ ├── dir_2dfacf8e98c40fbe6b43e4f379522b9d.html │ │ ├── dir_3c115b2b6137a19040f05baba5bbe4bb.html │ │ ├── dir_4686057ebfd09ff788c87e22ea0e3543.html │ │ ├── dir_562f151f187819373d848c62a25ba73f.html │ │ ├── dir_650d82db24a6311fa7658fced19ae149.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 │ │ ├── dotProduct.gif │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── examples.html │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── 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_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__BasicMult.html │ │ ├── group__BasicMult.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__dot__prod.html │ │ ├── group__dot__prod.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__negate.html │ │ ├── group__negate.js │ │ ├── group__offset.html │ │ ├── group__offset.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__scale.html │ │ ├── group__scale.js │ │ ├── group__shift.html │ │ ├── group__shift.js │ │ ├── group__sin.html │ │ ├── group__sin.js │ │ ├── group__variance.html │ │ ├── group__variance.js │ │ ├── history_8txt.html │ │ ├── index.html │ │ ├── jquery.js │ │ ├── linearInterpExampleMethod1.gif │ │ ├── linearInterpExampleMethod2.gif │ │ ├── matrixExample.gif │ │ ├── modules.html │ │ ├── modules.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── park.gif │ │ ├── parkFormula.gif │ │ ├── parkInvFormula.gif │ │ ├── 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 │ │ ├── close.png │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── pages_1.html │ │ ├── pages_1.js │ │ ├── pages_2.html │ │ ├── pages_2.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── 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 │ │ ├── sinCos.gif │ │ ├── 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 │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ └── tabs.css │ ├── Driver │ └── html │ │ ├── CAN_Bit_Timing.png │ │ ├── CAN_Node.png │ │ ├── CMSIS_Logo_Final.png │ │ ├── Driver.png │ │ ├── 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 │ │ ├── EthernetSchematic.png │ │ ├── General_8txt.html │ │ ├── I2C_BlockDiagram.png │ │ ├── NAND_Schematics.png │ │ ├── Non_blocking_transmit_small.png │ │ ├── SAI_Schematics.png │ │ ├── SD_1BitBusMode.png │ │ ├── SD_4BitBusMode.png │ │ ├── SPI_BusMode.png │ │ ├── SPI_Master1Slaves.png │ │ ├── SPI_Master3Slaves.png │ │ ├── USB_Schematics.png │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── cmsis.css │ │ ├── dir_041cc4048c8229d7729b502626227b03.html │ │ ├── dir_7151b3cc910409bb744bd274374c738d.html │ │ ├── dir_9c39448ea46a8e15f1aabc7dec307fcf.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── driverValidation.html │ │ ├── driver_revisionHistory.html │ │ ├── driver_sai_i2s.png │ │ ├── driver_sai_lsb.png │ │ ├── driver_sai_msb.png │ │ ├── driver_sai_pcm.png │ │ ├── driver_sai_user.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── 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_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_i.html │ │ ├── globals_m.html │ │ ├── globals_n.html │ │ ├── globals_p.html │ │ ├── globals_r.html │ │ ├── globals_s.html │ │ ├── globals_type.html │ │ ├── globals_u.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__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 │ │ ├── image006.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── msc_inline_mscgraph_1.png │ │ ├── msc_inline_mscgraph_2.png │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── navtreeindex4.js │ │ ├── navtreeindex5.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── referenceImplementation.html │ │ ├── resize.js │ │ ├── search.css │ │ ├── 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 │ │ ├── close.png │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── 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 │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── 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 │ │ ├── storage_sw_stack.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ ├── tabs.css │ │ └── theoryOperation.html │ ├── General │ └── html │ │ ├── CMSIS_Logo_Final.png │ │ ├── CMSISv4_small.png │ │ ├── LICENSE.txt │ │ ├── Overview.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── cm_revisionHistory.html │ │ ├── cmsis.css │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ └── tabs.css │ ├── NN │ └── html │ │ ├── CIFAR10_CNN.gif │ │ ├── CMSIS-NN-OVERVIEW.PNG │ │ ├── CMSIS_Logo_Final.png │ │ ├── ChangeLog_pg.html │ │ ├── GRU.gif │ │ ├── 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__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 │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── cifar10_2readme_8txt.html │ │ ├── classes.html │ │ ├── closed.png │ │ ├── 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 │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── 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.html │ │ ├── jquery.js │ │ ├── modules.html │ │ ├── modules.js │ │ ├── namespacemembers.html │ │ ├── namespacemembers_func.html │ │ ├── namespacemembers_vars.html │ │ ├── namespacepara__gen.html │ │ ├── namespaces.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── 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_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 │ │ ├── close.png │ │ ├── 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 │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── namespaces_0.html │ │ ├── namespaces_0.js │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── pages_1.html │ │ ├── pages_1.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── 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 │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ ├── tabs.css │ │ ├── unionarm__nnword.html │ │ └── unionarm__nnword.js │ ├── Pack │ └── html │ │ ├── BSPBundleDisplay.png │ │ ├── BasicDFPDisplay.png │ │ ├── BoardsSectionMCB1500.png │ │ ├── CMSIS_Logo_Final.png │ │ ├── CodeVerify.png │ │ ├── ComponentDisplay.png │ │ ├── Component_Instances.png │ │ ├── ConditionsDisplay.png │ │ ├── DFPFlow.png │ │ ├── DebugConnect.png │ │ ├── DebugDisconnect.png │ │ ├── DevBoardDisplay.png │ │ ├── DeviceDatabase2.png │ │ ├── ExampleDisplay.png │ │ ├── FPADisplay.png │ │ ├── FPATargetOptions.png │ │ ├── FlashErase.png │ │ ├── FlashProgram.png │ │ ├── FlashVerify.png │ │ ├── LocalInstallation.png │ │ ├── MVCM3SpecTable.png │ │ ├── PDSC_Example_bottom.png │ │ ├── PDSC_Example_top.png │ │ ├── PackCreateSteps.png │ │ ├── RTX_Conf_CM_Wizard_View.png │ │ ├── Reset.png │ │ ├── SPVariants_small.png │ │ ├── SVDFlow.png │ │ ├── SVDIncluded.png │ │ ├── StartupSystemFilesAdded.png │ │ ├── SystemStartupFiles.png │ │ ├── UserCodeTemplatesDisplay.png │ │ ├── VariantDisplay.png │ │ ├── WebInstallation.png │ │ ├── algorithmFunc.html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── cmsis.css │ │ ├── component_files.png │ │ ├── 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 │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── element_keywords.html │ │ ├── element_releases.html │ │ ├── element_repository.html │ │ ├── element_requirements_pg.html │ │ ├── element_taxonomy.html │ │ ├── flashAlgorithm.html │ │ ├── flashAlgorithm.js │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── maxInstancesDisplay.png │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── packChk.html │ │ ├── packFormat.html │ │ ├── packFormat.js │ │ ├── packIndexFile.html │ │ ├── pack_Example.html │ │ ├── pack_revisionHistory.html │ │ ├── pages.html │ │ ├── pdsc_SequenceNameEnum_pg.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 │ │ ├── close.png │ │ ├── mag_sel.png │ │ ├── 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 │ │ ├── search_l.png │ │ ├── search_m.png │ │ └── search_r.png │ │ ├── simplepack_rte.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ └── tabs.css │ ├── RTOS │ └── html │ │ ├── API_Structure.png │ │ ├── CMSIS_Logo_Final.png │ │ ├── CMSIS_RTOS_Files.png │ │ ├── CMSIS_RTOS_Tutorial.pdf │ │ ├── MailQueue.png │ │ ├── MessageQueue.png │ │ ├── Mutex.png │ │ ├── RTX_Structure.png │ │ ├── RTX__Conf__CM_8c.html │ │ ├── Semaphore.png │ │ ├── ThreadStatus.png │ │ ├── Timer.png │ │ ├── TimerValues.png │ │ ├── add_item.png │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── 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 │ │ ├── config_wizard.png │ │ ├── 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 │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── exampleRTX_Tutorial.html │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── 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.html │ │ ├── jquery.js │ │ ├── lowPower.html │ │ ├── manage_rte_output.png │ │ ├── misraCompliance.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── own_lib_projwin.png │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── project_window.png │ │ ├── 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 │ │ ├── close.png │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── 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 │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── 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 │ │ ├── variables_7.html │ │ └── variables_7.js │ │ ├── simple_signal.png │ │ ├── stack_usage_watermark.png │ │ ├── structosMailQDef__t.html │ │ ├── structosMailQDef__t.js │ │ ├── structosMessageQDef__t.html │ │ ├── structosMessageQDef__t.js │ │ ├── structosMutexDef__t.html │ │ ├── structosMutexDef__t.js │ │ ├── structosPoolDef__t.html │ │ ├── structosPoolDef__t.js │ │ ├── structosSemaphoreDef__t.html │ │ ├── structosSemaphoreDef__t.js │ │ ├── structosThreadDef__t.html │ │ ├── structosThreadDef__t.js │ │ ├── structosTimerDef__t.html │ │ ├── structosTimerDef__t.js │ │ ├── svcFunctions.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── systemConfig.html │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ ├── tabs.css │ │ ├── technicalData.html │ │ ├── theory.html │ │ ├── threadConfig.html │ │ ├── timerTick.html │ │ ├── using.html │ │ └── usingOS.html │ ├── RTOS2 │ └── html │ │ ├── API_Structure.png │ │ ├── CMSIS_Logo_Final.png │ │ ├── CMSIS_RTOS_Files.png │ │ ├── CodingRules.html │ │ ├── MemAllocGlob.png │ │ ├── MemAllocSpec.png │ │ ├── MemAllocStat.png │ │ ├── MessageQueue.png │ │ ├── Mutex.png │ │ ├── PC-Lint.png │ │ ├── RTX5_Migrate1.PNG │ │ ├── Semaphore.png │ │ ├── ThreadStatus.png │ │ ├── Timer.png │ │ ├── TimerValues.png │ │ ├── add_item.png │ │ ├── annotated.html │ │ ├── annotated.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── 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 │ │ ├── config_wizard.png │ │ ├── config_wizard_eventFlags.png │ │ ├── config_wizard_evtrecGeneration.png │ │ ├── config_wizard_evtrecGlobEvtFiltSetup.png │ │ ├── config_wizard_evtrecGlobIni.png │ │ ├── config_wizard_evtrecRTOSEvtFilterSetup.png │ │ ├── config_wizard_memPool.png │ │ ├── config_wizard_msgQueue.png │ │ ├── config_wizard_mutex.png │ │ ├── config_wizard_semaphore.png │ │ ├── config_wizard_system.png │ │ ├── config_wizard_threads.png │ │ ├── config_wizard_timer.png │ │ ├── cre_rtx_proj.html │ │ ├── creating_RTX5_LIB.html │ │ ├── dir_002cf2dd0f795cc97a8d08cc3fa6e516.html │ │ ├── dir_061ad8d12aa7dc7d03c29112cd6e086d.html │ │ ├── dir_899d076620cccde5757c1c1ca5de63cc.html │ │ ├── dir_a43355fbfff7212ac2193223a73d577c.html │ │ ├── dir_f5870d36a7061bb81e1a64a750696f2d.html │ │ ├── dirstructfiles5.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── event_recorder_rte.png │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── 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__rtx5__specific__structs.html │ │ ├── group__rtx5__specific__structs.js │ │ ├── group__rtx5__specific__structs_structosRtxEventFlags__t.js │ │ ├── group__rtx5__specific__structs_structosRtxMemoryPool__t.js │ │ ├── group__rtx5__specific__structs_structosRtxMessageQueue__t.js │ │ ├── group__rtx5__specific__structs_structosRtxMutex__t.js │ │ ├── group__rtx5__specific__structs_structosRtxSemaphore__t.js │ │ ├── group__rtx5__specific__structs_structosRtxThread__t.js │ │ ├── group__rtx5__specific__structs_structosRtxTimerFinfo__t.js │ │ ├── group__rtx5__specific__structs_structosRtxTimer__t.js │ │ ├── group__rtx__evr.html │ │ ├── group__rtx__evr.js │ │ ├── group__rtx__evr__event__flasg.html │ │ ├── group__rtx__evr__event__flasg.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__timer.html │ │ ├── group__rtx__evr__timer.js │ │ ├── history_8txt.html │ │ ├── index.html │ │ ├── jquery.js │ │ ├── mainpage_8txt.html │ │ ├── manage_rte_cortex-a.png │ │ ├── manage_rte_output.png │ │ ├── mempool.png │ │ ├── misraCompliance5.html │ │ ├── modules.html │ │ ├── modules.js │ │ ├── mutex_states.png │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex3.js │ │ ├── open.png │ │ ├── os2Migration.html │ │ ├── os2Migration.js │ │ ├── os2MigrationFunctions.html │ │ ├── os2MigrationGuide.html │ │ ├── os__systick_8c.html │ │ ├── os__tick_8h.html │ │ ├── own_lib_projwin.png │ │ ├── pControlBlockSizes.html │ │ ├── pDirectory_Files.html │ │ ├── pHardwareRequirements.html │ │ ├── pToolchains.html │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── project_window.png │ │ ├── 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_structosRtxInfo__t_8timer.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 │ │ ├── scheduling.png │ │ ├── search.css │ │ ├── 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 │ │ ├── close.png │ │ ├── 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 │ │ ├── mag_sel.png │ │ ├── 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 │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── 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 │ │ ├── semaphore_states.png │ │ ├── simple_signal.png │ │ ├── structosRtxInfo__t_8post__process.html │ │ ├── structosRtxInfo__t_8post__process.js │ │ ├── structosRtxInfo__t_8timer.html │ │ ├── structosRtxInfo__t_8timer.js │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ ├── tabs.css │ │ ├── technicalData5.html │ │ ├── technicalData5.js │ │ ├── theory_of_operation.html │ │ └── validation_8txt.html │ ├── SVD │ └── html │ │ ├── CMSIS-SVD.xsd │ │ ├── CMSIS_Logo_Final.png │ │ ├── CMSIS_SVD_Schema_Gen.png │ │ ├── SystemViewer_Generated.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── cmsis.css │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── elem_cpu.html │ │ ├── elem_device.html │ │ ├── elem_peripherals.html │ │ ├── elem_registers.html │ │ ├── elem_special.html │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── 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 │ │ ├── close.png │ │ ├── mag_sel.png │ │ ├── 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 │ │ ├── search_l.png │ │ ├── search_m.png │ │ └── search_r.png │ │ ├── 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 │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ └── tabs.css │ ├── Zone │ ├── genmodel │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com │ │ │ └── arm │ │ │ │ └── cmsis │ │ │ │ └── zone │ │ │ │ └── gen │ │ │ │ └── data │ │ │ │ ├── FmBlock.html │ │ │ │ ├── FmCapture.html │ │ │ │ ├── FmDevice.html │ │ │ │ ├── FmInterrupt.html │ │ │ │ ├── FmProcess.html │ │ │ │ ├── FmProcessor.html │ │ │ │ ├── FmZone.html │ │ │ │ ├── class-use │ │ │ │ ├── FmBlock.html │ │ │ │ ├── FmCapture.html │ │ │ │ ├── FmDevice.html │ │ │ │ ├── FmInterrupt.html │ │ │ │ ├── FmProcess.html │ │ │ │ ├── FmProcessor.html │ │ │ │ └── FmZone.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-files │ │ │ ├── index-1.html │ │ │ ├── index-2.html │ │ │ ├── index-3.html │ │ │ └── index-4.html │ │ ├── index.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── script.js │ │ └── stylesheet.css │ └── html │ │ ├── CMSIS_Logo_Final.png │ │ ├── DevelopmentFlow.png │ │ ├── GenDataModel.html │ │ ├── XML_Format.html │ │ ├── XML_Format.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── check.png │ │ ├── closed.png │ │ ├── cmsis.css │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── format_assign.html │ │ ├── format_assign.js │ │ ├── format_block.html │ │ ├── format_capture.html │ │ ├── format_device.html │ │ ├── format_device.js │ │ ├── format_group.html │ │ ├── format_group.js │ │ ├── format_map_memory.html │ │ ├── format_map_peripheral.html │ │ ├── format_memory.html │ │ ├── format_memory.js │ │ ├── format_memory_map.html │ │ ├── format_memory_map.js │ │ ├── format_package.html │ │ ├── format_peripheral.html │ │ ├── format_peripherals.html │ │ ├── format_peripherals.js │ │ ├── format_processor.html │ │ ├── format_processor.js │ │ ├── format_pzone.html │ │ ├── format_pzone.js │ │ ├── format_region.html │ │ ├── format_region.js │ │ ├── format_resources.html │ │ ├── format_resources.js │ │ ├── format_system.html │ │ ├── format_system.js │ │ ├── format_xzone.html │ │ ├── format_xzone.js │ │ ├── format_zones.html │ │ ├── format_zones.js │ │ ├── ftv2blank.png │ │ ├── ftv2cl.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2mo.png │ │ ├── ftv2node.png │ │ ├── ftv2ns.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2splitbar.png │ │ ├── ftv2vertline.png │ │ ├── generator.png │ │ ├── genmodel.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── mpu.png │ │ ├── multicore.png │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── printComponentTabs.js │ │ ├── resize.js │ │ ├── search.css │ │ ├── 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 │ │ ├── close.png │ │ ├── files_0.html │ │ ├── files_0.js │ │ ├── files_1.html │ │ ├── files_1.js │ │ ├── files_2.html │ │ ├── files_2.js │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── pages_1.html │ │ ├── pages_1.js │ │ ├── pages_2.html │ │ ├── pages_2.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ └── search_r.png │ │ ├── soc-memorymap.png │ │ ├── som-decomposition.png │ │ ├── storagemodel.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tab_topnav.png │ │ ├── tabs.css │ │ ├── trustzone.png │ │ ├── zone-assignment.png │ │ └── zone_revisionHistory.html │ └── index.html ├── LICENSE.md ├── Projects ├── 32L0538DISCOVERY │ ├── Applications │ │ ├── FreeRTOS │ │ │ ├── FreeRTOS_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mail │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mutexes │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Queues │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Semaphore │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SemaphoreFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Signal │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SignalFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_ThreadCreation │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FreeRTOS_Timers │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── TouchSensing │ │ │ └── TouchSensing_Linear │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── stmCriticalSection.h │ │ │ │ ├── tsl_conf.h │ │ │ │ └── tsl_user.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L0xx_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── stmCriticalSection.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ └── tsl_user.c │ │ │ │ └── readme.txt │ │ └── USB_Device │ │ │ ├── DFU_Standalone │ │ │ ├── Binary │ │ │ │ ├── STM32L0xx_Discovery_SysTick_0x08007000.dfu │ │ │ │ └── readme.txt │ │ │ ├── EWARM │ │ │ │ ├── USBD_DFU.ewd │ │ │ │ ├── USBD_DFU.ewp │ │ │ │ ├── USBD_DFU.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── usbd_conf.h │ │ │ │ ├── usbd_desc.h │ │ │ │ └── usbd_dfu_flash.h │ │ │ ├── MDK-ARM │ │ │ │ ├── USBD_DFU.uvoptx │ │ │ │ ├── USBD_DFU.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_DISC_USB │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ ├── usbd_conf.c │ │ │ │ ├── usbd_desc.c │ │ │ │ └── usbd_dfu_flash.c │ │ │ └── readme.txt │ │ │ ├── HID_Standalone_BCD │ │ │ ├── EWARM │ │ │ │ ├── USBD_HID_BCD.ewd │ │ │ │ ├── USBD_HID_BCD.ewp │ │ │ │ ├── USBD_HID_BCD.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── tsl_conf.h │ │ │ │ ├── tsl_user.h │ │ │ │ ├── usbd_conf.h │ │ │ │ └── usbd_desc.h │ │ │ ├── MDK-ARM │ │ │ │ ├── USBD_HID_BCD.uvoptx │ │ │ │ ├── USBD_HID_BCD.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_DISC_USB │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ ├── tsl_user.c │ │ │ │ ├── usbd_conf.c │ │ │ │ └── usbd_desc.c │ │ │ └── readme.txt │ │ │ ├── HID_TSL_Standalone │ │ │ ├── EWARM │ │ │ │ ├── USBD_HID_TSL.ewd │ │ │ │ ├── USBD_HID_TSL.ewp │ │ │ │ ├── USBD_HID_TSL.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── tsl_conf.h │ │ │ │ ├── tsl_user.h │ │ │ │ ├── usbd_conf.h │ │ │ │ └── usbd_desc.h │ │ │ ├── MDK-ARM │ │ │ │ ├── USBD_HID_TSL.uvoptx │ │ │ │ ├── USBD_HID_TSL.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_DISC_USB │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ ├── tsl_user.c │ │ │ │ ├── usbd_conf.c │ │ │ │ └── usbd_desc.c │ │ │ └── readme.txt │ │ │ └── HID_TSL_Standalone_LPM │ │ │ ├── EWARM │ │ │ ├── USBD_HID_TSL_LPM.ewd │ │ │ ├── USBD_HID_TSL_LPM.ewp │ │ │ ├── USBD_HID_TSL_LPM.eww │ │ │ ├── startup_stm32l053xx.s │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── tsl_conf.h │ │ │ ├── tsl_user.h │ │ │ ├── usbd_conf.h │ │ │ └── usbd_desc.h │ │ │ ├── MDK-ARM │ │ │ ├── USBD_HID_TSL_LPM.uvoptx │ │ │ ├── USBD_HID_TSL_LPM.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L053C8_DISC_USB │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ ├── tsl_user.c │ │ │ ├── usbd_conf.c │ │ │ └── usbd_desc.c │ │ │ └── readme.txt │ ├── Demonstrations │ │ ├── Binary │ │ │ └── readme.txt │ │ ├── Config │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── tsl_conf.h │ │ │ ├── usbd_conf.c │ │ │ ├── usbd_conf.h │ │ │ └── usbd_desc.h │ │ ├── Core │ │ │ ├── Inc │ │ │ │ ├── bsp.h │ │ │ │ ├── main.h │ │ │ │ ├── menu.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── stmCriticalSection.h │ │ │ │ ├── tsl_config.h │ │ │ │ └── tsl_user.h │ │ │ └── Src │ │ │ │ ├── bsp.c │ │ │ │ ├── main.c │ │ │ │ ├── menu.c │ │ │ │ ├── menu_res.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ └── tsl_user.c │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l053xx.s │ │ │ └── stm32l053xx_flash.icf │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ ├── Modules │ │ │ ├── iddmeasurement │ │ │ │ ├── idd_res.c │ │ │ │ ├── power.c │ │ │ │ └── power.h │ │ │ └── usbHID │ │ │ │ ├── usbd_conf.c │ │ │ │ ├── usbd_desc.c │ │ │ │ ├── usbdapp.c │ │ │ │ ├── usbdapp.h │ │ │ │ └── usbdevice_res.c │ │ ├── SW4STM32 │ │ │ ├── STM32L0538-Discovery │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ ├── startup_stm32l053xx.s │ │ │ └── syscalls.c │ │ └── readme.txt │ ├── Examples │ │ ├── ADC │ │ │ ├── ADC_DMA_Transfer │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_OverSampler │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── ADC_RegularConversion_Interrupt │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── BSP │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── bsp.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L0538-Discovery-RevB03 │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ ├── STM32L0538-Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── syscalls.c │ │ │ ├── Src │ │ │ │ ├── bsp.c │ │ │ │ ├── main.c │ │ │ │ ├── menu_res.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── COMP │ │ │ ├── COMP_AnalogWatchdog │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP_PWMSignalControl │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── COMP_PulseWidthMeasurement │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ └── CRC_Example │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── Cortex │ │ │ ├── CORTEXM_MPU │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CORTEXM_ModePrivilege │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CORTEXM_SysTick │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DAC │ │ │ ├── DAC_SignalsGeneration │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DAC_SimpleConversion │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DMA │ │ │ ├── DMA_FLASHToRAM │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DMA_RAMToDAC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── FLASH │ │ │ ├── FLASH_EraseProgram │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FLASH_WriteProtection │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── GPIO │ │ │ ├── GPIO_EXTI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── GPIO_IOToggle_MaxFrequency │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── HAL │ │ │ └── HAL_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── I2C │ │ │ ├── I2C_TwoBoards_AdvComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── I2C_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── IWDG │ │ │ ├── IWDG_Reset │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── IWDG_WindowMode │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM │ │ │ ├── LPTIM_PWMExternalClock │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPTIM_PWM_LSE │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPTIM_PulseCounter │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── LPTIM_Timeout │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── PWR │ │ │ ├── PWR_LPRUN │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_LPSLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_PVD │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_SLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY_RTC │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STOP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_STOP_RTC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RNG │ │ │ └── RNG_MultiRNG │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RTC │ │ │ ├── RTC_Alarm │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Calendar │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_LSI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Tamper │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RTC_TimeStamp │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── SPI_FullDuplex_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_FullDuplex_ComIT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ ├── TIM_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_DMABurst │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_InputCapture │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCActive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMOutput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── TIM_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── UART │ │ │ ├── LPUART_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPUART_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── UART_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053C8_Discovery │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── WWDG │ │ │ └── WWDG_Example │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l053xx.s │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L053C8_DISCOVERY │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Templates │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l053xx.s │ │ │ └── stm32l053xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L053C8_Discovery │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ │ ├── startup_stm32l053xx.s │ │ │ └── syscalls.c │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ └── Templates_LL │ │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l053xx.s │ │ └── stm32l053xx_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32_assert.h │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l053xx.s │ │ ├── SW4STM32 │ │ ├── STM32L053C8_Discovery │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L053C8Tx_FLASH.ld │ │ └── startup_stm32l053xx.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ │ └── readme.txt ├── NUCLEO-L010RB │ ├── Examples │ │ ├── ADC │ │ │ └── ADC_DMA_Transfer │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_ADC_DMA_Transfer │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ └── CRC_Example │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_CRC_Example │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── Cortex │ │ │ └── CORTEXM_SysTick │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_CORTEXM_SysTick │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── GPIO │ │ │ └── GPIO_IOToggle │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_GPIO_IOToggle │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── IWDG │ │ │ └── IWDG_Reset │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_IWDG_Reset │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM │ │ │ └── LPTIM_Timeout │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_LPTIM_Timeout │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── PWR │ │ │ └── PWR_STANDBY │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_PWR_STANDBY │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RCC │ │ │ └── RCC_LSIConfig │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_RCC_LSIConfig │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RTC │ │ │ └── RTC_Alarm │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_RTC_Alarm │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ └── TIM_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l010xb.s │ │ │ │ └── stm32l010xb_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L010RB_NUCLEO_TIM_TimeBase │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ │ └── startup_stm32l010xb.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── WWDG │ │ │ └── WWDG_Example │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l010xb.s │ │ │ └── stm32l010xb_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l010xb.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L010RB_NUCLEO_WWDG_Example │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ └── startup_stm32l010xb.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Templates │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l010xb.s │ │ │ └── stm32l010xb_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l010xb.s │ │ ├── SW4STM32 │ │ │ ├── STM32L010RB_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L010RBTx_FLASH.ld │ │ │ └── startup_stm32l010xb.s │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ └── Templates_LL │ │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l010xb.s │ │ └── stm32l010xb_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32_assert.h │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l010xb.s │ │ ├── SW4STM32 │ │ ├── STM32L010RB_NUCLEO │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L010RBTx_FLASH.ld │ │ └── startup_stm32l010xb.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ │ └── readme.txt ├── NUCLEO-L011K4 │ ├── Demonstrations │ │ ├── Gravitech_4digits │ │ │ ├── Binary │ │ │ │ └── readme.txt │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── syscalls.c │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── LICENSE.md │ ├── Examples │ │ ├── ADC │ │ │ ├── ADC_DMA_Transfer │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── ADC_LowPower │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ └── CRC_Example │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRYP │ │ │ ├── CRYP_AESModes │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l021xx.s │ │ │ │ │ └── stm32l021xx_flash.icf │ │ │ │ ├── Expected_Results.txt │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l021xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CRYP_DMA │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l021xx.s │ │ │ │ └── stm32l021xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l021xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DMA │ │ │ └── DMA_FLASHToRAM │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── FLASH │ │ │ ├── FLASH_EraseProgram │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FLASH_WriteProtection │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── GPIO │ │ │ ├── GPIO_IOToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── GPIO_IOToggle_MaxFrequency │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── I2C │ │ │ ├── I2C_TwoBoards_AdvComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComPolling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── I2C_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── IWDG │ │ │ └── IWDG_Reset │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM │ │ │ └── LPTIM_PulseCounter │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── PWR │ │ │ ├── PWR_LPRUN │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_LPSLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_PVD │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_SLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY_RTC │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STOP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_STOP_RTC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RCC │ │ │ └── RCC_LSIConfig │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RTC │ │ │ ├── RTC_Alarm │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Calendar │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_LSI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Tamper │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RTC_TimeStamp │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── SPI_FullDuplex_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_FullDuplex_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_FullDuplex_ComPolling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ ├── TIM_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_DMABurst │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_InputCapture │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCActive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCInactive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OnePulse │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMOutput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── TIM_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── UART │ │ │ ├── UART_HyperTerminal_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_Printf │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComPolling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── UART_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l011xx.s │ │ │ │ └── stm32l011xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ │ └── startup_stm32l011xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── WWDG │ │ │ └── WWDG_Example │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l011xx.s │ │ │ └── stm32l011xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l011xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ └── startup_stm32l011xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Templates │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l011xx.s │ │ │ └── stm32l011xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l011xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L011K4_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ │ ├── startup_stm32l011xx.s │ │ │ └── syscalls.c │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ └── Templates_LL │ │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l011xx.s │ │ └── stm32l011xx_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32_assert.h │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l011xx.s │ │ ├── SW4STM32 │ │ ├── STM32L011K4_NUCLEO │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L011K4Tx_FLASH.ld │ │ └── startup_stm32l011xx.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ │ └── readme.txt ├── NUCLEO-L031K6 │ ├── Applications │ │ ├── FreeRTOS │ │ │ ├── FreeRTOS_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mail │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mutexes │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Queues │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Semaphore │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SemaphoreFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Signal │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SignalFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_ThreadCreation │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FreeRTOS_Timers │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── LICENSE.md │ ├── Demonstrations │ │ ├── Gravitech_4digits │ │ │ ├── Binary │ │ │ │ └── readme.txt │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── LICENSE.md │ ├── Examples │ │ ├── ADC │ │ │ ├── ADC_DMA_Transfer │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_OverSampler │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_RegularConversion_Interrupt │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── ADC_RegularConversion_Polling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── COMP │ │ │ └── COMP_PWMSignalControl │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ └── CRC_Example │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRYP │ │ │ ├── CRYP_AESModes │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l041xx.s │ │ │ │ │ └── stm32l041xx_flash.icf │ │ │ │ ├── Expected_Results.txt │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l041xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L041K6Tx_FLASH.ld │ │ │ │ │ ├── startup_stm32l041xx.s │ │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CRYP_DMA │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l041xx.s │ │ │ │ └── stm32l041xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l041xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L041K6Tx_FLASH.ld │ │ │ │ ├── startup_stm32l041xx.s │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DMA │ │ │ └── DMA_FLASHToRAM │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── FLASH │ │ │ ├── FLASH_EraseProgram │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FLASH_WriteProtection │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── GPIO │ │ │ ├── GPIO_IOToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO_IOToggle_MaxFrequency │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── GPIO_IOToggle_VariableFreq │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── I2C │ │ │ ├── I2C_TwoBoards_AdvComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComPolling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── I2C_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── IWDG │ │ │ └── IWDG_Reset │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM │ │ │ ├── LPTIM_PulseCounter │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── LPTIM_Timeout │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── PWR │ │ │ ├── PWR_LPRUN │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_LPSLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_PVD │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_SLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY_RTC │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STOP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_STOP_RTC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RCC │ │ │ └── RCC_LSIConfig │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RTC │ │ │ ├── RTC_Alarm │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Calendar │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_LSI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Tamper │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RTC_TimeStamp │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── SPI_FullDuplex_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_FullDuplex_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_FullDuplex_ComPolling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ ├── TIM_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_DMABurst │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_InputCapture │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCActive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCInactive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OnePulse │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMOutput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── TIM_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── UART │ │ │ ├── UART_HyperTerminal_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_Printf │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComPolling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── UART_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l031xx.s │ │ │ │ └── stm32l031xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ │ └── startup_stm32l031xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── WWDG │ │ │ └── WWDG_Example │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l031xx.s │ │ │ └── stm32l031xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l031xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ └── startup_stm32l031xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Templates │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l031xx.s │ │ │ └── stm32l031xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l031xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L031K6_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ │ └── startup_stm32l031xx.s │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ └── Templates_LL │ │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l031xx.s │ │ └── stm32l031xx_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32_assert.h │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l031xx.s │ │ ├── SW4STM32 │ │ ├── STM32L031K6_NUCLEO │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L031K6Tx_FLASH.ld │ │ └── startup_stm32l031xx.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ │ └── readme.txt ├── NUCLEO-L053R8 │ ├── Applications │ │ ├── FatFs │ │ │ ├── FatFs_uSD_RTOS │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── sd_diskio.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── sd_diskio.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FatFs_uSD_Standalone │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── ffconf.h │ │ │ │ ├── main.h │ │ │ │ ├── sd_diskio.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── sd_diskio.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── FreeRTOS │ │ │ ├── FreeRTOS_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_LowPower_LPTIM │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ │ └── stm32l0xx_timebase_lptim.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── low_power_tick_management_LPTIM.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ ├── stm32l0xx_timebase_lptim.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mail │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mutexes │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Queues │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Semaphore │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SemaphoreFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Signal │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SignalFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_ThreadCreation │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FreeRTOS_Timers │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ └── USB_Device │ │ │ ├── DFU_Standalone │ │ │ ├── Binary │ │ │ │ ├── STM32L0xx_Nucleo_SysTick_0x08007000.dfu │ │ │ │ └── readme.txt │ │ │ ├── EWARM │ │ │ │ ├── USBD_DFU.ewd │ │ │ │ ├── USBD_DFU.ewp │ │ │ │ ├── USBD_DFU.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── usbd_conf.h │ │ │ │ ├── usbd_desc.h │ │ │ │ └── usbd_dfu_flash.h │ │ │ ├── MDK-ARM │ │ │ │ ├── USBD_DFU.uvoptx │ │ │ │ ├── USBD_DFU.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO_USB │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ ├── usbd_conf.c │ │ │ │ ├── usbd_desc.c │ │ │ │ └── usbd_dfu_flash.c │ │ │ └── readme.txt │ │ │ ├── HID_Standalone │ │ │ ├── EWARM │ │ │ │ ├── USBD_HID.ewd │ │ │ │ ├── USBD_HID.ewp │ │ │ │ ├── USBD_HID.eww │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── usbd_conf.h │ │ │ │ └── usbd_desc.h │ │ │ ├── MDK-ARM │ │ │ │ ├── USBD_HID.uvoptx │ │ │ │ ├── USBD_HID.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO_USB │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ ├── usbd_conf.c │ │ │ │ └── usbd_desc.c │ │ │ └── readme.txt │ │ │ ├── HID_Standalone_BCD │ │ │ ├── EWARM │ │ │ │ ├── USBD_HID_BCD.ewd │ │ │ │ ├── USBD_HID_BCD.ewp │ │ │ │ ├── USBD_HID_BCD.eww │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── usbd_conf.h │ │ │ │ └── usbd_desc.h │ │ │ ├── MDK-ARM │ │ │ │ ├── USBD_HID_BCD.uvoptx │ │ │ │ ├── USBD_HID_BCD.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO_USB │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── system_stm32l0xx.c │ │ │ │ ├── usbd_conf.c │ │ │ │ └── usbd_desc.c │ │ │ └── readme.txt │ │ │ └── HID_Standalone_LPM │ │ │ ├── EWARM │ │ │ ├── USBD_HID_LPM.ewd │ │ │ ├── USBD_HID_LPM.ewp │ │ │ ├── USBD_HID_LPM.eww │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── usbd_conf.h │ │ │ └── usbd_desc.h │ │ │ ├── MDK-ARM │ │ │ ├── USBD_HID_LPM.uvoptx │ │ │ ├── USBD_HID_LPM.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L053R8_NUCLEO_USB │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ ├── usbd_conf.c │ │ │ └── usbd_desc.c │ │ │ └── readme.txt │ ├── Demonstrations │ │ ├── Binary │ │ │ └── readme.txt │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l053xx.s │ │ │ └── stm32l053xx_flash.icf │ │ ├── Inc │ │ │ ├── fatfs_storage.h │ │ │ ├── ffconf.h │ │ │ ├── main.h │ │ │ ├── sd_diskio.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ ├── startup_stm32l053xx.s │ │ │ └── syscalls.c │ │ ├── Src │ │ │ ├── fatfs_storage.c │ │ │ ├── main.c │ │ │ ├── sd_diskio.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ ├── Examples │ │ ├── ADC │ │ │ ├── ADC_DMA_Transfer │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_OverSampler │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_RegularConversion_Interrupt │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_RegularConversion_Polling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── ADC_Sequencer │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── AES │ │ │ ├── AES_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l063xx.s │ │ │ │ │ └── stm32l063xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l063xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L063R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l063xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── AES_Modes │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l063xx.s │ │ │ │ └── stm32l063xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l063xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L063R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l063xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── BSP │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── lcd_log_conf.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── syscalls.c │ │ │ ├── Src │ │ │ │ ├── joystick.c │ │ │ │ ├── lcd.c │ │ │ │ ├── main.c │ │ │ │ ├── sd.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── COMP │ │ │ ├── COMP_AnalogWatchdog │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP_Interrupt │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP_PWMSignalControl │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── COMP_PulseWidthMeasurement │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ └── CRC_Example │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── Cortex │ │ │ ├── CORTEXM_MPU │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CORTEXM_ModePrivilege │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CORTEXM_SysTick │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DAC │ │ │ ├── DAC_SignalsGeneration │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DAC_SimpleConversion │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DMA │ │ │ ├── DMA_FLASHToRAM │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DMA_RAMToDAC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── FLASH │ │ │ ├── FLASH_EraseProgram │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FLASH_WriteProtection │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── GPIO │ │ │ ├── GPIO_EXTI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO_IOToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── GPIO_IOToggle_MaxFrequency │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── HAL │ │ │ └── HAL_TimeBase_TIM │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_hal_timebase_tim.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── I2C │ │ │ ├── I2C_TwoBoards_AdvComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── I2C_TwoBoards_ComPolling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── IWDG │ │ │ ├── IWDG_Reset │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── IWDG_WindowMode │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LCD │ │ │ ├── LCD_Blink_Frequency │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ │ ├── stm32l152c_discovery.h │ │ │ │ │ └── stm32l152c_discovery_lcd.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ ├── stm32l152c_discovery.c │ │ │ │ │ ├── stm32l152c_discovery_lcd.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── LCD_SegmentsDrive │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ ├── stm32l0xx_it.h │ │ │ │ ├── stm32l152c_discovery.h │ │ │ │ └── stm32l152c_discovery_lcd.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ ├── stm32l152c_discovery.c │ │ │ │ ├── stm32l152c_discovery_lcd.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM │ │ │ ├── LPTIM_PWMExternalClock │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPTIM_PWM_LSE │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── LPTIM_PulseCounter │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── LPTIM_Timeout │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── PWR │ │ │ ├── PWR_LPRUN │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_LPSLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_PVD │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_SLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY_RTC │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STOP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_STOP_RTC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RCC │ │ │ └── RCC_ClockConfig │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RNG │ │ │ └── RNG_MultiRNG │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RTC │ │ │ ├── RTC_Alarm │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_LSI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Tamper │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RTC_TimeStamp │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── SPI_FullDuplex_AdvCom │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L0xx_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_FullDuplex_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_FullDuplex_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_FullDuplex_ComPolling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ ├── TIM_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_DMABurst │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_ExtTriggerSynchro │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_InputCapture │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCActive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCInactive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OnePulse │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMInput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMOutput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── TIM_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── UART │ │ │ ├── UART_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── UART_TwoBoards_ComPolling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l053xx.s │ │ │ │ └── stm32l053xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ │ └── startup_stm32l053xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── WWDG │ │ │ └── WWDG_Example │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l053xx.s │ │ │ └── stm32l053xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ └── startup_stm32l053xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Templates │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l053xx.s │ │ │ └── stm32l053xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l053xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L053R8_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ │ └── startup_stm32l053xx.s │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ └── Templates_LL │ │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l053xx.s │ │ └── stm32l053xx_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32_assert.h │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l053xx.s │ │ ├── SW4STM32 │ │ ├── STM32L053R8_NUCLEO │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L053R8Tx_FLASH.ld │ │ └── startup_stm32l053xx.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ │ └── readme.txt ├── NUCLEO-L073RZ │ ├── Applications │ │ ├── FreeRTOS │ │ │ ├── FreeRTOS_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mail │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Mutexes │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Queues │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Semaphore │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SemaphoreFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_Signal │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_SignalFromISR │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── FreeRTOS_ThreadCreation │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── RTE_Components.h │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FreeRTOS_Timers │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ ├── RTE │ │ │ │ │ └── RTE_Components.h │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── LICENSE.md │ ├── Demonstrations │ │ ├── Adafruit_LCD_1_8_SD_Joystick │ │ │ ├── Binary │ │ │ │ └── readme.txt │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── fatfs_storage.h │ │ │ │ ├── ffconf.h │ │ │ │ ├── main.h │ │ │ │ ├── sd_diskio.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── syscalls.c │ │ │ ├── Src │ │ │ │ ├── fatfs_storage.c │ │ │ │ ├── main.c │ │ │ │ ├── sd_diskio.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── LICENSE.md │ ├── Examples │ │ ├── ADC │ │ │ ├── ADC_AnalogWatchdog │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_DMA_Transfer │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_RegularConversion_Interrupt │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── ADC_RegularConversion_Polling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── COMP │ │ │ ├── COMP_AnalogWatchdog │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── COMP_PWMSignalControl │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── COMP_PulseWidthMeasurement │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ ├── CRC_Data_Reversing_16bit_CRC │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── STM32L073RZTx_FLASH.ld │ │ │ │ │ │ └── STM32L073RZ_NUCLEO.xml │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── CRC_Example │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CRC_bytes_stream_7bit_CRC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRYP │ │ │ ├── CRYP_AESModes │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l083xx.s │ │ │ │ │ └── stm32l083xx_flash.icf │ │ │ │ ├── Expected_Results.txt │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l083xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ ├── NUCLEO-L083.cfg │ │ │ │ │ │ ├── STM32L083RZTx_FLASH.ld │ │ │ │ │ │ ├── STM32L083VZ_FLASH.ld │ │ │ │ │ │ └── nucleo-l083.xml │ │ │ │ │ ├── startup_stm32l083xx.s │ │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CRYP_DMA │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l083xx.s │ │ │ │ └── stm32l083xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l083xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── NUCLEO-L083.cfg │ │ │ │ │ ├── STM32L083RZTx_FLASH.ld │ │ │ │ │ ├── STM32L083RZ_FLASH.ld │ │ │ │ │ └── nucleo-l083.xml │ │ │ │ ├── startup_stm32l083xx.s │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── Cortex │ │ │ ├── CORTEXM_MPU │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_mpu.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32_mpu.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CORTEXM_SysTick │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DAC │ │ │ ├── DAC_SignalsGeneration │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DAC_SimpleConversion │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DMA │ │ │ ├── DMA_FLASHToRAM │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DMA_RAMToDAC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── FLASH │ │ │ ├── FLASH_EraseProgram │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── FLASH_WriteProtection │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── GPIO │ │ │ ├── GPIO_EXTI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── GPIO_IOToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── GPIO_IOToggle_MaxFrequency │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── I2C │ │ │ ├── I2C_TwoBoards_AdvComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_RestartAdvComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_RestartComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── I2C_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── IWDG │ │ │ ├── IWDG_Reset │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── IWDG_WindowMode │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM │ │ │ ├── LPTIM_PulseCounter │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── LPTIM_Timeout │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── PWR │ │ │ ├── PWR_LPRUN │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_LPSLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_PVD │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_SLEEP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STANDBY_RTC │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_STOP │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_STOP_RTC │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RCC │ │ │ └── RCC_LSIConfig │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RNG │ │ │ └── RNG_MultiRNG │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RTC │ │ │ ├── RTC_Alarm │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_LSI │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Tamper │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RTC_TimeStamp │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── SPI_FullDuplex_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_FullDuplex_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_FullDuplex_ComPolling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ ├── TIM_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_DMABurst │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_InputCapture │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCActive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCInactive │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OCToggle │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OnePulse │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMInput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMOutput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── TIM_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── UART │ │ │ ├── UART_TwoBoards_ComDMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── UART_TwoBoards_ComIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── UART_TwoBoards_ComPolling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── WWDG │ │ │ └── WWDG_Example │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Examples_LL │ │ ├── ADC │ │ │ ├── ADC_AnalogWatchdog │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_ContinuousConversion_TriggerSW │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_ContinuousConversion_TriggerSW_Init │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_ContinuousConversion_TriggerSW_LowPower │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_MultiChannelSingleConversion │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_Oversampling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_SingleConversion_TriggerSW │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_SingleConversion_TriggerSW_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_SingleConversion_TriggerSW_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── ADC_SingleConversion_TriggerTimer_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── ADC_TemperatureSensor │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── COMP │ │ │ ├── COMP_CompareWithInternalReference_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── COMP_CompareWithInternalReference_IT_Init │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CORTEX │ │ │ └── CORTEX_MPU │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ ├── CRC_CalculateAndCheck │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CRC_UserDefinedPolynomial │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRS │ │ │ ├── CRS_Synchronization_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── CRS_Synchronization_Polling │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DAC │ │ │ ├── DAC_GenerateConstantSignal_TriggerSW │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── DAC_GenerateWaveform_TriggerHW │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DAC_GenerateWaveform_TriggerHW_Init │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DMA │ │ │ ├── DMA_CopyFromFlashToMemory │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── DMA_CopyFromFlashToMemory_Init │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── EXTI │ │ │ ├── EXTI_ToggleLedOnIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── EXTI_ToggleLedOnIT_Init │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── GPIO │ │ │ ├── GPIO_InfiniteLedToggling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── GPIO_InfiniteLedToggling_Init │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── I2C │ │ │ ├── I2C_OneBoard_AdvCommunication_DMAAndIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_OneBoard_Communication_DMAAndIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_OneBoard_Communication_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_OneBoard_Communication_IT_Init │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_OneBoard_Communication_PollingAndIT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_MasterRx_SlaveTx_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── I2C_TwoBoards_MasterTx_SlaveRx_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── I2C_TwoBoards_WakeUpFromStop_IT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── IWDG │ │ │ └── IWDG_RefreshUntilUserEvent │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── LPTIM │ │ │ ├── LPTIM_PulseCounter │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── LPTIM_PulseCounter_Init │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LPUART │ │ │ ├── LPUART_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── LPUART_WakeUpFromStop_Init │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── PWR │ │ │ ├── PWR_EnterStandbyMode │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_EnterStopMode │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── PWR_LPRunMode_SRAM1 │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_sram.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Dbg_RAM.ini │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_OptimizedRunMode │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RCC │ │ │ ├── RCC_OutputSystemClockOnMCO │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RCC_UseHSEasSystemClock │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RCC_UseHSI_PLLasSystemClock │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RNG │ │ │ ├── RNG_GenerateRandomNumbers │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RNG_GenerateRandomNumbers_IT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── RTC │ │ │ ├── RTC_Alarm │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Alarm_Init │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Calendar │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_ExitStandbyWithWakeUpTimer │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_ProgrammingTheWakeUpTimer │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── RTC_Tamper │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── RTC_TimeStamp │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── SPI_OneBoard_HalfDuplex_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_OneBoard_HalfDuplex_DMA_Init │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_OneBoard_HalfDuplex_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── SPI_TwoBoards_FullDuplex_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_TwoBoards_FullDuplex_IT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ ├── TIM_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_InputCapture │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OnePulse │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_OutputCompare │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMOutput │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── TIM_PWMOutput_Init │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── TIM_TimeBase │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── USART │ │ │ ├── USART_Communication_Rx_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_Communication_Rx_IT_Continuous │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── syscalls.c │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_Communication_Rx_IT_Init │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_Communication_Tx │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_Communication_TxRx_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_Communication_Tx_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_HardwareFlowControl │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_SyncCommunication_FullDuplex_DMA │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ ├── USART_SyncCommunication_FullDuplex_IT │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── USART_WakeUpFromStop │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── UTILS │ │ │ ├── UTILS_ConfigureSystemClock │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32_assert.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── UTILS_ReadDeviceInfo │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── WWDG │ │ │ └── WWDG_RefreshUntilUserEvent │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32_assert.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Examples_MIX │ │ ├── ADC │ │ │ └── ADC_SingleConversion_TriggerSW_IT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── CRC │ │ │ └── CRC_PolynomialUpdate │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── DMA │ │ │ └── DMA_FLASHToRAM │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── I2C │ │ │ └── I2C_OneBoard_ComSlave7_10bits_IT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── LICENSE.md │ │ ├── PWR │ │ │ ├── PWR_STANDBY_RTC │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── PWR_STOP │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_assert.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── SPI_FullDuplex_ComPolling │ │ │ │ ├── EWARM │ │ │ │ │ ├── Project.ewd │ │ │ │ │ ├── Project.ewp │ │ │ │ │ ├── Project.eww │ │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ │ ├── main.h │ │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ │ ├── Project.uvoptx │ │ │ │ │ ├── Project.uvprojx │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ │ ├── .cproject │ │ │ │ │ │ ├── .project │ │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ │ └── SPI_HalfDuplex_ComPollingIT │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ ├── TIM │ │ │ └── TIM_PWMInput │ │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ │ └── readme.txt │ │ └── UART │ │ │ ├── UART_HyperTerminal_IT │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ │ └── UART_HyperTerminal_TxPolling_RxIT │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Templates │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L073RZ_NUCLEO │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073RZTx_FLASH.ld │ │ │ ├── startup_stm32l073xx.s │ │ │ └── syscalls.c │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ └── Templates_LL │ │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l073xx.s │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32_assert.h │ │ └── stm32l0xx_it.h │ │ ├── LICENSE.md │ │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ ├── STM32L073RZ_NUCLEO │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L073RZTx_FLASH.ld │ │ └── startup_stm32l073xx.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ │ └── readme.txt ├── Release_Notes.html ├── STM32CubeProjectsList.html └── STM32L073Z-EVAL │ ├── Applications │ ├── FatFs │ │ └── FatFs_uSD_Standalone │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── ffconf.h │ │ │ ├── main.h │ │ │ ├── sd_diskio.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL_FatFs_uSD_Standalone │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── sd_diskio.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── FreeRTOS │ │ ├── FreeRTOS_LowPower │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ ├── RTE │ │ │ │ │ └── RTE_Components.h │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_Mail │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_Mutexes │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ ├── RTE │ │ │ │ │ └── RTE_Components.h │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_Queues │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_Semaphore │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_SemaphoreFromISR │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_Signal │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_SignalFromISR │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FreeRTOS_ThreadCreation │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── FreeRTOS_Timers │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── IAP │ │ ├── IAP_Binary_Template │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash_offset.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ ├── Utilities │ │ │ │ └── axftobin.bat │ │ │ └── readme.txt │ │ └── IAP_Main │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── common.h │ │ │ ├── flash_if.h │ │ │ ├── main.h │ │ │ ├── menu.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ └── ymodem.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── common.c │ │ │ ├── flash_if.c │ │ │ ├── main.c │ │ │ ├── menu.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ └── ymodem.c │ │ │ └── readme.txt │ ├── LCD │ │ └── LCD_Display_Text │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── LICENSE.md │ ├── TouchSensing │ │ └── TouchSensing_Linear │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── stmCriticalSection.h │ │ │ ├── tsl_conf.h │ │ │ └── tsl_user.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── stmCriticalSection.c │ │ │ ├── system_stm32l0xx.c │ │ │ └── tsl_user.c │ │ │ └── readme.txt │ └── USB_Device │ │ ├── CDC_Standalone │ │ ├── EWARM │ │ │ ├── USBD_CDC.ewd │ │ │ ├── USBD_CDC.ewp │ │ │ ├── USBD_CDC.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── usbd_cdc_interface.h │ │ │ ├── usbd_conf.h │ │ │ └── usbd_desc.h │ │ ├── MDK-ARM │ │ │ ├── USBD_CDC.uvoptx │ │ │ ├── USBD_CDC.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ ├── startup_stm32l073xx.s │ │ │ └── syscalls.c │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ ├── usbd_cdc_interface.c │ │ │ ├── usbd_conf.c │ │ │ └── usbd_desc.c │ │ └── readme.txt │ │ ├── DFU_Standalone │ │ ├── Binary │ │ │ ├── STM32L073Z-EVAL_SysTick_0x08003C00.dfu │ │ │ └── readme.txt │ │ ├── EWARM │ │ │ ├── USBD_DFU.ewd │ │ │ ├── USBD_DFU.ewp │ │ │ ├── USBD_DFU.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── usbd_conf.h │ │ │ ├── usbd_desc.h │ │ │ └── usbd_dfu_flash.h │ │ ├── MDK-ARM │ │ │ ├── USBD_DFU.uvoptx │ │ │ ├── USBD_DFU.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ ├── usbd_conf.c │ │ │ ├── usbd_desc.c │ │ │ └── usbd_dfu_flash.c │ │ └── readme.txt │ │ ├── HID_Standalone │ │ ├── EWARM │ │ │ ├── USBD_HID.ewd │ │ │ ├── USBD_HID.ewp │ │ │ ├── USBD_HID.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── usbd_conf.h │ │ │ └── usbd_desc.h │ │ ├── MDK-ARM │ │ │ ├── USBD_HID.uvoptx │ │ │ ├── USBD_HID.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ ├── startup_stm32l073xx.s │ │ │ └── syscalls.c │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ ├── usbd_conf.c │ │ │ └── usbd_desc.c │ │ └── readme.txt │ │ ├── HID_Standalone_BCD │ │ ├── EWARM │ │ │ ├── USBD_HID_BCD.ewd │ │ │ ├── USBD_HID_BCD.ewp │ │ │ ├── USBD_HID_BCD.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── usbd_conf.h │ │ │ └── usbd_desc.h │ │ ├── MDK-ARM │ │ │ ├── USBD_HID_BCD.uvoptx │ │ │ ├── USBD_HID_BCD.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ ├── usbd_conf.c │ │ │ └── usbd_desc.c │ │ └── readme.txt │ │ ├── HID_Standalone_LPM │ │ ├── EWARM │ │ │ ├── USBD_HID_LPM.ewd │ │ │ ├── USBD_HID_LPM.ewp │ │ │ ├── USBD_HID_LPM.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ ├── usbd_conf.h │ │ │ └── usbd_desc.h │ │ ├── MDK-ARM │ │ │ ├── USBD_HID_LPM.uvoptx │ │ │ ├── USBD_HID_LPM.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ ├── usbd_conf.c │ │ │ └── usbd_desc.c │ │ └── readme.txt │ │ └── MSC_Standalone │ │ ├── EWARM │ │ ├── USBD_MSC.ewd │ │ ├── USBD_MSC.ewp │ │ ├── USBD_MSC.eww │ │ ├── startup_stm32l073xx.s │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32l0xx_hal_conf.h │ │ ├── stm32l0xx_it.h │ │ ├── usbd_conf.h │ │ ├── usbd_desc.h │ │ └── usbd_storage.h │ │ ├── MDK-ARM │ │ ├── USBD_MSC.uvoptx │ │ ├── USBD_MSC.uvprojx │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ ├── STM32L073Z_EVAL │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L073VZTx_FLASH.ld │ │ └── startup_stm32l073xx.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_it.c │ │ ├── system_stm32l0xx.c │ │ ├── usbd_conf.c │ │ ├── usbd_desc.c │ │ └── usbd_storage.c │ │ └── readme.txt │ ├── Demonstrations │ ├── Binary │ │ └── readme.txt │ ├── Config │ │ ├── ffconf.h │ │ ├── k_config.h │ │ ├── sd_diskio.c │ │ ├── sd_diskio.h │ │ └── stm32l0xx_hal_conf.h │ ├── Core │ │ ├── Inc │ │ │ ├── k_demo.h │ │ │ ├── k_menu.h │ │ │ ├── k_module.h │ │ │ ├── k_storage.h │ │ │ ├── k_tools.h │ │ │ └── k_window.h │ │ └── Src │ │ │ ├── k_demo.c │ │ │ ├── k_menu.c │ │ │ ├── k_module.c │ │ │ ├── k_storage.c │ │ │ ├── k_tools.c │ │ │ └── k_window.c │ ├── Demo │ │ ├── Inc │ │ │ ├── main.h │ │ │ └── stm32l0xx_it.h │ │ └── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l073xx.s │ │ └── stm32l073xx_flash.icf │ ├── LICENSE.md │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ ├── STM32L073Z_EVAL_Demo │ │ │ └── Exe │ │ │ │ └── STM32L073VZ_EVAL_DEMO.sct │ │ └── startup_stm32l073xx.s │ ├── Modules │ │ ├── help_app │ │ │ ├── help_app.c │ │ │ └── help_app.h │ │ ├── lc_sensor_metering │ │ │ ├── lc_sensor_metering_app.c │ │ │ └── lc_sensor_metering_app.h │ │ ├── low_power │ │ │ ├── lowpower_app.c │ │ │ └── lowpower_app.h │ │ ├── lpuart_wakeup │ │ │ ├── lpuart_wakeup_app.c │ │ │ └── lpuart_wakeup_app.h │ │ ├── main_app │ │ │ ├── main_app.c │ │ │ └── main_app.h │ │ ├── pressure │ │ │ ├── histogram.c │ │ │ ├── histogram.h │ │ │ ├── pressure_app.c │ │ │ └── pressure_app.h │ │ └── thermometer │ │ │ ├── stm32l0xx_tsensor.c │ │ │ ├── stm32l0xx_tsensor.h │ │ │ ├── thermometer_app.c │ │ │ └── thermometer_app.h │ ├── SW4STM32 │ │ ├── STM32L073Z_EVAL_Demo │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L073VZTx_FLASH.ld │ │ ├── startup_stm32l073xx.s │ │ └── syscalls.c │ └── readme.txt │ ├── Examples │ ├── ADC │ │ ├── ADC_AnalogWatchdog │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── ADC_DMA_Transfer │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── ADC_LowPower │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── ADC_RegularConversion_Interrupt │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── ADC_RegularConversion_Polling │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── BSP │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ │ ├── lcd_log_conf.h │ │ │ ├── main.h │ │ │ ├── stlogo.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ ├── startup_stm32l073xx.s │ │ │ └── syscalls.c │ │ ├── Src │ │ │ ├── eeprom.c │ │ │ ├── joystick.c │ │ │ ├── lcd.c │ │ │ ├── log.c │ │ │ ├── main.c │ │ │ ├── sd.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── system_stm32l0xx.c │ │ │ └── temperature_sensor.c │ │ └── readme.txt │ ├── COMP │ │ ├── COMP_AnalogWatchdog │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── COMP_PWMSignalControl │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── COMP_PulseWidthMeasurement │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── CRC │ │ └── CRC_Example │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── Cortex │ │ ├── CORTEXM_MPU │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32_mpu.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32_mpu.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── CORTEXM_SysTick │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── DAC │ │ ├── DAC_SignalsGeneration │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── DAC_SimpleConversion │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── DMA │ │ └── DMA_FLASHToRAM │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── FIREWALL │ │ ├── FIREWALL_VolatileData_Executable │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_sram.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── protected_vdata_code.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ └── STM32L073Z_EVAL.sct │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── protected_vdata_code.c │ │ │ │ ├── protected_volatile_data.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── FIREWALL_VolatileData_Shared │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── protected_code.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ ├── STM32L073Z_EVAL │ │ │ │ └── STM32L073Z_EVAL.sct │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ ├── startup_stm32l073xx.s │ │ │ └── syscalls.c │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── protected_code.c │ │ │ ├── protected_nonvolatile_data.c │ │ │ ├── protected_volatile_data.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── FLASH │ │ ├── FLASH_DualBoot │ │ │ ├── Binary │ │ │ │ └── FLASH_DualBoot.bin │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_dualbankboot.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ ├── axftobin.bat │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── FLASH_DualBoot_Bank1_Boot │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ ├── FLASH_DualBoot_Bank2_Boot │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_dualbankboot.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── FLASH_EraseProgram │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── FLASH_WriteProtection │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── GPIO │ │ ├── GPIO_EXTI │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── GPIO_IOToggle │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── GPIO_IOToggle_MaxFrequency │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── I2C │ │ ├── I2C_TwoBoards_AdvComIT │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── I2C_TwoBoards_ComDMA │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── I2C_WakeUpFromStop │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── IWDG │ │ ├── IWDG_Reset │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── IWDG_WindowMode │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZTx_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── LCD │ │ └── LCD_Blink_Frequency │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── LICENSE.md │ ├── LPTIM │ │ ├── LPTIM_PWMExternalClock │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── LPTIM_PWM_LSE │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── LPTIM_PulseCounter │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── LPTIM_Timeout │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── PWR │ │ ├── PWR_LPRUN │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── PWR_LPSLEEP │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── PWR_PVD │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── PWR_SLEEP │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── PWR_STANDBY │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── PWR_STANDBY_RTC │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── PWR_STOP │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── PWR_STOP_RTC │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── RCC │ │ ├── RCC_CRS_Synchronization_IT │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── RCC_CRS_Synchronization_Polling │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── RCC_ClockConfig │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── RCC_LSIConfig │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── RNG │ │ └── RNG_MultiRNG │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── RTC │ │ ├── RTC_Alarm │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── RTC_Calendar │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── RTC_LSI │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── RTC_LowPower_STANDBY │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ ├── Project_STM32L073Z_EVAL.dep │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── RTC_Tamper │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── RTC_TimeStamp │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── SMBUS │ │ └── SMBUS_TSENSOR │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stlogo.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_it.h │ │ │ └── stm32l0xx_tsensor.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ ├── stm32l0xx_tsensor.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── SPI │ │ ├── SPI_FullDuplex_ComDMA │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── SPI_FullDuplex_ComIT │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── SPI_FullDuplex_ComPolling │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── TIM │ │ ├── TIM_DMA │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── TIM_DMABurst │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── TIM_InputCapture │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── TIM_OCActive │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── TIM_OCInactive │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── TIM_OCToggle │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── TIM_OnePulse │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── TIM_PWMOutput │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── TIM_TimeBase │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── TSC │ │ ├── TSC_BasicAcquisition_Interrupt │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── TSC_BasicAcquisition_Polling │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ ├── UART │ │ ├── UART_HyperTerminal_DMA │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── UART_LowPower_HyperTerminal_DMA │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── UART_Printf │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── syscalls.c │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── UART_TwoBoards_ComDMA │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── UART_TwoBoards_ComIT │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ ├── UART_TwoBoards_ComPolling │ │ │ ├── EWARM │ │ │ │ ├── Project.ewd │ │ │ │ ├── Project.ewp │ │ │ │ ├── Project.eww │ │ │ │ ├── startup_stm32l073xx.s │ │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ │ ├── main.h │ │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ │ ├── Project.uvoptx │ │ │ │ ├── Project.uvprojx │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ │ ├── STM32L073Z_EVAL │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ │ ├── main.c │ │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ │ ├── stm32l0xx_it.c │ │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ │ └── UART_WakeUpFromStop │ │ │ ├── EWARM │ │ │ ├── Project.ewd │ │ │ ├── Project.ewp │ │ │ ├── Project.eww │ │ │ ├── startup_stm32l073xx.s │ │ │ └── stm32l073xx_flash.icf │ │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ └── stm32l0xx_it.h │ │ │ ├── MDK-ARM │ │ │ ├── Project.uvoptx │ │ │ ├── Project.uvprojx │ │ │ ├── Project_STM32L073Z_EVAL.dep │ │ │ └── startup_stm32l073xx.s │ │ │ ├── SW4STM32 │ │ │ ├── STM32L073Z_EVAL │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ └── STM32L073VZ_FLASH.ld │ │ │ └── startup_stm32l073xx.s │ │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32l0xx_hal_msp.c │ │ │ ├── stm32l0xx_it.c │ │ │ └── system_stm32l0xx.c │ │ │ └── readme.txt │ └── WWDG │ │ └── WWDG_Example │ │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l073xx.s │ │ └── stm32l073xx_flash.icf │ │ ├── Inc │ │ ├── main.h │ │ ├── stm32l0xx_hal_conf.h │ │ └── stm32l0xx_it.h │ │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l073xx.s │ │ ├── SW4STM32 │ │ ├── STM32L073Z_EVAL │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L073VZTx_FLASH.ld │ │ └── startup_stm32l073xx.s │ │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_hal_msp.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ │ └── readme.txt │ ├── Templates │ ├── EWARM │ │ ├── Project.ewd │ │ ├── Project.ewp │ │ ├── Project.eww │ │ ├── startup_stm32l073xx.s │ │ └── stm32l073xx_flash.icf │ ├── Inc │ │ ├── main.h │ │ ├── stm32l0xx_hal_conf.h │ │ └── stm32l0xx_it.h │ ├── LICENSE.md │ ├── MDK-ARM │ │ ├── Project.uvoptx │ │ ├── Project.uvprojx │ │ └── startup_stm32l073xx.s │ ├── SW4STM32 │ │ ├── STM32L073Z_EVAL │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ └── STM32L073VZTx_FLASH.ld │ │ ├── startup_stm32l073xx.s │ │ └── syscalls.c │ ├── Src │ │ ├── main.c │ │ ├── stm32l0xx_hal_msp.c │ │ ├── stm32l0xx_it.c │ │ └── system_stm32l0xx.c │ └── readme.txt │ └── Templates_LL │ ├── EWARM │ ├── Project.ewd │ ├── Project.ewp │ ├── Project.eww │ ├── startup_stm32l073xx.s │ └── stm32l073xx_flash.icf │ ├── Inc │ ├── main.h │ ├── stm32_assert.h │ └── stm32l0xx_it.h │ ├── LICENSE.md │ ├── MDK-ARM │ ├── Project.uvoptx │ ├── Project.uvprojx │ └── startup_stm32l073xx.s │ ├── SW4STM32 │ ├── STM32L073Z_EVAL │ │ ├── .cproject │ │ ├── .project │ │ └── STM32L073VZTx_FLASH.ld │ └── startup_stm32l073xx.s │ ├── Src │ ├── main.c │ ├── stm32l0xx_it.c │ └── system_stm32l0xx.c │ └── readme.txt ├── README.md ├── Release_Notes.html ├── SECURITY.md ├── Utilities ├── CPU │ ├── LICENSE.md │ ├── Release_Notes.html │ ├── _htmresc │ │ ├── Add button.svg │ │ ├── Update.svg │ │ ├── favicon.png │ │ ├── mini-st.css │ │ └── st_logo.png │ ├── cpu_utils.c │ └── cpu_utils.h ├── Fonts │ ├── LICENSE.md │ ├── Release_Notes.html │ ├── font12.c │ ├── font16.c │ ├── font20.c │ ├── font24.c │ ├── font8.c │ └── fonts.h ├── Log │ ├── LICENSE.md │ ├── Release_Notes.html │ ├── lcd_log.c │ ├── lcd_log.h │ └── lcd_log_conf_template.h └── Media │ ├── Pictures │ ├── BMP_128x160 │ │ ├── 10_16.bmp │ │ ├── 12_16.bmp │ │ ├── 1_16.bmp │ │ ├── 3_16.bmp │ │ ├── 4_16.bmp │ │ ├── 5_16.bmp │ │ ├── 6_16.bmp │ │ ├── 7_16.bmp │ │ ├── 8_16.bmp │ │ ├── 9_16.bmp │ │ ├── STLogo.bmp │ │ └── l1.bmp │ ├── BMP_320x240 │ │ ├── Image1.bmp │ │ ├── Image2.bmp │ │ ├── Image3.bmp │ │ └── Image4.bmp │ ├── BMP_64x64 │ │ ├── Help.bmp │ │ ├── LCsensor.bmp │ │ ├── Power.bmp │ │ ├── Pressure.bmp │ │ ├── Temp.bmp │ │ └── Uart.bmp │ └── readme.txt │ └── readme.txt ├── _htmresc ├── Add button.svg ├── CMSIS_Logo_Final.jpg ├── Eval_archi.bmp ├── ReleaseNotes.html ├── ReleaseNotes_Patch.html ├── STM32Cube_2020.bmp ├── STM32Cube_components.bmp ├── Update.svg ├── favicon.png ├── logo.bmp ├── mini-st.css ├── mini-st_2020.css ├── st_logo.png ├── st_logo_2020.png └── stmtouch.bmp └── package.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/.github/ISSUE_TEMPLATE/other-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation/STM32CubeL0GettingStarted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Documentation/STM32CubeL0GettingStarted.pdf -------------------------------------------------------------------------------- /Drivers/CMSIS/ARM.CMSIS.pdsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/ARM.CMSIS.pdsc -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core_A/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core_A/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core_A/Include/cmsis_cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core_A/Include/cmsis_cp15.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core_A/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core_A/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core_A/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core_A/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core_A/Include/core_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core_A/Include/core_ca.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core_A/Include/irq_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core_A/Include/irq_ctrl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core_A/Source/irq_ctrl_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Core_A/Source/irq_ctrl_gic.c -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/JTest/jtest_log_FVP.ini: -------------------------------------------------------------------------------- 1 | LOG > Logs/DspLibTest_FVP.log 2 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/JTest/jtest_log_MPS2.ini: -------------------------------------------------------------------------------- 1 | LOG > Logs/DspLibTest_MPS2.log 2 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/JTest/jtest_log_Simulator.ini: -------------------------------------------------------------------------------- 1 | LOG > Logs/DspLibTest_Simulator.log 2 | -------------------------------------------------------------------------------- /Drivers/CMSIS/DSP/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/DSP/Include/arm_math.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /Drivers/CMSIS/Lib/IAR/iar_cortexM0b_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Lib/IAR/iar_cortexM0b_math.a -------------------------------------------------------------------------------- /Drivers/CMSIS/Lib/IAR/iar_cortexM0l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/Lib/IAR/iar_cortexM0l_math.a -------------------------------------------------------------------------------- /Drivers/CMSIS/NN/Include/arm_nn_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/NN/Include/arm_nn_tables.h -------------------------------------------------------------------------------- /Drivers/CMSIS/NN/Include/arm_nnfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/NN/Include/arm_nnfunctions.h -------------------------------------------------------------------------------- /Drivers/CMSIS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/README.md -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS/Template/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS/Template/cmsis_os.h -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS2/Include/cmsis_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS2/Include/cmsis_os2.h -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS2/Include/os_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS2/Include/os_tick.h -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS2/Source/os_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS2/Source/os_systick.c -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS2/Source/os_tick_gtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS2/Source/os_tick_gtim.c -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS2/Source/os_tick_ptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS2/Source/os_tick_ptim.c -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS2/Template/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS2/Template/cmsis_os.h -------------------------------------------------------------------------------- /Drivers/CMSIS/RTOS2/Template/cmsis_os1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/RTOS2/Template/cmsis_os1.c -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/Registers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/Registers.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/TZ_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/TZ_context.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/annotated.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/annotated.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/check.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/classes.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/functions.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_a.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_b.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_c.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_d.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_h.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_i.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_m.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_n.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_p.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_s.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_t.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_u.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_u.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/globals_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/globals_w.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/regMap_pg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/regMap_pg.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/search.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/using_pg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/using_pg.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core/html/using_pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core/html/using_pg.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/annotated.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/check.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/classes.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/files.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/globals.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/search.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Core_A/html/using_pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Core_A/html/using_pg.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/MDK_Device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/MDK_Device.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/MDK_Flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/MDK_Flash.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/MDK_USB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/MDK_USB.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/MDK_USB_HID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/MDK_USB_HID.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/RTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/RTE.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_0.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_1.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_2.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_3.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_4.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_5.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_6.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_7.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_8.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_9.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_a.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_b.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/search/all_c.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DAP/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DAP/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/Biquad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/Biquad.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/CFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/CFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/CFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/CFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/CIFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/CIFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/CIFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/CIFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/Convolution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/Convolution.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/DCT4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/DCT4.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/FFTBin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/FFTBin.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/FFTBinInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/FFTBinInput.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/FIR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/FIR.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/FIRLattice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/FIRLattice.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/FIRSparse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/FIRSparse.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/IIRLattice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/IIRLattice.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/LMS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/LMS.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/MatrixScale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/MatrixScale.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/PID.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/PID.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/RFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/RFFT.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/RFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/RFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/RFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/RFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/RIFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/RIFFT.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/RIFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/RIFFTQ15.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/RIFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/RIFFTQ31.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/SignalFlow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/SignalFlow.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/Variance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/Variance.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/annotated.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/annotated.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/clarke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/clarke.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/classes.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/deprecated.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/dotProduct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/dotProduct.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/examples.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/files.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/functions.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_a.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_b.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_c.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_d.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_e.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_f.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_g.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_i.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_l.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_m.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_n.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_o.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_p.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_q.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_r.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_s.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_t.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_u.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_u.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_v.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_v.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_w.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/globals_x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/globals_x.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__Conv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__Conv.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__Corr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__Corr.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__FIR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__FIR.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__FIR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__FIR.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__Fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__Fill.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__LMS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__LMS.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__LMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__LMS.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__Max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__Max.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__Max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__Max.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__Min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__Min.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__Min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__Min.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__PID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__PID.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__PID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__PID.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__RMS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__RMS.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__RMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__RMS.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__SQRT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__SQRT.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__STD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__STD.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__STD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__STD.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__copy.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__cos.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__cos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__cos.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__mean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__mean.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__park.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__park.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__power.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__scale.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__shift.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__sin.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/group__sin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/group__sin.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/park.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/park.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/parkFormula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/parkFormula.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_0.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_1.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_2.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_3.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_4.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_5.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_6.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_7.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_8.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_9.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_a.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_b.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_c.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_d.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_e.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/search/all_f.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/sinCos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/sinCos.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/DSP/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/DSP/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/CAN_Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/CAN_Node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/Driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/Driver.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/annotated.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/classes.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/files.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/globals.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/image006.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/search.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Driver/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Driver/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/LICENSE.txt -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/General/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/CIFAR10_CNN.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/CIFAR10_CNN.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/GRU.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/GRU.gif -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/annotated.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/annotated.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/classes.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/files.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2lastnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2splitbar.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/ftv2vertline.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/functions.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/globals.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/group__Acti.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/group__Acti.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/group__Acti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/group__Acti.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/group__FC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/group__FC.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/group__FC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/group__FC.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/group__NNConv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/group__NNConv.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/namespaces.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/navtreeindex0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/navtreeindex0.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_0.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_1.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_10.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_11.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_2.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_3.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_4.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_5.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_6.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_7.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_8.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_9.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_a.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_b.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_c.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_d.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_e.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/all_f.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/close.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/search/search.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/NN/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/NN/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/CodeVerify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/CodeVerify.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/DFPFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/DFPFlow.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/FPADisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/FPADisplay.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/FlashErase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/FlashErase.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/Reset.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/SVDFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/SVDFlow.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/cp_Packs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/cp_Packs.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/cpdsc_pg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/cpdsc_pg.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/packChk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/packChk.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/packFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/packFormat.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/sdf_pg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/sdf_pg.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Pack/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Pack/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/MailQueue.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/Mutex.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/Semaphore.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/Timer.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/add_item.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/annotated.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/annotated.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/classes.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/configure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/configure.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/configure.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/files.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/functions.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/genRTOSIF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/genRTOSIF.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/globals.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/lowPower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/lowPower.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/theory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/theory.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/timerTick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/timerTick.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/using.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/using.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS/html/usingOS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS/html/usingOS.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/Mutex.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/PC-Lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/PC-Lint.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/Semaphore.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/Timer.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/add_item.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/annotated.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/classes.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/files.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/globals.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/mempool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/mempool.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/modules.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/modules.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/rtx5_impl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/rtx5_impl.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/search.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/RTOS2/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/RTOS2/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/CMSIS-SVD.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/CMSIS-SVD.xsd -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/elem_cpu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/elem_cpu.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/search/all_0.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/search/all_1.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/search/all_2.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/search/all_3.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/SVD/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/SVD/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/genmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/genmodel/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/genmodel/package-list: -------------------------------------------------------------------------------- 1 | com.arm.cmsis.zone.gen.data 2 | -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/genmodel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/genmodel/script.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/XML_Format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/XML_Format.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/bc_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/bdwn.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/check.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/closed.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/cmsis.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/doxygen.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/doxygen.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/dynsections.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2blank.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2cl.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2doc.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2link.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2mnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2mo.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2node.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2ns.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/ftv2pnode.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/generator.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/genmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/genmodel.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/index.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/jquery.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/mpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/mpu.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/multicore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/multicore.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/nav_f.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/nav_g.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/nav_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/navtree.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/navtree.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/open.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/pages.html -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/resize.js -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/search.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/sync_off.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/sync_on.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/tab_a.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/tab_b.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/tab_h.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/tab_s.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/tab_topnav.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/tabs.css -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/Zone/html/trustzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/Zone/html/trustzone.png -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Drivers/CMSIS/docs/index.html -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Projects/NUCLEO-L010RB/Examples/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Projects/NUCLEO-L010RB/Examples/LICENSE.md -------------------------------------------------------------------------------- /Projects/NUCLEO-L010RB/Templates/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Projects/NUCLEO-L010RB/Templates/Inc/main.h -------------------------------------------------------------------------------- /Projects/NUCLEO-L010RB/Templates/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Projects/NUCLEO-L010RB/Templates/LICENSE.md -------------------------------------------------------------------------------- /Projects/NUCLEO-L010RB/Templates/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Projects/NUCLEO-L010RB/Templates/Src/main.c -------------------------------------------------------------------------------- /Projects/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Projects/Release_Notes.html -------------------------------------------------------------------------------- /Projects/STM32CubeProjectsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Projects/STM32CubeProjectsList.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/README.md -------------------------------------------------------------------------------- /Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Release_Notes.html -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Utilities/CPU/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/LICENSE.md -------------------------------------------------------------------------------- /Utilities/CPU/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/CPU/_htmresc/Add button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/_htmresc/Add button.svg -------------------------------------------------------------------------------- /Utilities/CPU/_htmresc/Update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/_htmresc/Update.svg -------------------------------------------------------------------------------- /Utilities/CPU/_htmresc/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/_htmresc/favicon.png -------------------------------------------------------------------------------- /Utilities/CPU/_htmresc/mini-st.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/_htmresc/mini-st.css -------------------------------------------------------------------------------- /Utilities/CPU/_htmresc/st_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/_htmresc/st_logo.png -------------------------------------------------------------------------------- /Utilities/CPU/cpu_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/cpu_utils.c -------------------------------------------------------------------------------- /Utilities/CPU/cpu_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/CPU/cpu_utils.h -------------------------------------------------------------------------------- /Utilities/Fonts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/LICENSE.md -------------------------------------------------------------------------------- /Utilities/Fonts/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Fonts/font12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/font12.c -------------------------------------------------------------------------------- /Utilities/Fonts/font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/font16.c -------------------------------------------------------------------------------- /Utilities/Fonts/font20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/font20.c -------------------------------------------------------------------------------- /Utilities/Fonts/font24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/font24.c -------------------------------------------------------------------------------- /Utilities/Fonts/font8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/font8.c -------------------------------------------------------------------------------- /Utilities/Fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Fonts/fonts.h -------------------------------------------------------------------------------- /Utilities/Log/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Log/LICENSE.md -------------------------------------------------------------------------------- /Utilities/Log/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Log/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Log/lcd_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Log/lcd_log.c -------------------------------------------------------------------------------- /Utilities/Log/lcd_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Log/lcd_log.h -------------------------------------------------------------------------------- /Utilities/Log/lcd_log_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Log/lcd_log_conf_template.h -------------------------------------------------------------------------------- /Utilities/Media/Pictures/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Media/Pictures/readme.txt -------------------------------------------------------------------------------- /Utilities/Media/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/Utilities/Media/readme.txt -------------------------------------------------------------------------------- /_htmresc/Add button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/Add button.svg -------------------------------------------------------------------------------- /_htmresc/CMSIS_Logo_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/CMSIS_Logo_Final.jpg -------------------------------------------------------------------------------- /_htmresc/Eval_archi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/Eval_archi.bmp -------------------------------------------------------------------------------- /_htmresc/ReleaseNotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/ReleaseNotes.html -------------------------------------------------------------------------------- /_htmresc/ReleaseNotes_Patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/ReleaseNotes_Patch.html -------------------------------------------------------------------------------- /_htmresc/STM32Cube_2020.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/STM32Cube_2020.bmp -------------------------------------------------------------------------------- /_htmresc/STM32Cube_components.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/STM32Cube_components.bmp -------------------------------------------------------------------------------- /_htmresc/Update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/Update.svg -------------------------------------------------------------------------------- /_htmresc/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/favicon.png -------------------------------------------------------------------------------- /_htmresc/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/logo.bmp -------------------------------------------------------------------------------- /_htmresc/mini-st.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/mini-st.css -------------------------------------------------------------------------------- /_htmresc/mini-st_2020.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/mini-st_2020.css -------------------------------------------------------------------------------- /_htmresc/st_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/st_logo.png -------------------------------------------------------------------------------- /_htmresc/st_logo_2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/st_logo_2020.png -------------------------------------------------------------------------------- /_htmresc/stmtouch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/_htmresc/stmtouch.bmp -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STM32CubeL0/HEAD/package.xml --------------------------------------------------------------------------------